/* ==========================================================================
   START TO FINISH (S2F) — Editorial redesign
   ========================================================================== */

:root {
  /* Brand palette — exact values from S2F brand guidelines */
  --navy-950: #001a35;                  /* deeper midnight for contrast accents */
  --navy-900: #012449;                  /* MIDNIGHT NAVY — primary brand */
  --navy-800: #0e2853;
  --navy-700: #1B2F5E;                  /* DEEP NAVY */
  --navy-600: #2c4377;
  --navy-200: #b8c4d9;
  /* Accent: on dark surfaces use --accent; on cream/light surfaces use --accent-ink (navy). */
  --accent:    #F0EAD6;                 /* EGGSHELL WHITE — primary accent on dark bg */
  --accent-soft:#ffffff;                /* lift for hover states on accent surfaces */
  --accent-ink: #1B2F5E;                /* deep navy — used where eggshell would vanish on cream */
  --cream:    #F2EFE4;                  /* WARM SAND */
  --cream-2:  #e8e3d4;
  --soft-gray:#D9DDE3;                  /* SOFT GRAY */
  --charcoal: #1F232A;                  /* CHARCOAL */
  --line:     #d8d2c2;
  --ink:      var(--charcoal);
  --ink-2:    #3b4763;
  --muted:    #6b7691;
  --pitch:    #1f7a4d;

  /* Major Third type scale (1.25 ratio, 16px base) */
  --fs-2xs:  10.24px;
  --fs-xs:   12.80px;
  --fs-sm:   14.00px;
  --fs-base: 16.00px;
  --fs-md:   20.00px;
  --fs-lg:   25.00px;
  --fs-xl:   31.25px;
  --fs-2xl:  39.06px;
  --fs-3xl:  48.83px;
  --fs-4xl:  61.04px;
  --fs-5xl:  76.29px;
  --fs-6xl:  95.37px;

  /* 8px spacing scale */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px;  --s-4: 32px;
  --s-5: 40px; --s-6: 48px; --s-7: 56px;  --s-8: 64px;
  --s-9: 72px; --s-10: 80px; --s-12: 96px; --s-16: 128px; --s-20: 160px;

  /* Motion (Doherty: ≤400ms) */
  --t-fast: 160ms;
  --t-base: 240ms;
  --t-slow: 360ms;
  --ease:   cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Geometry */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --maxw:      1240px;
  --shadow:    0 20px 60px -20px rgba(6,15,31,.35);
  --shadow-lg: 0 40px 100px -30px rgba(6,15,31,.45);

  /* Golden ratio */
  --phi-major: 61.8;
  --phi-minor: 38.2;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: var(--fs-base);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;                                 /* brand spec: body 16px / 1.6 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: normal; color: var(--accent-ink); }  /* emphasis via colour, not synthesized italic */
html { font-synthesis: none; }                         /* avoid browser-faked italic/bold */

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--s-4);
}

/* ==========================================================================
   Typography
   ========================================================================== */
/* Brand spec: H1 Montserrat Bold 48–56px / 1.1 */
.display {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;                                /* brand: Bold for H1 */
  font-style: normal;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 var(--s-3);
}
.display em {
  font-style: normal;
  color: var(--accent-ink);
  font-weight: 700;
}
.display.light { color: #fff; }
.display.light em { color: var(--accent); }
/* Brand spec: H2 Montserrat SemiBold 28–32px / 1.2 */
.display-md {
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 var(--s-3);
}
.section-label-light { color: rgba(255,255,255,0.78); }
.label-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--accent-ink);
  font-size: var(--fs-sm);
  letter-spacing: 0;
  text-transform: none;
}
.section-label-light .label-num,
.hero-copy .label-num { color: var(--accent); }
.label-line {
  display: inline-block;
  width: 56px; height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.section-blurb {
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 480px;
}
.programmes .section-blurb,
.coaches .section-blurb,
.cta .section-blurb { color: rgba(255,255,255,0.78); }

.section-head { margin-bottom: var(--s-8); }
.section-head-row {
  display: grid;
  grid-template-columns: 61.8fr 38.2fr;
  gap: var(--s-6);
  align-items: end;
}

/* Brand spec — section header: uppercase navy with eggshell underline accent */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin: 0 0 var(--s-1);
}
.section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--accent-ink);
}

/* ==========================================================================
   Buttons & links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 52px;
  padding: 0 var(--s-3);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition:
    background var(--t-base) var(--ease),
    color var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    transform var(--t-fast) var(--ease),
    box-shadow var(--t-base) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
}
.btn-lg { min-height: 60px; padding: 0 var(--s-4); font-size: var(--fs-base); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  transition: transform var(--t-base) var(--ease);
  flex-shrink: 0;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Brand spec: PRIMARY = navy bg, white text, eggshell arrow chip */
.btn-primary {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}
.btn-primary:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn-primary .btn-arrow { background: var(--accent); color: var(--navy-900); }

/* Accent variant — for prominent CTAs on dark surfaces (hero, footer CTA, header) */
.btn-accent {
  background: var(--accent);
  color: var(--navy-900);
  border-color: var(--accent);
  box-shadow: 0 8px 24px -8px rgba(240,234,214,.45);
}
.btn-accent:hover { background: var(--accent-soft); transform: translateY(-1px); }
.btn-accent .btn-arrow { background: var(--navy-900); color: var(--accent); }

/* Brand spec: SECONDARY = outline (light bg, dark border, dark arrow chip) */
.btn-secondary {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-secondary:hover { background: var(--navy-900); color: #fff; }
.btn-secondary:hover .btn-arrow { background: var(--accent); color: var(--navy-900); }
.btn-secondary .btn-arrow { background: var(--navy-900); color: var(--accent); }

/* Ghost — for outlined CTAs on dark surfaces only */
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: #fff; }
.play-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(240,234,214,.20);
}

/* legacy alias retained for any leftover .btn-dark usage */
.btn-dark { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn-dark:hover { background: var(--navy-700); }
.btn-dark .btn-arrow { background: var(--accent); color: var(--navy-900); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  position: relative;
}
.link-arrow::before {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.link-arrow:hover::before { transform: scaleX(1); }
.link-arrow span { transition: transform var(--t-base) var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow-light { color: #fff; }

/* ==========================================================================
   Utility bar
   ========================================================================== */
.utility-bar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.68);
  font-size: var(--fs-2xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-inner {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 10px var(--s-4);
}
.util-item { display: inline-flex; align-items: center; gap: var(--s-1); }
.util-right { margin-left: auto; }
.util-pulse { color: var(--accent); }
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(240,234,214,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(240,234,214,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(240,234,214,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,234,214,0); }
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-base) var(--ease),
              backdrop-filter var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.site-header.scrolled {
  background: rgba(10,25,41,0.88);
  backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-2) var(--s-4);
  color: #fff;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: #fff;
}
.brand-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1.5px var(--accent);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.brand-mark-lg { width: 96px; height: 96px; box-shadow: 0 0 0 2px var(--accent); }
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.wm-line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wm-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}
.primary-nav { justify-self: center; }
.primary-nav ul {
  display: flex;
  gap: var(--s-1);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px;
  border-radius: 999px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-radius: 999px;
  transition: color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--navy-900); background: var(--accent); font-weight: 600; }
.header-cta { min-height: 44px; padding: 0 var(--s-2) 0 var(--s-3); font-size: var(--fs-xs); letter-spacing: 0.04em; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast) var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--s-12) 0 var(--s-12);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 80% 20%, rgba(240,234,214,0.10), transparent 60%),
    radial-gradient(80% 60% at 20% 100%, rgba(31,122,77,0.10), transparent 60%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  z-index: -2;
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.06;
  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.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 61.8fr 38.2fr;
  gap: var(--s-8);
  align-items: center;
  width: 100%;
}
.hero-copy { position: relative; }
.hero-copy .section-label { color: rgba(255,255,255,0.7); }
.hero-copy .section-label .label-line { background: rgba(255,255,255,0.4); }
.hero-copy .display { color: #fff; }     /* scoped to hero only — navy stays the default elsewhere */
.hero-copy .display em { color: var(--accent); }
.hero-sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin: 0 0 var(--s-5);
  max-width: 56ch;
}
.hero-ctas {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: var(--s-6);
  margin: 0;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-meta dt {
  font-size: var(--fs-2xs);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.hero-meta dd {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-visual {
  position: relative;
  height: 600px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(10,25,41,0) 50%, rgba(10,25,41,0.55) 100%),
    url('images/Highlights/S2F-48.webp');
  background-size: cover;
  background-position: center 30%;
  box-shadow: var(--shadow-lg);
}
.hero-card {
  position: absolute;
  border-radius: var(--radius);
  padding: var(--s-3);
  background: rgba(10,25,41,0.92);   /* opaque-enough — no live blur of the photo behind */
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  box-shadow: var(--shadow);
}
.hero-card-stat {
  left: -28px;
  bottom: 36px;
  width: 240px;
}
.hero-card-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-3xl);
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s-1);
  letter-spacing: -0.03em;
}
.hero-card-unit { font-size: var(--fs-xl); margin-left: 2px; }
.hero-card-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.hero-card-foot {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.66);
}
.hero-card-quote {
  right: -16px;
  top: 32px;
  width: 240px;
  background: var(--accent);
  color: var(--navy-900);
  border-color: rgba(0,0,0,0.06);
}
.hero-card-quote p em { color: var(--navy-900); text-decoration: underline; text-decoration-color: rgba(1,36,73,0.35); text-underline-offset: 4px; }
.hero-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-2xl);
  line-height: 0.65;
  color: var(--navy-900);
  font-weight: 800;
}
.hero-card-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-md);
  line-height: 1.25;
  margin: var(--s-1) 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-card-quote small {
  display: block;
  font-size: var(--fs-2xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,25,41,0.7);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: var(--s-3);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-1);
  font-size: var(--fs-2xs);
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 1.8s infinite var(--ease);
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Marquee (trust strip)
   ========================================================================== */
.marquee {
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: var(--s-3) 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;       /* keeps the track on its own composite layer */
  transform: translateZ(0);
}
.marquee-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-right: var(--s-4);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: var(--fs-base);
  white-space: nowrap;
}
.marquee-row .dot { color: var(--accent); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
  background: var(--cream);
  padding: var(--s-12) 0;
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
}
.stat { padding: 0 var(--s-2); position: relative; }
.stat:not(:first-child) {
  border-left: 1px solid var(--line);
  padding-left: var(--s-5);
}
.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(var(--fs-2xl), 4.2vw, var(--fs-4xl));
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-2);
}
.stat-value .unit {
  font-size: 0.5em;
  color: var(--accent-ink);
  margin-left: 2px;
}
.stat-text em {
  color: var(--accent-ink);
  font-weight: 800;
  margin-right: 4px;
}
.stat-text .unit-small {
  font-size: 0.55em;
  color: var(--accent-ink);
  margin: 0 4px;
}
.stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: var(--s-1);
  font-weight: 600;
}
.stat-desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  background: var(--cream);
  padding: var(--s-16) 0;
}
/* Gutenberg layout — Primary Optical (photo, top-left) → Strong Fallow (heading, top-right)
   → Weak Fallow (pull-quote, bottom-left) → Terminal (CTA, bottom-right).
   align-items: stretch keeps the two columns the same height. */
.about-grid {
  display: grid;
  grid-template-columns: 38.2fr 61.8fr;
  gap: var(--s-10);
  align-items: stretch;
}
.about-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 100%;
}
.photo-stack {
  position: relative;
  aspect-ratio: 4/5;
  flex: 0 0 auto;
}
.photo-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center 25%;
  box-shadow: var(--shadow-lg);
}

/* Weak Fallow filler — pull-quote card under the photo, takes remaining column height */
.photo-pullquote {
  position: relative;
  flex: 1 1 auto;
  margin: 0;
  padding: var(--s-4) var(--s-4) var(--s-3);
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-2);
  min-height: 160px;
  overflow: hidden;
}
.photo-pullquote::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--accent);
}
.pull-mark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-4xl);
  line-height: 0.6;
  color: var(--accent);
  letter-spacing: -0.05em;
}
.photo-pullquote blockquote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.photo-pullquote blockquote em {
  color: var(--accent);
  font-weight: 700;
}
.photo-pullquote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--fs-xs);
}
.pull-signature {
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.pull-meta {
  font-size: var(--fs-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.photo-coach {
  background-image:
    linear-gradient(180deg, rgba(10,25,41,0) 60%, rgba(10,25,41,0.20) 100%),
    url('images/coaches/nathan-founder.webp');
}
.photo-badge {
  position: absolute;
  right: -24px;
  bottom: 32px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 999px;
  padding: var(--s-2) var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.badge-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-md);
  color: var(--accent);
  letter-spacing: -0.02em;
}
.badge-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-roles {
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  color: var(--ink-2);
  font-weight: 500;
  margin: 0 0 var(--s-3);
}
.about-bio {
  font-size: var(--fs-md);
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 var(--s-4);
  max-width: 60ch;
}
.creds-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-1);
  margin-bottom: var(--s-5);
}
.creds-chips li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--navy-900);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.creds-chips li:hover { background: #fff; border-color: var(--accent-ink); }
.creds-chips li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-ink);
}
.about-cta {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  flex-wrap: wrap;
}

/* Trust band — navy Common Region between cream About and cream Methodology.
   Restores section rhythm and gives credentials a deliberate visual moment. */
.trust-band {
  background: var(--navy-900);
  color: #fff;
  padding: var(--s-9) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.trust-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(240,234,214,0.06), transparent 60%);
  z-index: -1;
}
.trust-band-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: center;
}
.trust-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  text-align: center;
}
.trust-eyebrow > span:not(.trust-line) { text-align: center; }
.trust-line {
  flex: 1 1 60px;
  max-width: 120px;
  height: 1px;
  background: rgba(240,234,214,0.4);
}
.creds-chips-wall {
  justify-content: center;
  gap: var(--s-1) var(--s-2);
  margin-bottom: 0;
  max-width: 1080px;
}
/* Dark-surface chip variant — eggshell border, transparent fill */
.creds-chips-dark li {
  background: rgba(255,255,255,0.04);
  border-color: rgba(240,234,214,0.25);
  color: #fff;
  font-size: var(--fs-sm);
  padding: 10px 16px;
}
.creds-chips-dark li::before { background: var(--accent); }
.creds-chips-dark li:hover {
  background: rgba(240,234,214,0.08);
  border-color: var(--accent);
}

/* ==========================================================================
   Programmes (Bento)
   ========================================================================== */
.programmes {
  background: var(--navy-900);
  color: #fff;
  padding: var(--s-16) 0;
  position: relative;
  isolation: isolate;
}
.programmes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 70% 10%, rgba(240,234,214,0.08), transparent 60%);
  z-index: -1;
}
.bento {
  display: grid;
  grid-template-columns: 61.8fr 38.2fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-3);
  min-height: 760px;
}
.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-800);
  isolation: isolate;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-feature { grid-row: span 2; }
.bento-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform var(--t-slow) var(--ease);
  transform: translateZ(0);     /* promote to its own layer; scale-on-hover stays cheap */
}
.bento-card:hover .bento-img { transform: scale(1.04) translateZ(0); }
.bento-img-1 { background-image:
  linear-gradient(180deg, rgba(10,25,41,0.0) 0%, rgba(10,25,41,0.25) 40%, rgba(10,25,41,0.95) 100%),
  url('images/Highlights/S2F-14.webp'); }
.bento-img-2 { background-image:
  linear-gradient(180deg, rgba(10,25,41,0.0) 0%, rgba(10,25,41,0.30) 40%, rgba(10,25,41,0.95) 100%),
  url('images/Highlights/S2F-25.webp'); }
.bento-img-3 { background-image:
  linear-gradient(180deg, rgba(10,25,41,0.0) 0%, rgba(10,25,41,0.30) 40%, rgba(10,25,41,0.95) 100%),
  url('images/Highlights/S2F-47.webp'); }
.bento-content {
  position: relative;
  z-index: 2;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 360px;
}
.bento-num {
  position: absolute;
  top: var(--s-3);
  right: var(--s-4);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-xl);
  color: rgba(255,255,255,0.20);
  letter-spacing: -0.02em;
}
.bento-meta {
  display: flex;
  align-items: center;
  gap: var(--s-1);
  margin-bottom: var(--s-2);
}
.bento-age {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.bento-pill {
  font-size: var(--fs-2xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 999px;
}
.bento-pill-accent { background: var(--accent); color: var(--navy-900); font-weight: 700; }
/* Brand spec H3: 20–24px Montserrat SemiBold / 1.3 ; feature uses H2 range */
.bento-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-2);
  color: #fff;
}
.bento-feature .bento-title { font-weight: 700; font-size: clamp(28px, 2.6vw, 32px); line-height: 1.2; }
.bento-desc {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0 0 var(--s-3);
  max-width: 48ch;
}
.bento-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 var(--s-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.78);
}
.bento-points li {
  position: relative;
  padding-left: 18px;
}
.bento-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* "What we offer" strip beneath the bento — documented from Company Profile */
.programme-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-1) var(--s-3);
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.programme-strip li {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
}
.programme-strip li::before {
  content: "—";
  color: var(--accent);
  font-weight: 700;
}

/* ==========================================================================
   Methodology
   ========================================================================== */
.methodology {
  background: var(--cream);
  padding: var(--s-16) 0;
}
.methodology-grid {
  display: grid;
  grid-template-columns: 38.2fr 61.8fr;
  gap: var(--s-10);
  align-items: start;
}
.methodology-aside { position: sticky; top: 100px; }
.methodology-blurb {
  font-size: var(--fs-md);
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 var(--s-5);
  max-width: 42ch;
}
.methodology-quote {
  position: relative;
  padding: var(--s-3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.methodology-quote .q-mark {
  position: absolute;
  top: -14px; left: var(--s-2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-2xl);
  line-height: 0.65;
  color: var(--accent-ink);
  background: var(--cream);
  padding: 0 var(--s-1);
}
.methodology-quote p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--fs-md);
  color: var(--navy-900);
  margin: 0 0 var(--s-2);
  line-height: 1.5;
}
.methodology-quote small {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.method-list { display: flex; flex-direction: column; }
.method-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s-4);
  align-items: baseline;
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
  transition: transform var(--t-base) var(--ease);  /* transform composites; padding caused reflow */
  will-change: transform;
}
.method-row:first-child { padding-top: 0; }
.method-row:last-child  { border-bottom: 0; }
.method-row:hover { transform: translateX(8px); }
.method-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-2xl);
  line-height: 1;
  color: var(--accent-ink);
  letter-spacing: -0.03em;
  opacity: 0.6;
}
.method-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 var(--s-1);
}
.method-body h4 em { color: var(--accent-ink); }
.method-body p {
  font-size: var(--fs-md);
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
  max-width: 56ch;
}

/* ==========================================================================
   Values (replaces former stories section)
   ========================================================================== */
.values {
  background: var(--cream-2);
  padding: var(--s-16) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.value-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--s-4);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.value-card:hover::before { transform: scaleX(1); }
.value-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}
.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: #fff;
}
.value-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.5;
}

.bring-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.bring-list li {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
.bring-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-ink);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

/* legacy aliases — keep .stories selector mapping in case any rule below references it */
.stories {
  background: var(--cream-2);
  padding: var(--s-16) 0;
}
.featured-card {
  display: grid;
  grid-template-columns: 38.2fr 61.8fr auto;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-3);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: var(--s-8);
  position: relative;
  overflow: hidden;
}
.featured-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent-ink);
}
.featured-photo {
  height: 280px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%),
    url('images/pathways/sethu-ntlamba.webp');
  background-size: cover;
  background-position: center top;
}
.featured-flag {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 700;
  margin-bottom: var(--s-1);
}
.featured-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 var(--s-1);
}
.featured-from {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  margin: 0 0 var(--s-2);
}
.featured-from em { color: var(--accent-ink); font-weight: 700; }
.featured-quote {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--fs-md);
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 var(--s-3);
  max-width: 50ch;
}
.featured-tags { display: flex; gap: var(--s-1); }
.featured-tags span {
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy-900);
  border: 1px solid var(--line);
}
.featured-crest { padding-right: var(--s-2); }

/* ==========================================================================
   Testimonials — balanced masonry of parent words (mixed lengths)
   ========================================================================== */
.testimonials {
  background: var(--cream);
  padding: var(--s-16) 0;
}
/* CSS columns give natural masonry flow for quotes of very different lengths */
.testimonial-grid {
  columns: 3 320px;
  column-gap: var(--s-3);
}
.testimonial {
  break-inside: avoid;
  background: #fff;
  padding: var(--s-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin: 0 0 var(--s-3);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.testimonial::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent-ink);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.t-mark {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-3xl);
  line-height: 0.6;
  color: var(--accent-ink);
  margin-bottom: var(--s-2);
}
.t-body {
  margin: 0 0 var(--s-3);
}
.t-body p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 var(--s-2);
}
.t-body p:last-child { margin-bottom: 0; }
.t-cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}
.t-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.t-phase {
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta {
  position: relative;
  color: #fff;
  padding: var(--s-16) 0 var(--s-16);
  isolation: isolate;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(10,25,41,0.95) 0%, rgba(10,25,41,0.92) 60%, rgba(20,43,69,0.92) 100%),
    url('images/Highlights/S2F-36.webp');
  background-size: cover;
  background-position: center;
}
.cta-grid {
  display: grid;
  grid-template-columns: 61.8fr 38.2fr;
  gap: var(--s-10);
  align-items: end;
}
.cta-blurb {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.78);
  margin: 0 0 var(--s-2);
  line-height: 1.55;
  max-width: 56ch;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.cta-action {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 4px var(--s-2);
  padding: var(--s-3);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.cta-action:hover { transform: translateY(-2px); }
.cta-action-primary {
  background: var(--accent);
  color: var(--navy-900);
  border-color: var(--accent);
}
.cta-action-primary:hover { background: var(--accent-soft); }
.cta-action-secondary { background: rgba(255,255,255,0.04); }
.cta-action-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.30); }
.cta-action-eyebrow {
  grid-column: 1; grid-row: 1;
  font-size: var(--fs-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}
.cta-action-title {
  grid-column: 1; grid-row: 2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-lg);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.cta-action-sub {
  grid-column: 1; grid-row: 3;
  font-size: var(--fs-sm);
  opacity: 0.78;
}
.cta-action-arrow {
  grid-column: 2; grid-row: 1 / -1;
  align-self: center;
  font-size: var(--fs-lg);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.10);
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.cta-action:hover .cta-action-arrow { transform: translateX(4px); }
.cta-action-secondary .cta-action-arrow { background: rgba(255,255,255,0.10); }

.cta-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-7);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.cta-meta li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.78);
}
.cta-meta span { color: var(--accent); font-size: var(--fs-base); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.78);
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 38.2fr 61.8fr;
  gap: var(--s-8);
  padding: var(--s-12) var(--s-4) var(--s-7);
}
.footer-brand .brand-mark { margin-bottom: var(--s-3); }
.footer-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 var(--s-2);
  letter-spacing: -0.015em;
}
.footer-loc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.footer-col h5 {
  font-size: var(--fs-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-3);
  font-weight: 700;
}
.footer-col li {
  margin-bottom: var(--s-1);
  font-size: var(--fs-sm);
}
.footer-col a { transition: color var(--t-base) var(--ease); color: rgba(255,255,255,0.78); }
.footer-col a:hover { color: var(--accent); }

.footer-socials { display: flex; gap: var(--s-1); }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.footer-socials a:hover { background: var(--accent); color: var(--navy-900); }

.footer-bigmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.85;
  color: rgba(255,255,255,0.035);
  text-align: center;
  user-select: none;
  pointer-events: none;
  margin-top: -0.1em;
  letter-spacing: -0.05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-3) var(--s-4);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.46);
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.floating-cta {
  position: fixed;
  right: var(--s-3);
  bottom: var(--s-3);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  overflow: hidden;
  padding: 0;
}
.floating-cta img {
  width: 140%;             /* scale past the wrapper to compensate for source PNG padding */
  height: 140%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.floating-cta:hover { transform: scale(1.06); box-shadow: 0 18px 36px -10px rgba(37,211,102,0.6); }

.social-whatsapp {
  background: #fff !important;
  overflow: hidden;
  padding: 0 !important;
}
.social-whatsapp img {
  width: 150%;
  height: 150%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.social-whatsapp:hover { background: #fff !important; }

/* ==========================================================================
   Reveal animations (Doherty: ≤400ms)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}

/* ==========================================================================
   Manifesto — standalone "Person before player" statement
   ========================================================================== */
.manifesto {
  background: var(--navy-900);
  color: #fff;
  padding: var(--s-12) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 20% 20%, rgba(240,234,214,0.10), transparent 60%),
    radial-gradient(50% 40% at 80% 80%, rgba(31,122,77,0.08), transparent 60%);
  z-index: -1;
}
.manifesto-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--s-4);
}
.manifesto-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-3);
}
.manifesto-statement {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.manifesto-statement em {
  color: var(--accent);
  font-weight: 700;
}

/* ==========================================================================
   Methodology equation — Creativity + Space = Time = Quality
   ========================================================================== */
.equation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-1) var(--s-2);
  padding: var(--s-4);
  margin: var(--s-4) 0 var(--s-2);
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--navy-700);
  box-shadow: var(--shadow);
}
.eq-term {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.01em;
  color: #fff;
}
.eq-op {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--accent);
  opacity: 0.85;
}
.eq-result {
  color: var(--accent);
  position: relative;
}
.eq-result::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--accent);
  opacity: 0.45;
}
.equation-caption {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 42ch;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing {
  background: var(--cream);
  padding: var(--s-16) 0;
  border-top: 1px solid var(--line);
}
.pricing-grid {
  display: grid;
  /* Golden ratio weighting — middle card dominates (φ = 1.618 → ~1.382 share of mid vs outers).
     Also serves as the price anchor: the eye lands on R1,300/mo first. */
  grid-template-columns: 1fr 1.382fr 1fr;
  gap: var(--s-3);
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  position: relative;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-ink); }
.price-card-feature {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card-feature:hover { transform: translateY(-11px); }
.price-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy-900);
  font-size: var(--fs-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -6px rgba(240,234,214,0.5);
}
.price-card-feature::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.price-eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-ink);
  margin: 0;
}
.price-card-feature .price-eyebrow { color: var(--accent); }
.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin: var(--s-1) 0 0;
  display: inline-flex;
  align-items: baseline;
}
.price-card-feature .price-amount { color: #fff; }
.price-currency {
  font-size: 0.55em;
  margin-right: 2px;
  font-weight: 700;
  color: var(--accent-ink);
}
.price-card-feature .price-currency { color: var(--accent); }
.price-period {
  font-size: 0.34em;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-left: 6px;
  color: var(--ink-2);
}
.price-card-feature .price-period { color: rgba(255,255,255,0.7); }
.price-desc {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 var(--s-1);
}
.price-card-feature .price-desc { color: rgba(255,255,255,0.78); }

/* Progressive disclosure — native <details> for "What's included" */
.price-details {
  border-top: 1px solid var(--line);
  padding-top: var(--s-2);
  margin-top: auto;        /* push disclosure + CTA toward the bottom of the card */
}
.price-card-feature .price-details { border-top-color: rgba(255,255,255,0.12); }
.price-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy-900);
  padding: var(--s-1) 0;
  transition: color var(--t-base) var(--ease);
}
.price-card-feature .price-details summary { color: #fff; }
.price-details summary::-webkit-details-marker { display: none; }
.price-details summary:hover { color: var(--accent-ink); }
.price-card-feature .price-details summary:hover { color: var(--accent); }
.price-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy-900);
  font-size: var(--fs-md);
  line-height: 1;
  font-weight: 700;
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.price-card-feature .price-chev { background: rgba(255,255,255,0.10); color: var(--accent); }
.price-details[open] .price-chev { transform: rotate(45deg); }   /* "+" → "×" rotation, ≤240ms = Doherty-safe */
.price-details ul {
  margin: var(--s-1) 0 var(--s-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.5;
}
.price-card-feature .price-details ul { color: rgba(255,255,255,0.78); }
.price-details li {
  position: relative;
  padding-left: 16px;
}
.price-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-ink);
}
.price-card-feature .price-details li::before { color: var(--accent); }

.price-cta {
  width: 100%;
  justify-content: space-between;
  margin-top: var(--s-1);   /* button anchors the card bottom — Fitts-sized 52px */
}
.coach-apply-cta { margin-top: var(--s-2); }

/* ==========================================================================
   Coaches
   ========================================================================== */
.coaches {
  background: var(--navy-900);
  color: #fff;
  padding: var(--s-16) 0;
  position: relative;
  isolation: isolate;
}
.coaches::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 80% 0%, rgba(240,234,214,0.06), transparent 60%);
  z-index: -1;
}
.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.coach-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.coach-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.coach-photo {
  background-size: cover;
  background-position: center 25%;
  min-height: 260px;
}
.coach-photo-1 {
  background-image:
    linear-gradient(180deg, rgba(1,36,73,0) 50%, rgba(1,36,73,0.5) 100%),
    url('images/coaches/nathan-daniels.webp');
}
.coach-photo-2 {
  background-image:
    linear-gradient(180deg, rgba(1,36,73,0) 50%, rgba(1,36,73,0.5) 100%),
    url('images/coaches/franklin-cale.webp');
}
.coach-photo-3 {
  background-image:
    linear-gradient(180deg, rgba(1,36,73,0) 50%, rgba(1,36,73,0.5) 100%),
    url('images/coaches/kenan-lucian-guenatin.webp');
}
.coach-body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  min-height: 260px;
}
.coach-body-centered {
  grid-column: 1 / -1;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.coach-role {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}
.coach-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 var(--s-1);
}
.coach-bio {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 var(--s-2);
  max-width: 50ch;
}
.coach-creds {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  margin-top: auto;
}
.coach-creds li {
  position: relative;
  padding-left: 14px;
}
.coach-creds li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.coach-card-open {
  grid-template-columns: 1fr;
  background: transparent;
  border: 1px dashed rgba(255,255,255,0.18);
}
.coach-card-open:hover { transform: none; box-shadow: none; border-color: var(--accent); }

/* ==========================================================================
   Pathways
   ========================================================================== */
.pathways {
  background: var(--cream-2);
  padding: var(--s-16) 0;
}
.pathways .featured-card {
  grid-template-columns: 38.2fr 61.8fr;
  margin-bottom: var(--s-5);
}
.featured-body { padding: var(--s-2) 0; }
.pathways-local {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  padding: var(--s-4);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-ink);
  border-radius: var(--radius);
  max-width: 820px;
}
.pathways-local strong { color: var(--navy-900); font-weight: 700; }

/* ==========================================================================
   Paint containment — long, mostly-static sections render only when near-viewport.
   `contain-intrinsic-size` reserves layout space so the scrollbar stays stable.
   ========================================================================== */
.stats,
.about,
.trust-band,
.manifesto,
.programmes,
.methodology,
.pricing,
.coaches,
.pathways,
.values,
.stories,
.testimonials,
.cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* ==========================================================================
   Gallery — "Life at S2F"
   ========================================================================== */
.gallery {
  background: var(--cream);
  padding: var(--s-12) 0;
  position: relative;
}
.gallery .section-head { margin-bottom: var(--s-7); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: var(--s-2);
}
.gallery-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease), filter var(--t-base) var(--ease);
  filter: saturate(1.02);
}
.gallery-tile:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gallery-tile-tall  { grid-row: span 2; }
.gallery-tile-wide  { grid-column: span 2; }
.gallery-tile-large { grid-row: span 2; grid-column: span 2; }
.gallery-foot {
  margin-top: var(--s-5);
  text-align: center;
  color: var(--ink-2);
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Modal dialogs (trial booking, coach application)
   ========================================================================== */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(640px, calc(100vw - 32px));
  width: 100%;
  max-height: calc(100vh - 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
}
.modal::backdrop {
  background: rgba(1, 16, 36, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal[open] { animation: modal-in 240ms var(--ease-out); }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-inner {
  background: var(--cream);
  position: relative;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: var(--s-6) var(--s-5) var(--s-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  z-index: 2;
}
.modal-close:hover { background: var(--cream-2); transform: rotate(90deg); }
.modal-head { margin-bottom: var(--s-4); padding-right: var(--s-5); }
.modal-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 var(--s-1);
  font-weight: 700;
}
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 var(--s-2);
}
.modal-title em { font-style: normal; color: var(--accent-ink); }
.modal-blurb {
  color: var(--ink-2);
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin: 0;
  max-width: 56ch;
}

/* Honeypot */
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form grid + fields */
.modal-form { display: block; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-3);
  margin-bottom: var(--s-4);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.form-field-wide { grid-column: 1 / -1; }
.form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-2xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-900);
  font-weight: 700;
}
.form-label em {
  font-style: normal;
  color: #c0392b;
  margin-left: 2px;
}
.form-optional {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-2);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-2xs);
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-base);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  line-height: 1.4;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
}
.modal-form textarea { resize: vertical; min-height: 92px; }
.modal-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy-900) 50%),
    linear-gradient(135deg, var(--navy-900) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: 0;
  border-color: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(27, 47, 94, 0.15);
}
.modal-form input:invalid:not(:placeholder-shown),
.modal-form textarea:invalid:not(:placeholder-shown) { border-color: #c0392b; }

/* Form footer */
.form-foot {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-items: stretch;
}
.form-submit { justify-content: center; width: 100%; }
.form-submit[disabled] { opacity: 0.6; cursor: progress; }
.form-foot-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--ink-2);
  margin: 0;
}
.form-foot-note a {
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-foot-note a:hover { color: var(--navy-900); }

/* Success state */
.modal-success {
  text-align: center;
  padding: var(--s-4) 0 var(--s-2);
}
.modal-success-mark {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--accent-ink);
  color: var(--accent);
  font-size: 32px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-3);
}
.modal-success-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--navy-900);
  margin: 0 0 var(--s-2);
}
.modal-success-blurb {
  color: var(--ink-2);
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin: 0 auto var(--s-4);
  max-width: 44ch;
}

body.modal-open { overflow: hidden; }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Tighten the nav as space gets scarce, then collapse to the hamburger
   before the (9-item) pill can crowd the brand or CTA. */
@media (max-width: 1240px) {
  .primary-nav ul { gap: 2px; }
  .nav-link { padding: 0 10px; font-size: var(--fs-xs); }
  .header-cta { font-size: var(--fs-2xs); }
}
@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
}
@media (max-width: 980px) {
  .utility-bar { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-visual { height: 460px; }
  .hero-card-stat { left: 16px; bottom: 16px; }
  .hero-card-quote { right: 16px; top: 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .stat:nth-child(odd) { border-left: 0; padding-left: var(--s-2); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .bring-list { grid-template-columns: 1fr; }
  .programme-strip { gap: var(--s-1) var(--s-2); }
  .about-grid { grid-template-columns: 1fr; gap: var(--s-6); align-items: start; }
  .about-photo { max-width: 460px; min-height: 0; }
  .photo-pullquote { min-height: 120px; }
  .trust-band { padding: var(--s-7) 0; }
  .trust-line { max-width: 60px; }
  .bento { grid-template-columns: 1fr; min-height: auto; }
  .bento-feature { grid-row: auto; }
  .methodology-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .methodology-aside { position: static; }
  .featured-card { grid-template-columns: 1fr; }
  .pathways .featured-card { grid-template-columns: 1fr; }
  .featured-crest { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-feature { transform: none; }
  .price-card-feature:hover { transform: translateY(-3px); }
  .price-flag { top: 16px; right: 16px; left: auto; transform: none; }
  .coach-grid { grid-template-columns: 1fr; }
  .coach-card { grid-template-columns: 160px 1fr; }
  .equation { gap: var(--s-1); }
  .cta-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-top { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .section-head-row { grid-template-columns: 1fr; gap: var(--s-3); }
}
@media (max-width: 600px) {
  .container { padding: 0 var(--s-3); }
  .hero { padding: var(--s-9) 0; min-height: auto; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .stats-inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .stat { border-left: 0 !important; padding-left: var(--s-2) !important; }
  .stat:not(:first-child) { padding-top: var(--s-3); border-top: 1px solid var(--line); }
  .values-grid { grid-template-columns: 1fr; }
  .method-row { grid-template-columns: 1fr; gap: var(--s-1); }
  .testimonial-grid { columns: 1; }
  .coach-card { grid-template-columns: 1fr; }
  .coach-photo { min-height: 200px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-tile-large { grid-column: span 2; grid-row: span 2; }
  .gallery-tile-wide  { grid-column: span 2; grid-row: span 1; }
  .equation { padding: var(--s-3); }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; }
  .photo-badge { right: 16px; }
  .wm-line { font-size: var(--fs-base); }
  .wm-sub { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-inner { padding: var(--s-5) var(--s-3) var(--s-3); }
  .modal-title { font-size: clamp(22px, 6vw, 28px); }
}


/* ==========================================================================
   WORLD CUP '26 — standalone tournament page
   On-brand palette only: MIDNIGHT NAVY (--navy-900) dominant, EGGSHELL
   (--accent) accent, WARM SAND (--cream) light surfaces. No off-brand hues.
   Design formulas applied:
   · 60-30-10 colour     → navy dominant (60), cream surfaces (30), eggshell accent (10)
   · Golden ratio        → 61.8 / 38.2 hero + section grids
   · Major Third scale   → shared --fs-* tokens (1.25 ratio)
   · 8px grid            → shared --s-* spacing
   · F-pattern hero      → left-aligned copy, scannable right rail
   · Fitts's Law         → large .btn-lg targets
   · Hick's Law          → exactly 3 sponsorship tiers
   · Progressive disclose→ <details> on pricing
   · Anchoring           → standard price struck through above early-bird
   · Proximity           → social proof immediately precedes final CTA
   · Doherty (≤400ms)    → reuses --t-base / --t-slow only
   ========================================================================== */

/* ---- HERO — F-pattern, golden-ratio split --------------------------------- */
.wc-hero {
  position: relative;
  color: #fff;
  padding: var(--s-12) 0 var(--s-10);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(240,234,214,0.10), transparent 55%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-950) 100%);
}
.wc-hero-grid {
  display: grid;
  grid-template-columns: 61.8fr 38.2fr;   /* golden ratio */
  gap: var(--s-8);
  align-items: center;
}
.wc-hero-copy { text-align: left; }       /* F-pattern: heavy top-left scan */
.wc-hero .section-label { color: rgba(255,255,255,0.78); }
.wc-hero .label-num { color: var(--accent); }
.wc-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 7vw, 95px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 var(--s-3);
}
.wc-hero h1 em { color: var(--accent); font-weight: 800; }
.wc-strap {
  font-size: var(--fs-md);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 0 0 var(--s-5);
}
.wc-cta-row { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.wc-urgency {
  margin-top: var(--s-4);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
}
.wc-urgency-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(240,234,214,0.7);
  animation: pulse 1.8s infinite;
}
/* Hero right rail — lighter scan column (F-pattern) */
.wc-hero-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  padding: var(--s-6);
  text-align: center;
  backdrop-filter: blur(8px);
}
.wc-hero-crest { width: 96px; height: 96px; margin: 0 auto var(--s-4); filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.wc-hero-facts { display: grid; gap: var(--s-2); text-align: left; }
.wc-hero-fact { display: flex; justify-content: space-between; gap: var(--s-2); padding-bottom: var(--s-2); border-bottom: 1px solid rgba(255,255,255,0.12); }
.wc-hero-fact:last-child { border-bottom: 0; padding-bottom: 0; }
.wc-hero-fact dt { font-size: var(--fs-2xs); letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.wc-hero-fact dd { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: var(--fs-sm); color: #fff; text-align: right; }

/* ---- Info band — eggshell accent strip (10%) ------------------------------ */
.wc-band { background: var(--accent); color: var(--navy-900); }
.wc-band-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
  padding: var(--s-3) var(--s-4); text-align: center;
}
.wc-band-item { flex: 1; min-width: 170px; }
.wc-band-item dt { font-size: var(--fs-2xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy-700); margin-bottom: 4px; }
.wc-band-item dd { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: var(--fs-sm); letter-spacing: 0.01em; }

/* ---- Section surfaces (60-30-10 alternation) ------------------------------ */
.wc-section { padding: var(--s-10) 0; }
.wc-section-cream { background: var(--cream); }
.wc-section-navy { background: var(--navy-900); color: #fff; }
.wc-section-navy .section-label,
.wc-section-navy .section-blurb { color: rgba(255,255,255,0.80); }
.wc-section-navy .label-num { color: var(--accent); }

/* ---- Format cards --------------------------------------------------------- */
.wc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--s-3); }
.wc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s-4); box-shadow: var(--shadow);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.wc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wc-card .wc-k { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.wc-card .wc-v { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: var(--fs-lg); color: var(--navy-900); margin: var(--s-1) 0; line-height: 1.1; }
.wc-card .wc-s { font-size: var(--fs-sm); color: var(--ink-2); }

/* ---- Journey steps -------------------------------------------------------- */
.wc-journey { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: var(--s-2); counter-reset: wcstep; }
.wc-step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); padding: var(--s-3); }
.wc-step::before {
  counter-increment: wcstep; content: counter(wcstep, decimal-leading-zero);
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: var(--fs-xl); color: var(--accent); margin-bottom: var(--s-1);
}
.wc-step b { display: block; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 4px; }
.wc-step p { font-size: var(--fs-sm); color: rgba(255,255,255,0.78); margin: 0; }

/* ---- Entry / pricing — ANCHORING + progressive disclosure ----------------- */
.wc-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-3); max-width: 760px; align-items: start; }
.wc-price {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s-5); box-shadow: var(--shadow);
}
/* Feature (early bird) mirrors the homepage .price-card-feature: navy + eggshell */
.wc-price-feature { background: var(--navy-900); color: #fff; border-color: var(--navy-900); box-shadow: var(--shadow-lg); }
.wc-price-feature::before { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--accent); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.wc-price-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--navy-900); font-size: var(--fs-2xs);
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 16px -6px rgba(240,234,214,0.5);
}
.wc-price-tag { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.wc-price-feature .wc-price-tag { color: var(--accent); }
.wc-price-anchor { font-size: var(--fs-md); color: var(--muted); text-decoration: line-through; margin: var(--s-1) 0 2px; }
.wc-price-feature .wc-price-anchor { color: rgba(255,255,255,0.6); }
.wc-price-amount { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: var(--fs-4xl); line-height: 1; color: var(--navy-900); }
.wc-price-feature .wc-price-amount { color: #fff; }
.wc-price-amount .wc-cur { font-size: var(--fs-lg); vertical-align: top; }
.wc-price-per { font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2); margin-top: 4px; }
.wc-price-feature .wc-price-per { color: rgba(255,255,255,0.7); }
.wc-price-save { display: inline-block; margin-top: var(--s-2); color: var(--accent-ink); font-weight: 700; font-size: var(--fs-sm); }
.wc-price-feature .wc-price-save { color: var(--accent); }
.wc-price-note { font-size: var(--fs-sm); color: var(--ink-2); margin-top: var(--s-1); }
.wc-price .price-details { margin-top: var(--s-3); }
.wc-price-feature .price-details { border-top-color: rgba(255,255,255,0.12); }
.wc-price-feature .price-details summary { color: #fff; }
.wc-price-feature .price-chev { background: rgba(255,255,255,0.10); color: var(--accent); }
.wc-price-feature .price-details ul { color: rgba(255,255,255,0.78); }
.wc-price-feature .price-details li::before { color: var(--accent); }
.wc-price .price-cta { margin-top: var(--s-4); width: 100%; justify-content: center; }
.wc-pricing-foot { margin-top: var(--s-4); max-width: 760px; font-size: var(--fs-sm); color: var(--ink-2); }
.wc-pricing-foot a { color: var(--accent-ink); font-weight: 700; text-decoration: underline; }

/* "Pick your nation" callout */
.wc-kit { background: var(--navy-900); color: #fff; border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: var(--s-3) var(--s-4); font-size: var(--fs-base); max-width: 760px; margin-top: var(--s-5); }
.wc-kit b { color: var(--accent); }

/* ---- Sponsorship — Hick's Law: 3 tiers ------------------------------------ */
.wc-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); align-items: stretch; }
.wc-tier {
  position: relative; display: flex; flex-direction: column;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg); padding: var(--s-5);
  transition: transform var(--t-base) var(--ease);
}
.wc-tier:hover { transform: translateY(-4px); }
.wc-tier-feature { background: #fff; color: var(--ink); border-color: var(--accent); box-shadow: var(--shadow-lg); }
.wc-tier-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--navy-900); font-size: var(--fs-2xs);
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.wc-tier-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: var(--fs-lg); color: #fff; margin: 0 0 4px; }
.wc-tier-feature .wc-tier-name { color: var(--navy-900); }
.wc-tier-price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: var(--fs-2xl); color: var(--accent); line-height: 1; margin-bottom: var(--s-1); }
.wc-tier-feature .wc-tier-price { color: var(--navy-900); }
.wc-tier-blurb { font-size: var(--fs-sm); color: rgba(255,255,255,0.78); margin: 0 0 var(--s-3); }
.wc-tier-feature .wc-tier-blurb { color: var(--ink-2); }
.wc-tier ul { display: grid; gap: 8px; margin: 0 0 var(--s-4); }
.wc-tier li { position: relative; padding-left: 22px; font-size: var(--fs-sm); color: rgba(255,255,255,0.86); }
.wc-tier-feature li { color: var(--ink); }
.wc-tier li::before { content: "\2192"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.wc-tier-feature li::before { color: var(--accent-ink); }
.wc-tier .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ---- Social proof — PROXIMITY (sits directly before final CTA) ------------ */
.wc-proof { background: var(--cream); padding: var(--s-10) 0 var(--s-8); }
.wc-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.wc-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s-4); box-shadow: var(--shadow); }
.wc-quote-mark { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: var(--fs-3xl); line-height: 0.6; color: var(--accent-ink); }
.wc-quote p { font-size: var(--fs-base); color: var(--ink); margin: var(--s-1) 0 var(--s-3); }
.wc-quote cite { font-style: normal; font-weight: 700; font-size: var(--fs-sm); color: var(--navy-900); }
.wc-quote cite span { display: block; font-weight: 500; font-size: var(--fs-xs); color: var(--muted); }
.wc-proof-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-2) var(--s-5); margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--line); }
.wc-proof-stat { text-align: center; }
.wc-proof-stat b { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: var(--fs-2xl); color: var(--navy-900); line-height: 1; }
.wc-proof-stat span { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 860px) {
  .wc-hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .wc-tiers { grid-template-columns: 1fr; }
  .wc-proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .wc-hero { padding: var(--s-8) 0 var(--s-7); }
  .wc-band-inner { gap: var(--s-3); }
}
