/* ============ Fonts ============ */
/* Self-hosted so the face is same-origin and preloadable: via Google Fonts it
   arrived after first paint and the swap reflowed the hero (CLS .18 desktop).
   Range matches Google's latin subset, so anything outside it falls back as before. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url(Fonts/archivo-var-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Metric-matched fallback. .display asks for font-stretch:125%, which no system
   font can honour — it has no width axis — so the fallback laid the hero title out
   ~20% narrow: 3 lines where Archivo needs 4. Archivo's arrival then added a line
   box and shoved the page down. size-adjust makes the fallback wrap the same way,
   so the swap barely moves anything (CLS .18 -> .03 on a slow connection).
   Tuned against Arial; where none of these exist the chain falls through to
   system-ui and we are no worse off than before. */
@font-face {
  font-family: 'Archivo Fallback';
  src: local('Arial'), local('Helvetica Neue'), local('Segoe UI');
  size-adjust: 125%;
  ascent-override: 88%;
  descent-override: 22%;
  line-gap-override: 0%;
}

/* ============ Tokens ============ */
:root {
  --carbon: #0D0F0C;
  --panel: #131612;
  --bone: #EDEAE2;
  --bone-55: rgba(237, 234, 226, .55);
  --bone-70: rgba(237, 234, 226, .72); /* body copy that carries service/sales info */
  --hairline: rgba(237, 234, 226, .14);
  --forest: #1E3B2E;
  --forest-deep: #12241C;
  --accent: #4E7A5F;
  --accent-bright: #6E9C82; /* small-text green: ≥4.5:1 on carbon/panel/forest-deep */
  --pad: clamp(20px, 4vw, 64px);
  --font-d: 'Archivo', 'Archivo Fallback', system-ui, sans-serif;
}

/* ============ Reset / base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  background: var(--carbon);
  color: var(--bone);
  font-family: var(--font-d);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--carbon); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============ Type system ============ */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-55);
}
.display {
  font-weight: 900;
  font-stretch: 125%;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .92;
}
.display em { font-style: normal; color: var(--accent); }
.h2 { font-size: clamp(40px, 6vw, 88px); }
.lede { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.55; color: var(--bone-70); max-width: 56ch; }

/* ============ Layout utilities ============ */
.container { padding-inline: var(--pad); max-width: 1600px; margin-inline: auto; }
/* Two spacing tiers: hero moments breathe, supporting sections move on */
.section { padding-block: clamp(72px, 9vw, 132px); }
.section--compact { padding-block: clamp(48px, 6vw, 88px); }
.hairline-top { border-top: 1px solid var(--hairline); }
.mask { display: block; overflow: hidden; }
.mask .hl { display: block; }
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}

/* Line-button: underline slides, arrow nudges */
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding-bottom: 6px; position: relative;
}
.btn-line::before { content: ""; position: absolute; inset: -14px -8px; }
.btn-line::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--bone); transform-origin: right;
  transition: transform .45s cubic-bezier(.65, 0, .35, 1);
}
.btn-line:hover::after { transform: scaleX(0); transform-origin: left; animation: lineBack .45s .45s cubic-bezier(.65,0,.35,1) forwards; }
@keyframes lineBack { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }
.btn-line .arr { transition: transform .35s cubic-bezier(.65, 0, .35, 1); }
.btn-line:hover .arr { transform: translateX(6px); }

/* Pill button: primary CTA emphasis (hero, recommended tier, submit) */
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bone); color: var(--carbon); font-weight: 700;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 999px;
  transition: background .3s, transform .3s;
}
.btn-pill:hover { background: #fff; transform: translateY(-2px); }
.btn-pill .arr { transition: transform .35s cubic-bezier(.65, 0, .35, 1); }
.btn-pill:hover .arr { transform: translateX(4px); }

/* ============ Nav (floating bottom dock, appears past the hero) ============ */
.nav {
  position: fixed; left: 50%; bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 50;
  transform: translate(-50%, 16px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .4s, visibility 0s .4s;
}
.nav--visible {
  transform: translate(-50%, 0);
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .4s, visibility 0s;
}
html.modal-open .nav { opacity: 0; pointer-events: none; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  padding: 7px;
  background: rgba(19, 22, 18, .8);
  border: 1px solid var(--hairline); border-radius: 999px;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
}
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 18px; border-radius: 999px;
  opacity: .85; transition: opacity .25s, background .25s, color .25s;
}
.nav-links a:hover { opacity: 1; background: rgba(237, 234, 226, .07); }
.nav-links a.is-active,
.nav-links a[aria-current="page"] { opacity: 1; color: var(--accent-bright); background: rgba(237, 234, 226, .06); }
.nav-links a.nav-cta { opacity: 1; background: var(--bone); color: var(--carbon); }
.nav-links a.nav-cta:hover { background: #fff; }

/* ============ Intro wipe ============ */
.intro {
  position: fixed; inset: 0; z-index: 100;
  background: var(--forest-deep);
  display: none; place-items: center;
}
.intro.is-on { display: grid; }
.intro img { width: clamp(72px, 10vw, 130px); opacity: 0; }

/* ============ Hero (full-bleed video) ============ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center;
  padding: 130px var(--pad) 90px;
  overflow: clip; text-align: center;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media .hero-still,
.hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) contrast(1.05);
}
/* The video only fades up once it actually has frames (initHeroVideo adds .is-live).
   Until then — or forever, if Content/hero.mp4 is missing — the still is the hero. */
.hero-media video { opacity: 0; transition: opacity .8s ease; }
.hero-media video.is-live { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(13, 15, 12, .66), rgba(13, 15, 12, .5) 45%, var(--carbon) 97%);
}
.hero-center {
  position: relative; z-index: 2;
  display: grid; justify-items: center; gap: clamp(18px, 3vh, 30px);
  max-width: 1150px;
}
.hero-title { font-size: clamp(38px, 9.5vw, 156px); }
.hero-sub { max-width: 56ch; color: var(--bone); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.55; }

/* ============ Manifesto ============ */
.manifesto-text { font-size: clamp(36px, 6.5vw, 104px); max-width: 14em; }
.manifesto-lede { margin-top: clamp(28px, 4vw, 56px); margin-left: auto; }

/* Three-step coaching model beneath the manifesto */
.process {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(56px, 8vw, 112px);
}
.step { border-top: 1px solid var(--hairline); padding-top: 18px; display: grid; gap: 10px; align-content: start; }
.step-num {
  font-size: 12px; font-weight: 600; letter-spacing: .18em;
  color: var(--accent-bright); font-variant-numeric: tabular-nums;
}
.step-name { font-size: 17px; font-weight: 600; }
.step-copy { color: var(--bone-70); font-size: 15px; line-height: 1.6; max-width: 40ch; }
@media (max-width: 820px) { .process { grid-template-columns: 1fr; gap: 28px; } }

/* ============ Tracks ============ */
/* Heading stays short so the two track names below it dominate; the lede carries
   the detail, including remote, so the heading excludes nobody.
   34px floor: at the shared .h2 floor of 40px the longest line runs ~18px past
   the container and within 2px of a 320px screen edge — no margin for the
   Android path, where the fallback drops to system-ui and the metrics shift. */
.tracks-wrap .h2 { font-size: clamp(34px, 6vw, 88px); max-width: 12em; }
.tracks-lede { margin-top: clamp(18px, 2.5vw, 28px); }
.track {
  --track-h: clamp(340px, 46vh, 480px);
  position: relative; display: block; overflow: clip;
  min-height: var(--track-h);
}
.track-bg { position: absolute; inset: 0; overflow: hidden; }
/* Scrim sits above the rolling strip so copy stays legible */
.track-bg::after { content: ""; position: absolute; inset: 0; }
.track--health .track-bg::after {
  background: radial-gradient(120% 120% at 18% 20%, rgba(36, 71, 58, .72) 0%, rgba(18, 36, 28, .8) 55%, rgba(13, 15, 12, .9) 100%);
}
.track--perf .track-bg::after {
  background: radial-gradient(120% 120% at 82% 25%, rgba(27, 46, 38, .72) 0%, rgba(16, 24, 18, .82) 50%, rgba(10, 12, 10, .9) 100%);
}

/* Diagonal image carousel: panes are skewed 45°, images counter-skewed back
   upright. The strip holds two identical sets and slides one set-width per
   loop, so the roll never shows a seam-jump. */
.track-strip {
  --pane-w: clamp(320px, 46vw, 720px);
  --seam: 4px;
  position: absolute; top: 0; bottom: 0;
  left: calc(-1 * (var(--pane-w) + var(--seam))); /* pre-fills the corner the skew would expose */
  display: flex; width: max-content;
  animation: strip-roll 220s linear infinite;
  will-change: transform;
}
.track--perf .track-strip { animation-direction: reverse; animation-duration: 260s; }
.strip-pane {
  flex: none; position: relative; overflow: hidden;
  width: var(--pane-w); height: 100%;
  margin-right: var(--seam); /* the 45° border between images */
  transform: skewX(-45deg);
}
.strip-pane > span {
  position: absolute; inset: 0 calc(var(--track-h) * -0.62); /* bleed = half pane height, so the counter-skew stays covered */
  transform: skewX(45deg);
  background-size: cover; background-position: center 35%;
}
@keyframes strip-roll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .track-strip { animation: none; } }
.no-anim .track-strip { animation: none; }
/* GSAP drives the strips from scroll position; the CSS roll must not fight it */
.strips-scroll .track-strip { animation: none; }
.track-inner {
  position: relative; z-index: 2; min-height: inherit;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: clamp(20px, 4vw, 64px);
  padding-block: clamp(32px, 5vw, 72px);
}
.track-copy .label { display: block; margin-bottom: 16px; }
/* 27px floor: "PERFORMANCE" is one unbreakable word — it must clear a 320px screen */
.track-name { font-size: clamp(27px, 5.5vw, 96px); margin-bottom: 16px; transition: transform .6s cubic-bezier(.22, 1, .36, 1); }
/* Break before the accent word so both tracks read as two lines. "Performance"
   already wrapped there on its own; this makes "Health" match at every width
   rather than only where the line happens to run out. */
.track-name em { display: block; }
.track:hover .track-name { transform: translateX(16px); }
.track-btns { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.track-btn {
  white-space: nowrap;
  cursor: pointer; font: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone); background: rgba(13, 15, 12, .35);
  border: 1px solid var(--hairline); border-radius: 999px; padding: 13px 22px;
  transition: background .3s, border-color .3s, color .3s;
}
.track-btn:hover { background: var(--bone); border-color: var(--bone); color: var(--carbon); }

@media (max-width: 820px) {
  .track-inner { grid-template-columns: 1fr; align-items: start; align-content: end; }
  .track-inner > * { min-width: 0; } /* long track names must not blow out the column */
}

/* ============ Coach ============ */
.coach-grid { display: grid; grid-template-columns: minmax(280px, 5fr) 7fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.coach-sticky { position: sticky; top: 12vh; }
.coach-portrait { overflow: hidden; aspect-ratio: 4 / 5; }
.coach-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.coach-stamp { margin-top: 16px; font-size: clamp(18px, 1.9vw, 26px); }
/* Post-nominals under the stamp. Same quiet register as .label, but the case is
   left alone — uppercasing turns PhD(c) into PHD(C) and loses "candidate". */
.coach-quals { margin-top: 10px; font-size: clamp(13px, 1vw, 15px); font-weight: 500; letter-spacing: .08em; color: var(--bone-55); }
.coach-more { margin-top: 16px; }
.coach-lines .h2 { margin-bottom: clamp(24px, 3vw, 40px); max-width: 12em; }
.coach-lede { margin-bottom: clamp(36px, 4.5vw, 64px); }
.cred { display: grid; grid-template-columns: minmax(110px, auto) 1fr; gap: clamp(16px, 3vw, 48px); padding-block: clamp(18px, 2.4vw, 30px); align-items: baseline; }
.cred-num { font-size: clamp(26px, 3vw, 44px); color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.cred-name { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.cred-copy { color: var(--bone-55); font-size: 15px; max-width: 52ch; }

@media (max-width: 820px) {
  .coach-grid { grid-template-columns: 1fr; }
  .coach-sticky { position: static; max-width: 420px; }
}

/* ============ Proof (testimonials) ============ */
.proof-text {
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 42px); line-height: 1.35;
  letter-spacing: -.01em;
  max-width: 32ch;
}
.proof-cite { margin-top: clamp(20px, 3vw, 32px); display: grid; gap: 4px; }
.proof-cite .name { font-weight: 700; }
.proof-cite .role { color: var(--bone-55); font-size: 13px; }

/* Inverted feature section: one light moment punctuates the otherwise-dark scroll,
   so the darkness reads as a decision rather than a default. Carries the flagship
   testimonial — carbon on bone, with the accent green retained. */
.section--bone { background: var(--bone); color: var(--carbon); }
.section--bone.hairline-top { border-top-color: rgba(13, 15, 12, .12); }
.section--bone ::selection { background: var(--carbon); color: var(--bone); }
.proof--feature .proof-text { color: var(--carbon); }
.proof--feature .proof-cite .name { color: var(--carbon); }
.proof--feature .proof-cite .role { color: rgba(13, 15, 12, .55); }

/* ============ Semi-private floor ============ */
.floor-head { display: grid; gap: 20px; }
/* min-width:0 so the heading's long word can't force the grid column to
   min-content and drag the label and lede out with it. Same guard as
   .track-inner > *. */
.floor-head > * { min-width: 0; }
/* 26px floor: "PROGRAMMES." is one unbreakable word in heavy 125%-stretch caps,
   and overflows a 320px screen at the shared .h2 floor of 40px. The 8vw middle
   lets it grow again as soon as there's room. Same constraint as .track-name. */
.floor-head .h2 { font-size: clamp(26px, 8vw, 88px); max-width: 13em; }

/* Capacity grid: five lanes side by side under one spanning coach bar. Hairlines
   and tabular figures only — it must read as a snapshot of the floor, not as a
   pricing table. */
.floor-grid { margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--hairline); }
.floor-lanes { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); }
.lane {
  border-right: 1px solid var(--hairline);
  padding: 22px clamp(12px, 1.5vw, 20px) 28px;
  display: grid; gap: 14px; align-content: start;
}
.lane:last-child { border-right: 0; }
.lane-who {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-bright); line-height: 1.45;
}
.lane-work { list-style: none; display: grid; gap: 9px; }
.lane-work li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  font-size: 13px; line-height: 1.35; color: var(--bone-70);
}
.lane-set { flex: none; font-size: 12px; color: var(--bone-55); font-variant-numeric: tabular-nums; }
/* The top rule is an element, not a border, so initFloorGrid can sweep it across
   under the lanes. Without JS it just renders as the full-width hairline. */
.floor-coach {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  padding: 17px clamp(12px, 1.5vw, 20px);
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone);
}
.floor-coach-rule {
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: var(--hairline); transform-origin: left;
}
.floor-coach-dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); }
.floor-meta { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; }
.floor-meta i { font-style: normal; color: var(--accent-bright); }

.floor-path { margin-top: clamp(40px, 6vw, 72px); display: grid; gap: 14px; justify-items: start; max-width: 60ch; }
.floor-path-title { font-size: clamp(19px, 2vw, 26px); font-weight: 600; }
.floor-path p { color: var(--bone-70); font-size: 15.5px; line-height: 1.65; }
.floor-path .btn-line { margin-top: 12px; }

/* Stack the lanes rather than scrolling them: nothing on the floor gets hidden */
@media (max-width: 900px) {
  .floor-lanes { grid-template-columns: 1fr; }
  .lane { border-right: 0; border-bottom: 1px solid var(--hairline); padding-inline: 0; }
  .lane:last-child { border-bottom: 0; }
  .floor-coach { padding-inline: 0; }
}

/* ============ Rates (v1-style ladder) ============ */
.rates-head { display: grid; gap: 20px; margin-bottom: clamp(40px, 6vw, 88px); }
.rates-head .h2 { max-width: 10em; }
.ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: var(--panel); border: 1px solid var(--hairline);
  padding: clamp(26px, 3vw, 40px) clamp(22px, 2.5vw, 32px);
}
.tier--reco { background: var(--forest-deep); border-color: var(--accent); }
.tier-tag {
  position: absolute; top: -12px; left: clamp(22px, 2.5vw, 32px);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--carbon); background: var(--accent-bright); padding: 5px 12px; border-radius: 999px;
}
/* Role tag: marks a tier's place in the path (foundations -> long-term home).
   Sits in-flow and outlined, so it reads as a role rather than competing with
   the recommended tier's solid badge straddling the card edge. */
.tier-tag--role {
  position: static; align-self: start;
  color: var(--accent-bright); background: transparent;
  border: 1px solid rgba(110, 156, 130, .4);
}
.tier-name { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-55); }
.tier-price { font-size: clamp(30px, 3vw, 44px); }
.tier-price .per, .remote-price .per { font-weight: 500; font-stretch: 100%; font-size: .38em; color: var(--bone-55); text-transform: none; margin-left: 4px; }
.tier-intro { font-size: 14px; font-weight: 600; color: var(--accent-bright); }
/* One inclusion per line: scannable, and long phrases never wrap mid-thought */
.tier-inc {
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bone); line-height: 1.9;
}
.tier-inc span { display: block; }
.tier-inc i { display: none; }
.tier-copy { color: var(--bone-70); font-size: 14.5px; line-height: 1.65; }
.tier-cta { margin-top: auto; padding-top: 10px; }
.tier-btn {
  display: block; text-align: center;
  background: var(--bone); color: var(--carbon); font-weight: 700;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 24px; border-radius: 999px;
  transition: background .3s, transform .3s;
}
.tier-btn:hover { background: #fff; transform: translateY(-2px); }
.remote {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); flex-wrap: wrap;
  border: 1px solid var(--hairline); margin-top: 18px;
  padding: clamp(24px, 3vw, 36px) clamp(22px, 2.5vw, 32px);
}
.remote-mark { writing-mode: vertical-rl; transform: rotate(180deg); color: var(--accent-bright); }
.remote-btns { display: flex; flex-direction: column; gap: 10px; }
.remote-main { flex: 1; min-width: 260px; display: grid; gap: 10px; }
.remote-row { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.remote-row h3 { font-size: clamp(20px, 2vw, 26px); }
.remote-price { font-weight: 900; font-stretch: 125%; font-size: clamp(24px, 2.2vw, 32px); }

/* ============ Timetable band ============ */
.tt-band { display: block; background: var(--forest-deep); overflow: clip; }
.tt-inner { padding-block: clamp(48px, 8vw, 120px); display: grid; gap: 14px; }
.tt-title { font-size: clamp(30px, 5vw, 80px); }
.tt-arr { display: inline-block; transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.tt-band:hover .tt-arr { transform: translateX(20px); }
.tt-meta { margin-top: 6px; font-size: clamp(14px, 1.2vw, 16px); color: var(--bone-70); }
.tt-meta span { white-space: nowrap; }
.tt-meta i { font-style: normal; color: var(--accent-bright); margin-inline: 4px; }
/* When the strip/meta phrases wrap to their own lines, drop the separators */
@media (max-width: 640px) {
  .tt-meta i, .floor-meta i { display: none; }
}

@media (max-width: 960px) {
  .ladder { grid-template-columns: 1fr; }
  .remote-mark { writing-mode: horizontal-tb; transform: none; }
}

/* ============ FAQ ============ */
.faq-title { font-size: clamp(30px, 3.6vw, 52px); } /* supporting section — quieter than the main h2s */
.faq-list { max-width: 860px; margin-top: clamp(28px, 4vw, 48px); }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: 16.5px; font-weight: 600;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-bright); }
.faq-x {
  flex: none; font-weight: 400; font-size: 22px; line-height: 1; color: var(--accent-bright);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.faq-item[open] .faq-x { transform: rotate(45deg); }
.faq-a { padding: 0 0 22px; color: var(--bone-70); font-size: 15px; line-height: 1.65; max-width: 62ch; }

/* ============ Enquiry ============ */
.enquiry { background: var(--panel); }
.enquiry-grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.enquiry-copy { display: grid; gap: clamp(20px, 3vw, 32px); }
.enquiry-copy .h2 { max-width: 9em; }
.enquiry-alt { color: var(--bone-70); font-size: 15px; }

#enquiryForm { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-55); }
.field input, .field textarea, .field select {
  background: transparent; border: 0; border-bottom: 1px solid var(--hairline);
  color: var(--bone); font: inherit; padding: 10px 2px;
  border-radius: 0; transition: border-color .3s;
}
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EDEAE2' stroke-opacity='0.55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center; background-size: 16px;
  padding-right: 30px;
}
.req { color: var(--accent-bright); }

/* Custom dropdown (progressive enhancement over .field select) */
.fs { position: relative; }
.fs .fs-native { display: none; }
.fs-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; cursor: pointer; text-align: left;
  background: transparent; border: 0; border-bottom: 1px solid var(--hairline);
  color: var(--bone); font: inherit; padding: 10px 2px;
  transition: border-color .3s;
}
.fs-open .fs-btn { border-color: var(--accent); }
.fs-value.fs-placeholder { color: var(--bone-55); }
.fs-chev { color: var(--bone-55); flex: none; transition: transform .3s cubic-bezier(.22, 1, .36, 1); }
.fs-open .fs-chev { transform: rotate(180deg); }
.fs-list {
  list-style: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 30;
  background: rgba(19, 22, 18, .92);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--hairline); border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .55);
  padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s, transform .25s cubic-bezier(.22, 1, .36, 1), visibility 0s .25s;
}
.fs-open .fs-list {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .25s, transform .25s cubic-bezier(.22, 1, .36, 1), visibility 0s;
}
.fs-opt {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 14px; border-radius: 9px; cursor: pointer;
  color: var(--bone-55); font-size: 14.5px;
  transition: background .2s, color .2s;
}
.fs-opt:hover, .fs-opt.is-hl { background: rgba(237, 234, 226, .07); color: var(--bone); }
.fs-opt[aria-selected="true"] { color: var(--bone); }
.fs-opt[aria-selected="true"] .fs-opt-name { color: var(--accent-bright); font-weight: 600; }
.fs-opt-name { display: inline-flex; align-items: center; gap: 8px; }
.fs-check { flex: none; opacity: 0; transition: opacity .2s; }
.fs-opt[aria-selected="true"] .fs-check { opacity: 1; }
.fs-opt-price { font-weight: 600; color: var(--bone); font-size: 13.5px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.field select option { background: var(--panel); color: var(--bone); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field-error { font-size: 12px; color: #D98C7A; min-height: 1em; }
.form-alert { padding: 14px 16px; border: 1px solid var(--hairline); font-size: 14px; }
.form-alert.ok { border-color: var(--accent); color: var(--bone); }
.form-alert.bad { border-color: #D98C7A; color: #D98C7A; }
.form-submit {
  justify-self: start; cursor: pointer;
  background: var(--bone); color: var(--carbon); border: 0; font: inherit; font-weight: 700;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 999px;
  transition: background .3s, transform .3s;
}
.form-submit:hover { background: #fff; transform: translateY(-2px); }
.form-submit:disabled { opacity: .6; transform: none; cursor: default; }

@media (max-width: 900px) {
  .enquiry-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ Footer ============ */
/* Extra bottom padding keeps the floating dock clear of the footer row */
.footer { padding: clamp(48px, 7vw, 96px) 0 120px; overflow: clip; }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--hairline); padding-top: 24px; }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--bone-55); transition: color .25s; padding: 14px 4px; margin: -14px -4px; }
.footer-links a:hover { color: var(--bone); }
.footer-ig { display: inline-flex; align-items: center; gap: 7px; }
.footer-ig .ig-glyph { flex: none; }
/* Base row: linked studio address + copyright, quieter than the row above it. */
.footer-base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px 24px; margin-top: 20px;
}
.footer-addr {
  font-size: 13px; color: var(--bone-55);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--hairline);
  transition: color .25s, text-decoration-color .25s;
  padding: 12px 4px; margin: -12px -4px;
}
.footer-addr:hover { color: var(--bone); text-decoration-color: var(--accent-bright); }

/* ============ Modals ============ */
.v2-modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 20px; }
.v2-modal[hidden] { display: none; }
.v2-modal-overlay {
  position: absolute; inset: 0; background: rgba(6, 8, 6, .74); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s;
}
.v2-modal-card {
  position: relative; width: 100%; max-width: 680px; max-height: 86vh; overflow: auto;
  background: var(--panel); border: 1px solid var(--hairline);
  padding: clamp(24px, 4vw, 48px);
  opacity: 0; transform: translateY(16px);
  transition: opacity .35s, transform .35s cubic-bezier(.22, 1, .36, 1);
}
.v2-modal.is-open .v2-modal-overlay { opacity: 1; }
.v2-modal.is-open .v2-modal-card { opacity: 1; transform: none; }
.v2-modal-cta { margin-top: 26px; }
.v2-modal-close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px;
  cursor: pointer; font-size: 19px; line-height: 1;
  color: var(--bone); background: none; border: 1px solid var(--hairline); border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s;
}
.v2-modal-close:hover { background: var(--bone); color: var(--carbon); border-color: var(--bone); }
.v2-modal-title { font-size: clamp(30px, 4vw, 46px); margin: 10px 0 20px; }
.v2-modal-body { display: grid; gap: 16px; color: var(--bone-55); font-size: 15px; line-height: 1.65; }
.tq { border-top: 1px solid var(--hairline); padding-top: 18px; display: grid; gap: 10px; }
.tq blockquote { color: var(--bone); font-size: 15.5px; }
.tq cite { font-style: normal; }
.tq .name { font-weight: 700; color: var(--bone); }
.tq .role { color: var(--bone-55); font-size: 13px; margin-left: 10px; }
html.modal-open { overflow: hidden; }

/* ============ Timetable page ============ */
.cal-page { padding-top: clamp(72px, 9vw, 140px); }
.cal-head { display: grid; gap: 20px; max-width: 760px; }
.cal-head .h2 { font-size: clamp(34px, 4.5vw, 64px); } /* quieter than homepage h2s — it's a utility page */
/* Two-column explainer: the vertical hairline is the divider, so the columns
   need symmetrical inner padding — the rule sits in the gutter, not against text. */
.cal-split {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: clamp(44px, 5.5vw, 76px);
  border-top: 1px solid var(--hairline);
}
.cal-split-col { padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 48px); display: grid; gap: 16px; align-content: start; }
.cal-split-col:first-child { padding-left: 0; }
.cal-split-col + .cal-split-col { border-left: 1px solid var(--hairline); padding-right: 0; }
/* "Semi-private coaching" wraps to two lines, "Private 1:1" doesn't — reserving
   two lines keeps the body copy on the same baseline across the divider. */
.cal-split-name { font-size: clamp(24px, 2.6vw, 38px); min-height: 1.84em; }
.cal-split-copy { color: var(--bone-70); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.6; max-width: 46ch; }
@media (max-width: 780px) {
  .cal-split { grid-template-columns: 1fr; }
  .cal-split-col { padding-inline: 0; }
  .cal-split-col + .cal-split-col { border-left: 0; border-top: 1px solid var(--hairline); }
  .cal-split-name { min-height: 0; } /* stacked — nothing to align against */
}

.cal-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: clamp(36px, 5vw, 64px); }
.cal-filter-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.cal-filter-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cal-toggle-track {
  position: relative; width: 36px; height: 20px; border-radius: 999px;
  background: rgba(13, 15, 12, .35); border: 1px solid var(--hairline);
  transition: background .25s, border-color .25s;
}
.cal-toggle-thumb {
  position: absolute; top: 1px; left: 1px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bone-55); transition: transform .25s, background .25s;
}
.cal-filter-toggle input:checked + .cal-toggle-track { background: rgba(110, 156, 130, .25); border-color: var(--accent-bright); }
.cal-filter-toggle input:checked + .cal-toggle-track .cal-toggle-thumb { transform: translateX(16px); background: var(--accent-bright); }
.cal-filter-toggle input:focus-visible + .cal-toggle-track { outline: 2px solid var(--accent-bright); outline-offset: 2px; }

.cal-controls { display: flex; align-items: center; gap: 16px; margin: clamp(36px, 5vw, 64px) 0 24px; }
.cal-week { min-width: 15ch; text-align: center; color: var(--bone); font-size: 12px; white-space: nowrap; }
.track-btn:disabled { opacity: .4; cursor: default; }
.track-btn:disabled:hover { background: rgba(13, 15, 12, .35); border-color: var(--hairline); color: var(--bone); }
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; align-items: start; }
.cal-status { color: var(--bone-55); padding: 32px 0; grid-column: 1 / -1; }
.cal-link { text-decoration: underline; text-underline-offset: 3px; color: var(--bone); transition: color .25s; }
.cal-link:hover { color: var(--accent-bright); }
/* Text-sized links sit ~17px tall, under the 44px touch minimum. Extend the hit
   area with an overlay rather than padding, which would drag the underline off
   the text. Same idiom as .btn-line::before. */
.enquiry-alt .cal-link { position: relative; display: inline-block; }
.enquiry-alt .cal-link::before { content: ""; position: absolute; inset: -14px -8px; }
.cal-day {
  border-top: 1px solid var(--hairline); padding-top: 14px;
  display: grid; gap: 10px; align-content: start; min-height: 150px;
}
.cal-day-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.cal-day-num { font-size: 20px; }
.cal-empty { color: var(--bone-55); font-size: 12.5px; }
.cal-card { background: var(--panel); border: 1px solid var(--hairline); padding: 14px; display: grid; gap: 10px; }
.cal-card-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cal-time { font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums; }
.cal-pill {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; border: 1px solid var(--hairline);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.cal-pill--open { color: var(--accent-bright); border-color: rgba(110, 156, 130, .4); }
.cal-pill--almost { color: #D9A96E; border-color: rgba(217, 169, 110, .4); }
.cal-pill--full { color: var(--bone-55); }
.cal-label { font-size: 12.5px; color: var(--bone-55); }
.cal-book {
  cursor: pointer; font: inherit; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--carbon); background: var(--bone); border: 0; border-radius: 999px;
  padding: 12px; transition: background .3s;
}
.cal-book:hover { background: #fff; }
.cal-book:disabled { background: transparent; border: 1px solid var(--hairline); color: var(--bone-55); cursor: default; }
.cal-foot { margin-top: clamp(48px, 6vw, 80px); }
.cal-when { margin-top: -6px; margin-bottom: 6px; color: var(--accent-bright); }
#bookForm { display: grid; gap: 20px; }
#bookForm[hidden] { display: none; }
.cal-confirm { display: grid; gap: 10px; justify-items: start; padding: 8px 0; }
.cal-confirm[hidden] { display: none; }
.cal-confirm h3 { font-size: 20px; color: var(--bone); }
.cal-confirm p { max-width: 34ch; }
.cal-tick { color: var(--accent-bright); }
@media (max-width: 1100px) {
  .cal { grid-template-columns: repeat(2, 1fr); }
  .cal-day { min-height: 0; padding-bottom: 8px; }
}
@media (max-width: 640px) { .cal { grid-template-columns: 1fr; } }

/* ============ Edit mode (?edit) ============ */
.edit-mode [data-editable] { outline: 1px dashed rgba(78, 122, 95, .55); outline-offset: 3px; cursor: text; }
.edit-mode [data-editable]:hover { outline-color: var(--accent); }
.edit-mode [data-editable]:focus { outline: 2px solid var(--accent); outline-offset: 3px; }
.edit-bar {
  position: fixed; left: 16px; bottom: 16px; z-index: 200;
  display: flex; align-items: center; gap: 14px;
  background: var(--panel); border: 1px solid var(--hairline); border-radius: 12px;
  padding: 10px 14px; font-size: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}
.edit-bar-tag {
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 10px;
  color: var(--carbon); background: var(--accent); padding: 4px 8px; border-radius: 6px;
}
.edit-bar-count { color: var(--bone-55); }
.edit-bar-btn {
  cursor: pointer; font: inherit; font-weight: 600;
  background: var(--bone); color: var(--carbon); border: 0; border-radius: 8px; padding: 8px 14px;
}
.edit-bar-btn--ghost { background: transparent; color: var(--bone-55); border: 1px solid var(--hairline); }
.edit-bar-btn:hover { filter: brightness(1.1); }

/* Mobile dock: three items (Timetable stays reachable via the band + footer),
   so labels keep a legible size and full tap targets */
@media (max-width: 640px) {
  .nav-links { gap: 2px; padding: 6px; }
  .nav-links a { font-size: 11px; letter-spacing: .1em; padding: 14px 14px; }
  .nav-links a.nav-tt { display: none; }
}

/* ============ Location pages ============ */
/* The suburb landing pages (/personal-trainer-*) reuse the section, display, proof
   and faq systems wholesale. Only the facts strip and the roster list are new — if
   a page needs more than this, it's drifting from the rest of the site. */
.loc-hero { padding-block: clamp(96px, 11vw, 160px) clamp(48px, 6vw, 80px); }
.loc-title { font-size: clamp(38px, 5.4vw, 78px); max-width: 16ch; }
.loc-hero .lede { margin-top: clamp(20px, 2.4vw, 30px); }
.loc-hero .btn-pill { margin-top: clamp(26px, 3vw, 38px); }

.loc-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  margin-top: clamp(40px, 5vw, 68px);
}
.loc-fact {
  padding: clamp(22px, 2.6vw, 34px) clamp(20px, 2.4vw, 40px);
  display: grid; gap: 8px; align-content: start;
}
.loc-fact:first-child { padding-left: 0; }
.loc-fact:last-child { padding-right: 0; }
.loc-fact + .loc-fact { border-left: 1px solid var(--hairline); }
.loc-fact-k { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-55); }
.loc-fact-v { font-size: clamp(19px, 1.8vw, 26px); font-weight: 700; }
.loc-fact-n { font-size: 14px; line-height: 1.6; color: var(--bone-70); }

/* Roster rows carry the only genuinely suburb-specific facts on the page, so they
   get hairlines rather than bullets — closer to the tier list than to body copy. */
.loc-roster { margin-top: clamp(26px, 3vw, 38px); max-width: 720px; }
.loc-roster li {
  list-style: none; padding: 15px 0;
  border-top: 1px solid var(--hairline);
  font-size: 15.5px; line-height: 1.6; color: var(--bone-70);
}
.loc-roster li:last-child { border-bottom: 1px solid var(--hairline); }
.loc-roster b { color: var(--bone); font-weight: 600; }

.loc-next { display: flex; flex-wrap: wrap; gap: 16px 30px; align-items: center; margin-top: clamp(24px, 3vw, 34px); }
.loc-areas,
.footer-areas { margin-top: 18px; font-size: 13.5px; color: var(--bone-55); }
.loc-areas a,
.footer-areas a { color: var(--bone-55); text-decoration: underline; text-underline-offset: 3px; }
.loc-areas a:hover,
.footer-areas a:hover { color: var(--accent-bright); }

@media (max-width: 780px) {
  .loc-facts { grid-template-columns: 1fr; }
  .loc-fact { padding-inline: 0; }
  .loc-fact + .loc-fact { border-left: 0; border-top: 1px solid var(--hairline); }
}
.loc-p { margin-top: clamp(18px, 2vw, 24px); }
/* Jody M.'s quote runs to four paragraphs; the rest are single blocks. */
.tq blockquote p + p { margin-top: 10px; }

/* ============ Profile page ============ */
/* Portrait sits beside the intro on desktop and drops below the CTA on mobile —
   it must never push the h1 down the page, since that heading is the whole point
   of the page existing separately from the homepage modal. */
.bio-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.bio-portrait { margin: 0; }
.bio-portrait img { display: block; width: 100%; height: auto; border: 1px solid var(--hairline); }
@media (max-width: 860px) {
  .bio-head { grid-template-columns: 1fr; }
  .bio-portrait { max-width: 320px; margin-top: clamp(28px, 4vw, 40px); }
}
