/* ── Begin to FINISH · dark theme design tokens ──────────────── */
:root {
  --bg: #0A1424;        /* page base — deep navy-black */
  --bg-2: #0E1B2F;      /* raised section navy */
  --bg-3: #14243C;      /* card navy */
  --bg-footer: #060D1A;
  --cream: #EDE9DC;
  --cream-soft: #D8D4C6;
  --muted: #9BA3AF;
  --leaf: #C9A24B;      /* brand gold (matches the white/gold dark-bg lockup) */
  --leaf-deep: #997B33;
  --leaf-soft: #D9BC77;
  --line: rgba(237, 233, 220, 0.14);
  --line-soft: rgba(237, 233, 220, 0.08);
  --radius: 22px;
  --pad-x: clamp(20px, 5vw, 72px);
  --font-sans: 'Schibsted Grotesk', 'Helvetica Neue', sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--leaf-deep); color: var(--cream); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--leaf); color: #0A1424; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ── Race progress bar (scroll indicator) ────────────────────── */
.race-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 120;
  background: transparent; pointer-events: none;
}
.race-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--leaf-deep), var(--leaf-soft));
}

/* ── Type ────────────────────────────────────────────────────── */
h1, h2 {
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
  color: var(--cream);
}
h1 { font-size: clamp(42px, 6.4vw, 88px); }
h2 { font-size: clamp(32px, 4.4vw, 60px); }
h1 em, h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--leaf-soft); }

.eyebrow {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--leaf-soft);
  margin-bottom: 22px;
}

.section-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 58ch;
  margin: 24px auto 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  padding: 16px 30px; border-radius: 999px;
  transition: opacity .3s ease, background .3s ease, color .3s ease;
}
.btn:hover { opacity: 0.85; }
.btn:focus-visible { outline: 2px solid var(--leaf-soft); outline-offset: 3px; }
.btn-sm { padding: 14px 26px; font-size: 14.5px; }
.btn-leaf { background: var(--leaf); color: #0A1424; }
.btn-leaf:hover { background: var(--leaf-soft); }
.btn-cream { background: var(--cream); color: var(--bg); }
.btn-cream:hover { background: #fff; }
.btn-ghost-light { border: 1px solid rgba(237,233,220,0.4); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(237,233,220,0.12); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Nav (transparent → solid on scroll, like Biograph) ──────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px var(--pad-x);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, padding .4s ease;
}
.nav.scrolled {
  padding: 15px var(--pad-x);
  background: rgba(10, 20, 36, 0.82);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  text-decoration: none; font-size: 15.5px; font-weight: 500;
  color: var(--cream-soft); letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-links a { position: relative; padding: 7px 12px; border-radius: 10px; }
.nav-links a::before {
  content: ""; position: absolute; inset: 0; border-radius: 10px;
  background: rgba(237, 233, 220, 0.08);
  opacity: 0; transition: opacity .3s ease;
  z-index: -1;
}
.nav-links a:hover::before, .nav-links a:focus-visible::before { opacity: 1; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--leaf-soft); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 42px; height: 42px; padding: 0 9px;
  background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.menu-btn span { display: block; height: 2px; background: var(--cream); border-radius: 1px; transition: transform .25s ease; }
.nav.open .menu-btn span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.open .menu-btn span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: min(100vh, 1040px);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-img, .bleed-img {
  position: absolute; left: 0; width: 100%; object-fit: cover;
  top: -8%; height: 116%;   /* overscan for parallax drift */
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(75deg, rgba(6,13,26,0.92) 0%, rgba(6,13,26,0.6) 42%, rgba(10,20,36,0.28) 100%),
    linear-gradient(0deg, rgba(10,20,36,1) 0%, rgba(10,20,36,0.25) 34%, rgba(6,13,26,0.5) 100%);
}
.hero-inner {
  position: relative; padding: 150px var(--pad-x) 40px;
  max-width: 980px;
}
@media (prefers-reduced-motion: no-preference) {
  html.js .hero-inner, html.js .hero-stats { will-change: transform, opacity; }
}
.hero h1 { max-width: 14ch; }
.hero-sub {
  margin-top: 26px; max-width: 52ch;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--cream-soft);
}
.hero .cta-row { margin-top: 36px; }
.hero-stats {
  position: relative;
  display: flex; justify-content: flex-end;
  padding: 34px var(--pad-x) 38px;
}
.hstat {
  padding: 0 clamp(18px, 3vw, 44px);
  border-left: 1px solid var(--line);
  color: var(--cream);
}
.hstat:first-child { border-left: none; }
.hstat strong { display: block; font-size: 17px; font-weight: 600; }
.hstat span { font-size: 13px; color: var(--muted); }

/* Hero photo: bias crop upward so the jumping subject's head stays in frame */
/* hero uses a purpose-cropped wide band (hero-movement.jpg) with the
   subjects' heads centered, so the standard overscan crop is safe */
.hero .hero-img { object-position: center 30%; }

/* Ken Burns settle on load */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero-img { animation: heroSettle 2.6s var(--ease-out) both; }
  @keyframes heroSettle { from { transform: scale(1.08); } to { transform: scale(1); } }
}

/* ── Gradient transition band (thin decorative strip) ────────── */
.grad-band {
  height: 8px;
  background: linear-gradient(90deg, var(--bg) 0%, var(--leaf-deep) 22%, var(--leaf-soft) 48%, var(--leaf) 72%, var(--bg) 100%);
  opacity: 0.85;
}

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: clamp(72px, 8vw, 124px) var(--pad-x); }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 880px; margin: 0 auto clamp(48px, 6vw, 90px); }
.head-btn { margin-top: 30px; }
.dark { background: var(--bg-2); }

/* ── Sticky manifesto (scroll story beats) ───────────────────── */
.why-sticky { background: var(--bg-2); }
.why-pin { padding: clamp(90px, 11vw, 170px) var(--pad-x); text-align: center; }
.why-beats { max-width: 62ch; margin: 26px auto 0; }
.why-beat {
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.7;
  color: var(--muted);
}
.why-beat em { color: var(--cream); font-style: italic; font-family: var(--font-serif); }
.why-verse {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px); line-height: 1.4;
  color: var(--cream);
}
.why-verse span {
  display: block; margin-top: 14px;
  font-family: var(--font-sans); font-style: normal;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--leaf-soft);
}
.why-beat + .why-beat { margin-top: 18px; }
/* JS + motion-safe: pin the question, cross-fade the beats */
@media (prefers-reduced-motion: no-preference) and (min-height: 500px) {
  html.js .why-sticky .why-track { height: 460vh; }
  html.js .why-sticky .why-pin {
    position: sticky; top: 0; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
  }
  html.js .why-sticky .why-beats { position: relative; min-height: 11em; width: 100%; }
  html.js .why-sticky .why-beat {
    position: absolute; inset: 0 0 auto 0;
    opacity: 0; transform: translateY(18px);
    transition: opacity .5s ease, transform .5s var(--ease-out);
    will-change: opacity, transform;
    margin-top: 0;
  }
  html.js .why-sticky .why-beat.is-active { opacity: 1; transform: none; }
}

/* ── Method: photographic triptych + connector numerals ─────── */
.method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 44px);
  max-width: 1180px; margin: 0 auto;
  position: relative;
}
/* the "Begin -> to -> FINISH" connector, running through the numerals */
.method-tri::before {
  content: ""; position: absolute; z-index: 0;
  top: calc(clamp(56px, 6vw, 84px) / 2);
  left: 16.66%; right: 16.66%; height: 1px;
  background: var(--line);
}
@supports selector(:has(a)) {
  @media (prefers-reduced-motion: no-preference) {
    html.js .method-tri::before { transform: scaleX(0); transform-origin: left center; transition: transform 1.4s var(--ease-out) .35s; }
    html.js .method-tri:has(.method-card.in)::before { transform: scaleX(1); }
  }
}
.method-tri .method-card { text-align: center; position: relative; z-index: 1; }
.method-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 84px); font-weight: 400; line-height: 1;
  color: var(--leaf-soft);
  background: var(--bg); padding: 0 22px;
  margin-bottom: 18px;
}
.method-photo {
  position: relative;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 4.6;
  margin-bottom: 26px;
  border: 1px solid var(--line-soft);
  transition: transform .5s var(--ease-out);
}
.method-photo::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(0deg, rgba(6, 13, 26, 0.55), transparent);
  pointer-events: none;
}
.method-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.method-photo .ui-chip { z-index: 1; transition: transform .5s var(--ease-out); }
.method-card:hover .method-photo { transform: translateY(-4px); }
.method-card:hover .method-photo img { transform: scale(1.03); }
.method-card:hover .ui-chip { transform: translateY(-4px); }
.method-card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; color: var(--cream); }
.step-num { color: var(--leaf-soft); margin-right: 4px; }
.method-card p { color: var(--muted); font-size: 15.5px; max-width: 40ch; }
.method-tri .method-card p { margin: 0 auto; }

/* ── Quote carousel ──────────────────────────────────────────── */
.quote-section { text-align: center; background: var(--bg-2); overflow: hidden; }
.quote-carousel { max-width: 1100px; margin: 0 auto; }
.quote-viewport { overflow: hidden; }
.quote-track {
  display: flex;
  transition: transform .7s var(--ease-out);
}
.quote-slide { flex: 0 0 100%; padding: 0 8px; }
.bigquote {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.6vw, 62px);
  font-weight: 400; line-height: 1.18; letter-spacing: -0.015em;
  max-width: 26ch; margin: 0 auto;
  text-wrap: balance;
  color: var(--cream);
}
.bigquote em { font-style: italic; color: var(--leaf-soft); }
.quote-attr { margin-top: 38px; }
.quote-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: top; margin: 0 auto 14px; }
.quote-attr strong { display: block; font-size: 15px; font-weight: 600; color: var(--cream); }
.quote-attr span { font-size: 13.5px; color: var(--muted); }
.quote-dots { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.quote-dot {
  width: 26px; height: 24px; border-radius: 2px;
  background: rgba(237, 233, 220, 0.4); background-clip: content-box;
  padding: 10px 0; border: none; cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.quote-dot[aria-current="true"] { background: var(--leaf-soft); background-clip: content-box; width: 40px; }
.quote-dot:focus-visible { outline: 2px solid var(--leaf-soft); outline-offset: 3px; }

/* ── Arrow links (Biograph "Learn more ->") ──────────────────── */
.arrow-link {
  display: inline-block; margin-top: 26px;
  text-decoration: none; font-size: 14.5px; font-weight: 500;
  color: var(--cream-soft);
  transition: color .2s ease;
}
.arrow-link:hover { color: var(--leaf-soft); }
.tier-link { margin-top: 28px; }

/* ── Stats ───────────────────────────────────────────────────── */
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid var(--line-soft);
}
.stat { padding: clamp(36px, 4vw, 64px) clamp(24px, 3vw, 52px) 0; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-big {
  font-size: clamp(78px, 9vw, 148px);
  font-weight: 500; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 26px;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.stat-big .plus { color: var(--leaf); }
.stat p { color: var(--muted); font-size: 15.5px; max-width: 36ch; }

@media (prefers-reduced-motion: no-preference) {
  @keyframes orbitSpin { to { transform: rotate(360deg); } }
}

/* ── Expressions carousel (Biograph pillars: glow cards + orbs) ── */
.exp-carousel { position: relative; max-width: 1280px; margin: 0 auto; }
.exp-track {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.exp-track::-webkit-scrollbar { display: none; }
.exp-track:focus-visible { outline: 2px solid var(--leaf-soft); outline-offset: 4px; }
.exp-card {
  position: relative; overflow: hidden;
  flex: 0 0 clamp(min(320px, 84vw), 44vw, 640px);
  scroll-snap-align: center;
  min-height: clamp(540px, 52vw, 740px);
  background: var(--bg-3);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: border-color .3s ease;
}
.exp-card:hover { border-color: rgba(217, 188, 119, 0.4); }
/* ambient glow field: the card's own photo, blown up and heavily blurred —
   photo hues give each card its own color, like Biograph's video cards */
.exp-bg { position: absolute; inset: 0; }
.exp-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.6);
  filter: blur(60px) saturate(1.25);
  opacity: 0.2;
}
.exp-card-glow .exp-bg img { opacity: 0.55; }
.exp-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,20,36,0.8), rgba(10,20,36,0.12) 45%, rgba(10,20,36,0.3));
}
.exp-inner {
  position: relative; display: flex; flex-direction: column;
  height: 100%; min-height: inherit;
  padding: 28px 30px 32px;
}
.exp-top { display: flex; align-items: center; justify-content: space-between; }
.exp-num { font-family: var(--font-serif); font-size: 16px; color: var(--leaf-soft); letter-spacing: 0.12em; }
.exp-tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-soft); }
.exp-callout {
  display: flex; align-items: center; gap: 14px;
  background: rgba(10, 20, 36, 0.35);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; margin-top: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
}
.exp-callout strong { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; color: var(--cream); }
.exp-callout span {
  font-size: 13px; line-height: 1.55; color: var(--cream-soft);
  border-left: 1px solid var(--line); padding-left: 14px;
}
.exp-orb-product {
  width: clamp(210px, 20vw, 290px) !important; height: auto !important;
  aspect-ratio: 3 / 4; border-radius: 18px;
}
.exp-orb-product img {
  border-radius: 18px !important;
  box-shadow: 0 34px 70px -22px rgba(0,0,0,0.7) !important;
  object-fit: cover; object-position: center;
}
.exp-orb {
  position: relative; align-self: center;
  width: clamp(180px, 17vw, 250px); height: clamp(180px, 17vw, 250px);
  margin: auto 0;
  border-radius: 50%;
}
.exp-orb img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  box-shadow: 0 34px 70px -22px rgba(0, 0, 0, 0.65);
}
.exp-ring {
  position: absolute; inset: -13px; border-radius: 50%;
  border: 1px dashed rgba(217, 188, 119, 0.32);
}
.exp-body { text-align: left; margin-top: auto; }
.exp-body h3 { font-size: 23px; font-weight: 600; letter-spacing: -0.01em; color: var(--cream); }
.exp-body p { font-size: 15px; color: var(--cream-soft); margin: 10px 0 0; max-width: 46ch; }
.pillar-status { display: block; margin-top: 18px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.pillar-status.live { color: var(--leaf-soft); }

/* Expression-card CTAs: full button treatment so the action is unmissable */
.exp-body .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid color-mix(in srgb, var(--leaf) 60%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--leaf) 10%, transparent);
  color: var(--leaf-soft);
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.exp-body .arrow-link:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--bg);
}
.exp-inner .pillar-status { color: color-mix(in srgb, var(--cream) 72%, transparent); }
.exp-inner .pillar-status.live { color: var(--leaf-soft); }
.exp-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(14, 27, 47, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  border: 1px solid var(--line); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-out), background .2s ease, opacity .3s ease;
}
.exp-arrow-left { left: 10px; }
.exp-arrow-right { right: 10px; }
.exp-arrow:hover { transform: translateY(-50%) scale(1.08); background: rgba(14, 27, 47, 0.85); }
.exp-arrow:focus-visible { outline: 2px solid var(--leaf-soft); outline-offset: 3px; }
.exp-arrow[disabled] { opacity: 0.3; pointer-events: none; }
.exp-progress {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -14px; width: 200px; height: 2px;
  background: rgba(237, 233, 220, 0.12); border-radius: 2px; overflow: hidden;
}
.exp-progress span {
  display: block; height: 100%; width: 25%;
  background: var(--leaf-soft); border-radius: 2px;
  transition: transform .35s var(--ease-out);
}
@media (prefers-reduced-motion: no-preference) {
  .exp-orb { animation: orbFloat 7s ease-in-out infinite alternate; }
  .exp-card:nth-child(2) .exp-orb { animation-delay: -2.3s; }
  .exp-card:nth-child(3) .exp-orb { animation-delay: -4.1s; }
  .exp-card:nth-child(4) .exp-orb { animation-delay: -5.6s; }
  @keyframes orbFloat { from { transform: translateY(-12px); } to { transform: translateY(12px); } }
  .exp-ring { animation: orbitSpin 40s linear infinite; }
}

/* ── Services marquee ────────────────────────────────────────── */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 18px 0; margin-bottom: clamp(48px, 6vw, 80px);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: inline-flex; }
.marquee-track span {
  display: inline-block; padding-right: 18px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
}
.marquee-track span i { font-style: normal; color: var(--leaf); padding: 0 14px; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 46s linear infinite; }
  @keyframes marquee { to { transform: translateX(-50%); } }
}

/* ── Services grid ───────────────────────────────────────────── */
.svc-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  max-width: 1280px; margin: 0 auto;
}
.svc-grid li {
  background: var(--bg);
  padding: 26px 24px 30px;
  transition: background .3s ease;
}
.svc-grid li:hover { background: var(--bg-3); }
.svc-grid strong { display: block; font-size: 15.5px; font-weight: 600; margin-bottom: 6px; color: var(--cream); }
.svc-grid span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.svc-cta { text-align: center; margin-top: 54px; }

/* ── Full-bleed sections ─────────────────────────────────────── */
.bleed {
  position: relative; overflow: hidden;
  min-height: 82vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
#clinic .bleed-img { object-position: 65% center; }
.closing .bleed-img { object-position: center 22%; }
.bleed-shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,20,36,0.92), rgba(10,20,36,0.5) 50%, rgba(10,20,36,0.55));
}
.bleed-inner { position: relative; padding: 120px var(--pad-x); max-width: 860px; }
.bleed-inner p { margin-top: 22px; font-size: clamp(16px, 1.6vw, 19px); color: var(--cream-soft); }
.bleed-inner .cta-row { margin-top: 36px; justify-content: center; }
.closing {
  min-height: 88vh;
  margin: 0 14px 14px;
  border-radius: 28px;
}

/* ── Tiers ───────────────────────────────────────────────────── */
.tier-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 1080px; margin: 0 auto;
}
.tier {
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  padding: clamp(30px, 3.6vw, 52px);
  text-align: center;
}
.tier-dark {
  background: linear-gradient(160deg, #2A2110 0%, #1A1508 100%);
  border-color: rgba(217, 188, 119, 0.28);
}
.tier h3 { font-size: clamp(26px, 2.6vw, 34px); font-weight: 500; letter-spacing: -0.02em; color: var(--cream); }
.tier-tag { font-size: 13.5px; color: var(--muted); margin: 8px 0 26px; }
.tier-chip { width: 58px; height: 58px; border-radius: 15px; overflow: hidden; margin: 0 auto 20px; border: 1px solid var(--line-soft); }
.tier-chip img { width: 100%; height: 100%; object-fit: cover; }
.tier-btn { display: block; }
.tier-includes { text-align: left; font-size: 13.5px; font-weight: 600; margin: 32px 0 4px; color: var(--cream-soft); }
.checklist { list-style: none; text-align: left; }
.checklist li {
  position: relative; padding: 10px 0 10px 30px;
  font-size: 15px; color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: ""; position: absolute; left: 2px; top: 17px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--leaf); border-bottom: 2px solid var(--leaf);
  transform: rotate(-45deg);
}
.tier-dark .checklist li::before { border-color: var(--leaf-soft); }

/* ── Story ───────────────────────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.story-text h2 { margin-bottom: 28px; }
.story-text p:not(.eyebrow):not(.signature) { color: var(--muted); margin-bottom: 20px; max-width: 56ch; }
.story-text strong { color: var(--cream); }
.signature {
  margin-top: 36px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 24px; color: var(--leaf-soft);
}
.signature span {
  display: block; font-family: var(--font-sans); font-style: normal;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}
.story-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); }
.story-photo img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.photo-stat {
  position: absolute; left: 24px; bottom: 58px;
  font-size: clamp(56px, 5.5vw, 92px); font-weight: 500; letter-spacing: -0.03em;
  line-height: 1; color: var(--cream);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.photo-stat i { font-style: normal; color: var(--leaf-soft); }
.photo-stat em {
  display: block; font-style: normal;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-soft); margin-top: 8px;
}
.story-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 26px 22px;
  background: linear-gradient(0deg, rgba(6,13,26,0.85), transparent);
  color: var(--cream);
  font-family: var(--font-serif); font-style: italic; font-size: 16px;
}

/* ── Light rhythm-break sections (dark/light pacing) ─────────── */
.section-light { background: #F1EDE2; }
.section-light h1, .section-light h2, .section-light h3 { color: #16202E; }
.section-light .eyebrow { color: #7A6224; }
.section-light .section-sub { color: #4E5566; }
.section-light .section-sub em { color: #16202E; }
/* method on light */
.section-light .method-num { color: #8A6D26; background: #F1EDE2; }
.section-light.section .method-tri::before { background: rgba(16, 27, 41, 0.16); }
.section-light .method-card p { color: #4E5566; }
.section-light .method-photo { border-color: rgba(16, 27, 41, 0.12); }
.section-light .btn-ghost-light { border-color: rgba(16, 27, 41, 0.35); color: #16202E; }
.section-light .btn-ghost-light:hover { background: rgba(16, 27, 41, 0.07); }
/* stats on light */
.section-light .stat-grid { border-top-color: rgba(16, 27, 41, 0.14); }
.section-light .stat { border-left-color: rgba(16, 27, 41, 0.14); }
.section-light .stat-big { color: #16202E; }
.section-light .stat-big .plus { color: #997B33; }
.section-light .stat p { color: #4E5566; }
/* gallery on light */
.section-light .cgal-hint { color: #6E7684; }
.section-light .cgal-card { border-color: rgba(16, 27, 41, 0.12); background: #E7E2D3; }
/* faq on light */
.section-light .faq-list details { border-bottom-color: rgba(16, 27, 41, 0.14); }
.section-light .faq-list summary { color: #16202E; }
.section-light .faq-list summary:hover { color: #7A6224; }
.section-light .faq-icon::before, .section-light .faq-icon::after { background: #7A6224; }
.section-light .faq-list details p { color: #4E5566; }
.section-light .faq-list details a { color: #7A6224; }
.section-light .inline-link { color: #7A6224; }
.section-light .eyebrow { color: #7A6224; }
.section-light h2 { color: #16202E; }
.section-light .story-text p:not(.eyebrow):not(.signature) { color: #4E5566; }
.section-light .story-text strong { color: #16202E; }
.section-light .signature { color: #997B33; }
.section-light .signature span { color: #55606F; }
.section-light .story-photo { border-color: rgba(16, 27, 41, 0.12); }
.inline-link { color: var(--leaf-soft); }
.svc-compare { display: block; margin-top: 22px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line-soft); }
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 26px 4px;
  font-size: clamp(16px, 1.7vw, 19px); font-weight: 500;
  color: var(--cream);
  transition: color .2s ease;
}
.faq-list summary:hover { color: var(--leaf-soft); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--leaf-soft);
  transition: transform .3s ease;
}
.faq-icon::before { left: 0; right: 0; top: 7px; height: 2px; }
.faq-icon::after { top: 0; bottom: 0; left: 7px; width: 2px; }
details[open] .faq-icon::after { transform: scaleY(0); }
.faq-list details p { padding: 0 4px 28px; color: var(--muted); max-width: 64ch; }
.faq-list details a { color: var(--leaf-soft); }

/* ── Secondary pages: page hero, comparison table, FAQ cats ──── */
.page-hero { padding-top: clamp(140px, 16vw, 210px); }
.page-title { font-size: clamp(36px, 4.8vw, 64px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.06; color: var(--cream); }

.cmp-wrap { max-width: 980px; margin: 0 auto; }
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table thead th {
  position: sticky; top: 64px; z-index: 10;
  background: var(--bg);
  padding: 18px 14px; text-align: center;
  font-size: 16px; font-weight: 600; color: var(--cream);
  border-bottom: 1px solid var(--line);
}
.cmp-table thead th span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.cmp-table thead th.cmp-feature { text-align: left; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.cmp-table thead th.cmp-dark { background: #1E1809; color: var(--leaf-soft); border-radius: 14px 14px 0 0; }
.cmp-cat th {
  padding: 34px 14px 12px; text-align: left;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--leaf-soft);
}
.cmp-table tbody th[scope="row"] {
  padding: 14px; text-align: left; font-weight: 400;
  font-size: 15px; color: var(--cream-soft);
  border-bottom: 1px solid var(--line-soft);
  width: 46%;
}
.cmp-table tbody td {
  padding: 14px; text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.cmp-table tbody td.cmp-dark { background: rgba(42, 33, 16, 0.35); }
.ck {
  display: inline-block; width: 15px; height: 9px;
  border-left: 2px solid var(--leaf); border-bottom: 2px solid var(--leaf);
  transform: rotate(-45deg) translateY(-2px);
}
.dash { color: var(--muted); }
.cmp-note { margin-top: 34px; text-align: center; font-size: 14.5px; color: var(--muted); }
.cmp-note a { color: var(--leaf-soft); }

.faq-cats { max-width: 1080px; margin: 0 auto; }
.faq-cat {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 4vw, 70px);
  padding: clamp(36px, 4.5vw, 60px) 0;
  border-top: 1px solid var(--line-soft);
}
.faq-cat-label span { font-family: var(--font-serif); font-size: 15px; color: var(--leaf-soft); letter-spacing: 0.1em; display: block; margin-bottom: 10px; }
.faq-cat-label h2 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -0.01em; }
@media (max-width: 820px) {
  .faq-cat { grid-template-columns: 1fr; gap: 10px; }
  .cmp-table thead th { top: 58px; font-size: 14px; padding-left: 8px; padding-right: 8px; }
  .cmp-table tbody th[scope="row"] { font-size: 13.5px; padding-left: 8px; padding-right: 8px; }
  .cmp-table tbody td { padding-left: 8px; padding-right: 8px; }
}

/* ── Expression pages: journal, phases, guidebook, hiw, team ── */
.journal-product {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 44px);
  max-width: 860px; margin: 0 auto;
  align-items: center;
}
.jprod {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 40px 80px -34px rgba(0,0,0,0.7);
  transition: transform .5s var(--ease-out);
}
.jprod img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jprod-lift { transform: translateY(-14px); }
.jprod:hover { transform: translateY(-20px); }
@media (max-width: 640px) {
  .journal-product { grid-template-columns: 1fr; max-width: 380px; }
  .jprod-lift { transform: none; }
}

.journal-stage {
  max-width: 560px; margin: 0 auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
}
.journal-paper {
  background: #FBF8F1; color: #1E2A3C;
  border-radius: 6px; padding: 42px 38px;
  border: 1px solid #E3DCC9;
  box-shadow: 12px 0 0 -6px #EFE9DA, 13px 0 0 -5px #D8D0BC;
  transform: rotate(-1.2deg);
}
.jp-month { font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: #6F5A22; margin-bottom: 6px; font-weight: 600; }
.jp-theme { font-family: var(--font-serif); font-size: 24px; margin-bottom: 20px; }
.jp-verse { font-family: var(--font-serif); font-style: italic; font-size: 15px; line-height: 1.7; color: #4A5568; padding-bottom: 16px; border-bottom: 1px solid #E3DCC9; margin-bottom: 18px; }
.jp-verse span { display: block; font-style: normal; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #6F5A22; margin-top: 8px; font-weight: 600; }
.jp-prompt { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.jp-lines { border-bottom: 1px solid #DAD2BE; height: 28px; }
.jp-challenge { margin-top: 22px; background: #F2EDDF; border-radius: 6px; padding: 14px 16px; font-size: 12.5px; line-height: 1.6; color: #4A5568; }
.jp-challenge strong { color: #6F5A22; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-bottom: 5px; }

.arc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  max-width: 1080px; margin: 0 auto;
}
.phase-card {
  background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
}
.phase-card h2 { font-size: clamp(28px, 3vw, 40px); margin: 10px 0 14px; }
.phase-live { background: linear-gradient(160deg, #2A2110 0%, #1A1508 100%); border-color: rgba(217, 188, 119, 0.28); }
.ph-days { font-family: var(--font-serif); font-size: 14px; color: var(--leaf-soft); letter-spacing: 0.1em; }
.phase-card p { color: var(--muted); font-size: 15px; }

.day-card {
  max-width: 560px; margin: 0 auto;
  border: 1px solid rgba(217, 188, 119, 0.3); border-radius: var(--radius);
  padding: 30px 34px; background: rgba(42, 33, 16, 0.25);
}
.day-card ul { list-style: none; }
.day-card li { position: relative; padding: 12px 0 12px 30px; font-size: 16px; color: var(--cream-soft); border-bottom: 1px solid var(--line-soft); }
.day-card li:last-child { border-bottom: none; }
.day-card li::before { content: "—"; position: absolute; left: 0; color: var(--leaf); }

.excerpt-card {
  max-width: 520px; margin: 0 auto;
  background: var(--bg-2); border: 1px solid rgba(217, 188, 119, 0.3); border-radius: var(--radius);
  padding: clamp(34px, 4vw, 52px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}
.ex-label { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--leaf-soft); margin-bottom: 24px; font-weight: 600; }
.excerpt-card p { font-family: var(--font-serif); font-size: 18px; line-height: 1.85; color: var(--cream); }
.excerpt-card p + p { margin-top: 14px; }
.ex-sig { margin-top: 28px; font-family: var(--font-serif); font-style: italic; color: var(--leaf-soft); font-size: 16px; text-align: right; }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 100px);
  max-width: 1180px; margin: 0 auto 30px;
}
.two-col h2 { margin: 6px 0 20px; font-size: clamp(26px, 3vw, 40px); }
.col-copy { color: var(--muted); font-size: 16px; line-height: 1.8; }

.hiw-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  max-width: 1180px; margin: 0 auto clamp(60px, 8vw, 110px);
}
.hiw-row:last-child { margin-bottom: 0; }
.hiw-flip .hiw-photo { order: 2; }
.hiw-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); aspect-ratio: 4 / 3.2; }
.hiw-photo img { width: 100%; height: 100%; object-fit: cover; }
.hiw-num { font-family: var(--font-serif); font-size: 20px; color: var(--leaf-soft); }
.hiw-text h2 { margin: 8px 0 18px; }
.hiw-text p { color: var(--muted); font-size: 16.5px; line-height: 1.8; max-width: 50ch; }

.team-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 26px);
  max-width: 1280px; margin: 0 auto;
}
.team-grid li {
  background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 20px; text-align: center;
  transition: border-color .3s ease;
}
.team-grid li:hover { border-color: rgba(217, 188, 119, 0.4); }
.tm-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 16px;
  background: rgba(217, 188, 119, 0.14);
  color: var(--leaf-soft); font-weight: 600; font-size: 17px; letter-spacing: 0.05em;
  overflow: hidden;
}
.tm-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-grid strong { display: block; font-size: 15px; font-weight: 600; color: var(--cream); }
.team-grid li > span:last-child { font-size: 12.5px; color: var(--muted); }

@media (max-width: 1020px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) {
  .arc-grid, .two-col, .hiw-row { grid-template-columns: 1fr; }
  .hiw-flip .hiw-photo { order: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Circular 3D clinic gallery (ported from a shadcn React component) ── */
.cgal-section { overflow: hidden; }
.cgal { max-width: 1280px; margin: 0 auto; }
.cgal-viewport {
  position: relative;
  height: clamp(360px, 46vw, 470px);
  perspective: 2600px;
  overflow: hidden;
}
/* Fallback (no JS / reduced motion): a horizontal scroll strip */
.cgal-stage {
  display: flex; gap: 18px; height: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 max(0px, calc(50% - 150px));
  scrollbar-width: none;
}
.cgal-stage::-webkit-scrollbar { display: none; }
.cgal-card {
  position: relative;
  flex: 0 0 clamp(210px, 25vw, 290px); height: 100%;
  scroll-snap-align: center;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-3);
}
.cgal-card img { width: 100%; height: 100%; object-fit: cover; }
.cgal-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 18px 16px;
  background: linear-gradient(0deg, rgba(6,13,26,0.9), transparent);
  text-align: left;
}
.cgal-card figcaption strong { display: block; font-size: 16px; font-weight: 600; color: var(--cream); }
.cgal-card figcaption span { font-size: 12.5px; color: var(--cream-soft); }
.cgal-hint {
  text-align: center; margin-top: 26px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
/* JS-upgraded 3D cylinder */
html.js .cgal-stage.is-3d {
  display: block; overflow: visible; padding: 0;
  transform-style: preserve-3d;
  transform: rotateY(var(--rot, 0deg));
}
html.js .cgal-stage.is-3d .cgal-card {
  position: absolute; left: 50%; top: 50%;
  width: var(--cw, 260px); height: var(--ch, 360px);
  margin-left: calc(var(--cw, 260px) / -2);
  margin-top: calc(var(--ch, 360px) / -2);
  transform: rotateY(calc(var(--i) * var(--step, 36deg))) translateZ(var(--r, 430px));
  transition: opacity .3s linear;
  cursor: grab;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.6);
}
html.js .cgal-stage.is-3d.grabbing { cursor: grabbing; }
html.js .cgal-stage.is-3d.grabbing .cgal-card { cursor: grabbing; }

/* ── Footer ──────────────────────────────────────────────────── */
footer { background: var(--bg-footer); padding: clamp(64px, 8vw, 110px) var(--pad-x) 40px; }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  max-width: 1280px; margin: 0 auto 70px;
}
.foot-brand blockquote {
  margin-top: 26px; max-width: 34ch;
  font-family: var(--font-serif); font-style: italic;
  font-size: 16.5px; line-height: 1.7; color: var(--muted);
}
.foot-brand cite { display: block; font-family: var(--font-sans); font-style: normal; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--leaf-soft); margin-top: 12px; }
.foot-col h4 { font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--leaf-soft); margin-bottom: 18px; }
.foot-col a { display: block; text-decoration: none; color: var(--muted); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--cream); }
.colophon {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em;
}

/* ── Rotating seal badge (fixed, right edge) ─────────────────── */
.seal {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
  width: 82px; height: 82px; z-index: 90;
  color: var(--leaf-soft);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft); border-radius: 50%;
  transition: transform .3s var(--ease-out), color .2s ease;
}
.seal:hover { transform: translateY(-50%) scale(1.07); color: var(--cream); }
.seal:focus-visible { outline: 2px solid var(--leaf-soft); outline-offset: 3px; }
.seal svg { width: 100%; height: 100%; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .seal-spin { transform-origin: 50px 50px; animation: orbitSpin 26s linear infinite; }
}
@media (max-width: 1020px) { .seal { display: none; } }

/* ── Luxury accents: border beam, orbit runner, spotlight ────── */
@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.beam { position: relative; }
.beam::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--beam-angle),
    transparent 0deg, transparent 300deg,
    rgba(217, 188, 119, 0.9) 335deg, #F3E4BC 348deg,
    rgba(217, 188, 119, 0.9) 356deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .beam::before { animation: beamSpin 7s linear infinite; }
  @keyframes beamSpin { to { --beam-angle: 360deg; } }
}

/* small gold dot orbiting each expression orb — a runner on the track */
.orb-runner {
  position: absolute; left: 50%; top: 50%;
  width: 9px; height: 9px; margin: -4.5px;
  border-radius: 50%;
  background: #F3E4BC;
  box-shadow: 0 0 12px 2px rgba(217, 188, 119, 0.8);
  transform: rotate(0deg) translateY(calc(clamp(180px, 17vw, 250px) / -2 - 13px));
}
@media (prefers-reduced-motion: no-preference) {
  .orb-runner { animation: runnerOrbit 12s linear infinite; }
  @keyframes runnerOrbit {
    from { transform: rotate(0deg) translateY(calc(clamp(180px, 17vw, 250px) / -2 - 13px)); }
    to { transform: rotate(360deg) translateY(calc(clamp(180px, 17vw, 250px) / -2 - 13px)); }
  }
}

/* cursor spotlight on cards (hover-capable pointers only) */
@media (hover: hover) and (pointer: fine) {
  .spot { position: relative; overflow: hidden; }
  .spot::after {
    content: ""; position: absolute; inset: 0;
    border-radius: inherit;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%),
      rgba(217, 188, 119, 0.09), transparent 65%);
    opacity: 0; transition: opacity .4s ease;
    pointer-events: none;
  }
  .spot:hover::after { opacity: 1; }
}

/* ── Entrance animations (JS-gated so no-JS sees everything) ── */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0; transform: translateY(26px);
    filter: blur(8px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
  }
  html.js .reveal.in { opacity: 1; transform: none; filter: blur(0); }
  html.js .d1 { transition-delay: .1s; }
  html.js .d2 { transition-delay: .2s; }
  html.js .d3 { transition-delay: .3s; }
  /* Biograph-style scale-settle for imagery */
  html.js .reveal-zoom { opacity: 0; transform: scale(1.14); transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out); }
  html.js .reveal-zoom.in { opacity: 1; transform: scale(1); }
  /* parallax targets drift via JS transform — keep them GPU-composited */
  html.js [data-parallax] { will-change: transform; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .menu-btn { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line-soft);
    padding: 8px 0 14px;
  }
  .nav.open { background: var(--bg-2); }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 13px var(--pad-x); font-size: 16px; }
  .method-grid { grid-template-columns: 1fr; max-width: 480px; }
  .stat-grid { grid-template-columns: 1fr; border-top: none; }
  .stat { border-left: none; border-top: 1px solid var(--line-soft); padding-left: 0; }
  .stat:first-child { border-top: none; padding-top: 0; }
  .tier-grid { grid-template-columns: 1fr; max-width: 560px; }
  .story-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; flex-wrap: wrap; gap: 18px 0; }
  .hstat:first-child { padding-left: 0; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .colophon { flex-direction: column; }
}
@media (max-width: 480px) {
  /* Header CTA won't fit beside logo + hamburger on small phones;
     booking stays reachable via hero, services, tier, and closing CTAs. */
  .nav-cta .btn { display: none; }
  }
