/* =============================================================================
   EK RUNNING PHYSIO COACHING — design system (v2, gold/black)
   -----------------------------------------------------------------------------
   Palette sampled from the brand logo: metallic gold-to-bronze GRADIENT on
   matte black / espresso — the gradient is the signature; flat gold is
   off-brand. All colors are tokens; swap here only.

   Contrast (computed, not assumed — WCAG relative luminance):
     ivory #F3F0E8  on #141414 → 16.3:1  (body text)
     stone #B8AF9E  on #141414 →  8.5:1  (secondary text)
     gold  #C9A24B  on #141414 →  7.7:1  (accent text, any size)
     gold-hi #E9D28A on #141414 → 12.3:1 (outline-button text)
     espresso text on CTA gradient — worst stop #A8823A → 5.2:1 (AA pass);
       the deeper bronze #8B6B2E (3.7:1) is DECORATIVE ONLY, never under
       normal-size text.
     gradient-clipped display text — worst stop #8B6B2E on #141414 → 3.7:1,
       restricted to large/bold display sizes (≥24px), which need 3:1.
   ========================================================================== */

:root {
  --black:    #141414;  /* matte black base */
  --espresso: #1A120B;  /* deep espresso brown */
  --surface:  #1E1710;  /* card surface */
  --night:    #0E0A06;  /* footer base */

  --gold-hi:   #E9D28A; /* highlight stop */
  --gold:      #C9A24B; /* core brand gold */
  --gold-cta:  #A8823A; /* darkest stop allowed under CTA text */
  --gold-deep: #8B6B2E; /* deep bronze — decorative only */

  --ivory: #F3F0E8;     /* primary text */
  --stone: #B8AF9E;     /* secondary text */

  --line-gold: rgba(201, 162, 75, .22);

  --grad-gold: linear-gradient(135deg, #E9D28A 0%, #C9A24B 48%, #8B6B2E 100%);
  --grad-cta:  linear-gradient(135deg, #E9D28A 0%, #C9A24B 55%, #A8823A 100%);
  --grad-rule: linear-gradient(180deg, #E9D28A 0%, #8B6B2E 100%);

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --wrap: 1140px;
  --header-h: 68px; /* single source for header height, menu offset, anchors */
}

/* --- reset-ish -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ivory);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold); color: var(--espresso); }
section[id], .sec-head[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

:focus-visible { outline: 3px solid var(--gold-hi); outline-offset: 3px; border-radius: 2px; }
.btn-gold:focus-visible { outline-color: var(--ivory); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: 1.35rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  position: fixed; left: .75rem; top: .75rem; z-index: 300;
  background: var(--grad-cta); color: var(--espresso);
  font-weight: 800; text-decoration: none;
  padding: .65rem 1.1rem; border-radius: 8px;
}

/* Gradient-clipped text (large display sizes only — see contrast note) */
.gold-text, .sec-title .cap, .wm-ek, .tier-amount, .tier-amount-2, .pillar-index, .ig-handle, .h1-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .gold-text, .sec-title .cap, .wm-ek, .tier-amount, .tier-amount-2, .pillar-index, .ig-handle, .h1-gold {
    background: none; color: var(--gold);
  }
}

/* --- placeholder chip (honest, intentional) --------------------------------- */
.ph {
  display: inline-block;
  border: 1.5px dashed currentColor;
  border-radius: 6px;
  padding: .05em .55em;
  font-size: .86em;
  font-style: normal;
  color: var(--stone);
  background: rgba(184, 175, 158, .06);
}

/* --- brand wordmark (CSS recreation of the logo lockup) ---------------------- */
.wordmark { display: inline-flex; align-items: stretch; gap: .65rem; text-decoration: none; }
.wm-ek {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: .01em;
  align-self: center;
}
.wm-rule { width: 2px; background: var(--grad-rule); }
.wm-words {
  display: flex; flex-direction: column; justify-content: center;
  font-size: .55rem; line-height: 1.5;
  letter-spacing: .16em;
  font-weight: 600;
  color: var(--ivory);
  text-transform: uppercase;
}
.wm-words b { font-weight: 800; font-size: 1.3em; color: #fff; }
.wordmark--footer .wm-ek { font-size: 2.4rem; }
.wordmark--footer .wm-words { font-size: .72rem; }

/* --- buttons ---------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .98rem;
  padding: .75rem 1.5rem; /* py-3 px-6 — consistent across all buttons */
  border-radius: 9px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--grad-cta); color: var(--espresso); }
.btn-gold:hover { filter: brightness(1.08); }
/* Subtle ghost secondary — border gold/40, gold text, gold/10 hover fill */
.btn-outline {
  border-color: rgba(201, 162, 75, .4);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201, 162, 75, .1);
  border-color: rgba(201, 162, 75, .6);
  color: var(--gold-hi);
}
.btn-large { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-small { padding: .55rem 1.1rem; font-size: .88rem; }

/* --- top notification bar ---------------------------------------------------- */
.notify-bar {
  background: linear-gradient(90deg, rgba(201, 162, 75, .16), rgba(139, 107, 46, .1));
  border-bottom: 1px solid var(--line-gold);
}
.notify-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .35rem 1rem;
  padding-block: .5rem;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.notify-text { color: var(--gold-hi); }
.notify-chip {
  color: var(--stone);
  font-variant-numeric: tabular-nums;
  border-left: 1px solid var(--line-gold);
  padding-left: 1rem;
}
@media (max-width: 480px) { .notify-chip { display: none; } }

/* --- header ----------------------------------------------------------------- */
/* NOTE: no backdrop-filter — it becomes the containing block for the fixed
   mobile menu and clips it (learned the hard way in v1). */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 20, 20, .97);
  border-bottom: 1px solid var(--line-gold);
}
.header-row { display: flex; align-items: center; gap: .9rem; min-height: var(--header-h); }
.brand { text-decoration: none; }
.nav-chip {
  margin-left: auto;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
  color: var(--gold-hi);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: .3rem .75rem;
  white-space: nowrap;
}
/* Compact chip text on narrow screens so the header never overflows 375px */
.chip-short { display: none; }
@media (max-width: 560px) {
  .chip-long { display: none; }
  .chip-short { display: inline; }
}
.nav-toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle-bars {
  display: block; width: 22px; height: 2px; background: var(--ivory);
  position: relative; transition: background-color .15s ease;
}
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--ivory); transition: transform .2s ease;
}
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.menu-open .nav-toggle-bars { background: transparent; }
.menu-open .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.menu-open .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

#site-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 90;
  background: var(--espresso);
  padding: 2.25rem 1.35rem;
  display: flex; flex-direction: column; gap: 2rem;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  overflow-y: auto;
}
.menu-open #site-menu { opacity: 1; visibility: visible; transform: none; }
.menu-open { overflow: hidden; }
#site-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.3rem; }
#site-menu a:not(.btn) {
  color: var(--ivory); text-decoration: none;
  font-size: 1.3rem; font-weight: 700;
}
#site-menu a:not(.btn):hover { color: var(--gold-hi); }
.nav-cta { align-self: flex-start; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-chip { margin-left: auto; margin-right: .4rem; }
  #site-menu {
    position: static; inset: auto;
    background: none; padding: 0;
    flex-direction: row; align-items: center; gap: 1.6rem;
    opacity: 1; visibility: visible; transform: none;
    overflow: visible;
  }
  #site-menu ul { flex-direction: row; gap: 1.5rem; }
  #site-menu a:not(.btn) { font-size: .93rem; font-weight: 600; color: var(--stone); }
  #site-menu a:not(.btn):hover { color: var(--gold-hi); }
  .nav-cta { align-self: auto; }
}

/* --- hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 860px);
  display: flex; align-items: flex-end;
  background:
    radial-gradient(1000px 600px at 82% 0%, rgba(201, 162, 75, .16), transparent 62%),
    radial-gradient(700px 500px at 8% 100%, rgba(139, 107, 46, .12), transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--espresso) 100%);
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Keep the runner (right of frame) in shot when narrow viewports crop */
  object-position: 70% 40%;
}
/* Cinematic grade to match the approved hero mock: text side falls into
   near-black, the runner stays clear on the right, a warm gold glow sits
   bottom-left, and the image fades hard into the section below. */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 20, 20, .97) 0%, rgba(20, 20, 20, .35) 18%, transparent 38%),
    radial-gradient(1000px 560px at 10% 96%, rgba(201, 162, 75, .26), transparent 62%),
    linear-gradient(100deg,
      rgba(20, 20, 20, .95) 0%,
      rgba(20, 20, 20, .86) 34%,
      rgba(20, 20, 20, .52) 58%,
      rgba(26, 18, 11, .18) 100%);
}
.hero-content { position: relative; z-index: 1; padding-block: clamp(5rem, 12vh, 8rem) clamp(3.5rem, 9vh, 5.5rem); }
.hero-kicker {
  display: flex; align-items: center; gap: .8rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--stone);
}
.hero-kicker b { font-weight: 800; font-size: 1.25em; color: var(--gold-hi); }
.k-rule { width: 1.5px; height: 14px; background: var(--grad-rule); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.7rem, 7.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 1.1rem 0 .7rem;
  max-width: 15ch;
  color: var(--white);
}
.hero-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-h2 { background: none; color: var(--gold); }
}
.hero .sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: var(--stone);
  max-width: 42rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-ph {
  position: absolute; right: 1rem; bottom: .6rem; z-index: 1; margin: 0;
  max-width: min(560px, calc(100vw - 2rem));
  pointer-events: none; /* informational only — must never intercept CTA taps */
}

/* Trust banner — three credentials, one balanced row on desktop.
   auto-fit keeps it seamless: 3-across → 2+1 → single column as space shrinks. */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem 2.5rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-gold);
  max-width: 60rem;
}
.trust-item {
  display: flex; flex-direction: column; gap: .2rem;
  padding-left: 1rem;
  border-left: 2px solid transparent;
  border-image: var(--grad-rule) 1;
  border-image-width: 0 0 0 2px;
}
.trust-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.trust-label {
  font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--stone);
}

/* --- "Two Disciplines" body + inline text rotator ------------------------------ */
.disc-body {
  font-size: clamp(1.08rem, 2.3vw, 1.4rem);
  line-height: 1.9;
  color: var(--ivory);
  max-width: 54rem;
  margin-bottom: 2.6rem;
}
/* Inline rotator — plain bold gold text, no badge box. Its height matches the
   paragraph's 1.9 line-height exactly so it never disturbs the line box. */
.rotator {
  display: inline-flex;
  overflow: hidden;
  height: 1.9em;
  vertical-align: bottom;
}
.rotator-track {
  display: flex; flex-direction: column;
  animation: rotator-cycle 9s cubic-bezier(.65, .05, .35, 1) infinite;
}
.rotator-track span {
  height: 1.9em; line-height: 1.9em;
  white-space: nowrap;
  font-weight: 700;
  color: var(--gold);
}
/* 3 phrases + duplicated first for a seamless loop: hold, slide, hold, slide… */
@keyframes rotator-cycle {
  0%, 26%   { transform: translateY(0); }
  33%, 59%  { transform: translateY(-1.9em); }
  66%, 92%  { transform: translateY(-3.8em); }
  100%      { transform: translateY(-5.7em); }
}
@media (prefers-reduced-motion: reduce) {
  .rotator-track { animation: none; } /* freezes on the first phrase */
}

/* --- testimonials / case studies ----------------------------------------------- */
.cases { display: grid; gap: 1.4rem; }
@media (min-width: 900px) { .cases { grid-template-columns: repeat(3, 1fr); } }
.case {
  background: var(--surface);
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.case-media {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line-gold);
  background:
    radial-gradient(320px 200px at 70% 20%, rgba(201, 162, 75, .13), transparent 65%),
    var(--espresso);
}
.case-img { width: 100%; height: 100%; object-fit: cover; }
.case-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem; text-align: center;
}
.case-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: .55rem; }
.case-result {
  font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
}
.case-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1.35; }
.case-p { color: var(--stone); font-size: .94rem; line-height: 1.65; }

/* --- sections & headers (logo motif: rule + stacked caps) --------------------- */
.section { padding-block: clamp(4rem, 9vw, 6.5rem); background: var(--black); }
.section--deep { background: linear-gradient(180deg, var(--black) 0%, var(--espresso) 100%); }

.sec-head { display: flex; gap: 1.4rem; margin-bottom: 1.6rem; }
.sec-rule { width: 3px; border-radius: 2px; background: var(--grad-rule); }
.sec-label {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  display: flex; flex-direction: column;
}
.sec-title .cap { font-size: 1.12em; }
.intro {
  color: var(--stone);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.72;
  max-width: 56rem;
  margin-bottom: 2.6rem;
}

/* --- dual pillars -------------------------------------------------------------- */
.pillars { display: grid; gap: 1.4rem; }
@media (min-width: 820px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  padding: 2.2rem;
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
}
.pillar-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: .6rem 0 .5rem;
}
.pillar-lead { color: var(--stone); line-height: 1.65; margin-bottom: 1.2rem; }
.pillar ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.pillar li { position: relative; padding-left: 1.4rem; line-height: 1.55; }
.pillar li::before {
  content: "◆"; position: absolute; left: 0; top: .35em;
  font-size: .5em; color: var(--gold);
}

/* --- services ------------------------------------------------------------------- */
.track-head {
  display: flex; align-items: center; gap: .9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory);
  margin: 3rem 0 1.4rem;
}
.track-rule { width: 2.5rem; height: 2px; background: var(--grad-gold); }

.tiers { display: grid; gap: 1.4rem; align-items: stretch; grid-auto-rows: 1fr; }
@media (min-width: 860px) { .tiers { grid-template-columns: 1fr 1fr; } }
.tier {
  height: 100%; /* equal card heights regardless of the absolute badge */
  position: relative;
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  padding: 2.2rem 2rem 2rem;
}
.tier--featured {
  background: linear-gradient(180deg, #231A0E 0%, #1A130A 100%);
  border-color: rgba(201, 162, 75, .55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.tier--featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 14px 14px 0 0;
  background: var(--grad-gold);
}
.tier-badge {
  position: absolute; top: -.85rem; left: 2rem;
  background: var(--grad-cta); color: var(--espresso);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .32rem .8rem; border-radius: 999px;
}
.tier-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; line-height: 1.2; }
.tier-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .35rem; }
.tier-amount { font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; line-height: 1; font-variant-numeric: tabular-nums; }
.tier-per { font-size: .85rem; font-weight: 600; color: var(--stone); }
.tier-second { margin-left: 1.1rem; padding-left: 1.1rem; border-left: 1px solid var(--line-gold); display: inline-flex; align-items: baseline; gap: .35rem; }
/* When the price row wraps on narrow screens, drop the divider cleanly */
@media (max-width: 520px) {
  .tier-second { margin-left: 0; padding-left: 0; border-left: 0; flex-basis: 100%; }
}
.tier-amount-2 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; line-height: 1; font-variant-numeric: tabular-nums; }
.tier-includes {
  list-style: none; padding: 1.1rem 0; margin: 0;
  border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold);
  display: flex; flex-direction: column; gap: .65rem;
  flex: 1;
}
.tier-includes li { position: relative; padding-left: 1.4rem; font-size: .95rem; line-height: 1.55; }
.tier-includes li::before {
  content: "◆"; position: absolute; left: 0; top: .35em;
  font-size: .5em; color: var(--gold);
}
.tier-note { font-size: .88rem; font-style: italic; color: var(--stone); }
/* Irish health-insurance trust tag (physio card) */
.tier-insurance {
  background: rgba(201, 162, 75, .12);
  border: 1px solid rgba(201, 162, 75, .4);
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .88rem; font-weight: 700;
  line-height: 1.55;
  color: var(--gold-hi);
}
.tier-clinician {
  border-left: 3px solid transparent;
  border-image: var(--grad-rule) 1;
  border-image-width: 0 0 0 3px;
  border-radius: 0 8px 8px 0;
  background: rgba(201, 162, 75, .09);
  padding: .85rem 1.1rem;
  font-size: .92rem; line-height: 1.6;
}
.tier .btn { align-self: flex-start; }
.tier--featured .btn { align-self: stretch; text-align: center; }

.addons { margin-top: 1rem; }
.addon-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .addon-grid { grid-template-columns: 1fr 1fr; } }
.addon {
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
  background: rgba(30, 23, 16, .55);
  display: flex; flex-direction: column; align-items: flex-start;
}
.addon h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: .45rem; }
.addon p { color: var(--stone); font-size: .93rem; line-height: 1.6; }
.addon-cta { margin-top: 1rem; }

/* --- coach ----------------------------------------------------------------------- */
.coach-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .coach-grid { grid-template-columns: 380px 1fr; gap: 3.5rem; } }
.coach-media {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(400px 300px at 70% 20%, rgba(201, 162, 75, .14), transparent 65%),
    var(--espresso);
}
.coach-img { width: 100%; height: 100%; object-fit: cover; }
.coach-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center;
}
.coach-name { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; }
.coach-role {
  font-size: .84rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin: .4rem 0 1.4rem;
}
.coach-p { color: var(--stone); font-size: 1.03rem; line-height: 1.75; margin-bottom: 1.2rem; max-width: 60ch; }
.coach-p--hello {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}

/* --- apply (final CTA) ------------------------------------------------------------ */
.apply-grid { display: grid; gap: 1.6rem; align-items: start; }
@media (min-width: 980px) { .apply-grid { grid-template-columns: 1.15fr .85fr; } }
.panel {
  background: var(--surface);
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  padding: 2.2rem 2rem;
}
.panel h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; margin-bottom: .5rem; }
.panel-lead { color: var(--stone); margin-bottom: 1.4rem; line-height: 1.6; }
.panel--ig { text-align: left; }
.apply-stack { display: flex; flex-direction: column; gap: 1.6rem; }
.mini-faq { border-top: 1px solid var(--line-gold); }
.mini-faq:last-of-type { border-bottom: 1px solid var(--line-gold); }
.mini-faq summary {
  list-style: none;
  padding: .95rem 2rem .95rem 0;
  font-weight: 700; font-size: .95rem;
  cursor: pointer;
  position: relative;
  line-height: 1.45;
}
.mini-faq summary::-webkit-details-marker { display: none; }
.mini-faq summary::after {
  content: "+";
  position: absolute; right: .25rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  color: var(--gold);
}
.mini-faq[open] summary::after { content: "–"; }
.mini-faq p { color: var(--stone); font-size: .92rem; line-height: 1.65; padding: 0 0 1rem; }
.ig-handle { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 5.5vw, 1.5rem); margin-bottom: 1.4rem; overflow-wrap: anywhere; }

.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label { font-weight: 700; font-size: .89rem; }
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ivory);
  background: #100C07;
  border: 1px solid rgba(201, 162, 75, .35);
  border-radius: 9px;
  padding: .74rem .95rem;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #8D8574; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-hi); }
.field textarea { resize: vertical; }
/* Always rendered (never display:none) so the role="status" live region is in
   the accessibility tree when JS injects the message — hidden regions are not
   reliably announced (WCAG 4.1.3). Empty until a message lands. */
.form-status { margin-top: 1rem; font-weight: 700; min-height: 0; }
.form-status.is-success { color: #9BD9A5; }
.form-status.is-warning { color: var(--gold-hi); }

/* --- footer ------------------------------------------------------------------------ */
.site-footer {
  background: var(--night);
  border-top: 1px solid var(--line-gold);
  color: var(--stone);
  padding: 3rem 0 2.25rem;
  font-size: .92rem;
}
/* Balanced 3-column footer: brand | quick nav | contact + credentials */
.footer-grid3 { display: grid; gap: 2.25rem; }
@media (min-width: 900px) {
  .footer-grid3 { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .f-nav { justify-items: center; text-align: center; }
  .f-contact { justify-items: end; text-align: right; }
}
.f-col { display: grid; gap: .55rem; align-content: start; justify-items: start; }
.footer-logo { border-radius: 14px; }
.footer-line { margin-top: .6rem; font-weight: 700; color: var(--ivory); }
.footer-note { margin: 0; }
.f-nav a, .f-contact a { color: var(--stone); text-decoration: none; font-weight: 600; }
.f-nav a:hover, .f-contact a:hover { color: var(--gold-hi); }
.cred-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.cred-badge {
  display: inline-block;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: .28rem .8rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.footer-copy {
  text-align: center;
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-gold);
  font-size: .82rem;
}

/* Skeleton fallback (footer contact until the real value exists) */
.skel {
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 162, 75, .08) 25%, rgba(201, 162, 75, .2) 50%, rgba(201, 162, 75, .08) 75%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.8s linear infinite;
}
.skel-line { width: 11rem; height: .95rem; }
@keyframes skel-shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* --- motion preferences -------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
