/* =========================================================
   StoneBridge Media — Design System
   ========================================================= */

:root {
  /* Palette */
  --charcoal: #0A0A0B;
  --stone:    #1C1A17;
  --stone-2:  #23211d;
  --offwhite: #F5F0E8;
  --gold:     #C9A84C;
  --gold-2:   #E4C877;
  --slate:    #8B9396;

  /* Derived */
  --line: rgba(245, 240, 232, 0.10);
  --line-strong: rgba(245, 240, 232, 0.18);
  --muted: rgba(245, 240, 232, 0.58);
  --muted-2: rgba(245, 240, 232, 0.40);

  /* Type */
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 16px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--sans);
  background: var(--charcoal);
  color: var(--offwhite);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--charcoal); }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.6);
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s var(--ease), border-color .3s var(--ease);
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor.is-hover {
  width: 68px; height: 68px;
  background: rgba(201, 168, 76, 0.10);
  border-color: rgba(201, 168, 76, 0.9);
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } button, a { cursor: pointer; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--charcoal);
  display: grid; place-items: center;
}
.loader__inner { text-align: center; width: min(260px, 60vw); }
.loader__mark {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 700;
  letter-spacing: .05em; color: var(--offwhite); display: block; margin-bottom: 22px;
}
.loader__mark::after { content: ""; color: var(--gold); }
.loader__bar { height: 2px; background: var(--line); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0; background: var(--gold); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 9998;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 14px var(--gutter);
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--offwhite); }
.nav__logo svg { color: var(--gold); }
.nav__logo em { font-style: normal; color: var(--gold); font-weight: 500; margin-left: 2px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-size: .82rem; letter-spacing: .04em; color: var(--muted); position: relative; padding: 4px 0; transition: color .3s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav__links a:hover { color: var(--offwhite); }
.nav__links a:hover::after { width: 100%; }
@media (max-width: 860px) { .nav__links { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px; border-radius: 100px; font-size: .86rem; font-weight: 500;
  letter-spacing: .02em; overflow: hidden; transition: transform .3s var(--ease), color .3s var(--ease);
  border: 1px solid var(--line-strong);
}
.btn i { font-style: normal; font-size: .74rem; opacity: .7; padding-left: 10px; border-left: 1px solid currentColor; }
.btn--sm { padding: 11px 20px; font-size: .78rem; }
.btn--lg { padding: 19px 38px; font-size: .95rem; }
.btn--primary { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn--primary i { opacity: .55; border-color: rgba(10,10,11,.4); }
.btn--ghost { background: transparent; color: var(--offwhite); }
.btn--ghost:hover { background: rgba(245,240,232,.06); border-color: var(--line-strong); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-2); transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn--primary:hover::before { transform: translateY(0); }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
}
.section { position: relative; padding: clamp(80px, 12vh, 160px) var(--gutter); max-width: var(--container); margin: 0 auto; }
.section__head { max-width: 760px; margin-bottom: 64px; }
.section__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -.01em; }
.section__lead { margin-top: 22px; color: var(--muted); font-size: 1.08rem; max-width: 560px; }

/* ---------- HERO ---------- */
/* ── HERO — single composition (matches OG image exactly) ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: clamp(110px,14vh,160px) var(--gutter) clamp(60px,8vh,100px);
  overflow: hidden;
}
.hero__glow {
  position: absolute; top: 50%; left: 20%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; max-width: 80vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.13), transparent 60%);
  filter: blur(50px); pointer-events: none; z-index: 1;
}

/* ── Content — left, overlaid on top of the bridge ── */
.hero__content {
  position: relative; z-index: 2;
  text-align: left;
  width: 100%; max-width: 560px;
  margin-right: auto;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,.35); border-radius: 100px;
  padding: 7px 16px; margin-bottom: 28px;
}
.hero__badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1.06; letter-spacing: -.025em;
}
.hero__title .line { display: block; }
.hero__title .line--accent { color: var(--gold); font-style: italic; font-weight: 500; }
.hero__rule {
  width: 48px; height: 2px; background: var(--gold); margin: 26px 0; opacity: .7;
}
.hero__sub { color: var(--muted); font-size: clamp(.95rem,1.4vw,1.1rem); line-height: 1.75; max-width: 460px; }
.hero__cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta { margin-top: 48px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero__alt { margin-top: 22px; font-size: .95rem; color: var(--muted); max-width: 480px; }
.hero__alt a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,.4); padding-bottom: 1px; transition: border-color .3s var(--ease); }
.hero__alt a:hover { border-color: var(--gold); }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat b { font-family: var(--serif); font-size: clamp(1.45rem, 1.8vw, 2rem); color: var(--offwhite); line-height: 1; }
.hero__stat span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }

/* ── Bridge image — absolute, right side, bleeds to viewport edge ── */
.hero__emblem {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 62%; z-index: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: flex-end;
}
.hero__emblem img {
  width: 100%; height: 100%; object-fit: cover; object-position: center right;
  -webkit-mask-image: linear-gradient(to left, #000 55%, transparent 96%), linear-gradient(to bottom, transparent 2%, #000 20%, #000 84%, transparent 99%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, #000 55%, transparent 96%), linear-gradient(to bottom, transparent 2%, #000 20%, #000 84%, transparent 99%);
  mask-composite: intersect;
}

/* scroll cue */
.hero__scroll {
  position: absolute; bottom: clamp(16px,3vh,34px); left: var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); z-index: 3;
}
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0% { top: -50%; } 100% { top: 100%; } }

/* responsive — keep the OG composition; bridge stays a right-side backdrop */
@media (max-width: 860px) {
  .hero__content { max-width: 100%; width: 100%; }
  .hero__emblem { width: 100%; }
  .hero__emblem img {
    opacity: .32;
    object-position: center right;
    -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 92%), linear-gradient(to bottom, transparent 0%, #000 24%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to left, #000 30%, transparent 92%), linear-gradient(to bottom, transparent 0%, #000 24%, #000 82%, transparent 100%);
  }
  .hero__scroll { display: none; }
}

/* ---------- PROBLEM ---------- */
.problem__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 2; }
.p-card {
  padding: 34px 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(28,26,23,.6), rgba(10,10,11,.2));
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.p-card:hover { transform: translateY(-8px); border-color: var(--line-strong); background: linear-gradient(160deg, rgba(35,33,29,.9), rgba(10,10,11,.3)); }
.p-card__num { font-family: var(--serif); font-size: .9rem; color: var(--gold); opacity: .8; }
.p-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin: 16px 0 12px; }
.p-card p { color: var(--muted); font-size: .94rem; }
.problem__orb { position: absolute; right: -60px; top: -40px; width: 260px; opacity: .5; pointer-events: none; z-index: 0; }
@media (max-width: 980px) { .problem__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .problem__grid { grid-template-columns: 1fr; } }

/* ---------- LADDER ---------- */
.ladder__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: stretch; max-width: 880px; }
.l-card {
  position: relative; padding: 40px 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(28,26,23,.5), rgba(10,10,11,.1));
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.l-card:hover { transform: translateY(-10px); border-color: var(--line-strong); }
.l-card--feature { border-color: rgba(201,168,76,.4); background: linear-gradient(180deg, rgba(201,168,76,.08), rgba(10,10,11,.1)); }
.l-card--feature:hover { border-color: var(--gold); }
.l-card__flag { position: absolute; top: -12px; left: 32px; background: var(--gold); color: var(--charcoal); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.l-card__tier { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }
.l-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; margin-top: 6px; }
.l-card__price { font-family: var(--serif); font-size: 2.8rem; color: var(--gold); margin: 18px 0 6px; line-height: 1; }
.l-card__price em { font-style: normal; font-size: 1rem; color: var(--muted); }
.l-card__desc { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.l-card__list { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.l-card__list li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: .92rem; color: var(--offwhite); }
.l-card__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border: 1px solid var(--gold); border-radius: 50%; }
.l-card__link { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; letter-spacing: .02em; padding: 13px 24px; border-radius: 100px; border: 1px solid var(--line-strong); align-self: flex-start; transition: background .3s var(--ease), color .3s var(--ease); }
.l-card__link:hover { background: rgba(245,240,232,.06); }
.l-card__link--gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.l-card__link--gold:hover { background: var(--gold-2); }
@media (max-width: 680px) { .ladder__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- BUILD ---------- */
.build { position: relative; }
.build__mark { position: absolute; top: 30px; right: var(--gutter); width: 360px; opacity: .14; pointer-events: none; }
.build__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.build__check { list-style: none; }
.build__check li { position: relative; padding: 18px 0 18px 44px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.build__check li span { position: absolute; left: 0; top: 20px; width: 22px; height: 22px; border: 1px solid var(--gold); border-radius: 50%; }
.build__check li span::after { content: ""; position: absolute; left: 7px; top: 4px; width: 6px; height: 11px; border: solid var(--gold); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.build__cards { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 120px; }
.b-card { padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(160deg, rgba(28,26,23,.5), rgba(10,10,11,.1)); transition: border-color .4s var(--ease), transform .4s var(--ease); }
.b-card:hover { border-color: var(--line-strong); transform: translateX(6px); }
.b-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; color: var(--gold); margin-bottom: 10px; }
.b-card p { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .build__wrap { grid-template-columns: 1fr; gap: 40px; } .build__cards { position: static; } .build__mark { display: none; } }

/* ---------- TIMELINE ---------- */
.timeline { max-width: 100%; }
.timeline .section__head { max-width: var(--container); margin-left: auto; margin-right: auto; padding: 0 var(--gutter) var(--gutter); }
.timeline__wrap { position: relative; max-width: 100%; }
.timeline__wrap::before,
.timeline__wrap::after {
  content: ""; position: absolute; top: 0; bottom: 40px; width: clamp(32px, 6vw, 72px);
  z-index: 2; pointer-events: none;
}
.timeline__wrap::before { left: 0; background: linear-gradient(to right, var(--charcoal) 15%, transparent); }
.timeline__wrap::after { right: 0; background: linear-gradient(to left, var(--charcoal) 15%, transparent); }
.timeline__nav {
  position: absolute; top: 50%; transform: translateY(calc(-50% - 12px)); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: rgba(10,10,11,.88); color: var(--gold);
  display: grid; place-items: center; transition: border-color .3s var(--ease), background .3s var(--ease), opacity .3s var(--ease);
}
.timeline__nav:hover:not(:disabled) { border-color: var(--gold); background: rgba(28,26,23,.95); }
.timeline__nav:disabled { opacity: .35; cursor: default; }
.timeline__wrap.is-static .timeline__nav,
.timeline__wrap.is-static .timeline__hint { display: none; }
.timeline__nav--prev { left: max(12px, calc(var(--gutter) - 18px)); }
.timeline__nav--next { right: max(12px, calc(var(--gutter) - 18px)); }
.timeline__track {
  display: flex; gap: 22px; padding: 10px var(--gutter) 40px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(201,168,76,.45) transparent;
}
.timeline__track:focus { outline: none; }
.timeline__track:focus-visible { outline: 1px solid rgba(201,168,76,.45); outline-offset: 4px; border-radius: var(--radius); }
.timeline__track::-webkit-scrollbar { height: 6px; }
.timeline__track::-webkit-scrollbar-track { background: transparent; }
.timeline__track::-webkit-scrollbar-thumb { background: rgba(201,168,76,.45); border-radius: 100px; }
.timeline__hint {
  max-width: var(--container); margin: -18px auto 0; padding: 0 var(--gutter);
  text-align: center; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2);
}
.t-step { scroll-snap-align: start; flex: 0 0 300px; padding: 34px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(170deg, rgba(28,26,23,.6), rgba(10,10,11,.15)); position: relative; transition: border-color .4s var(--ease), transform .4s var(--ease); }
.t-step:hover { border-color: var(--gold); transform: translateY(-6px); }
.t-step__day { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.t-step h3 { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; margin: 12px 0 12px; }
.t-step p { color: var(--muted); font-size: .93rem; }
.t-step::before { content: ""; position: absolute; top: 34px; right: 28px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: .5; }

/* ---------- GROWTH ---------- */
.growth__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.growth__left { display: grid; place-items: center; }
.growth__left img {
  width: clamp(320px, 44vw, 560px);
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 50%, #000 55%, transparent 92%);
  mask-image: radial-gradient(ellipse 78% 82% at 50% 50%, #000 55%, transparent 92%);
}
.growth__list { list-style: none; margin: 30px 0 34px; display: grid; gap: 4px; }
.growth__list li { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 160px 1fr; gap: 20px; align-items: baseline; }
.growth__list b { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; color: var(--offwhite); }
.growth__list span { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .growth__inner { grid-template-columns: 1fr; gap: 40px; } .growth__list li { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- PROOF ---------- */
.proof { text-align: center; }
.proof__inner { max-width: 820px; margin: 0 auto; padding: clamp(50px, 8vw, 90px) clamp(28px, 5vw, 70px); border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle at 50% 0%, rgba(201,168,76,.07), transparent 70%); }
.proof__title { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.2; }
.proof__body { margin-top: 24px; color: var(--muted); font-size: 1.05rem; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; text-align: left; font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 500; color: var(--offwhite); transition: color .3s var(--ease); }
.faq__q:hover { color: var(--gold); }
.faq__q i { position: relative; flex: 0 0 20px; height: 20px; }
.faq__q i::before, .faq__q i::after { content: ""; position: absolute; background: var(--gold); transition: transform .4s var(--ease); }
.faq__q i::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__q i::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__item.is-open .faq__q i::after { transform: scaleY(0); }
.faq__a { overflow: hidden; height: 0; }
.faq__a p { padding: 0 0 28px; color: var(--muted); font-size: 1rem; max-width: 640px; }

/* ---------- FINAL CTA ---------- */
.cta { text-align: center; overflow: hidden; }
.cta__glow { position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; max-width: 120vw; background: radial-gradient(circle, rgba(201,168,76,.18), transparent 65%); filter: blur(40px); pointer-events: none; }
.cta__inner { position: relative; max-width: 820px; margin: 0 auto; }
.cta__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -.02em; }
.cta__sub { margin: 26px auto 0; max-width: 500px; color: var(--muted); font-size: 1.1rem; }
.cta__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: 70px var(--gutter) 40px; max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; }
.footer__logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; }
.footer__logo em { font-style: normal; color: var(--gold); }
.footer__brand p { margin-top: 14px; color: var(--muted); font-size: .95rem; max-width: 280px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__cols h4 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer__cols a { display: block; color: var(--muted); font-size: .92rem; margin-bottom: 10px; transition: color .3s var(--ease); }
.footer__cols a:hover { color: var(--gold); }
.footer__legal { grid-column: 1 / -1; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .82rem; }
@media (max-width: 720px) { .footer { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Animation base states ---------- */
[data-fade] { opacity: 0; transform: translateY(24px); }
[data-reveal] { opacity: 0; transform: translateY(40px); }
.split-line { display: block; overflow: hidden; }
.split-line__inner { display: block; }
.no-js [data-fade], .no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-fade], [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
