/* ──────────────────────────────────────────────────────────────
   FITNESS COACHING — DESIGN TOKENS & GLOBAL STYLES
   Black & off-white with a single signal accent. Editorial rhythm.
   ────────────────────────────────────────────────────────────── */

:root {
  /* Surfaces */
  --ink:        #0A0A0A;
  --ink-2:      #141414;
  --ink-3:      #1C1C1C;
  --paper:      #F4F2EE;
  --paper-2:    #EAE6DF;
  --line-dark:  rgba(255,255,255,.10);
  --line-light: rgba(10,10,10,.10);

  /* Type colors */
  --on-ink:     #F4F2EE;
  --on-ink-mut: rgba(244,242,238,.58);
  --on-ink-dim: rgba(244,242,238,.36);
  --on-paper:   #0A0A0A;
  --on-paper-mut: rgba(10,10,10,.62);
  --on-paper-dim: rgba(10,10,10,.38);

  /* Accent — overridable via Tweaks */
  --accent:     #FF5B1F;        /* ember */
  --accent-ink: #0A0A0A;        /* text on accent fill */

  /* Type ramp */
  --f-sans:    "Geist", ui-sans-serif, system-ui, sans-serif;
  --f-display: "Archivo", "Geist", ui-sans-serif, system-ui, sans-serif;
  --f-serif:   "Instrument Serif", "Times New Roman", serif;
  --f-mono:    "Geist Mono", ui-monospace, monospace;

  /* Page rhythm */
  --max:       1320px;
  --gutter:    clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 160px);

  /* Motion */
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,.05,.36,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-feature-settings: "ss01", "cv11";
  color: var(--on-paper);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

/* ──────────────────────────────────────────────────────────────
   LAYOUT PRIMITIVES
   ────────────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section--paper { background: var(--paper); color: var(--on-paper); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  opacity: .72;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .5;
}
.section--ink .eyebrow { color: var(--on-ink); }

/* ──────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ────────────────────────────────────────────────────────────── */
.display {
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 90%;
  letter-spacing: -0.025em;
  line-height: .92;
  text-wrap: balance;
  margin: 0;
}
.display--hero  { font-size: clamp(48px, 9.2vw, 148px); letter-spacing: -0.035em; }
.display--xl    { font-size: clamp(40px, 6.8vw, 104px); }
.display--lg    { font-size: clamp(34px, 5.2vw, 80px); }
.display--md    { font-size: clamp(28px, 3.6vw, 56px); }

.serif-i {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  max-width: 56ch;
  color: var(--on-paper-mut);
  text-wrap: pretty;
}
.section--ink .lede { color: var(--on-ink-mut); }

/* Editorial style variant — replaces the second word/phrase in headlines with italic serif */
.is-editorial .display em,
.is-editorial .display .em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  letter-spacing: -0.015em;
}

/* ──────────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .35s var(--ease-out), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  transition: transform .4s var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:hover .dot { transform: scale(1.4); }

.btn--primary {
  background: var(--paper);
  color: var(--on-paper);
}
.btn--primary:hover { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover .dot { background: var(--accent-ink); }

.btn--dark {
  background: var(--ink);
  color: var(--on-ink);
}
.btn--dark:hover { background: var(--accent); color: var(--accent-ink); }
.btn--dark:hover .dot { background: var(--accent-ink); }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  opacity: .85;
}
.btn--ghost:hover { opacity: 1; background: rgba(255,255,255,.06); }
.section--paper .btn--ghost:hover { background: rgba(10,10,10,.04); }

.btn--lg { height: 64px; padding: 0 32px; font-size: 16px; }

/* Arrow glyph used in CTAs */
.arrow { display: inline-block; transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ──────────────────────────────────────────────────────────────
   NAVBAR
   ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .4s var(--ease-out), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.nav.is-over-dark { color: var(--on-ink); }
.nav.is-over-light { color: var(--on-paper); }
.nav.is-stuck {
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-dark);
  color: var(--on-ink);
}
.nav.is-stuck.over-paper {
  background: rgba(244,242,238,.78);
  border-bottom-color: var(--line-light);
  color: var(--on-paper);
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.brand-mark::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  opacity: .82;
  transition: opacity .2s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  height: 40px; padding: 0 18px;
  border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 13.5px; font-weight: 500;
  transition: transform .25s var(--ease-out), background .25s;
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  align-items: center; justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.nav-burger span {
  display: block;
  width: 14px; height: 1.5px;
  background: currentColor;
}

@media (max-width: 880px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ──────────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media::before {
  /* cinematic gradient — strong left for text legibility, soft right where subject is */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,10,10,.92) 0%,
      rgba(10,10,10,.78) 22%,
      rgba(10,10,10,.45) 45%,
      rgba(10,10,10,.18) 70%,
      rgba(10,10,10,.30) 100%),
    linear-gradient(180deg,
      rgba(10,10,10,.35) 0%,
      rgba(10,10,10,0) 25%,
      rgba(10,10,10,0) 70%,
      rgba(10,10,10,.85) 100%);
  z-index: 2;
}
@media (max-width: 880px) {
  .hero-media::before {
    background:
      linear-gradient(180deg,
        rgba(10,10,10,.55) 0%,
        rgba(10,10,10,.15) 25%,
        rgba(10,10,10,.35) 55%,
        rgba(10,10,10,.95) 100%);
  }
}
.hero-media img,
.hero-media .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(.92) saturate(.92);
  transform: scale(1.02);
  animation: heroKenburns 24s var(--ease-in-out) infinite alternate;
  object-position: center 8%;
}
@media (min-width: 1200px) {
  .hero-media img,
  .hero-media .hero-img {
    object-position: center 12%;
  }
}
@media (max-width: 880px) {
  .hero-media img,
  .hero-media .hero-img {
    object-position: center top;
  }
}
@keyframes heroKenburns {
  from { transform: scale(1.0) translate(0, 0); }
  to   { transform: scale(1.06) translate(-.5%, -1%); }
}

.hero-grain {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: overlay;
  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='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-body {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(48px, 8vh, 120px);
  padding-top: clamp(120px, 18vh, 180px);
}

.hero-top {
  position: relative;
  z-index: 4;
  padding-top: 96px;
  padding-bottom: 24px;
  display: flex; gap: 40px; flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-headline { max-width: 18ch; }
.hero-sub {
  margin-top: 28px;
  max-width: 48ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--on-ink-mut);
  text-wrap: pretty;
}
.hero-actions {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* hero stat strip across bottom */
.hero-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line-dark);
  margin-top: clamp(48px, 6vh, 80px);
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  font-size: 13px;
}
.hero-strip .cell {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-strip .lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-ink-dim);
}
.hero-strip .val {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(22px, 2.4vw, 32px);
}
.hero-strip .val em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
@media (max-width: 720px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-ink-dim);
  display: flex; align-items: center; gap: 10px;
}
.scroll-cue .line {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, transparent, var(--on-ink-mut), transparent);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ──────────────────────────────────────────────────────────────
   IMAGE PLACEHOLDERS (until user supplies real photos)
   ────────────────────────────────────────────────────────────── */
.ph {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2622 50%, #0a0a0a 100%);
  overflow: hidden;
  display: grid; place-items: center;
  color: var(--on-ink-dim);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 2px, transparent 2px 6px),
    radial-gradient(60% 60% at 30% 25%, rgba(255,91,31,.10), transparent 60%);
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence baseFrequency='.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .08;
  mix-blend-mode: overlay;
}
.ph > span {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.ph--paper {
  background: linear-gradient(135deg, #e8e4dc 0%, #f4f2ee 50%, #d8d3ca 100%);
  color: var(--on-paper-dim);
}
.ph--paper::before {
  background-image:
    repeating-linear-gradient(115deg, rgba(10,10,10,.03) 0 2px, transparent 2px 6px);
}
.ph--paper > span { border-color: var(--line-light); }

/* Stylized silhouette overlay for hero placeholder */
.ph--athlete::before {
  background:
    radial-gradient(40% 60% at 50% 55%, rgba(20,20,20,.0) 0%, rgba(10,10,10,.6) 80%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 6px);
}

/* ──────────────────────────────────────────────────────────────
   PROBLEM GRID
   ────────────────────────────────────────────────────────────── */
.problem-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 800px) { .problem-head { grid-template-columns: 1fr; } }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.section--ink .problem-grid { border-top-color: var(--line-dark); }
@media (max-width: 900px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  position: relative;
  padding: 36px 28px 32px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 240px;
  transition: background .3s var(--ease-out);
}
.section--ink .problem-card {
  border-right-color: var(--line-dark);
  border-bottom-color: var(--line-dark);
}
.problem-card:hover { background: rgba(10,10,10,.03); }
.section--ink .problem-card:hover { background: rgba(255,255,255,.03); }

.problem-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .5;
}
.problem-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.problem-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-paper-mut);
  max-width: 32ch;
}
.section--ink .problem-card p { color: var(--on-ink-mut); }

.problem-card .glyph {
  width: 36px; height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: .9;
}
.problem-card .glyph svg { width: 16px; height: 16px; }

/* hide trailing borders on right edges */
.problem-grid > .problem-card:nth-child(3n) { border-right: 0; }
@media (max-width: 900px) {
  .problem-grid > .problem-card:nth-child(3n) { border-right: 1px solid var(--line-light); }
  .problem-grid > .problem-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .problem-grid > .problem-card { border-right: 0 !important; }
}

/* ──────────────────────────────────────────────────────────────
   ABOUT
   ────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

.portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}
.portrait .tag {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,.35);
}

.about-copy h2 { margin: 24px 0 18px; }
.about-copy p {
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.6;
  color: var(--on-ink-mut);
  max-width: 56ch;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.section--paper .about-copy p { color: var(--on-paper-mut); }

.kpi-row {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  padding-top: 32px;
}
.section--paper .kpi-row { border-top-color: var(--line-light); }
.kpi .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.kpi .num .suf {
  font-size: .45em;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0;
  margin-left: 2px;
}
.kpi .lbl {
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-ink-dim);
  max-width: 22ch;
}
.section--paper .kpi .lbl { color: var(--on-paper-dim); }
@media (max-width: 600px) { .kpi-row { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   COACHING CARDS
   ────────────────────────────────────────────────────────────── */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) { .coaching-grid { grid-template-columns: 1fr; } }

.coach-card {
  position: relative;
  background: var(--ink-2);
  color: var(--on-ink);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .3s, background .3s;
}
.coach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 110% -10%, rgba(255,91,31,.0), transparent 60%);
  transition: background .5s var(--ease-out);
  pointer-events: none;
}
.coach-card:hover { transform: translateY(-4px); border-color: rgba(255,91,31,.4); }
.coach-card:hover::before { background: radial-gradient(80% 60% at 110% -10%, rgba(255,91,31,.18), transparent 60%); }

.coach-card.is-featured {
  background: var(--paper);
  color: var(--on-paper);
  border-color: var(--paper-2);
}
.coach-card.is-featured .meta,
.coach-card.is-featured .desc { color: var(--on-paper-mut); }

.coach-card .top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.coach-card .badge {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .7;
}
.coach-card.is-featured .badge {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  opacity: 1;
}
.coach-card .idx {
  font-family: var(--f-mono);
  font-size: 11px;
  opacity: .5;
}
.coach-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
  text-wrap: balance;
}
.coach-card .desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-ink-mut);
  margin: 0 0 24px;
  max-width: 30ch;
}
.coach-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.coach-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-block: 8px;
  border-top: 1px solid var(--line-dark);
}
.coach-card.is-featured ul li { border-top-color: var(--line-light); }
.coach-card ul li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 8px;
  flex: 0 0 6px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}
.coach-card .cta-row {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}
.coach-card.is-featured .cta-row { border-top-color: var(--line-light); }
.coach-card .price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.coach-card .price small {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .55;
  margin-left: 6px;
}
.coach-card .link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .3s var(--ease-out);
}
.coach-card .link:hover { gap: 14px; }

/* ──────────────────────────────────────────────────────────────
   RESULTS — Transformation Carousel
   ────────────────────────────────────────────────────────────── */
.results-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.tc { width: 100%; }

.tc-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.tc-controls {
  display: flex; gap: 8px;
}
.tc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--on-ink);
  font-size: 18px;
  display: grid; place-items: center;
  transition: background .25s, border-color .25s, color .25s, opacity .25s;
}
.tc-btn:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.tc-btn:disabled { opacity: .3; cursor: not-allowed; }

.tc-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, calc((100% - 32px) / 3));
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.tc-track::-webkit-scrollbar { display: none; }

@media (max-width: 900px) {
  .tc-track { grid-auto-columns: minmax(280px, calc((100% - 16px) / 2)); }
}
@media (max-width: 640px) {
  .tc-track { grid-auto-columns: 85%; }
}

.tc-card {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink-2);
  scroll-snap-align: start;
  transition: transform .5s var(--ease-out), opacity .4s;
  opacity: .55;
  cursor: grab;
}
.tc-card.is-active { opacity: 1; }
.tc-card:hover { opacity: 1; }
.tc-card:active { cursor: grabbing; }

.tc-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.tc-progress {
  margin-top: 22px;
  height: 2px;
  background: var(--line-dark);
  border-radius: 2px;
  overflow: hidden;
}
.tc-progress-bar {
  height: 100%;
  transition: width .4s var(--ease-out);
  border-radius: 2px;
}

.tc-hint {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-ink-dim);
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────
   PHILOSOPHY — Editorial
   ────────────────────────────────────────────────────────────── */
.phil-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}
@media (max-width: 800px) { .phil-head { grid-template-columns: 1fr; } }

.phil-list {
  display: grid;
  grid-template-columns: 1fr;
}
.phil-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--line-light);
}
.phil-row:last-child { border-bottom: 1px solid var(--line-light); }
.phil-row .num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-paper-dim);
  padding-top: 6px;
}
.phil-row h3 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-wrap: balance;
}
.phil-row h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  letter-spacing: -0.015em;
  color: var(--on-paper-mut);
}
.phil-row p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--on-paper-mut);
  max-width: 52ch;
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .phil-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .phil-row .num { padding-top: 0; }
}

/* ──────────────────────────────────────────────────────────────
   FAQ — Accordion
   ────────────────────────────────────────────────────────────── */
.faq-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.faq-head .eyebrow {
  margin-bottom: 18px;
  justify-content: center;
}
.faq-head .eyebrow::before, .faq-head .eyebrow::after {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .5;
}
.faq-head .eyebrow::after { content: ""; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-btn {
  width: 100%;
  display: flex; align-items: flex-start; gap: 28px;
  background: transparent; border: 0;
  padding: 26px 4px 26px 0;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--on-paper);
  transition: color .2s;
}
.faq-btn:hover { color: var(--accent); }
.faq-btn .num {
  flex: 0 0 auto;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--on-paper-dim);
  padding-top: 4px;
  min-width: 32px;
}
.faq-btn .label { flex: 1; text-wrap: balance; }
.faq-btn .ic {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 400;
  line-height: 1;
  transition: transform .4s var(--ease-out), background .25s, color .25s, border-color .25s;
}
.faq-item.is-open .faq-btn .ic {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease-out);
}
.faq-item.is-open .faq-body { grid-template-rows: 1fr; }
.faq-body > div {
  overflow: hidden;
  min-height: 0;
}
.faq-body p {
  margin: 0 0 24px 60px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-paper-mut);
  text-wrap: pretty;
}
@media (max-width: 600px) {
  .faq-body p { margin-left: 0; }
}

/* ──────────────────────────────────────────────────────────────
   FINAL CTA
   ────────────────────────────────────────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-inner {
  text-align: center;
  padding-block: clamp(80px, 12vw, 160px);
  position: relative;
  z-index: 2;
}
.cta h2 {
  margin: 24px auto 28px;
  max-width: 18ch;
}
.cta p {
  margin: 0 auto 40px;
  max-width: 44ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--on-ink-mut);
}
.cta-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(180px, 26vw, 420px);
  line-height: 1;
  color: rgba(255,255,255,.04);
  letter-spacing: -0.045em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--on-ink);
  padding: clamp(48px, 6vw, 80px) 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > .footer-brand { grid-column: 1 / -1; }
}
.footer-brand .brand { font-size: 24px; }
.footer-brand p {
  margin: 18px 0 0;
  max-width: 36ch;
  color: var(--on-ink-mut);
  font-size: 14.5px;
  line-height: 1.55;
}
.footer-col h4 {
  margin: 0 0 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-ink-dim);
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-col a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--on-ink-mut);
  transition: color .2s, gap .25s;
}
.footer-col a:hover { color: var(--on-ink); gap: 12px; }

.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding-top: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-ink-dim);
}

/* ──────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal--scale { transform: translateY(0) scale(.96); }
.reveal--scale.is-in { transform: none; }

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