/* ============================================================
   layout.css — Boundless You v2
   Reset, base typography, section patterns, utility classes.
   Import AFTER tokens.css on every page.
   v2.0 | Sprint 1
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ── PAGE OFFSET (accounts for fixed nav) ───────────────────── */
.page-wrap {
  padding-top: var(--nav-height);
}

/* ── SECTION CONTAINER ──────────────────────────────────────── */
.sec {
  padding: var(--section-pad) 6vw;
}
.sec.alt  { background: var(--stone); }
.sec.dark { background: var(--obsidian); color: var(--silver); }
.sec.green { background: var(--navy-mid); color: var(--silver); }

/* ── CONTENT WIDTH CONSTRAINTS ──────────────────────────────── */
.inner {
  max-width: 660px;
  margin: 0 auto;
}
.inner.wide {
  max-width: var(--content-max);
}
.inner.mid {
  max-width: 840px;
}
.inner.center {
  text-align: center;
}

/* ── SECTION LABEL (spaced caps above headings) ─────────────── */
.section-label,
.label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
  font-family: var(--sans);
  font-weight: 400;
}
.sec.dark .section-label,
.sec.dark .label  { color: rgba(214,217,222,0.45); }
.sec.green .section-label,
.sec.green .label { color: rgba(214,217,222,0.5); }

/* ── EYEBROW (small caps above H1 in heroes) ────────────────── */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-family: var(--sans);
}

/* ── HEADINGS ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);  /* Playfair Display: ~10% smaller — visually larger than Cormorant at same rem */
  line-height: 1.12;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

h1 em, h2 em, h3 em { font-style: italic; color: var(--green); }

/* Breathing gap between question line and gold italic answer line */
em.ans-em { display: block; margin-top: 0.55rem; }

.sec.dark h1, .sec.dark h2, .sec.dark h3 { color: var(--silver); }
.sec.dark h1 em, .sec.dark h2 em { color: var(--gold-soft); }
.sec.green h1, .sec.green h2 { color: var(--silver); }

/* ── BODY TEXT ───────────────────────────────────────────────── */
p {
  font-size: clamp(0.93rem, 1.15vw, 1.02rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
p:last-child { margin-bottom: 0; }

.sec.dark p { color: rgba(214,217,222,0.7); }
.sec.green p { color: rgba(214,217,222,0.75); }

p em {
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.04em;
  color: var(--gold);
}
.sec.dark p em { color: var(--gold-soft); }

/* ── HERO BLOCK ─────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) 6vw clamp(5rem, 8vw, 7rem);
}

.hero.hero-sm {
  min-height: 40vh;
}

.hero-sub {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 1rem;      /* centres within flex column; 1rem between stacked subs */
}
/* Last hero-sub (or only hero-sub) keeps extra gap before CTA/bridge */
.hero-sub:last-of-type { margin-bottom: 1.8rem; }
.hero-dark .hero-sub { color: rgba(214,217,222,0.7); }

/* ── SITE IMAGES ─────────────────────────────────────────────── */
.site-img {
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.site-img.tall  { height: 76vh; }
.site-img.mid   { height: 62vh; }
.site-img.short { height: 40vh; }
.site-img.about-a3 { height: 65vh; }

@media (max-width: 768px) {
  .site-img.tall  { height: 55vw; }
  .site-img.mid   { height: 48vw; }
  .site-img.short { height: 35vw; }
}

/* ── DIVIDER LINE ────────────────────────────────────────────── */
.rule {
  width: 40px;
  height: 1px;
  background: rgba(198,169,107,0.55);
  margin: 2.5rem auto;
}
.hero .rule,
.inner.center .rule { margin: 2.5rem auto; }
.inner:not(.center) .rule { margin: 2.5rem 0; }
.sec.dark .rule { background: rgba(198,169,107,0.4); }

.section-divider {
  border: none;
  border-top: 1px solid rgba(214,217,222,0.1);
  margin: 0;
}

/* Gold top-border accent on dark sections — premium section break */
.sec.dark {
  border-top: 1px solid rgba(198,169,107,0.2);
}

/* ── STATEMENT BLOCK (large stacked lines) ───────────────────── */
.statement h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

/* ── FORMAT LIST ─────────────────────────────────────────────── */
.flist { list-style: none; margin-top: 0.8rem; }
.flist li {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  color: var(--muted);
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid rgba(214,217,222,0.12);
  position: relative;
}
.flist li:first-child { border-top: 1px solid rgba(214,217,222,0.12); }
.flist li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-size: 1rem; line-height: 1.6; }

/* ── ABOUT STAGES ────────────────────────────────────────────── */
.stage + .stage { border-top: 1px solid rgba(214,217,222,0.12); padding-top: 3.5rem; margin-top: 3.5rem; }
.stage-lbl {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.2rem;
}
.sec.dark .stage-lbl { color: rgba(214,217,222,0.3); }

/* ── FOUNDER SIGNATURE ───────────────────────────────────────── */
.founder-sig {
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--green);
}
.sec.dark .founder-sig { color: var(--gold); }

/* ── MICRO TEXT ──────────────────────────────────────────────── */
.micro {
  font-size: 0.74rem;
  font-style: italic;
  color: var(--muted);
}

/* ── CTA STACK ───────────────────────────────────────────────── */
.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

/* ── FADE IN ON SCROLL ───────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fi.on {
  opacity: 1;
  transform: none;
}

/* Directional variants */
.fi-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fi-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fi-left.on,
.fi-right.on {
  opacity: 1;
  transform: none;
}

/* Stagger: add class="stagger" to a grid/list parent — children get cascading delays */
.stagger > .fi:nth-child(1),
.stagger > .fi-left:nth-child(1),
.stagger > .fi-right:nth-child(1) { transition-delay: 0s; }
.stagger > .fi:nth-child(2),
.stagger > .fi-left:nth-child(2),
.stagger > .fi-right:nth-child(2) { transition-delay: 0.09s; }
.stagger > .fi:nth-child(3),
.stagger > .fi-left:nth-child(3),
.stagger > .fi-right:nth-child(3) { transition-delay: 0.18s; }
.stagger > .fi:nth-child(4),
.stagger > .fi-left:nth-child(4),
.stagger > .fi-right:nth-child(4) { transition-delay: 0.27s; }
.stagger > .fi:nth-child(5),
.stagger > .fi-left:nth-child(5),
.stagger > .fi-right:nth-child(5) { transition-delay: 0.36s; }
.stagger > .fi:nth-child(6),
.stagger > .fi-left:nth-child(6),
.stagger > .fi-right:nth-child(6) { transition-delay: 0.45s; }

/* Scroll progress bar — inserted by JS on long pages */
.scroll-progress {
  position: fixed;
  top: calc(var(--beta-h, 0px) + var(--nav-height, 70px));
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 199;
  transition: transform 0.08s linear;
  pointer-events: none;
}

/* Count-up numbers — JS writes the animated value into [data-count] spans */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── HERO EXTENDED COPY (high-ticket version) ──────────────── */

.hero-bridge {
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 1rem;   /* centred in flex column */
}

.hero-position {
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto 1rem;   /* centred in flex column */
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  margin: 0 auto 2.2rem; /* centred + gap before CTA */
}

/* ── TRUTH LIST (problem / why-now sections) ──────────────── */

.truth-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.truth-list li {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  padding: 0.55rem 0 0.55rem 1.5rem;
  border-bottom: 1px solid rgba(214,217,222,0.12);
  position: relative;
}
.truth-list li:first-child { border-top: 1px solid rgba(214,217,222,0.12); }
.truth-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.6;
}
.truth-list.arrow li::before {
  content: '→';
  color: var(--green);
}
.sec.dark .truth-list li { border-color: rgba(214,217,222,0.15); color: rgba(214,217,222,0.85); }
.sec.dark .truth-list li::before { color: rgba(214,217,222,0.4); }
.sec.alt .truth-list li::before { color: var(--muted); }
/* Narrow centred variant — used inside centred sections */
.truth-list.narrow { text-align: left; max-width: 500px; margin: 1.5rem auto 0; }
/* Utility: action row spacer (replaces inline margin-top divs) */
.action-row { margin-top: 1.5rem; }
/* Utility: emphasis paragraph spacer */
.p-em { margin-top: 2rem; }

/* ── TRUTH PUNCH ──────────────────────────────────────────── */

.truth-punch {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 1.5rem;
  line-height: 1.2;
}

/* ── BUTTON SECONDARY ─────────────────────────────────────── */

.btn-secondary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: transparent;
  padding: 1.05rem 3rem;
  border: 1.5px solid var(--green);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, transform 0.18s;
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--ivory);
  transform: translateY(-1px);
}

/* ── PROCESS STEPS (4R Forum / 4-Phase Flagship) ─────────────── */

.process-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(214,217,222,0.12);
}
.process-step:first-child { border-top: 1px solid rgba(214,217,222,0.12); }

.step-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 3.5rem;
  text-align: right;
}

.step-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.step-outcome {
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  color: var(--green) !important;
  margin-top: 0.5rem !important;
}

.sec.dark .process-step { border-color: rgba(214,217,222,0.15); }
.sec.dark .step-body h3 { color: var(--silver); }
.sec.dark .step-body p  { color: rgba(214,217,222,0.65); }
.sec.dark .step-outcome { color: var(--gold) !important; }

@media (max-width: 640px) {
  .process-step { flex-direction: column; gap: 0.8rem; }
  .step-num { width: auto; text-align: left; }
}

/* ── TWO-COL QUALIFIER (who is / is not for) ──────────────────── */

.two-col-qual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
}

.qual-block .label { margin-bottom: 1rem; }

@media (max-width: 768px) {
  .two-col-qual { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── DOMAIN TAG LIST (About page / Areas of Transformation) ──── */

.domain-tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1.8rem;
  padding: 0;
}
.domain-tag-list li {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 0.45rem 1rem;
  border-radius: 2px;
}
.sec.alt .domain-tag-list li {
  background: rgba(198,169,107,0.1);
}

/* ── STATS ROW ───────────────────────────────────────────────── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  justify-content: center;
  margin-top: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── GRID UTILITIES ──────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── PATH CARDS (Your Journey — 3 programme options) ─────────── */
/* ── PATH GRID: horizontal row layout ───────────────────────── */
.path-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 3rem;
}

/* Base card — horizontal band */
.path-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid rgba(214,217,222,0.1);
  border-left: 3px solid rgba(198,169,107,0.3);
  border-radius: var(--card-radius);
  background: var(--stone);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.path-card:hover {
  border-color: rgba(198,169,107,0.4);
  border-left-color: var(--gold);
  box-shadow: 0 6px 28px rgba(0,0,0,0.32);
}

/* Highlight card (flagship) — gold tint + full gold left accent */
.path-card--highlight {
  background: rgba(198,169,107,0.06);
  border-color: rgba(198,169,107,0.22);
  border-left: 3px solid var(--gold);
}
.path-card--highlight:hover {
  border-color: rgba(198,169,107,0.45);
  border-left-color: var(--gold-soft);
  box-shadow: 0 6px 32px rgba(198,169,107,0.12);
}

/* LEFT PANEL — who it's for + programme name */
.path-card__id {
  flex: 0 0 230px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(214,217,222,0.08);
}
.path-card__tag {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  opacity: 0.9;
}
.path-card__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}
.path-card--highlight .path-card__title { color: var(--gold); }

/* MIDDLE PANEL — description */
.path-card__desc {
  flex: 1;
  padding: 2rem 2.2rem;
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--muted);
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(214,217,222,0.08);
}
.path-card--highlight .path-card__desc { color: rgba(214,217,222,0.72); }

/* RIGHT PANEL — meta + CTA */
.path-card__action {
  flex: 0 0 200px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}
.path-card__meta {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  line-height: 1.9;
}
.path-card--highlight .path-card__meta { color: rgba(198,169,107,0.65); }

/* ── POLICY PAGES (Privacy Policy, Terms) ───────────────────── */
.policy-sub {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  margin: 1.8rem 0 0.6rem;
  opacity: 0.9;
}

/* ── AREA CARDS (Areas of Transformation) ────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.area-card {
  background: var(--stone);
  border: 1px solid rgba(214,217,222,0.08);
  border-radius: var(--card-radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.area-card:hover {
  border-color: rgba(198,169,107,0.3);
  box-shadow: var(--shadow-card);
}
.area-card__icon {
  font-size: 1.1rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.area-card__name {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}
.area-card__desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.area-card__link {
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 0.6rem;
  display: inline-block;
}
.area-card__link:hover { text-decoration: underline; }
.area-card__link--sec {
  color: var(--mid-grey);
  margin-left: 0.8rem;
  font-size: 0.6rem;
}
.area-card__link--sec:hover { color: var(--silver); }

/* ── APPLICATION FORM ─────────────────────────────────────────── */
.apply-form {
  max-width: 700px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-field {
  margin-bottom: 2.2rem;
}
.form-q-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(198,169,107,0.6);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-hint {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.5;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--silver);
  background: var(--navy-mid);
  border: 1px solid rgba(214,217,222,0.18);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(214,217,222,0.35); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,169,107,0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A94A6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-divider {
  border: none;
  border-top: 1px solid rgba(214,217,222,0.15);
  margin: 2.5rem 0;
}
.form-privacy {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ── NEXT STEPS (Apply — what happens after submission) ──────── */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 580px;
  margin: 2.5rem auto 0;
}
.next-step {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.next-step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
}
.next-step__body h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 0.35rem;
}
.next-step__body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── RESPONSIVE: Phase 3 components ─────────────────────────── */
@media (max-width: 900px) {
  .path-card { flex-direction: column; }
  .path-card__id { flex: none; border-right: none; border-bottom: 1px solid rgba(214,217,222,0.08); padding: 1.6rem 1.6rem 1.2rem; }
  .path-card__desc { border-right: none; border-bottom: 1px solid rgba(214,217,222,0.08); padding: 1.4rem 1.6rem; }
  .path-card__action { flex: none; padding: 1.4rem 1.6rem; flex-direction: row; align-items: center; gap: 1rem; flex-wrap: wrap; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .area-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE BASE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .sec { padding: 3.5rem 5vw; }
  h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .statement h2 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero { padding: 4rem 5vw; min-height: 60vh; }
}


/* ============================================================
   PHASE C — Gold Accent Utilities
   Brand: 5–10% gold. Calm contrast. Strategic depth.
   v3.0 | Phase C
   ============================================================ */

/* ── .SEC.LIGHT — contrast-break light section ───────────────── */
/* Use sparingly: 1 per page max. Breaks dark monotony cleanly.  */
.sec.light {
  background: var(--light-grey);
  color: var(--navy);
  border-top: none;   /* override dark section gold border */
}
.sec.light h1,
.sec.light h2,
.sec.light h3,
.sec.light h4 { color: var(--navy); }

.sec.light h1 em,
.sec.light h2 em,
.sec.light h3 em { color: var(--gold); }

.sec.light p { color: rgba(18,26,47,0.68); }
.sec.light p em { color: var(--gold); }

.sec.light .section-label,
.sec.light .label { color: rgba(18,26,47,0.4); }

.sec.light .eyebrow { color: rgba(18,26,47,0.4); }

.sec.light .truth-list li {
  border-color: rgba(18,26,47,0.1);
  color: rgba(18,26,47,0.78);
}
.sec.light .truth-list li::before { color: rgba(18,26,47,0.3); }

.sec.light .process-step { border-color: rgba(18,26,47,0.1); }
.sec.light .step-body h3 { color: var(--navy); }
.sec.light .step-body p { color: rgba(18,26,47,0.62); }

.sec.light .rule { background: rgba(198,169,107,0.6); }

.sec.light .flist li {
  border-color: rgba(18,26,47,0.1);
  color: rgba(18,26,47,0.7);
}
.sec.light .flist li::before { color: rgba(18,26,47,0.3); }

/* Form fields on light background */
.sec.light .form-input,
.sec.light .form-textarea,
.sec.light .form-select {
  background: #fff;
  color: var(--navy);
  border-color: rgba(18,26,47,0.2);
}
.sec.light .form-input::placeholder,
.sec.light .form-textarea::placeholder { color: rgba(18,26,47,0.35); }
.sec.light .form-label { color: rgba(18,26,47,0.75); }
.sec.light .form-q-num { color: rgba(198,169,107,0.7); }
.sec.light .form-hint { color: rgba(18,26,47,0.5); }

/* Buttons on light background — primary stays gold, secondary gets navy treatment */
.sec.light .btn-secondary {
  color: var(--navy);
  border-color: var(--navy);
}
.sec.light .btn-secondary:hover {
  background: var(--navy);
  color: var(--silver);
}

/* ── GOLD KEYWORD SPAN ────────────────────────────────────────── */
/* Inline gold emphasis for power words in body copy.            */
/* Usage: <span class="gold-kw">clarity</span>                   */
.gold-kw {
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
}
.sec.light .gold-kw { color: #9A7840; }  /* deeper gold on light bg for contrast */

/* ── PULL QUOTE ───────────────────────────────────────────────── */
/* Outcome statements, coaching wins, attributed quotes.         */
/* Usage: <blockquote class="pull-quote"><p>…</p><cite>…</cite></blockquote> */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 0.6rem 0 0.6rem 1.8rem;
  margin: 2.2rem 0;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}
.pull-quote cite {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-style: normal;
}
.sec.light .pull-quote p { color: var(--navy); }
.sec.light .pull-quote cite { color: rgba(18,26,47,0.45); }

/* ── HIGHLIGHT STRIP ──────────────────────────────────────────── */
/* Gold left-border callout for key insights, methodology notes. */
/* Usage: <div class="highlight-strip"><p>…</p></div>            */
.highlight-strip {
  border-left: 3px solid rgba(198,169,107,0.55);
  padding: 0.3rem 0 0.3rem 1.5rem;
  margin: 1.8rem 0;
}
.highlight-strip p {
  color: var(--silver);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0;
}
.sec.light .highlight-strip { border-color: rgba(18,26,47,0.25); }
.sec.light .highlight-strip p { color: rgba(18,26,47,0.72); }

/* ── GOLD DIVIDER (standalone, wider than .rule) ─────────────── */
/* For more prominent section breaks within content.             */
/* Usage: <div class="divider-gold"></div>                       */
.divider-gold {
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 3rem auto;
}
.inner:not(.center) .divider-gold { margin-left: 0; }
.sec.light .divider-gold { opacity: 0.6; }

/* ── SECTION INTRO LABEL (gold eyebrow variant) ──────────────── */
/* Bolder than .label — used when a section needs more identity. */
/* Usage: <div class="label gold">Section Title</div>            */
.label.gold {
  color: var(--gold);
  opacity: 0.85;
}
.sec.light .label.gold { color: #9A7840; opacity: 1; }

/* ── GOLD TEXT UTILITY ────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-muted { color: var(--mid-grey); }

/* ── SPLIT ROW (Inside the Transformation page) ──────────────── */
/* Image left, content right layout for domain deep-dive pages.  */
/* Usage: <div class="split-row"> ... </div>                     */
.split-row {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(214,217,222,0.08);
}
.split-row:last-of-type { border-bottom: none; }
.split-row__img {
  flex: 0 0 36%;
  max-width: 36%;
}
.split-row__img .split-row__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--card-radius);
  display: block;
}
.split-row__img .img-placeholder {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(214,217,222,0.12);
  border-radius: var(--card-radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.split-row__content { flex: 1; min-width: 0; }
.split-row__area-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.6rem;
  line-height: 1.3;
}
.split-row__sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.4rem;
  display: block;
}
.split-row__content p {
  color: var(--silver);
  margin-bottom: 0.85rem;
  line-height: 1.75;
}
.split-row__belief {
  border-left: 2px solid rgba(198,169,107,0.55);
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin: 1.4rem 0 1.6rem;
  color: var(--silver);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .split-row { flex-direction: column; gap: 2rem; }
  .split-row__img { flex: none; max-width: 100%; }
}

/* ── APPLY / COACH FORM: SECTION HEADING ────────────────────── */
.form-section-heading {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(198,169,107,0.2);
}

/* ── APPLY FORM: COACH NOTE ──────────────────────────────────── */
.coach-note {
  display: none;
  background: var(--navy-mid);
  border: 1px solid rgba(198,169,107,0.3);
  border-radius: var(--card-radius);
  padding: 0.9rem 1.2rem;
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ── APPLY FORM: RADIO GROUP ─────────────────────────────────── */
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.6rem;
  margin-bottom: 0.5rem;
}
.form-radio-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--navy-mid);
  border: 1px solid rgba(214,217,222,0.12);
  border-radius: var(--card-radius);
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-radio-label:hover { border-color: rgba(198,169,107,0.35); }
.form-radio-label input[type="radio"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.form-radio-label span {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.6;
}
.form-radio-label strong { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   COACH PROFILE PAGE
   Used by: /coaches/[name]/index.html
   ══════════════════════════════════════════════════════════════ */

/* ── HERO: split photo + info ────────────────────────────────── */
.coach-profile-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4.5rem;
  align-items: start;
  padding-top: 0.5rem;
}
.cph-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--card-radius);
  display: block;
}
.cph-badge-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.cph-badge {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198,169,107,0.4);
  border-radius: 2px;
  padding: 0.3em 0.75em;
}
.cph-badge--muted {
  color: var(--mid-grey);
  border-color: rgba(138,148,166,0.25);
}
.cph-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.cph-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--mid-grey);
  transition: color 0.2s;
}
.cph-social-link:hover { color: var(--gold); }
.cph-social-link svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── INFO COLUMN ─────────────────────────────────────────────── */
.cph-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--charcoal);
  margin: 0.4rem 0 0.65rem;
  line-height: 1.15;
}
.cph-tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 1.6rem;
}
.cph-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.cph-domain {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(198,169,107,0.07);
  border: 1px solid rgba(198,169,107,0.25);
  color: var(--gold);
  padding: 0.35em 0.85em;
  border-radius: 2px;
}
.cph-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(214,217,222,0.1);
  border-bottom: 1px solid rgba(214,217,222,0.1);
}
.cph-meta-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.cph-meta-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.cph-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── PROGRAMME CARDS ─────────────────────────────────────────── */
.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.programme-card {
  background: var(--stone);
  border: 1px solid rgba(214,217,222,0.1);
  border-left: 3px solid rgba(198,169,107,0.3);
  border-radius: var(--card-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.programme-card--flagship {
  background: rgba(198,169,107,0.05);
  border-color: rgba(198,169,107,0.2);
  border-left-color: var(--gold);
}
.programme-card__eyebrow {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.programme-card__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
}
.programme-card--flagship .programme-card__title { color: var(--gold); }
.programme-card__desc {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--muted);
  flex: 1;
}
.programme-card__meta {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid-grey);
  line-height: 1.9;
}
.programme-card--flagship .programme-card__meta { color: rgba(198,169,107,0.6); }

/* ── TESTIMONIAL CARDS ───────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--stone);
  border: 1px solid rgba(214,217,222,0.1);
  border-radius: var(--card-radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}
.testimonial-body {
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--silver);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.testimonial-card--placeholder {
  opacity: 0.3;
  border-style: dashed;
}

/* ── COACH PROFILE: RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .coach-profile-hero { grid-template-columns: 1fr; gap: 2rem; }
  .cph-photo { max-width: 240px; }
  .programme-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cph-meta { gap: 1.4rem; }
  .cph-cta-row { flex-direction: column; align-items: stretch; }
  .cph-cta-row .btn-primary,
  .cph-cta-row .btn-secondary { text-align: center; }
}
