/* ============================================================
   ECHELON — Premium online coaching
   Design system: matte black + matte gold, ascending "echelon" motif
   Fonts: Archivo Expanded (display), Manrope (body), JetBrains Mono (data)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --ink:        #0d0d0d;   /* matte black base */
  --ink-deep:   #0a0a0a;   /* deepest wells */
  --surface:    #131313;   /* subtle grey section */
  --card:       #161616;   /* elevated card */
  --card-2:     #1c1c1c;   /* raised inside card */
  --line:       rgba(245,243,239,0.09);
  --line-strong:rgba(245,243,239,0.16);

  /* text */
  --paper:      #f5f3ef;   /* warm off-white */
  --paper-dim:  #cfccc4;
  --muted:      #9c9a94;
  --faint:      #67655f;

  /* gold — matte, not yellow */
  --gold:       #c6a15b;
  --gold-soft:  #d9bc82;
  --gold-deep:  #a9823e;
  --gold-grad:  linear-gradient(135deg, #e4cd97 0%, #c6a15b 46%, #9a7333 100%);
  --gold-glow:  rgba(198,161,91,0.16);

  /* type */
  --display: "Sora", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;
  --mono:    "Inter", system-ui, sans-serif;

  /* rhythm */
  --r:      18px;          /* card radius */
  --r-lg:   22px;
  --r-pill: 999px;
  --pad:    clamp(20px, 5.5vw, 40px);
  --maxw:   1200px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-lux: cubic-bezier(.16,1,.3,1);      /* expo-out: fast start, long silky settle */
  --ease-spring: cubic-bezier(.34,1.4,.64,1); /* gentle overshoot for small accents */
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: .1px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,video,svg { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
[hidden] { display: none !important; }
::selection { background: var(--gold); color: #120e05; }

/* gentle page load-in + anchor offset so #targets clear the fixed header */
[id] { scroll-margin-top: 92px; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn .7s var(--ease-lux) both; }
@media (prefers-reduced-motion: reduce) { body { animation: none; } }

/* atmospheric grain + vignette on the whole page */
body::before {
  content:""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(198,161,91,.05), transparent 60%),
    radial-gradient(100% 60% at 50% 120%, rgba(0,0,0,.6), transparent 60%);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { position: relative; z-index: 1; padding-block: clamp(64px, 12vw, 128px); }
.section--tight { padding-block: clamp(48px, 8vw, 88px); }
/* Colored sections fade to the base ink at both edges so the page reads as one
   continuous premium surface rather than a stack of hard-edged slides. */
.section--surface { background: linear-gradient(180deg, var(--ink) 0%, var(--surface) 22%, var(--surface) 78%, var(--ink) 100%); }
.section--deep { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 22%, var(--ink-deep) 78%, var(--ink) 100%); }
.divide-top { border-top: 1px solid var(--line); }

/* ---------- Type ---------- */
.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: none;
}
h1 { font-size: clamp(2.6rem, 10vw, 5.4rem); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 6.4vw, 3.3rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.2rem, 4.5vw, 1.55rem); letter-spacing: -0.02em; }
.lead { font-size: clamp(1.02rem, 3.4vw, 1.22rem); color: var(--paper-dim); line-height: 1.6; max-width: 56ch; }
p { color: var(--paper-dim); }
.muted { color: var(--muted); }
strong { color: var(--paper); font-weight: 700; }
.gold-text { color: var(--gold-soft); }

/* eyebrow = the "tier" marker, our signature device */
.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--mono); font-size: .7rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--gold); opacity: .8;
}
.eyebrow--plain::before { content: none; }

.section-head { max-width: 62ch; }
.section-head h2 { margin-top: .7rem; }
.section-head .lead { margin-top: 1.1rem; }

/* small chevron mark — echoes the logo, used as accent */
.chev { display:inline-block; width:.62em; height:.62em; border-right:2px solid var(--gold); border-bottom:2px solid var(--gold); transform: rotate(-135deg); }

/* ---------- Buttons ---------- */
.btn {
  --bh: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: var(--bh); padding: 0 1.6rem;
  border-radius: var(--r-pill);
  font-family: var(--body); font-weight: 700; font-size: .95rem;
  letter-spacing: .01em; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }

.btn--gold {
  color: #140f04; background: var(--gold-grad);
  box-shadow: 0 8px 24px -10px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(198,161,91,.5), inset 0 1px 0 rgba(255,255,255,.4); }

.btn--ghost { color: var(--paper); border: 1px solid var(--line-strong); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }

.btn--block { display: flex; width: 100%; }
.btn--lg { --bh: 60px; font-size: 1rem; padding-inline: 2rem; }

.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn .wa-ico { width: 18px; height: 18px; flex: none; }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200; background: var(--gold-grad); box-shadow: 0 0 12px var(--gold-glow); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; top: 0; inset-inline: 0; z-index: 120;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { width: 28px; height: 28px; object-fit: contain; }
.brand__word { font-family: var(--display); font-weight: 600; letter-spacing: .3em; font-size: .9rem; }
.brand__logo { height: 30px; width: auto; display: block; transition: transform .3s var(--ease); }
.brand:hover .brand__logo { transform: translateY(-1px) scale(1.05); }
.nav__links { display: none; }
.nav__cta { display: none; }

.burger { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; margin-right: -8px; }
.burger span { width: 22px; height: 2px; background: var(--paper); transition: transform .3s var(--ease), opacity .2s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile full-screen menu */
.drawer {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .5s var(--ease), opacity .4s, visibility .4s;
}
.drawer.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer__links { display: flex; flex-direction: column; }
.drawer__links a {
  font-family: var(--body); text-transform: none; font-weight: 500;
  font-size: 1.45rem; line-height: 1; letter-spacing: -0.01em;
  color: var(--paper-dim); display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .28s var(--ease);
}
.drawer__links a:first-child { border-top: 1px solid var(--line); }
.drawer__links a .idx { display: none; }
.drawer__links a::after { content: "\2192"; color: var(--gold); font-size: 1rem; opacity: 0; transform: translateX(-8px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.drawer__links a:hover, .drawer__links a[aria-current="page"] { color: var(--paper); padding-left: .5rem; }
.drawer__links a:hover::after, .drawer__links a[aria-current="page"]::after { opacity: 1; transform: none; }
.drawer__links a[aria-current="page"] { color: var(--gold-soft); }
.drawer__foot { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.drawer__meta { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

/* mobile sticky book bar */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(0deg, rgba(8,8,8,.96), rgba(8,8,8,.72) 70%, transparent);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.book-bar.is-visible { transform: translateY(0); }

/* floating WhatsApp button — the small "Contact via WhatsApp" popup, site-wide */
.wa-fab {
  position: fixed; right: 20px; bottom: 22px; z-index: 95;
  display: inline-flex; align-items: center; gap: .55em;
  padding: 12px 18px; border-radius: 999px;
  background: var(--gold-grad); color: #140f04; font-weight: 700;
  font-size: .88rem; letter-spacing: .01em; text-decoration: none;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.7), 0 0 0 1px rgba(198,161,91,.35);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: waFabIn .5s var(--ease) both; animation-delay: .9s;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(0,0,0,.75), 0 0 0 1px rgba(198,161,91,.55); }
.wa-fab svg { width: 22px; height: 22px; flex: none; }
@keyframes waFabIn { from { opacity: 0; transform: translateY(14px) scale(.9); } to { opacity: 1; transform: none; } }
@media (max-width: 959px) {
  .wa-fab { bottom: 84px; right: 16px; padding: 0; width: 52px; height: 52px; justify-content: center; }
  .wa-fab .wa-fab__label { display: none; }
}
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 68px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg video, .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
/* cinematic placeholder atmosphere when no footage present */
.hero__bg--placeholder {
  background:
    radial-gradient(90% 60% at 70% 20%, rgba(198,161,91,.12), transparent 55%),
    radial-gradient(120% 80% at 20% 90%, rgba(198,161,91,.06), transparent 55%),
    linear-gradient(180deg, #101010, #0a0a0a 60%, #060606);
}
/* diagonal texture removed for a cleaner, more minimal hero */
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,8,8,.55) 0%, rgba(8,8,8,.25) 40%, rgba(8,8,8,.82) 100%); }
.hero__ghost { position: absolute; z-index: 1; right: -6vw; top: 8%; font-family: var(--display); font-weight: 900;
  font-size: 42vw; line-height: .8; color: rgba(255,255,255,.02); letter-spacing: -.04em; pointer-events: none; user-select: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(90px, 16vw, 130px); }

/* hero load-in cascade */
@keyframes heroUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
.hero .eyebrow   { animation: heroUp 1s var(--ease-lux) .2s both; }
.hero h1         { animation: heroUp 1.2s var(--ease-lux) .34s both; }
.hero .hero__sub { animation: heroUp 1.2s var(--ease-lux) .52s both; }
.hero .hero__cta { animation: heroUp 1.2s var(--ease-lux) .68s both; }
.hero .hero__scroll { animation: heroUp 1.3s var(--ease-lux) .88s both; }
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero h1, .hero .hero__sub, .hero .hero__cta, .hero .hero__scroll { animation: none; }
}
.hero h1 { margin-top: 1.1rem; }
.hero h1 .em { display: block; color: var(--gold-soft); }
.hero__sub { margin-top: 1.4rem; }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__scroll { margin-top: 2.4rem; display: inline-flex; align-items: center; gap: .6rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.hero__scroll .dot { width: 22px; height: 34px; border: 1.5px solid var(--line-strong); border-radius: 12px; position: relative; }
.hero__scroll .dot::after { content:""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0; transform: translate(-50%,0)} 30%{opacity:1} 70%{opacity:1; transform: translate(-50%,10px)} 100%{opacity:0; transform: translate(-50%,12px)} }

/* ---------- Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stats--dual { grid-template-columns: repeat(2,1fr) !important; max-width: 460px; }
.stat { background: var(--card); padding: clamp(20px,5vw,32px) clamp(16px,4vw,26px); }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem,9vw,3.2rem); line-height: 1; letter-spacing: -.02em; }
.stat__num .suf { color: var(--gold-soft); font-size: .46em; font-weight: 600; margin-left: .08em; vertical-align: .18em; }
.stat__label { margin-top: .5rem; font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: .18em; font-size: .82rem; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 16px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(22px,5vw,30px);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card__ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: rgba(198,161,91,.1); border: 1px solid rgba(198,161,91,.22); color: var(--gold-soft); margin-bottom: 1.1rem; }
.card__ico svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .96rem; }

/* Method = ascending "echelon" stair (signature) */
.method { counter-reset: tier; }
.method .card { position: relative; overflow: hidden; }
.method .card__tier { position: absolute; top: clamp(18px,4vw,24px); right: clamp(18px,4vw,24px); font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; color: var(--faint); }
.method .card::after { content:""; position: absolute; left:0; top:0; bottom:0; width: 3px; background: var(--gold-grad); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); }
.method .card:hover::after { transform: scaleY(1); }

/* ---------- Coaching service cards (Lifestyle / Competition / Photoshoot) ---------- */
.svc-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.svc-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s; }
.svc-card:hover { transform: translateY(-6px); border-color: rgba(198,161,91,.4); }
.svc-card__img { position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: linear-gradient(155deg,#242424,#101010); }
.svc-card:nth-child(2) .svc-card__img { background: linear-gradient(155deg,#241f14,#100d07); }
.svc-card:nth-child(3) .svc-card__img { background: linear-gradient(155deg,#1c2019,#0b0d0a); }
.svc-card__img::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,6,6,.88) 100%); }
.svc-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-card__tag { position: absolute; left: 16px; top: 16px; z-index: 2; font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: rgba(8,8,8,.55); border: 1px solid var(--line); padding: .35em .7em; border-radius: 999px; }
.svc-card__title { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem,4vw,1.6rem); letter-spacing: -0.02em; color: var(--paper); }
.svc-card__body { padding: clamp(18px,4vw,24px); }
.svc-card__body p { font-size: .95rem; }
.svc-card__link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-weight: 600; font-size: .9rem; color: var(--gold-soft); }
.svc-card__link svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.svc-card:hover .svc-card__link svg { transform: translateX(3px); }
@media (min-width: 860px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }

/* ---------- Transformation cards + before/after slider ---------- */
.transform-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.ba { position: relative; aspect-ratio: 4/5; overflow: hidden; user-select: none; touch-action: pan-y; }
.ba__pane { position: absolute; inset: 0; display: grid; place-items: center; }
.ba__pane figcaption, .ba__tag {
  position: absolute; top: 14px; font-family: var(--mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .3em .6em; border-radius: 6px; background: rgba(8,8,8,.6); backdrop-filter: blur(4px); border: 1px solid var(--line); z-index: 4;
}
.ba__tag--before { left: 14px; color: var(--paper-dim); }
.ba__tag--after  { right: 14px; color: var(--gold-soft); }
.ba__after { clip-path: inset(0 0 0 50%); z-index: 2; }
.ba__before { z-index: 1; }
/* placeholder visuals for panes (drop real <img> in to replace) */
.ba__ph { position: absolute; inset: 0; }
.ba__ph--before { background: linear-gradient(160deg,#242424,#141414); }
.ba__ph--after  { background: linear-gradient(160deg,#2a2418,#17130a); }
.ba__ph span { position:absolute; inset:0; display:grid; place-items:center; font-family: var(--display); font-weight: 800; font-size: 3rem; color: rgba(255,255,255,.04); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); z-index: 5; transform: translateX(-1px); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: #140f04; box-shadow: 0 6px 20px -6px rgba(0,0,0,.7); z-index: 6; }
.ba__grip svg { width: 20px; height: 20px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 7; margin: 0; }
.ba__range:focus-visible + .ba__handle { outline: 2px solid var(--paper); outline-offset: 4px; }

.transform-card__body { padding: clamp(18px,4.5vw,24px); }
.transform-card__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-block: .4rem .9rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--muted); }
.transform-card__meta b { color: var(--gold-soft); font-weight: 500; }
.transform-card blockquote { color: var(--paper-dim); font-size: .96rem; line-height: 1.6; border-top: 1px solid var(--line); padding-top: .9rem; }
.name-row { display: flex; align-items: center; justify-content: space-between; }
.name-row h3 { letter-spacing: 0; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px,5vw,30px); }
.quote-card .stars { font-size: .85rem; }
.quote-card blockquote { margin-top: .9rem; font-size: 1.02rem; line-height: 1.6; color: var(--paper); }
.quote-card__who { margin-top: 1.2rem; display: flex; align-items: center; gap: .8rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: #140f04; font-family: var(--display); font-weight: 800; font-size: .95rem; }
.quote-card__who .n { font-weight: 700; color: var(--paper); font-size: .92rem; }
.quote-card__who .r { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }

/* video testimonial */
.video-card { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; background: linear-gradient(160deg,#1e1e1e,#0f0f0f); display: grid; place-items: center; }
.video-card__play { width: 66px; height: 66px; border-radius: 50%; background: rgba(198,161,91,.14); border: 1px solid rgba(198,161,91,.4); display: grid; place-items: center; color: var(--gold-soft); transition: transform .25s var(--ease), background .25s; }
.video-card:hover .video-card__play { transform: scale(1.08); background: rgba(198,161,91,.24); }
.video-card__label { position: absolute; left: 16px; bottom: 16px; }
.video-card__name { font-weight: 700; }
.video-card__sub { font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

/* ---------- Video testimonials (vertical) ---------- */
.vt-grid { display: grid; gap: 14px; grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
.vt-card { position: relative; aspect-ratio: 9/16; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #000;
  transition: transform .35s var(--ease), border-color .35s; }
.vt-card:hover { border-color: var(--line-strong); }
.vt-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vt-card::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,6,6,.35) 0%, transparent 26%, transparent 58%, rgba(6,6,6,.78) 100%);
  transition: opacity .3s var(--ease); }
.vt-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 62px; aspect-ratio: 1; border-radius: 50%; background: var(--gold-grad); color: #140f04; display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.7); transition: transform .25s var(--ease), opacity .3s; }
.vt-card__play svg { width: 34%; height: 34%; margin-left: 8%; }
.vt-card:hover .vt-card__play { transform: translate(-50%,-50%) scale(1.08); }
.vt-card__label { position: absolute; left: 14px; bottom: 14px; z-index: 3; transition: opacity .3s; }
.vt-card__name { display: block; font-weight: 700; }
.vt-card__sub { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.vt-card.is-playing::after, .vt-card.is-playing .vt-card__play, .vt-card.is-playing .vt-card__label { opacity: 0; pointer-events: none; }
@media (min-width: 720px) { .vt-grid { grid-template-columns: repeat(3,1fr); max-width: 760px; } }

/* video testimonial strip — horizontal scroll-snap, scales to 10-15 clips */
.strip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.strip-head .section-head { margin: 0; }
.strip-nav { display: flex; gap: 8px; flex: none; padding-bottom: 4px; }
.strip-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--card); color: var(--paper);
  display: grid; place-items: center; cursor: pointer; transition: border-color .2s, color .2s, opacity .2s; }
.strip-btn svg { width: 20px; height: 20px; }
.strip-btn:hover { border-color: var(--gold); color: var(--gold-soft); }
.strip-btn[disabled] { opacity: .35; cursor: default; }
.vt-strip { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 14px; margin-inline: -4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.vt-strip::-webkit-scrollbar { display: none; }
.vt-strip .vt-card { flex: 0 0 min(258px, 74vw); scroll-snap-align: start; }

/* static before/after transformation card (results page — no slider) */
.tc { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--card);
  transition: transform .35s var(--ease), border-color .35s; }
.tc:hover { transform: translateY(-4px); border-color: rgba(198,161,91,.35); }
.tc__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.tc__half { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #141414; }
.tc__half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.tc__ph { position: absolute; inset: 0; }
.tc__ph--before { background: radial-gradient(100% 70% at 50% 20%, rgba(255,255,255,.05), transparent 60%), linear-gradient(165deg,#262626,#101010); }
.tc__ph--after { background: radial-gradient(100% 70% at 50% 20%, rgba(198,161,91,.14), transparent 60%), linear-gradient(165deg,#201c14,#0e0d0a); }
.tc__tag { position: absolute; left: 8px; bottom: 8px; z-index: 2; font-family: var(--mono); font-size: .56rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); background: rgba(8,8,8,.6); border: 1px solid var(--line); padding: .3em .6em; border-radius: 999px; }
.tc__tag--after { color: var(--gold-soft); border-color: rgba(198,161,91,.35); }
.tc__body { padding: .85rem 1rem 1rem; }
.tc__body h3 { font-size: 1.02rem; margin: 0; }
.tc__meta { display: block; margin-top: .2rem; font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }
.tc__quote { margin: .55rem 0 0; font-size: .82rem; color: var(--paper-dim); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* photoshoot album cards */
.album-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.album-card { position: relative; display: block; text-align: left; padding: 0; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--card); cursor: pointer; transition: transform .35s var(--ease), border-color .35s; }
.album-card:hover { transform: translateY(-4px); border-color: rgba(198,161,91,.4); }
.album-card__cover { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; }
.album-card__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.album-card:hover .album-card__cover img { transform: scale(1.04); }
.album-card__ph { position: absolute; inset: 0; display: block;
  background: radial-gradient(120% 80% at 30% 0%, rgba(198,161,91,.12), transparent 55%), linear-gradient(160deg,#1e1e1e,#0d0d0d); }
.album-card__ph::after { content: "ECHELON"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: .68rem; letter-spacing: .3em; color: rgba(245,243,239,.07); }
.album-card__cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,6,6,.82)); }
.album-card__body { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; display: block; }
.album-card__title { display: block; font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--paper); }
.album-card__count { display: block; margin-top: .15rem; font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 720px) { .album-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 960px) { .album-grid { grid-template-columns: repeat(4,1fr); } }

/* album lightbox */
.glight { position: fixed; inset: 0; z-index: 520; background: rgba(6,6,6,.96); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; padding: clamp(12px,3vw,28px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.glight.is-open { opacity: 1; pointer-events: auto; }
.glight[hidden] { display: none; }
.glight__close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--card); color: var(--paper); font-size: 1rem; cursor: pointer; }
.glight__close:hover { border-color: var(--gold); color: var(--gold-soft); }
.glight__stage { flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; gap: 10px; }
.glight__frame { position: relative; height: 100%; max-height: 100%; aspect-ratio: 4/5; max-width: calc(100vw - 130px);
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #101010; }
.glight__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.glight__frame .album-card__ph { border-radius: 14px; }
.glight__nav { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--card);
  color: var(--paper); display: grid; place-items: center; cursor: pointer; transition: border-color .2s, color .2s; }
.glight__nav svg { width: 20px; height: 20px; }
.glight__nav:hover { border-color: var(--gold); color: var(--gold-soft); }
.glight__cap { text-align: center; margin-top: 10px; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.glight__thumbs { display: flex; gap: 8px; justify-content: flex-start; overflow-x: auto; padding: 10px 2px 2px; scrollbar-width: none; }
.glight__thumbs::-webkit-scrollbar { display: none; }
.glight__thumb { flex: 0 0 52px; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
  background: #141414; cursor: pointer; padding: 0; position: relative; opacity: .55; transition: opacity .2s, border-color .2s; }
.glight__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.glight__thumb .album-card__ph { border-radius: 0; }
.glight__thumb.is-active { opacity: 1; border-color: var(--gold); }
@media (min-width: 720px) { .glight__thumbs { justify-content: center; } .glight__thumb { flex-basis: 64px; } }

/* ---------- Echelon Shoot gallery ---------- */
.shoot-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.shoot-tile { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(120% 80% at 30% 0%, rgba(198,161,91,.10), transparent 55%), linear-gradient(160deg,#1e1e1e,#0d0d0d);
  display: grid; place-items: center; transition: transform .35s var(--ease), border-color .35s; }
.shoot-tile::after { content: "ECHELON"; font-family: var(--display); font-weight: 800; font-size: .68rem; letter-spacing: .3em; color: rgba(245,243,239,.06); }
.shoot-tile:hover { transform: translateY(-4px); border-color: rgba(198,161,91,.4); }
.shoot-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shoot-tile__tag { position: absolute; left: 10px; top: 10px; z-index: 2; font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: rgba(8,8,8,.5); border: 1px solid var(--line); padding: .3em .55em; border-radius: 999px; }
@media (min-width: 720px) { .shoot-gallery { grid-template-columns: repeat(3,1fr); } }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content:""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold), var(--line)); }
.tl-item { position: relative; padding-bottom: 1.8rem; }
.tl-item::before { content:""; position: absolute; left: -26px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); border: 2px solid var(--gold); }
.tl-item .wk { font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; color: var(--gold-soft); text-transform: uppercase; }
.tl-item h4 { font-family: var(--body); font-weight: 700; margin-top: .2rem; }
.tl-item p { font-size: .94rem; margin-top: .2rem; }

/* ---------- Included list (coaching) ---------- */
.check-row { display: flex; gap: .8rem; align-items: flex-start; padding: .55rem 0; }
.check-row .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(198,161,91,.12); border: 1px solid rgba(198,161,91,.3); display: grid; place-items: center; color: var(--gold-soft); margin-top: 2px; }
.check-row .ck svg { width: 12px; height: 12px; }

/* for / not-for */
.split { display: grid; gap: 16px; }
.panel { border-radius: var(--r-lg); border: 1px solid var(--line); padding: clamp(22px,5vw,30px); }
.panel--yes { background: linear-gradient(180deg, rgba(198,161,91,.06), var(--card)); border-color: rgba(198,161,91,.24); }
.panel--no { background: var(--surface); }
.panel h3 { display: flex; align-items: center; gap: .6rem; letter-spacing: 0; margin-bottom: 1rem; }
.panel li { display: flex; gap: .7rem; padding: .5rem 0; border-top: 1px solid var(--line); color: var(--paper-dim); }
.panel li:first-of-type { border-top: 0; }
.panel .mk { flex: none; margin-top: .15rem; color: var(--gold-soft); }
.panel--no .mk { color: var(--faint); }

/* ---------- About ---------- */
.bio { display: grid; gap: clamp(24px,6vw,48px); }
.bio__photo { border-radius: var(--r-lg); border: 1px solid var(--line); aspect-ratio: 4/5; background:
  radial-gradient(120% 80% at 30% 10%, rgba(198,161,91,.12), transparent 55%), linear-gradient(160deg,#222,#101010);
  position: relative; overflow: hidden; }
.bio__photo .ph-tag { position: absolute; left: 16px; bottom: 16px; font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: rgba(8,8,8,.55); padding: .3em .6em; border-radius: 6px; }
.creds { display: grid; gap: 12px; }
.cred { display: flex; gap: 1rem; align-items: baseline; padding: 1rem 0; border-top: 1px solid var(--line); }
.cred .yr { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; color: var(--gold-soft); flex: none; width: 66px; }
.cred h4 { font-family: var(--body); font-weight: 700; }
.cred p { font-size: .92rem; margin-top: .15rem; }

/* ---------- FAQ accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.25rem 0; font-weight: 700; font-size: 1.02rem; color: var(--paper); }
.faq__q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: border-color .25s, background .25s; }
.faq__q .pm::before, .faq__q .pm::after { content:""; position: absolute; background: var(--gold-soft); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__q .pm::before { width: 11px; height: 2px; }
.faq__q .pm::after { width: 2px; height: 11px; }
.faq__item.is-open .pm { background: rgba(198,161,91,.14); border-color: rgba(198,161,91,.4); }
.faq__item.is-open .pm::after { transform: scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height .35s var(--ease); }
.faq__a > div { padding-bottom: 1.3rem; color: var(--paper-dim); font-size: .98rem; max-width: 64ch; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid rgba(198,161,91,.22);
  background: radial-gradient(120% 120% at 80% -10%, rgba(198,161,91,.14), transparent 55%), var(--card);
  padding: clamp(34px,8vw,64px) var(--pad); text-align: center; }
/* cta diagonal texture removed for minimalism */
.cta-banner h2 { position: relative; }
.cta-banner .lead { position: relative; margin: 1rem auto 1.8rem; }
.cta-banner .btn { position: relative; }

/* ---------- Form (book) ---------- */
.book-grid { display: grid; gap: 22px; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px,5.5vw,34px); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.field label .opt { color: var(--faint); }
.input, .select {
  width: 100%; min-height: 52px; padding: 0 1rem; color: var(--paper);
  background: var(--ink-deep); border: 1px solid var(--line-strong); border-radius: 12px;
  font: inherit; transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
textarea.input { padding-top: .8rem; min-height: 110px; resize: vertical; line-height: 1.5; }
.select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c6a15b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.input:focus, .select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.14); }
.input::placeholder { color: var(--faint); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .4rem; }
.form-note a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.form-success { display: none; text-align: center; padding: 1rem 0; }
.form-success.is-shown { display: block; }

/* calendly / booking embed placeholder */
.cal-embed { border: 1px dashed var(--line-strong); border-radius: var(--r-lg); background: var(--surface); min-height: 360px; display: grid; place-items: center; text-align: center; padding: 2rem; }
.cal-embed .k { font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Instagram feed ---------- */
.ig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ig-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-top: 1.6rem; }
.ig-tile { aspect-ratio: 1; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--line);
  background: linear-gradient(155deg,#1c1c1c,#0d0d0d); display: grid; place-items: center;
  transition: transform .35s var(--ease), border-color .35s; }
.ig-tile:nth-child(4n+2) { background: linear-gradient(155deg,#221c10,#0e0b06); }
.ig-tile:nth-child(4n+3) { background: linear-gradient(155deg,#191919,#0c0c0c); }
.ig-tile:nth-child(4n)   { background: linear-gradient(155deg,#20180d,#0d0a05); }
.ig-tile::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 25% 0%, rgba(198,161,91,.10), transparent 55%); }
.ig-tile > svg { width: 30px; height: 30px; color: rgba(198,161,91,.32); position: relative; }
.ig-tile:hover { transform: translateY(-3px); border-color: rgba(198,161,91,.4); }
.ig-tile .ig-ov { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; background: rgba(10,10,10,.5); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); color: var(--gold-soft); transition: opacity .25s; }
.ig-tile:hover .ig-ov { opacity: 1; }
.ig-tile .ig-ov svg { width: 22px; height: 22px; }

/* Instagram embed (official widget) — Instagram's iframe is white and can't be
   restyled, so we frame it inside a premium dark panel to feel intentional. */
.ig-embed { max-width: 600px; margin: 1.8rem auto 0; padding: clamp(14px,3.5vw,22px);
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,.85); }
.ig-embed .instagram-media { margin: 0 auto !important; border-radius: 14px !important; }
.ig-embed iframe { border-radius: 14px !important; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); border-top: 1px solid var(--line); padding-block: clamp(40px,8vw,64px) 120px; }
.footer__top { display: grid; gap: 2rem; }
.footer__brand p { margin-top: 1rem; font-size: .94rem; max-width: 42ch; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.footer__col h5 { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
.footer__col a { display: block; padding: .3rem 0; color: var(--paper-dim); font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom { margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; align-items: center; justify-content: space-between; }
.footer__bottom small { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--faint); }

/* ---------- Reveal animation ----------
   One motion language, site-wide: everything decelerates on the same
   long expo-out curve (--ease-lux). Headlines rise out of a clipped line,
   imagery un-veils with a slow inner-zoom settle, and support copy drifts
   up a beat later. Slow settle = expensive; snappy pop = cheap. */
[data-reveal] { opacity: 0; transform: translateY(34px);
  transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux), filter 1.1s var(--ease-lux); }

/* CTA banners drift in from a soft blur for a cinematic beat */
.cta-banner[data-reveal] { filter: blur(14px); transform: translateY(30px) scale(.97);
  transition-duration: 1.4s, 1.4s, 1.4s; }

/* before/after sliders hint that they're draggable once revealed */
@keyframes baHint { 0%,100% { margin-left: 0; } 30% { margin-left: -12px; } 65% { margin-left: 9px; } }
.transform-card[data-reveal].in .ba__handle { animation: baHint 1.8s var(--ease-lux) .8s 1; }
@media (prefers-reduced-motion: reduce) { .transform-card[data-reveal].in .ba__handle { animation: none; } }

/* section-head cascade: hairline draws, headline lines rise out of their
   clip masks one by one, then the lead settles in underneath */
.section-head[data-reveal] .eyebrow::before { width: 0; transition: width .8s var(--ease-lux) .1s; }
.section-head[data-reveal].in .eyebrow::before { width: 26px; }
.section-head[data-reveal] .eyebrow { opacity: 0; transition: opacity .7s var(--ease-lux) .05s; }
.section-head[data-reveal].in .eyebrow { opacity: 1; }

/* masked-line headline reveal (JS wraps each <br>-separated line in .lm > .lm__t) */
.lm { display: block; overflow: hidden; padding-block: .08em; margin-block: -.08em; }
.lm__t { display: block; transform: translateY(120%); }
[data-reveal] .lm__t { transition: transform 1.2s var(--ease-lux); transition-delay: calc(.12s + var(--i, 0) * .11s); }
[data-reveal].in .lm__t { transform: none; }
h1.is-masked, h2.is-masked { opacity: 1 !important; transform: none !important; transition: none !important; }

/* fallback for unmasked headings (reduced motion, or [data-content] headings) */
.section-head[data-reveal] h1:not(.is-masked),
.section-head[data-reveal] h2:not(.is-masked) { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-lux) .12s, transform .9s var(--ease-lux) .12s; }
.section-head[data-reveal] .lead { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease-lux) .34s, transform .9s var(--ease-lux) .34s; }
.section-head[data-reveal].in h1:not(.is-masked),
.section-head[data-reveal].in h2:not(.is-masked),
.section-head[data-reveal].in .lead { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .section-head[data-reveal] h1, .section-head[data-reveal] h2, .section-head[data-reveal] .lead, .section-head[data-reveal] .eyebrow { opacity: 1 !important; transform: none !important; }
  .section-head[data-reveal] .eyebrow::before { width: 26px !important; }
  .lm__t { transform: none !important; transition: none !important; }
}

[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal="blur"]  { transform: translateY(26px); filter: blur(16px); }
[data-reveal].in { opacity: 1; transform: none; filter: none; }

/* imagery un-veils: the frame wipes open while the photo settles from a
   gentle zoom — transformation cards, service cards, album covers */
.tc[data-reveal] .tc__imgs, .svc-card[data-reveal] .svc-card__img, .album-card[data-reveal] .album-card__cover {
  clip-path: inset(0 0 24% 0); transition: clip-path 1.4s var(--ease-lux) .05s; }
.tc[data-reveal].in .tc__imgs, .svc-card[data-reveal].in .svc-card__img, .album-card[data-reveal].in .album-card__cover {
  clip-path: inset(0 0 0 0); }
.tc[data-reveal] .tc__half img, .svc-card[data-reveal] .svc-card__img img { transform: scale(1.12); transition: transform 1.8s var(--ease-lux) .05s; }
.tc[data-reveal].in .tc__half img, .svc-card[data-reveal].in .svc-card__img img { transform: scale(1); }

/* video strip: cards cascade in from the left, one beat apart */
.vt-strip[data-reveal] .vt-card { opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
  transition-delay: calc(var(--i, 0) * .1s); }
.vt-strip[data-reveal].in .vt-card { opacity: 1; transform: none; }

/* icon pop inside revealing cards */
.card[data-reveal] .card__ico, .glance__card[data-reveal] .glance__ico { opacity: 0; transform: scale(.6); transition: opacity .5s var(--ease) .25s, transform .6s var(--ease-spring) .25s; }
.card[data-reveal].in .card__ico, .glance__card[data-reveal].in .glance__ico { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .card[data-reveal] .card__ico, .glance__card[data-reveal] .glance__ico { opacity: 1 !important; transform: none !important; } }

/* timeline week chips slide in just after their row lands */
.tl-item[data-reveal] .wk { opacity: 0; transform: translateX(-16px); transition: opacity .7s var(--ease-lux) .25s, transform .7s var(--ease-lux) .25s; }
.tl-item[data-reveal].in .wk { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .tl-item[data-reveal] .wk { opacity: 1 !important; transform: none !important; } }

[data-reveal][data-d="1"] { transition-delay: .1s; }
[data-reveal][data-d="2"] { transition-delay: .2s; }
[data-reveal][data-d="3"] { transition-delay: .3s; }
[data-reveal][data-d="4"] { transition-delay: .4s; }
[data-reveal][data-d="5"] { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  .vt-strip[data-reveal] .vt-card { opacity: 1 !important; transform: none !important; }
  .tc[data-reveal] .tc__imgs, .svc-card[data-reveal] .svc-card__img, .album-card[data-reveal] .album-card__cover { clip-path: none !important; }
  .tc[data-reveal] .tc__half img, .svc-card[data-reveal] .svc-card__img img { transform: none !important; }
}

/* utility */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.center { text-align: center; } .mx-auto { margin-inline: auto; }
.stack-cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ============================================================
   Desktop — the mobile design expands, not a new site
   ============================================================ */
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4,1fr); }
  .grid--2 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: repeat(3,1fr); }
  .ig-grid { grid-template-columns: repeat(4,1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .book-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer__top { grid-template-columns: 1.4fr 1fr; }
  .footer__cols { grid-template-columns: repeat(3,1fr); }
}

@media (min-width: 960px) {
  :root { --pad: 48px; }
  .nav { height: 76px; }
  .nav__links { display: flex; align-items: center; gap: 2rem; }
  .nav__links a { font-family: var(--mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--paper-dim); position: relative; padding: .3rem 0; transition: color .2s; }
  .nav__links a::after { content:""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--gold); transition: width .28s var(--ease); }
  .nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--paper); }
  .nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
  .nav__cta { display: inline-flex; }
  .burger, .book-bar { display: none; }
  .footer { padding-bottom: clamp(40px,8vw,64px); }

  .grid--4 { grid-template-columns: repeat(4,1fr); }
  .grid--transform { grid-template-columns: repeat(3,1fr); }

  /* method cards sit on a clean aligned grid (minimal) */
  .method.grid--4 .card { transform: none; }
  .method.grid--4 .card:hover { transform: translateY(-4px); }

  .hero__inner { padding-bottom: clamp(70px,10vw,110px); }
  .hero h1 { max-width: 15ch; }
  .about-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
  .bio { grid-template-columns: .9fr 1.1fr; align-items: center; }
  .lead-2col { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.4rem; }
}

@media (min-width: 720px) and (max-width: 959px) {
  .grid--transform { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   AESTHETIC LAYER — motion, marquee, intro video, Meet Will
   ============================================================ */

/* hero parallax: give the bg room so a slight shift never exposes an edge */
.hero__bg { will-change: transform; }
.hero__bg--placeholder { transform: scale(1.08); }

/* ---------- Marquee band ---------- */
.marquee { position: relative; z-index: 1; overflow: hidden; border-block: 1px solid var(--line);
  padding-block: clamp(16px, 3vw, 22px); background: var(--ink-deep);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: inline-flex; align-items: center; }
.marquee__item { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.15rem, 3.4vw, 1.7rem); color: var(--paper); padding: 0 clamp(20px,4vw,38px); }
.marquee__item.is-ghost { color: var(--paper); -webkit-text-stroke: 0; font-weight: 600; opacity: .78; }
.marquee__dot { color: var(--gold); font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Intro video panel + modal ---------- */
.playpanel { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9;
  border: 1px solid var(--line); cursor: pointer; background: var(--card);
  transition: transform .3s var(--ease), border-color .3s; }
.playpanel:hover { border-color: var(--line-strong); }
.playpanel__poster { position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 30% 10%, rgba(198,161,91,.14), transparent 55%),
    linear-gradient(150deg, #1d1d1d, #0c0c0c); }
.playpanel__poster::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(6,6,6,.7)); }
.playpanel__tag { position: absolute; left: 16px; top: 16px; z-index: 3; font-family: var(--mono);
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  background: rgba(8,8,8,.55); border: 1px solid var(--line); padding: .35em .7em; border-radius: 999px; }
.playpanel__cap { position: absolute; left: 18px; bottom: 16px; z-index: 3; }
.playpanel__cap .t { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em; }
.playpanel__cap .s { color: var(--muted); font-size: .82rem; }
.playbtn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: clamp(64px, 14vw, 84px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  color: #140f04; background: var(--gold-grad); box-shadow: 0 10px 30px -8px rgba(0,0,0,.7);
  transition: transform .25s var(--ease); }
.playbtn svg { width: 34%; height: 34%; margin-left: 8%; }
.playpanel:hover .playbtn { transform: translate(-50%,-50%) scale(1.08); }
.playbtn::before { content:""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--gold); animation: pulsering 2.4s var(--ease) infinite; }
@keyframes pulsering { 0%{ transform: scale(1); opacity: .7 } 100%{ transform: scale(1.7); opacity: 0 } }
@media (prefers-reduced-motion: reduce){ .playbtn::before { animation: none; opacity: .4; } }

.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: var(--pad);
  background: rgba(5,5,5,.86); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__inner { position: relative; width: min(940px, 100%); aspect-ratio: 16/9; border-radius: 16px;
  overflow: hidden; background: #000; border: 1px solid var(--line-strong);
  transform: scale(.94) translateY(10px); transition: transform .4s var(--ease); }
.modal.is-open .modal__inner { transform: none; }
.modal__frame { position: absolute; inset: 0; z-index: 2; }
.modal__inner iframe, .modal__inner video { width: 100%; height: 100%; border: 0; display: block; }
.modal__ph { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; text-align: center; padding: 2rem;
  background: radial-gradient(80% 60% at 50% 30%, rgba(198,161,91,.1), transparent 60%), #0b0b0b; }
.modal__ph .k { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.modal__close { position: absolute; top: -14px; right: -6px; z-index: 4; width: 42px; height: 42px; border-radius: 50%;
  background: var(--paper); color: #111; display: grid; place-items: center; transition: transform .2s var(--ease); }
.modal__close:hover { transform: rotate(90deg); }
@media (max-width: 560px){ .modal__close { top: -46px; right: 0; } }

/* ---------- Meet Will chips + signature ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .85rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card); font-size: .82rem; color: var(--paper-dim); }
.chip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.signature { font-family: var(--display); font-weight: 600; font-style: italic; font-size: 1.3rem;
  color: var(--gold-soft); letter-spacing: -.02em; margin-top: 1.4rem; }
.will__photo { position: relative; }
.will__watch { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem .9rem .55rem .6rem; border-radius: 999px; background: rgba(10,10,10,.7); border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px); color: var(--paper); font-size: .84rem; font-weight: 500; transition: border-color .25s, transform .25s var(--ease); }
.will__watch:hover { border-color: var(--gold); transform: translateY(-2px); }
.will__watch .ic { width: 30px; height: 30px; border-radius: 50%; background: var(--gold-grad); color: #140f04; display: grid; place-items: center; }
.will__watch .ic svg { width: 14px; height: 14px; margin-left: 2px; }

/* ---------- Cursor spotlight on CTA ---------- */
.cta-banner { --mx: 50%; --my: 0%; }
.cta-banner::after { content:""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(260px 260px at var(--mx) var(--my), rgba(198,161,91,.18), transparent 70%);
  transition: opacity .3s; }
.cta-banner:hover::after { opacity: 1; }

/* ---------- Tilt ---------- */
[data-tilt] { transition: transform .35s var(--ease); transform-style: preserve-3d; }

@media (min-width: 720px) {
  .will { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items: center; }
  .will__photo { aspect-ratio: 4/5; }
}

/* ---------- Scroll parallax (JS sets --py) — uses `translate` so it
   never fights reveal/tilt `transform` on the same element ---------- */
[data-parallax] { translate: 0 var(--py, 0px); will-change: translate; }
@media (prefers-reduced-motion: reduce) { [data-parallax] { translate: none; } }

/* desktop nav logo a touch larger */
@media (min-width: 960px) { .brand__logo { height: 32px; } }

/* ============================================================
   Newsletter · legal · cookie consent (EU / GDPR)
   ============================================================ */
.footer__news { display: grid; gap: 1.4rem; padding-bottom: 2.2rem; margin-bottom: 2.2rem; border-bottom: 1px solid var(--line); }
.footer__news-copy h3 { letter-spacing: -0.02em; }
.footer__news-copy p { margin-top: .5rem; font-size: .95rem; max-width: 46ch; }
.news-form .news-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.news-form .input { flex: 1; min-width: 200px; }
.news-form .btn { flex: none; }
.news-consent { display: flex; gap: .6rem; align-items: flex-start; margin-top: .8rem; font-size: .82rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.news-consent input { margin-top: .2rem; flex: none; width: 16px; height: 16px; accent-color: var(--gold); }
.news-consent a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.news-success { display: none; margin-top: .9rem; color: var(--gold-soft); font-size: .9rem; }
.news-success.is-shown { display: block; }

.footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; align-items: center; }
.footer__legal a, .linklike { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--faint); text-transform: uppercase; transition: color .2s; }
.footer__legal a:hover, .linklike:hover { color: var(--gold-soft); }
.linklike { background: none; border: 0; padding: 0; cursor: pointer; }

@media (min-width: 760px) {
  .footer__news { grid-template-columns: 1fr 1fr; align-items: center; gap: 2.4rem; }
}

/* privacy "at a glance" cards */
.glance { display: grid; gap: 14px; }
.glance__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(20px,4.5vw,26px);
  transition: transform .35s var(--ease), border-color .35s; }
.glance__card:hover { transform: translateY(-4px); border-color: rgba(198,161,91,.35); }
.glance__ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: .9rem;
  background: rgba(198,161,91,.1); border: 1px solid rgba(198,161,91,.25); color: var(--gold-soft); }
.glance__ico svg { width: 19px; height: 19px; }
.glance__card h4 { font-family: var(--display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; margin-bottom: .4rem; }
.glance__card p { font-size: .9rem; }
@media (min-width: 720px) { .glance { grid-template-columns: repeat(3,1fr); } }

/* legal / policy pages */
.legal { max-width: 74ch; }
.legal .lead { margin-bottom: 2rem; }
.legal h3 { margin-top: 2.4rem; margin-bottom: .7rem; }
.legal h3:first-of-type { margin-top: 0; }
.legal p { margin-bottom: .9rem; }
.legal ul { margin: 0 0 .9rem; padding-left: 1.1rem; list-style: disc; }
.legal ul li { margin-bottom: .45rem; color: var(--paper-dim); padding-left: .2rem; }
.legal ul li::marker { color: var(--gold); }
.legal a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--paper); }
.legal .updated { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* cookie banner — compact centered card */
.cookie { position: fixed; left: 50%; bottom: calc(86px + env(safe-area-inset-bottom)); z-index: 500;
  width: min(350px, calc(100% - 24px)); transform: translate(-50%, 16px) scale(.98); opacity: 0; visibility: hidden;
  transition: transform .45s var(--ease), opacity .4s var(--ease), visibility .4s; }
.cookie.is-open { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
@media (min-width: 960px) { .cookie { bottom: clamp(16px, 3vw, 26px); } }
.cookie__card { background: rgba(19,19,19,.92); backdrop-filter: blur(18px) saturate(120%); -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid var(--line-strong); border-radius: 18px; padding: 16px; box-shadow: 0 26px 64px -28px rgba(0,0,0,.9); }
.cookie__head { display: flex; gap: .7rem; align-items: flex-start; }
.cookie__ico { flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(198,161,91,.12); border: 1px solid rgba(198,161,91,.3); color: var(--gold-soft); }
.cookie__ico svg { width: 18px; height: 18px; }
.cookie__text { font-size: .82rem; line-height: 1.5; color: var(--paper-dim); }
.cookie__text a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.cookie__prefs { display: grid; gap: .4rem; margin-top: .9rem; }
.cookie__prefs[hidden] { display: none; }
.cookie__opt { display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .5rem .7rem; border: 1px solid var(--line); border-radius: 10px; background: var(--ink-deep); font-size: .82rem; color: var(--paper); }
.cookie__opt input { flex: none; width: 38px; height: 22px; accent-color: var(--gold); cursor: pointer; }
.cookie__opt input:disabled { opacity: .5; cursor: not-allowed; }
.cookie__row { display: flex; gap: .5rem; margin-top: .9rem; }
.cookie__btn { flex: 1; height: 42px; border-radius: 999px; font-family: var(--body); font-weight: 600; font-size: .85rem;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .25s, border-color .25s, color .2s; }
.cookie__btn:active { transform: translateY(1px); }
.cookie__btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 2px; }
.cookie__btn--gold { background: var(--gold-grad); color: #140f04; box-shadow: 0 8px 20px -10px var(--gold-glow); }
.cookie__btn--gold:hover { box-shadow: 0 12px 26px -10px rgba(198,161,91,.5); }
.cookie__btn--ghost { background: rgba(255,255,255,.02); border: 1px solid var(--line-strong); color: var(--paper); }
.cookie__btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.cookie__manage { display: block; width: 100%; margin-top: .65rem; padding: .2rem; text-align: center; background: none; border: 0;
  font-size: .72rem; letter-spacing: .03em; color: var(--muted); cursor: pointer; transition: color .2s; }
.cookie__manage:hover { color: var(--gold-soft); }

/* ============================================================
   BOOK PAGE — intro video + interactive form
   ============================================================ */
.book-intro { display: grid; gap: clamp(28px,6vw,48px); }
.book-points { margin-top: 1.6rem; display: grid; gap: .6rem; }
.book-points li { display: flex; align-items: center; gap: .7rem; color: var(--paper-dim); }
.book-points .tick { width: 22px; height: 22px; flex: none; border-radius: 50%; background: rgba(198,161,91,.14); border: 1px solid rgba(198,161,91,.35); color: var(--gold-soft); display: grid; place-items: center; font-size: .68rem; }

.book-video { position: relative; width: min(300px, 100%); margin-inline: auto; aspect-ratio: 9/16; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); background: #000; box-shadow: 0 30px 70px -34px rgba(0,0,0,.85); }
.book-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.book-video__badge { position: absolute; left: 12px; top: 12px; z-index: 2; font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); background: rgba(8,8,8,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid var(--line); padding: .42em .7em; border-radius: 999px; }
.book-video__sound { position: absolute; right: 12px; bottom: 12px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: rgba(10,10,10,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid var(--line-strong); color: var(--paper); display: grid; place-items: center; transition: transform .2s var(--ease), border-color .2s; }
.book-video__sound:hover { transform: scale(1.07); border-color: var(--gold); }
.book-video__sound svg { width: 20px; height: 20px; }
.book-video__sound .ic-sound { display: none; }
.book-video__sound.is-on .ic-muted { display: none; }
.book-video__sound.is-on .ic-sound { display: block; color: var(--gold-soft); }

@media (min-width: 860px) {
  .book-intro { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .book-video { margin-inline: 0; margin-left: auto; }
}

/* interactive form */
.form-progress { height: 5px; border-radius: 999px; background: var(--line); overflow: hidden; }
.form-progress__bar { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--gold-grad); transition: width .45s var(--ease); }
.form-progress__label { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: .55rem 0 1.4rem; }
.form-progress__label span { color: var(--gold-soft); }
.field-label { display: block; font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .65rem; }

/* field-label icons */
.field-ic { width: 13px; height: 13px; display: inline-block; vertical-align: -2px; margin-right: .3rem; color: var(--gold-soft); opacity: .9; }

/* phone field: searchable country combobox + number */
.phone-wrap { display: flex; gap: .5rem; align-items: flex-start; }
.phone-num { flex: 1; min-width: 0; }

.combo { position: relative; flex: 0 0 auto; width: 132px; }
.phone-prefix { width: 100%; cursor: text; }
.combo__list {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 40;
  width: max(220px, 100%); max-height: 260px; overflow-y: auto;
  background: var(--card-2); border: 1px solid var(--line-strong); border-radius: 12px;
  box-shadow: 0 20px 46px -18px rgba(0,0,0,.7); padding: 6px;
}
.combo__item {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .55rem .7rem; border-radius: 8px; font-size: .88rem; color: var(--paper-dim); cursor: pointer;
}
.combo__item b { color: var(--paper); font-weight: 600; }
.combo__item span { color: var(--gold-soft); font-family: var(--mono); font-size: .8rem; }
.combo__item:hover, .combo__item.is-active { background: rgba(198,161,91,.12); color: var(--paper); }
.combo__empty { padding: .7rem; font-size: .82rem; color: var(--muted); }

/* range sliders */
.slider__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.slider__head label, .slider__head .field-label { margin-bottom: 0; }
.slider__val { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; color: var(--gold-soft); }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; margin: .55rem 0 .3rem; cursor: pointer;
  background: linear-gradient(90deg, var(--gold) var(--p, 50%), var(--line-strong) var(--p, 50%)); }
.range:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 4px; }
.range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; margin-top: -7px; border-radius: 50%;
  background: var(--gold-grad); border: 3px solid var(--ink); box-shadow: 0 3px 10px rgba(0,0,0,.55); cursor: pointer; transition: transform .15s var(--ease); }
.range::-webkit-slider-thumb:active { transform: scale(1.15); }
.range::-moz-range-thumb { width: 19px; height: 19px; border: 3px solid var(--ink); border-radius: 50%; background: var(--gold); cursor: pointer; }
.range::-moz-range-track { height: 8px; border-radius: 999px; background: var(--line-strong); }
.range::-moz-range-progress { height: 8px; border-radius: 999px; background: var(--gold); }

/* icons inside choice pills */
.pill span { gap: .45rem; }
.pill span svg { width: 15px; height: 15px; flex: none; }
.pill input:checked + span svg { color: #140f04; }
.input-wrap { position: relative; }
.input-check { position: absolute; right: 14px; top: 50%; transform: translateY(-50%) scale(.5); opacity: 0; color: var(--gold-soft); font-size: .9rem; font-weight: 700; transition: opacity .2s var(--ease), transform .2s var(--ease); pointer-events: none; }
.input-wrap .input:valid:not(:placeholder-shown) ~ .input-check { opacity: 1; transform: translateY(-50%) scale(1); }

.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }
.input-wrap--unit { display: flex; gap: .5rem; }
.input-wrap--unit .input { flex: 1; min-width: 0; }
.unit-toggle { display: inline-flex; background: var(--ink-deep); border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; flex: none; }
.unit { position: relative; display: flex; }
.unit input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.unit span { display: grid; place-items: center; padding: 0 .85rem; color: var(--muted); font-size: .8rem; font-family: var(--mono); letter-spacing: .06em; transition: background .2s var(--ease), color .2s; }
.unit input:checked + span { background: var(--gold-grad); color: #140f04; font-weight: 700; }
.unit input:focus-visible + span { outline: 2px solid var(--gold-soft); outline-offset: -2px; }

/* height field: cm input + ft/in row swapped in when imperial is selected */
.height-ftin-row { display: flex; gap: .5rem; margin-top: .6rem; }
.height-ftin-row .input { flex: 1; min-width: 0; }
.height-ftin-row[hidden] { display: none; }

.pillset { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { position: relative; }
.pill input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.pill span { display: inline-flex; align-items: center; padding: .62rem .95rem; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--ink-deep); color: var(--paper-dim); font-size: .9rem; transition: border-color .2s var(--ease), color .2s, background .2s, transform .12s var(--ease); }
.pill:hover span { border-color: var(--gold); color: var(--paper); }
.pill input:focus-visible + span { outline: 2px solid var(--gold-soft); outline-offset: 2px; }
.pill input:checked + span { border-color: transparent; color: #140f04; background: var(--gold-grad); font-weight: 600; box-shadow: 0 8px 20px -10px var(--gold-glow); }
.pill input:active + span { transform: scale(.95); }

#book-form.is-complete .btn--gold { animation: readyPulse 1.8s var(--ease) infinite; }
@keyframes readyPulse { 0%,100% { box-shadow: 0 8px 24px -10px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.28); } 50% { box-shadow: 0 12px 34px -8px rgba(198,161,91,.55), inset 0 1px 0 rgba(255,255,255,.4); } }
@media (prefers-reduced-motion: reduce) { #book-form.is-complete .btn--gold { animation: none; } }

/* ============================================================
   Coming-soon holding page (toggled from the admin panel).
   Full-screen takeover injected by main.js; z-index above every
   other layer, including the cookie card (500) and lightbox (520).
   ============================================================ */
html.soon-lock { overflow: hidden; }
.soon { position: fixed; inset: 0; z-index: 700; background: var(--ink, #0d0d0d);
  display: grid; place-items: center; padding: var(--pad); overflow: hidden;
  animation: soonIn 1s var(--ease-lux) both; }
@keyframes soonIn { from { opacity: 0; } to { opacity: 1; } }

/* atmosphere: a slow-breathing gold glow + an oversized ghost of the mark */
.soon__glow { position: absolute; left: 50%; top: -30%; width: 130vmax; height: 90vmax; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(198,161,91,.13), transparent 70%);
  animation: soonGlow 9s var(--ease) infinite; pointer-events: none; }
@keyframes soonGlow { 0%,100% { opacity: .7; } 50% { opacity: 1; } }
.soon__mark { position: absolute; left: 50%; top: 50%; width: min(88vmin, 700px); transform: translate(-50%,-50%);
  opacity: .05; filter: blur(1px); pointer-events: none; }

.soon__inner { position: relative; z-index: 2; text-align: center; max-width: 720px; display: grid; justify-items: center; }
.soon__logo { width: min(230px, 62vw); height: auto; animation: heroUp 1s var(--ease-lux) .1s both; }
.soon__kicker { display: inline-flex; align-items: center; gap: 14px; margin-top: 2rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-soft);
  animation: heroUp 1s var(--ease-lux) .28s both; }
.soon__kicker .line { display: block; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, rgba(198,161,91,.6)); }
.soon__kicker .line:last-child { transform: scaleX(-1); }
.soon__title { margin-top: 1.1rem; font-family: var(--display); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(2.3rem, 7.2vw, 4.4rem); line-height: 1.04; color: var(--paper); }
.soon__title em { font-style: normal; color: var(--gold-soft); }
.soon__title .lm__t { transition: none; animation: soonLine 1.25s var(--ease-lux) both; animation-delay: calc(.42s + var(--i, 0) * .14s); }
@keyframes soonLine { from { transform: translateY(120%); } to { transform: none; } }
.soon__sub { margin-top: 1.4rem; max-width: 46ch; color: var(--paper-dim); font-size: 1.02rem; line-height: 1.7;
  animation: heroUp 1.1s var(--ease-lux) .85s both; }
.soon__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 2.1rem;
  animation: heroUp 1.1s var(--ease-lux) 1s both; }
.soon__foot { margin-top: 3rem; font-family: var(--mono); font-size: .64rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); animation: heroUp 1.2s var(--ease-lux) 1.15s both; }
@media (prefers-reduced-motion: reduce) {
  .soon, .soon__glow, .soon__logo, .soon__kicker, .soon__sub, .soon__cta, .soon__foot { animation: none !important; }
  .soon__title .lm__t { animation: none !important; transform: none !important; }
}
