/* ==========================================================================
   Bridge Tower Financial Services
   Refined editorial private-banking aesthetic
   ========================================================================== */

:root {
  /* Palette — warm parchment, deep ink, burnished bronze */
  --parchment:        #F2EBDD;
  --parchment-soft:   #EDE5D4;
  --parchment-deep:   #E4DAC4;
  --ink:              #1A1713;
  --ink-soft:         #2E2820;
  --ink-muted:        #6D6255;
  --bronze:           #8B6B3D;
  --bronze-deep:      #6C5129;
  --rule:             #C9BCA2;
  --rule-soft:        #D8CDB5;

  /* Type */
  --serif:            "Cormorant Garamond", "Adobe Garamond", Garamond, "Times New Roman", serif;
  --sans:             "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --gutter:           clamp(22px, 4.2vw, 72px);
  --section:          clamp(120px, 16vw, 220px);
  --rule-px:          1px;

  /* Motion */
  --ease:             cubic-bezier(0.25, 0.46, 0.25, 0.94);
  --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset -------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

ol, ul { list-style: none; }

::selection { background: var(--ink); color: var(--parchment); }

/* --- Paper grain overlay ------------------------------------------------ */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.075 0 0 0 0.13 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

/* --- Side rule (fixed decorative) -------------------------------------- */

.side-rule {
  position: fixed;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 16px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 140px 0 40px;
  z-index: 50;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  pointer-events: none;
}

.side-rule__mark {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.side-rule__mark.rot {
  transform: rotate(180deg);
}

.side-rule__line {
  flex: 1;
  width: var(--rule-px);
  background: var(--rule);
  margin: 18px 0;
}

@media (min-width: 1100px) {
  .side-rule { display: flex; }
}

/* --- Navigation --------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--gutter);
  background: color-mix(in srgb, var(--parchment) 88%, transparent);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border-bottom: var(--rule-px) solid transparent;
  transition: border-color 0.4s var(--ease), padding 0.4s var(--ease);
}

.nav.is-scrolled {
  padding: 14px var(--gutter);
  border-bottom-color: var(--rule);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  justify-self: start;
  transition: opacity 0.3s var(--ease);
}

.wordmark:hover { opacity: 0.78; }

.wordmark__logo {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: height 0.4s var(--ease);
  user-select: none;
  -webkit-user-drag: none;
}

.nav.is-scrolled .wordmark__logo { height: 40px; }

.wordmark__stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.wordmark__main {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.wordmark__sub {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 760px) {
  .wordmark__logo { height: 42px; }
  .nav.is-scrolled .wordmark__logo { height: 36px; }
}

@media (max-width: 460px) {
  .wordmark__logo { height: 36px; }
  .nav.is-scrolled .wordmark__logo { height: 32px; }
  .wordmark__main { font-size: 17px; }
  .wordmark__sub  { font-size: 8.5px; letter-spacing: 0.28em; }
  .wordmark { gap: 10px; }
}

/* Nav links */

.nav__links {
  display: flex;
  gap: 38px;
  justify-self: center;
}

.nav__links a {
  position: relative;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.nav__links a::before {
  content: attr(data-num);
  position: absolute;
  top: -9px;
  left: -14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bronze);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease-out);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.35s var(--ease-out);
}

.nav__links a:hover::before { opacity: 1; transform: translateY(0); }
.nav__links a:hover::after { width: 100%; }

/* Nav clock */

.nav__clock {
  display: none;
  justify-self: end;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}

.nav__clock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 0 var(--bronze);
  animation: pulse 2.6s var(--ease) infinite;
}

.nav__clock-zone { color: var(--ink); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 107, 61, 0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(139, 107, 61, 0); }
}

@media (min-width: 860px) { .nav__clock { display: inline-flex; } }

@media (max-width: 760px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .nav__links {
    position: absolute;
    right: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    gap: 20px;
  }
  .nav__links a { font-size: 10px; letter-spacing: 0.22em; }
  .nav__links a[href="#practice"],
  .nav__links a[href="#principle"] { display: none; }
}

@media (max-width: 460px) {
  .nav__links { gap: 14px; }
  .nav__links a[href="#services"] { display: none; }
}

/* --- Section label ----------------------------------------------------- */

.section-label,
.hero__meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.mark {
  color: var(--bronze);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}

/* --- Hero -------------------------------------------------------------- */

.hero {
  min-height: 100vh;
  padding: 150px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(70px, 10vw, 130px);
  position: relative;
}

.hero__meta {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__meta-right {
  color: var(--ink);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11.2vw, 188px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-deep);
  letter-spacing: -0.02em;
}

/* Line-by-line reveal */
.hero__title .line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0 0.22em;
}

.hero__title .line__inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  animation: riseUp 1.15s var(--ease-out) forwards;
}

.hero__title .line:nth-child(1) .line__inner { animation-delay: 0.25s; }
.hero__title .line:nth-child(2) .line__inner { animation-delay: 0.45s; }
.hero__title .line:nth-child(3) .line__inner { animation-delay: 0.65s; }

@keyframes riseUp {
  0%   { transform: translateY(105%); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0);   opacity: 1; }
}

.hero__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.hero__lede {
  max-width: 480px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink-soft);
  border-left: var(--rule-px) solid var(--rule);
  padding-left: 22px;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

.hero__scroll svg {
  width: 14px;
  height: 32px;
  animation: nudge 2.4s var(--ease) infinite;
}

.hero__scroll:hover { color: var(--ink); }
.hero__scroll:hover svg { color: var(--bronze); }

@keyframes nudge {
  0%, 100% { transform: translateY(0);    opacity: 0.85; }
  50%      { transform: translateY(5px);  opacity: 1; }
}

@media (max-width: 700px) {
  .hero__foot { grid-template-columns: 1fr; gap: 50px; }
  .hero__scroll { align-self: start; flex-direction: row; }
  .hero__scroll svg { width: 28px; height: 14px; transform: rotate(-90deg); }
}

/* --- Practice ---------------------------------------------------------- */

.practice {
  padding: var(--section) var(--gutter);
  border-top: var(--rule-px) solid var(--rule);
  position: relative;
}

.practice__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  margin-top: 50px;
  align-items: start;
}

.practice__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1;
  letter-spacing: -0.013em;
  color: var(--ink);
}

.practice__title em {
  font-style: italic;
  color: var(--bronze-deep);
}

.practice__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 14px;
}

.practice__body p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

.practice__body p em { color: var(--bronze-deep); }

.practice__signature {
  margin-top: 20px;
  font-size: 15px !important;
  color: var(--ink-muted) !important;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .practice__grid { grid-template-columns: 1fr; gap: 44px; }
}

/* --- Services ---------------------------------------------------------- */

.services {
  padding: var(--section) var(--gutter) calc(var(--section) * 0.6);
  border-top: var(--rule-px) solid var(--rule);
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.services__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.services__title em {
  font-style: italic;
  color: var(--bronze-deep);
}

@media (max-width: 800px) {
  .services__header { grid-template-columns: 1fr; gap: 20px; }
}

.service-list {
  border-top: var(--rule-px) solid var(--rule);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(36px, 4.5vw, 56px) 0;
  transition: padding 0.4s var(--ease);
  cursor: default;
}

.service__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--rule-px);
  background: var(--rule);
  transform-origin: left;
  transform: scaleX(1);
  transition: background 0.4s var(--ease);
}

.service:hover .service__rule { background: var(--ink); }

.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 46px);
  color: var(--bronze);
  line-height: 1;
  padding-top: 6px;
  transition: transform 0.5s var(--ease-out), color 0.4s var(--ease);
  letter-spacing: -0.01em;
}

.service:hover .service__num {
  color: var(--bronze-deep);
  transform: translateX(-6px);
}

.service__body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 3.5vw, 56px);
  align-items: start;
}

.service__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: transform 0.5s var(--ease-out);
}

.service:hover .service__name { transform: translateX(6px); }

.service__desc {
  font-family: var(--sans);
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}

.service__tags {
  grid-column: 1 / -1;
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.service__tags em { color: var(--bronze-deep); font-style: italic; }

@media (max-width: 900px) {
  .service { grid-template-columns: 70px 1fr; }
  .service__body { grid-template-columns: 1fr; gap: 16px; }
  .service__num { font-size: 26px; padding-top: 4px; }
  .service__name { font-size: 32px; }
}

@media (max-width: 520px) {
  .service { grid-template-columns: 48px 1fr; gap: 12px; }
  .service__num { font-size: 22px; }
  .service__name { font-size: 26px; }
}

/* --- Principle --------------------------------------------------------- */

.principle {
  padding: calc(var(--section) * 0.9) var(--gutter);
  text-align: center;
  background: var(--parchment-soft);
  border-top: var(--rule-px) solid var(--rule);
  border-bottom: var(--rule-px) solid var(--rule);
  position: relative;
}

.principle .section-label { margin-bottom: 60px; }

.principle__quote {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 66px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.principle__quote p + p { margin-top: 14px; }

.principle__quote em {
  font-style: italic;
  color: var(--bronze-deep);
}

.principle__attr {
  margin-top: 60px;
  justify-content: center;
}

/* --- Contact ----------------------------------------------------------- */

.contact {
  padding: var(--section) var(--gutter) calc(var(--section) * 0.55);
}

.contact .section-label { margin-bottom: 48px; }

.contact__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: clamp(50px, 6vw, 80px);
}

.contact__title em {
  font-style: italic;
  color: var(--bronze-deep);
}

/* Large email link */

.contact__email {
  display: block;
  position: relative;
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: var(--rule-px) solid var(--ink);
  color: var(--ink);
  transition: padding 0.4s var(--ease);
}

.contact__email-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
  transition: color 0.3s var(--ease);
}

.contact__email-addr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.contact__email-text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 5.2vw, 82px);
  line-height: 1;
  letter-spacing: -0.015em;
  transition: color 0.4s var(--ease), transform 0.6s var(--ease-out);
  display: inline-block;
}

.contact__email-arrow {
  width: clamp(44px, 5vw, 80px);
  height: auto;
  color: var(--ink);
  transition: transform 0.5s var(--ease-out), color 0.4s var(--ease);
}

.contact__email-rule {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: var(--rule-px);
  background: var(--ink);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.6s var(--ease-out);
}

.contact__email:hover .contact__email-text {
  color: var(--bronze-deep);
  transform: translateX(10px);
}

.contact__email:hover .contact__email-arrow {
  color: var(--bronze-deep);
  transform: translateX(18px);
}

.contact__email:hover .contact__email-rule {
  transform-origin: left;
  transform: scaleX(1.02);
  background: var(--bronze-deep);
}

.contact__email:hover .contact__email-label {
  color: var(--bronze-deep);
}

/* Contact details */

.contact__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: clamp(70px, 8vw, 110px);
  border-top: var(--rule-px) solid var(--rule);
  padding-top: 44px;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__detail-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact__detail-value {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
}

@media (max-width: 820px) {
  .contact__details { grid-template-columns: 1fr; gap: 28px; }
}

/* --- Footer ------------------------------------------------------------ */

.footer {
  background: var(--ink);
  color: var(--parchment);
  padding: clamp(70px, 8vw, 130px) var(--gutter) 40px;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  padding-bottom: clamp(60px, 7vw, 100px);
  border-bottom: var(--rule-px) solid rgba(242, 235, 221, 0.18);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__brand-main {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.008em;
}

.footer__brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.3vw, 22px);
  color: var(--bronze);
  line-height: 1;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__meta-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: var(--rule-px) solid rgba(242, 235, 221, 0.12);
}

.footer__meta-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 235, 221, 0.5);
  padding-top: 4px;
}

.footer__meta-value {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  color: var(--parchment);
  font-weight: 400;
}

.footer__link {
  position: relative;
  transition: color 0.25s var(--ease);
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.footer__link:hover { color: var(--bronze); }
.footer__link:hover::after { transform: scaleX(1); transform-origin: left; }

.footer__colophon {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242, 235, 221, 0.6);
}

.footer__colophon em { color: var(--bronze); font-style: italic; }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 235, 221, 0.5);
}

.footer__bottom-dot { color: var(--bronze); }
.footer__bottom-sp { flex: 1; min-width: 20px; }

.footer__top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--parchment);
  transition: color 0.25s var(--ease);
}

.footer__top:hover { color: var(--bronze); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__meta-row { grid-template-columns: 120px 1fr; }
}

@media (max-width: 520px) {
  .footer__meta-row { grid-template-columns: 1fr; gap: 6px; }
}

/* --- Reveal animations -------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.service.reveal.is-in .service__num { animation: numberIn 0.9s var(--ease-out) 0.1s both; }

@keyframes numberIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Accessibility: respect reduced motion */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line__inner { opacity: 1; transform: none; }
}

/* --- Selection state for reduced-motion visitors ----------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero__title .line__inner { animation: none; }
}
