/* ============================================================
   OVP Coaching — Shared Design System
   ============================================================ */

/* ── Google Fonts loaded by each page ── */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --olive:        #4c6126;
  --olive-dark:   #3d4d1e;
  --olive-soft:   #e8ecdc;
  --olive-softer: #f2f3e8;
  --olive-ink:    #2c3a14;
  --text:         #333333;
  --muted:        #7a766f;
  --faint:        #a8a39a;
  --cream:        #faf9f7;
  --cream-warm:   #f3efe7;
  --card:         #ffffff;
  --hairline:     #ece8de;
  --hairline-soft:#f1ede4;
  --shadow:       0 1px 2px rgba(60,50,30,.04), 0 8px 24px rgba(60,50,30,.07);
  --shadow-lg:    0 2px 4px rgba(60,50,30,.04), 0 24px 60px rgba(60,50,30,.10);
  --r:            16px;
  --r-sm:         10px;
  --serif: "Newsreader", Georgia, serif;
  --sans:  system-ui, -apple-system, "Segoe UI", sans-serif;
  --max-w: 1200px;
  --px: 40px;

  /* Aliases — legacy token names used by some components/pages.
     Keep mapped to the tokens above so both vocabularies resolve. */
  --color-primary:      var(--olive);
  --color-primary-dark: var(--olive-dark);
  --color-text:         var(--text);
  --color-text-light:   var(--muted);
  --color-bg:           var(--cream);
  --color-bg-alt:       var(--card);
  --color-border:       var(--hairline);
  --font-display:       var(--serif);
  --font-body:          var(--sans);
  --radius:             var(--r);
  --transition:         background 0.3s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--olive-ink);
  letter-spacing: -.015em;
  line-height: 1.1;
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip {
  position: absolute; top: -48px; left: 0;
  background: var(--olive); color: #fff;
  padding: .6rem 1.2rem; border-radius: 0 0 8px 0;
  z-index: 999; transition: top .2s; font-weight: 600;
}
.skip:focus { top: 0; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250,249,247,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  height: 72px; display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--px); width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 50px; }

/* Desktop links */
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center;
}
.nav-links a {
  padding: 8px 15px; font-size: 15px; font-weight: 500;
  color: var(--muted); border-radius: 8px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover { color: var(--olive-ink); background: var(--olive-softer); }
.nav-links a.active { color: var(--olive-ink); font-weight: 600; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > a,
.nav-drop > button {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 15px; font-size: 15px; font-weight: 500;
  color: var(--muted); border-radius: 8px;
  transition: color .15s, background .15s; cursor: pointer;
  background: none; border: 0; font-family: inherit; line-height: inherit;
}
.nav-drop > a::after,
.nav-drop > button::after {
  content: ''; width: 0; height: 0; flex-shrink: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor; margin-top: 1px;
}
.nav-drop:hover > a,
.nav-drop:hover > button,
.nav-drop > button[aria-expanded="true"] { color: var(--olive-ink); background: var(--olive-softer); }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--r-sm); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 230px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
}
/* Invisible bridge fills the 8px gap so the mouse never leaves the hover zone */
.drop-menu::before {
  content: ''; position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.nav-drop.is-open .drop-menu,
.drop-menu.is-open {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.drop-menu a {
  display: block; padding: 10px 16px; font-size: 14.5px;
  border-radius: 8px; color: var(--text); font-weight: 400;
  transition: background .12s, color .12s;
}
.drop-menu a:hover { background: var(--olive-softer); color: var(--olive); }
.drop-divider { height: 1px; background: var(--hairline); margin: 6px 8px; }

/* Wide multi-column dropdown */
.drop-menu-wide {
  min-width: 480px;
  padding: 16px;
}
.drop-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 16px;
}
/* About dropdown: two filled columns, hug content (site-wide variant) */
#about-drop { min-width: 0; width: fit-content; }
#about-drop .drop-cols { grid-template-columns: repeat(2, 1fr); }
.drop-col { display: flex; flex-direction: column; }
.drop-col-head {
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--olive);
  padding: 6px 8px 8px; margin-bottom: 2px;
  border-bottom: 1px solid var(--hairline);
}

/* CTA button in nav */
.nav-cta {
  background: var(--olive); color: #fff !important;
  padding: 10px 20px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; letter-spacing: -.005em;
  white-space: nowrap; flex-shrink: 0;
  transition: background .15s;
}
.nav-cta:hover { background: var(--olive-dark) !important; }

/* Hamburger */
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: 8px; cursor: pointer;
  background: none; border: none; border-radius: 8px;
  width: 40px; height: 40px; flex-shrink: 0;
  transition: background .15s;
}
.burger:hover { background: var(--olive-softer); }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--olive-ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 88; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  position: fixed; top: 0; right: -320px; width: 300px;
  height: 100vh; height: 100dvh;
  background: var(--card); z-index: 89;
  padding: 80px 28px 40px; overflow-y: auto;
  transition: right .3s cubic-bezier(.23,1,.32,1);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block; padding: 13px 16px; font-size: 16px;
  font-weight: 500; color: var(--text); border-radius: var(--r-sm);
  transition: background .12s, color .12s;
}
.mobile-nav a:hover { background: var(--olive-softer); color: var(--olive); }
.mobile-nav a.active { color: var(--olive); font-weight: 600; }
.mobile-nav-section {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); padding: 16px 16px 4px;
}
.mobile-nav-divider { height: 1px; background: var(--hairline); margin: 8px 0; }
.mobile-nav-cta {
  margin-top: auto; padding-top: 20px;
}
.mobile-nav-cta a {
  display: block; text-align: center;
  background: var(--olive); color: #fff !important; border-radius: var(--r-sm);
  font-weight: 600; padding: 14px 20px;
}

/* ================================================================
   PAGE HEADER (inner pages)
   ================================================================ */
.page-header {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--hairline);
  padding: 64px var(--px) 56px;
}
.page-header-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.page-header-label {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 12px;
}
.page-header h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 400;
  max-width: 680px; margin-bottom: 16px;
}
.page-header h1 em { font-style: italic; }
.page-header p {
  font-size: 18px; color: var(--muted); max-width: 580px; line-height: 1.65;
}
.page-header-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--faint); margin-bottom: 24px;
}
.page-header-breadcrumb a { color: var(--olive); transition: color .15s; }
.page-header-breadcrumb a:hover { color: var(--olive-dark); text-decoration: underline; text-underline-offset: 2px; }
.page-header-breadcrumb span { color: var(--faint); }

/* ================================================================
   SECTION UTILITY
   ================================================================ */
.section { padding: 80px var(--px); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px); font-weight: 400; margin-bottom: 16px;
}
.section-title em { font-style: italic; }
.section-sub {
  font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.6;
}
.section-header { margin-bottom: 48px; }

.bg-warm  { background: var(--cream-warm); }
.bg-card  { background: var(--card); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.bg-ink   { background: var(--olive-ink); }
.bg-olive { background: var(--olive); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: var(--r-sm); font-weight: 600;
  letter-spacing: -.005em; font-family: var(--sans);
  font-size: 15px; padding: 13px 26px; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap; border: 1.5px solid transparent;
  text-decoration: none;
}
.btn-solid  { background: var(--olive); color: #fff; border-color: var(--olive); }
.btn-solid:hover  { background: var(--olive-dark); border-color: var(--olive-dark); }
.btn-outline { background: transparent; color: var(--olive); border-color: var(--olive); }
.btn-outline:hover { background: var(--olive-softer); }
.btn-ghost  { background: transparent; color: var(--olive-ink); border-color: var(--hairline); }
.btn-ghost:hover  { background: var(--olive-softer); }
.btn-soft   { background: var(--olive-soft); color: var(--olive-ink); border-color: transparent; }
.btn-soft:hover   { background: var(--olive-softer); }
.btn-sm  { font-size: 13.5px; padding: 12px 18px; min-height: 44px; }
.btn-lg  { font-size: 16px; padding: 16px 32px; }
.btn-full { width: 100%; }

/* ================================================================
   CARD
   ================================================================ */
.card {
  background: var(--card); border-radius: var(--r);
  border: 1px solid var(--hairline-soft); box-shadow: var(--shadow);
}
.card-hover { transition: box-shadow .2s, transform .2s; }
.card-hover:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* ================================================================
   SERVICE CARD
   ================================================================ */
.service-card {
  background: var(--card); border-radius: var(--r);
  border: 1px solid var(--hairline-soft); box-shadow: var(--shadow);
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--olive-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card h3 { font-size: 21px; font-weight: 500; }
.service-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--olive); margin-top: 4px;
  transition: color .15s;
}
.service-link:hover { color: var(--olive-dark); text-decoration: underline; text-underline-offset: 2px; }
.service-link svg { transition: transform .15s; }
.service-card:hover .service-link svg { transform: translateX(3px); }
.service-card.featured {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-color: transparent; color: #fff;
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p  { color: rgba(255,255,255,.75); }
.service-card.featured .service-icon { background: rgba(255,255,255,.15); }
.service-card.featured .service-link { color: rgba(255,255,255,.9); }

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.step-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px;
}
.step {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px; background: var(--card);
  border-radius: var(--r); border: 1px solid var(--hairline-soft);
  box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--serif); font-style: italic;
  font-size: 40px; color: var(--olive-soft); line-height: 1;
  font-weight: 500;
}
.step h4 { font-size: 18px; font-weight: 500; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-card {
  background: var(--card); border-radius: var(--r);
  border: 1px solid var(--hairline-soft); box-shadow: var(--shadow);
  padding: 28px; display: flex; flex-direction: column;
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 16px; color: #c8901f; font-size: 15px; }
.testi-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--olive-ink); line-height: 1.65;
  flex: 1; margin-bottom: 20px;
}
.testi-author { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ================================================================
   STAT / HIGHLIGHT ROW
   ================================================================ */
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-top: 48px;
}
.stat-card {
  text-align: center; padding: 36px 24px;
  background: var(--card); border-radius: var(--r);
  border: 1px solid var(--hairline-soft); box-shadow: var(--shadow);
}
.stat-num {
  font-family: var(--serif); font-size: 52px; font-weight: 400;
  color: var(--olive); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 15px; color: var(--muted); }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--card);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 22px var(--px);
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: nowrap; overflow-x: auto;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--muted); font-weight: 500;
}
.trust-item svg { color: var(--olive); flex-shrink: 0; }
.trust-logo-item { padding: 0; }
.trust-logo {
  height: 28px; max-width: 140px; width: auto; object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.3s ease;
}
.trust-logo-item:hover .trust-logo { filter: grayscale(0); }
.trust-divider { width: 1px; height: 24px; background: var(--hairline); }

/* ================================================================
   FORMS
   ================================================================ */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.field input,
.field select,
.field textarea {
  width: 100%; padding: 0 14px;
  height: 48px;
  background: var(--cream); border: 1px solid var(--hairline);
  border-radius: var(--r-sm); font-size: 15px; font-family: var(--sans);
  color: var(--text); outline: none;
  transition: border-color .15s, outline-color .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--olive); background: var(--card);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}
.field textarea { height: auto; padding: 12px 14px; resize: vertical; }
.field select { appearance: none; cursor: pointer; }

/* ================================================================
   ACCORDION / FAQ
   ================================================================ */
.faq-item {
  border-bottom: 1px solid var(--hairline); padding: 20px 0;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--olive-ink); font-family: var(--serif);
  background: none; border: none; text-align: left; width: 100%;
  padding: 0;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--olive-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); background: var(--olive); }
.faq-q.open .faq-icon svg { color: #fff; }
.faq-a {
  overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .2s;
}
.faq-a.open { max-height: 400px; padding-top: 14px; }
.faq-a p { font-size: 15.5px; color: var(--muted); line-height: 1.7; }

/* ================================================================
   PROSE (blog posts, service pages — any long-form readable content)
   ================================================================ */
.prose { max-width: 740px; }
.prose p {
  font-size: 16px; line-height: 1.8; color: var(--muted); margin-bottom: 1.25rem;
}
.prose h2 {
  font-size: clamp(22px, 2.5vw, 30px); margin-top: 2.5rem;
  margin-bottom: 0.75rem; color: var(--olive-ink);
}
.prose h3 {
  font-size: 20px; margin-top: 2rem; margin-bottom: 0.5rem; color: var(--olive-ink);
}
.prose ul, .prose ol {
  margin-left: 1.5rem; margin-bottom: 1.25rem;
  font-size: 16px; color: var(--muted); line-height: 1.8;
}
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
  border-left: 3px solid var(--olive); padding-left: 20px;
  margin: 28px 0; font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--olive-ink); line-height: 1.6;
}
.prose code {
  background: var(--cream-warm); padding: 0.2em 0.4em;
  border-radius: 4px; font-size: 0.9em;
}
.prose a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--olive-dark); }
.prose .tagline {
  font-family: var(--serif); font-style: normal; font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--olive-ink); max-width: 720px; margin-bottom: 2rem;
}
.prose .btn { text-decoration: none; margin-top: 1.5rem; }
.prose a.btn-solid, .prose a.btn-solid:hover { color: #fff; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #1a2208;
  color: rgba(255,255,255,.65);
  padding: 64px var(--px) 32px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 300px; }
footer h4 {
  font-family: var(--serif); font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.92); margin-bottom: 16px; letter-spacing: -.01em;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,.55);
  margin-bottom: 10px; transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.38); flex-wrap: wrap; gap: 8px;
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="100"] { transition-delay: .1s; }
[data-reveal][data-delay="200"] { transition-delay: .2s; }
[data-reveal][data-delay="300"] { transition-delay: .3s; }
[data-reveal][data-delay="400"] { transition-delay: .4s; }

/* ================================================================
   FOCUS
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px; border-radius: 4px;
}

/* ================================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {
  :root { --px: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(3,1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE NAV (≤860px)
   ================================================================ */
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤640px)
   ================================================================ */
@media (max-width: 640px) {
  :root { --px: 20px; }
  .section { padding: 56px var(--px); }
  .page-header { padding: 48px var(--px) 40px; }

  /* Buttons must never force horizontal scroll: allow long labels to wrap and
     cap at the container width (see mobile-audit-2026-08-07.md blocker 1). */
  .btn { white-space: normal; max-width: 100%; }

  /* Grids collapse */
  .grid-3  { grid-template-columns: 1fr !important; }
  .grid-2  { grid-template-columns: 1fr !important; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }

  .trust-bar-inner { gap: 20px; justify-content: flex-start; }
  .trust-divider { display: none; }

  /* Footer — mobile 2-column layout */
  .footer-inner         { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  /* L1+L2: brand block spans full width and centres */
  .footer-brand         { grid-column: 1 / -1; text-align: center; }
  .footer-brand p       { max-width: 100%; }
  .footer-logo          { display: flex; justify-content: center; }
  /* Coaching (col 1) left-aligned; Company (col 2) right-aligned for symmetry */
  .footer-col:nth-child(3) { text-align: right; }
  /* L4: Legal spans full width and centres */
  .footer-col:last-child { grid-column: 1 / -1; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Section header */
  .section-sub { font-size: 16px; }
  .page-header h1 { font-size: clamp(32px, 8vw, 44px); }

  /* Hero on homepage */
  .hero-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .hero-image-order { order: -1; }
}


/* ============================================================
   BACKWARDS-COMPAT ALIASES
   Old variable names → new tokens so pages not yet updated keep working
   ============================================================ */
:root {
  --color-primary: var(--olive);
  --color-primary-dark: var(--olive-dark);
  --color-text: var(--text);
  --color-text-light: var(--muted);
  --color-bg: var(--cream);
  --color-bg-alt: var(--card);
  --color-border: var(--hairline);
  --bg-cream: var(--cream);
  --font-display: var(--serif);
  --font-body: var(--sans);
  --radius: var(--r);
  --transition: background 0.3s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   LEGACY CLASSES (preserved from old global.css)
   Pages still reference these during migration
   ============================================================ */

/* Skip link — both .skip (new) and .skip-link (old) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--olive);
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Legacy CTA button */
.cta {
  display: inline-block;
  background: var(--olive);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: var(--transition);
}
.cta:hover {
  background: var(--olive-dark);
}

/* Legacy form styles (contact page uses these) */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 13.5px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .15s, outline-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  background: var(--card);
}
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}
.form-group textarea {
  resize: vertical;
}
form button.cta {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Legacy logo class */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--olive);
}

/* Legacy nav a (overridden by component styles) */
nav a {
  text-decoration: none;
  color: var(--text);
}
nav a:hover {
  color: var(--olive);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Touch */
a,
button {
  touch-action: manipulation;
}

/* ============================================================
   Coaching card recipe (globalized from one-on-one page)
   Marker class: .section-inner.prose.coaching-cards
   - .check-grid : 2-col check cards for plain topic lists
   - .step-grid  : numbered cards for strong + " - " desc lists
   - .section-cta: centered CTA block
   ============================================================ */
.section-inner.prose.coaching-cards { max-width: var(--max-w); }
.section-inner.prose.coaching-cards p { max-width: 720px; }
.section-inner.prose.coaching-cards .check-grid { list-style: none; margin: 0 0 2.5rem; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.section-inner.prose.coaching-cards .check-grid li { margin: 0; background: var(--card); border: 1px solid var(--hairline-soft); border-radius: 14px; padding: 14px 18px 14px 46px; box-shadow: var(--shadow); font-size: 16px; line-height: 1.5; color: var(--olive-ink); position: relative; }
.section-inner.prose.coaching-cards .check-grid li::before { content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%234c6126" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/contain no-repeat; }
.section-inner.prose.coaching-cards .step-grid { list-style: none; margin: 0 0 2.5rem; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.section-inner.prose.coaching-cards .step-grid li { margin: 0; background: var(--card); border: 1px solid var(--hairline-soft); border-radius: var(--r); padding: 22px 18px; box-shadow: var(--shadow); counter-increment: step; display: flex; flex-direction: column; gap: 8px; }
.section-inner.prose.coaching-cards .step-grid li::before { content: "0" counter(step); font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--olive); margin-bottom: 4px; }
.section-inner.prose.coaching-cards .step-grid strong { font-size: 17px; font-weight: 600; color: var(--olive-ink); }
.section-inner.prose.coaching-cards .step-grid li > span { font-size: 14px; color: var(--muted); line-height: 1.55; }
.section-cta { text-align: center; margin-top: 2.5rem; }
@media (max-width: 1024px) { .section-inner.prose.coaching-cards .step-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .section-inner.prose.coaching-cards .step-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .section-inner.prose.coaching-cards .check-grid, .section-inner.prose.coaching-cards .step-grid { grid-template-columns: 1fr; } }
