/* ============================================================
   CMA NZ — main.css
   Imports design tokens, adds layout utilities + component styles
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul[role="list"] { list-style: none; }

/* ── Self-hosted Inter variable font ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype-variations'),
       url('/fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype');
  font-variation-settings: 'opsz' 16;
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype-variations'),
       url('/fonts/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype');
  font-variation-settings: 'opsz' 16;
}

/* ── Design tokens (locked — from colors_and_type.css) ── */
:root {
  --charcoal:        #2d3e50;
  --charcoal-mid:    #3a4f63;
  --charcoal-deep:   #1e2e3d;
  --grey-body:       #6b7280;
  --grey-border:     #e5e7eb;
  --grey-mute:       #9ca3af;
  --offwhite:        #f8f7f5;
  --white:           #ffffff;
  --orange:          #f4652a;
  --orange-hover:    #e5501a;
  --orange-light:    #ff8c5a;
  --ok:              #1d9e75;
  --warn:            #e24b4a;

  --fg-1:            var(--charcoal);
  --fg-2:            var(--charcoal-mid);
  --fg-3:            var(--grey-body);
  --fg-mute:         var(--grey-mute);
  --fg-on-dark-1:    rgba(255,255,255,1);
  --fg-on-dark-2:    rgba(255,255,255,0.7);
  --fg-on-dark-3:    rgba(255,255,255,0.55);
  --fg-on-dark-mute: rgba(255,255,255,0.35);

  --bg-base:         var(--white);
  --bg-alt:          var(--offwhite);
  --bg-dark:         var(--charcoal);
  --bg-dark-alt:     var(--charcoal-mid);
  --bg-dark-deep:    var(--charcoal-deep);

  --border-hair:     0.5px solid var(--grey-border);
  --border-on-dark:  0.5px solid rgba(255,255,255,0.12);

  --accent:          var(--orange);
  --accent-hover:    var(--orange-hover);

  --font:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-h1:        clamp(40px, 5.5vw, 62px);
  --fs-h2:        clamp(28px, 3.5vw, 44px);
  --fs-h3:        19px;
  --fs-h3-lg:     22px;
  --fs-body-lg:   18px;
  --fs-body:      16px;
  --fs-body-sm:   15px;
  --fs-meta:      13px;
  --fs-micro:     11px;
  --fs-eyebrow:   11px;
  --fs-label:     10px;
  --fs-stat:      clamp(28px, 4vw, 44px);

  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  --tr-h1:     -2.5px;
  --tr-h2:     -1px;
  --tr-h3:     -0.2px;
  --tr-body:    0;
  --tr-eyebrow: 2px;
  --tr-label:   1.5px;

  --lh-display: 1.04;
  --lh-h2:      1.12;
  --lh-h3:      1.3;
  --lh-body:    1.75;
  --lh-tight:   1.5;

  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   24px;
  --sp-6:   32px;
  --sp-7:   48px;
  --sp-8:   64px;
  --sp-9:   96px;
  --sp-10: 128px;

  --shadow-sm:   0 1px 12px rgba(45,62,80,0.06);
  --shadow-md:   0 8px 24px rgba(45,62,80,0.10);
  --shadow-lg:   0 20px 48px rgba(45,62,80,0.14);
  --shadow-nav:  0 2px 24px rgba(45,62,80,0.07);

  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-micro:    200ms;
  --t-element:  320ms;
  --t-section:  600ms;

  --content-max:    1160px;
  --content-gutter: 48px;
  --section-pad-y:  96px;
}

/* ── Base ── */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--fg-1);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Skip to content (a11y) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--orange);
  color: var(--white);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-meta);
  font-weight: var(--fw-500);
  z-index: 9999;
  transition: top var(--t-micro);
}
.skip-link:focus { top: var(--sp-4); }

/* ── Layout utilities ── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

.section {
  padding: var(--section-pad-y) 0;
}

/* ── Typography ── */
h1, .h1 {
  font-family: var(--font);
  font-size: var(--fs-h1);
  font-weight: var(--fw-100);
  letter-spacing: var(--tr-h1);
  line-height: var(--lh-display);
  color: var(--fg-1);
}
h2, .h2 {
  font-family: var(--font);
  font-size: var(--fs-h2);
  font-weight: var(--fw-200);
  letter-spacing: var(--tr-h2);
  line-height: var(--lh-h2);
  color: var(--fg-1);
}
h3, .h3 {
  font-family: var(--font);
  font-size: var(--fs-h3);
  font-weight: var(--fw-400);
  letter-spacing: var(--tr-h3);
  line-height: var(--lh-h3);
  color: var(--fg-1);
}
p, .p {
  font-size: var(--fs-body);
  font-weight: var(--fw-400);
  line-height: var(--lh-body);
  color: var(--fg-3);
}
.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-500);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--grey-body); /* Global Rule 1: default grey on white/offwhite */
  display: block;
  margin-bottom: var(--sp-4);
}
.label {
  font-size: var(--fs-label);
  font-weight: var(--fw-500);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
}
.stat-number {
  font-size: var(--fs-stat);
  font-weight: var(--fw-100);
  letter-spacing: -1px;
  color: var(--fg-on-dark-1);
}
.detail-strip {
  font-size: 9px;
  font-weight: var(--fw-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ── On-dark variants ── */
.on-dark h1, .on-dark .h1 { color: var(--fg-on-dark-1); }
.on-dark h2, .on-dark .h2 { color: var(--fg-on-dark-1); font-weight: var(--fw-100); }
.on-dark h3, .on-dark .h3 { color: var(--fg-on-dark-1); }
.on-dark p,  .on-dark .p  { color: var(--fg-on-dark-3); }
.on-dark .label            { color: var(--fg-on-dark-mute); }
.on-dark .eyebrow          { color: var(--accent); } /* orange on dark sections */
.on-dark .section-label    { color: var(--accent); }

/* ── Global Rule 1 — Eyebrow special contexts ── */
#hero .eyebrow             { color: rgba(255,255,255,0.6); } /* homepage full-bleed hero */
#cta .eyebrow              { color: rgba(255,255,255,0.6); } /* dark image CTA section */
#event .eyebrow            { color: var(--accent); }        /* dark bg event section (intakes) */
#page-cta .section-label   { color: rgba(255,255,255,0.55); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: var(--fs-meta);
  font-weight: var(--fw-500);
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--t-micro) var(--ease);
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--fg-on-dark-2);
  font-family: var(--font);
  font-size: var(--fs-meta);
  font-weight: var(--fw-400);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--t-micro) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost-light:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 3px; }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--fg-1);
  font-family: var(--font);
  font-size: var(--fs-meta);
  font-weight: var(--fw-400);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45,62,80,0.35);
  cursor: pointer;
  transition: all var(--t-micro) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-ghost-dark:hover { border-color: var(--charcoal); background: rgba(45,62,80,0.05); }
.btn-ghost-dark:focus-visible { outline: 2px solid var(--charcoal); outline-offset: 3px; }

.btn-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }

/* ── Navigation ── */
#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: var(--border-on-dark);
  transition: box-shadow var(--t-element) var(--ease);
}
#nav.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,0.3); }

/* ── Homepage: unified nav — transparent on arrival, charcoal on scroll ── */
.page-home #nav {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1001;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  transition: background var(--t-element) var(--ease),
              border-bottom-color var(--t-element) var(--ease),
              box-shadow var(--t-element) var(--ease);
}
.page-home #nav.scrolled {
  background: var(--charcoal);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 32px rgba(0,0,0,0.3);
}

/* Arrival state: taller nav-inner to match original 80px hero logo */
.page-home #nav:not(.scrolled) .nav-inner { height: 80px; }

/* Nav-inner: CSS grid keeps nav-links at the geometric centre regardless of logo width.
   1fr (logo) | auto (links) | 1fr (actions) — both outer columns equal, so centre column
   is always perfectly centred. Also provides smooth height transition. */
.page-home #nav .nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  position: relative;
  transition: height var(--t-element) var(--ease);
}

/* Logo: left-aligned in its 1fr column */
.page-home #nav .nav-logo {
  justify-self: start;
}

/* Nav links: centred in the auto column — no absolute positioning needed */
.page-home #nav .nav-links {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  flex: none;
  justify-self: center;
}

/* Actions + hamburger share the 3rd column */
.page-home #nav .nav-actions,
.page-home #nav .nav-hamburger {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}


/* Arrival logo (full wordmark) ↔ scrolled logo (compact + NZ) */
.page-home #nav .nav-logo--scrolled { display: none; }
.page-home #nav.scrolled .nav-logo--arrival { display: none; }
.page-home #nav.scrolled .nav-logo--scrolled { display: flex; }

/* CTA: hidden on arrival, fades in when charcoal nav locks in */
.page-home #nav .nav-actions {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-element) var(--ease);
}
.page-home #nav.scrolled .nav-actions {
  opacity: 1;
  pointer-events: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--sp-7);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-logo-panel {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0 10px;
  display: flex;
  align-items: center;
  height: 40px;
}
.nav-logo-panel img { height: 28px; width: auto; }
.nav-logo-region {
  font-size: 10px;
  font-weight: var(--fw-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding-left: var(--sp-3);
  border-left: 0.5px solid rgba(255,255,255,0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-link {
  font-size: var(--fs-meta);
  font-weight: var(--fw-400);
  color: rgba(255,255,255,0.6);
  transition: color var(--t-micro);
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); }
.nav-link:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 3px; border-radius: 2px; }
.nav-link[aria-current="page"] {
  color: var(--white);
  border: 1px solid rgba(156,163,175,0.5); /* --grey-mute at 50% */
  border-radius: 4px;
  padding: 7px 10px;
  margin: 0 -10px;
}

.nav-actions { flex-shrink: 0; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all var(--t-micro) var(--ease);
}

/* ── Hero hamburger (all breakpoints — scrolls with hero, hands off to sticky nav) ── */
.hero-hamburger {
  display: flex;
  position: absolute;
  top: 16px;
  right: var(--content-gutter);
  z-index: 100;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  cursor: pointer;
  padding: 10px 11px;
  width: 44px;
  height: 44px;
}
.hero-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
}

/* .nav-mobile — replaced by #nav-overlay full-screen (3.3) */

/* ── Footer ── */
.footer {
  background: var(--charcoal-deep);
  padding: var(--sp-10) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: var(--border-on-dark);
}
.footer-brand img { height: 28px; width: auto; }
.footer-tagline {
  font-size: var(--fs-body-sm);
  color: var(--fg-on-dark-3);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}
.footer-email {
  font-size: var(--fs-meta);
  color: var(--orange);
  transition: color var(--t-micro);
}
.footer-email:hover { color: var(--orange-light); }
.footer-heading {
  font-size: 10px;
  font-weight: var(--fw-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-on-dark-mute);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: var(--fs-meta);
  color: var(--fg-on-dark-3);
  transition: color var(--t-micro);
}
.footer-col a:hover { color: var(--white); }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  font-size: 12px;          /* Global Rule 8: normalised */
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}
.footer-legal p { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.35); }
.footer-legal-links { display: flex; gap: var(--sp-5); }
.footer-legal-links a { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.35); transition: color var(--t-micro); }
.footer-legal-links a:hover { color: var(--fg-on-dark-3); }

/* ── Clarity-call modal ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--fg-mute);
  line-height: 1;
  padding: var(--sp-2);
  border-radius: var(--radius-xs);
  transition: color var(--t-micro);
}
.modal-close:hover { color: var(--fg-1); }
.modal h2 { font-size: 24px; font-weight: var(--fw-300); margin-bottom: var(--sp-6); color: var(--fg-1); }
.modal p  { font-size: var(--fs-body-sm); color: var(--fg-3); margin-bottom: var(--sp-6); }
.modal-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.modal-form label { font-size: var(--fs-meta); font-weight: var(--fw-500); color: var(--fg-2); margin-bottom: var(--sp-1); display: block; }
.modal-form input,
.modal-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-xs);
  font-family: var(--font);
  font-size: var(--fs-body-sm);
  color: var(--fg-1);
  background: var(--white);
  transition: border-color var(--t-micro);
}
.modal-form input:focus,
.modal-form select:focus { outline: none; border-color: var(--accent); }
.modal-confirm {
  display: none;
  text-align: center;
  padding: var(--sp-6) 0;
}
.modal-confirm.visible { display: block; }
.modal-confirm-icon {
  font-size: 40px;
  margin-bottom: var(--sp-4);
}
.modal-confirm h3 { font-weight: var(--fw-300); margin-bottom: var(--sp-3); }

/* Modal field wrapper */
.modal-field { display: flex; flex-direction: column; }

/* Field-level validation errors */
.field-error {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
  min-height: 16px;
  display: block;
}
.modal-form input.invalid,
.modal-form select.invalid {
  border-color: #c0392b;
}

/* Submission error panel — mirrors .modal-confirm structure */
.modal-error {
  display: none;
  text-align: center;
  padding: var(--sp-6) 0;
}
.modal-error.visible { display: block; }
.modal-error-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fdecea;
  color: #c0392b;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}
.modal-error h3 { font-weight: var(--fw-300); margin-bottom: var(--sp-3); }
.modal-error p  { font-size: var(--fs-body-sm); color: var(--grey-body); margin-bottom: 0; }
.modal-error p a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 2px; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  :root { --content-gutter: 32px; }
}

@media (max-width: 1023px) {
  :root {
    --section-pad-y: 72px;
    --content-gutter: 24px;
  }
  #nav .nav-links,
  #nav .nav-actions { display: none; }
  #nav .nav-hamburger { display: flex; }
  .hero-nav-links,
  .hero-nav-cta { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root {
    --section-pad-y: 56px;
    --content-gutter: 20px;
  }
  .btn-row { flex-direction: column; align-items: flex-start; }
  .btn-row .btn-primary,
  .btn-row .btn-ghost-light,
  .btn-row .btn-ghost-dark { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-brand { grid-column: auto; }
  .footer-legal { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-section) var(--ease), transform var(--t-section) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion — elements visible immediately, no translate */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* ── Section 01 — Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/homepage-landscape.jpg');
  background-size: cover;
  background-position: center 38%;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(22,35,47,0.78) 0%, rgba(22,35,47,0.55) 42%, rgba(22,35,47,0.18) 65%, transparent 100%),
    linear-gradient(to top, rgba(22,35,47,0.45) 0%, transparent 38%);
}
.hero-logo-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 1001;
  pointer-events: none;
  transition: opacity var(--t-element) var(--ease);
}
.hero-logo-overlay.hidden { opacity: 0; pointer-events: none; }
.hero-nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
.hero-nav-logo {
  flex-shrink: 0;
  pointer-events: auto;
  margin-right: auto;
  line-height: 0;
}
.hero-nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
  margin: 0 var(--sp-5) 0 0;
  padding: 0;
}
.hero-nav-link {
  font-size: 14px;
  font-weight: var(--fw-500);
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  pointer-events: auto;
  transition: color var(--t-micro) var(--ease);
  letter-spacing: 0.2px;
}
.hero-nav-link:hover { color: #fff; }
.hero-nav-cta {
  pointer-events: auto;
  flex-shrink: 0;
}
.hero-logo-img-wrap {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
}
.hero-logo-img-wrap img { height: 150px; width: auto; }
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 100px;
}
.hero-text { max-width: 680px; }
.hero-h1 { margin-bottom: var(--sp-6); color: #fff; text-shadow: 0 2px 32px rgba(0,0,0,0.45); }
.hero-sub {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-300);
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: var(--sp-7);
  max-width: 520px;
}
.hero-trust-strip {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 0.5px solid rgba(255,255,255,0.14);
  font-size: 12px;
  font-weight: var(--fw-400);
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.3px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; right: var(--content-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  z-index: 1;
}
.hero-scroll-label {
  font-size: 9px;
  font-weight: var(--fw-500);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 0.5px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
}

/* ── Section 02 — Trust & Credentials ── */
#trust {
  background: var(--charcoal);
  padding: 80px 0 72px;
}
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  margin-bottom: var(--sp-7);
}
.trust-tagline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: var(--fw-200);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.18;
}
.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px var(--sp-7);
}
.trust-stat-number {
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: var(--fw-600);
  color: var(--white);
  letter-spacing: -2.5px;
  line-height: 1;
}
.trust-stat-label {
  font-size: var(--fs-meta);
  font-weight: var(--fw-400);
  color: rgba(255,255,255,0.45);
  margin-top: var(--sp-2);
  line-height: 1.4;
}
.trust-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.1);
  margin-bottom: var(--sp-7);
}
.trust-badges { text-align: center; }
.trust-badges img { max-width: 60%; display: inline-block; opacity: 0.7; }

/* ── Section 03 — Who This Is For ── */
#audience {
  background: var(--white);
  padding: 104px 0 72px;
}
.audience-header { max-width: 600px; margin-bottom: var(--sp-7); }
.audience-header h2 { margin-top: var(--sp-4); margin-bottom: var(--sp-4); }
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-items: start;
}
.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.audience-card:nth-child(1) { aspect-ratio: 9/13; }
.audience-card:nth-child(2) { aspect-ratio: 9/13; margin-top: 48px; }
.audience-card:nth-child(3) { aspect-ratio: 9/13; }
.audience-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.audience-card:hover .audience-card-img { transform: scale(1.06); }
.audience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,35,47,0.95) 0%, rgba(22,35,47,0.6) 30%, rgba(22,35,47,0.15) 55%, transparent 72%);
  pointer-events: none;
}
.audience-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  z-index: 1;
}
.audience-card-eyebrow {
  display: inline-block;
  font-size: 9px;
  font-weight: var(--fw-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: var(--sp-3);
}
.audience-card-body h3 { color: var(--white); font-size: 18px; margin-bottom: var(--sp-2); }
.audience-card-desc {
  font-size: var(--fs-meta);
  font-weight: var(--fw-300);
  color: rgba(255,255,255,0);
  line-height: 1.65;
  transform: translateY(6px);
  transition: color var(--t-section) var(--ease), transform var(--t-section) var(--ease);
  max-width: 280px;
}
.audience-card:hover .audience-card-desc { color: rgba(255,255,255,0.65); transform: translateY(0); }
.audience-card:focus-within .audience-card-desc { color: rgba(255,255,255,0.65); transform: translateY(0); }

/* ── Section 04 — Pull Quote ── */
#quote-break {
  background: var(--white);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-break-content {
  text-align: center;
  padding: 0 var(--content-gutter);
  max-width: 880px;
  margin: 0 auto;
}
.quote-mark {
  font-size: 72px;
  font-weight: var(--fw-100);
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: var(--sp-6);
  font-style: normal;
  opacity: 0.8;
}
.quote-text {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: var(--fw-200);
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: -1px;
  line-height: 1.3;
  margin-bottom: var(--sp-6);
}
.quote-attribution {
  font-size: 10px;
  font-weight: var(--fw-500);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey-body);
}

/* ── Section 05 — Auckland Event + Countdown ── */
#event {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
}
.event-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/auckland-city.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.event-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,35,47,0.80);
}
.event-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-8);
  align-items: center;
}
.event-text h2, .event-grid h2 { color: var(--white); margin-top: var(--sp-4); margin-bottom: var(--sp-5); }
.event-date {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-400);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-5);
}
.event-details-strip {
  margin-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: var(--sp-4);
  font-size: 9px;
  font-weight: var(--fw-600);
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.event-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
}
.event-panel-label {
  font-size: 10px;
  font-weight: var(--fw-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-body);
  margin-bottom: var(--sp-5);
}
/* Countdown card — used in #event section (dark overlay background) */
.countdown-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
}
.countdown-label {
  font-size: 11px;
  font-weight: var(--fw-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-4);
}
.cd-block { text-align: center; }
.countdown {
  display: flex;
  gap: var(--sp-5);
  justify-content: center;
  margin-bottom: var(--sp-6);
  align-items: flex-start;
}
.cd-unit { text-align: center; }
.cd-num {
  font-size: 52px;
  font-weight: var(--fw-100);
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  display: block;
}
.cd-lbl {
  font-size: 9px;
  font-weight: var(--fw-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-body);
  margin-top: var(--sp-3);
  display: block;
}
.cd-label {
  font-size: 9px;
  font-weight: var(--fw-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: var(--sp-2);
  display: block;
}
.cd-sep {
  font-size: 40px;
  font-weight: var(--fw-100);
  color: rgba(255,255,255,0.2);
  line-height: 1;
  padding-top: 6px;
}

/* Countdown inside white .event-panel card — reverse to dark */
.event-panel .cd-num  { color: var(--charcoal); }
.event-panel .cd-sep  { color: var(--grey-border); }
.event-panel .cd-lbl  { color: var(--grey-body); }

/* Event metadata tags */
.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.event-details span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ── Section 06 — The Programme ── */
#programme {
  background: var(--offwhite);
  padding: 104px 0;
}
.programme-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.programme-left h2 { margin-top: var(--sp-4); margin-bottom: var(--sp-5); }
.programme-details-strip {
  margin-top: var(--sp-5);
  border-top: 1px solid var(--grey-border);
  padding-top: var(--sp-4);
  font-size: 9px;
  font-weight: var(--fw-600);
  letter-spacing: 1.5px;
  color: var(--grey-body);
  text-transform: uppercase;
}
.programme-right-label {
  font-size: 11px;
  font-weight: var(--fw-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-body);
  margin-bottom: var(--sp-5);
}
.credential-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.credential-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  background: var(--white);
  border: var(--border-hair);
  border-radius: var(--radius-md);
  transition: border-color var(--t-micro), transform var(--t-element) var(--ease);
}
.credential-item:hover { border-color: var(--charcoal-mid); transform: translateX(3px); }
.credential-badge {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--fw-600);
  color: var(--white);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.credential-name { font-size: 14px; font-weight: var(--fw-400); color: var(--charcoal); }
.credential-level { font-size: 11px; color: var(--grey-body); margin-top: 2px; }

/* ── Section 07 — Pricing ── */
#pricing {
  background: var(--charcoal-mid);
  padding: 104px 0;
  position: relative;
}
#pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 16px);
  pointer-events: none;
}
.pricing-header { text-align: center; max-width: 540px; margin: 0 auto var(--sp-8); }
.pricing-header h2 { margin-top: var(--sp-4); margin-bottom: var(--sp-3); color: #fff; }
.pricing-sub {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-300);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--charcoal);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.pricing-card.featured { background: var(--white); border-color: transparent; }
.pricing-save {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: var(--fw-500);
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-4);
}
.pricing-save.muted {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.pricing-type {
  font-size: 11px;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-2);
}
.pricing-card.featured .pricing-type { color: var(--grey-body); }
.pricing-intake { font-size: var(--fs-meta); color: rgba(255,255,255,0.45); margin-bottom: var(--sp-5); }
.pricing-card.featured .pricing-intake { color: var(--grey-body); }
.pricing-divider { height: 0.5px; background: rgba(255,255,255,0.1); margin: var(--sp-5) 0; }
.pricing-card.featured .pricing-divider { background: var(--grey-border); }
.pricing-amount { display: flex; align-items: baseline; gap: var(--sp-3); margin-bottom: var(--sp-2); }
.pricing-early {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: var(--fw-600);
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-card.featured .pricing-early { color: var(--charcoal); }
.pricing-was { font-size: 15px; color: rgba(255,255,255,0.28); }
.pricing-card.featured .pricing-was { color: var(--grey-mute); }
.pricing-gst { font-size: 11px; color: rgba(255,255,255,0.28); margin-bottom: var(--sp-5); }
.pricing-card.featured .pricing-gst { color: var(--grey-body); }
.pricing-btn {
  display: block;
  width: 100%;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: var(--fs-meta);
  font-weight: var(--fw-400);
  padding: 13px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background var(--t-micro), border-color var(--t-micro);
  text-align: center;
}
.pricing-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-btn { background: var(--accent); color: var(--white); }
.pricing-card.featured .pricing-btn:hover { background: var(--accent-hover); }
.pricing-note {
  text-align: center;
  margin-top: var(--sp-5);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── Section 08 — Testimonials ── */
#testimonials {
  background: var(--white);
  padding: 104px 0;
}
.testimonials-header { max-width: 640px; margin-bottom: var(--sp-7); }
.testimonials-header h2 { margin-top: var(--sp-4); margin-bottom: var(--sp-3); }
.testimonial-carousel { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  min-width: 100%;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--sp-7);
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grey-border);
  cursor: pointer;
  transition: background var(--t-element), transform var(--t-element);
  border: none;
  padding: 0;
}
.carousel-dot.active { background: var(--charcoal); transform: scale(1.4); }
.testimonial-card {
  background: var(--offwhite);
  border: var(--border-hair);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.testimonial-outcome {
  font-size: 10px;
  font-weight: var(--fw-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.testimonial-quote {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-300);
  font-style: italic;
  line-height: 1.78;
  color: var(--charcoal);
  margin-bottom: var(--sp-5);
}
.testimonial-divider { height: 0.5px; background: var(--grey-border); margin-bottom: var(--sp-4); }
.testimonial-name { font-size: var(--fs-meta); font-weight: var(--fw-500); color: var(--charcoal); }
.testimonial-role { font-size: 12px; color: var(--grey-body); margin-top: 2px; }

/* ── Section 09 — Book a Call CTA ── */
#cta {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/nz-coastline.jpg');
  background-size: cover;
  background-position: center 50%;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(22,35,47,0.62); }
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.cta-inner h2 { margin-top: var(--sp-4); margin-bottom: var(--sp-5); color: #fff; }
.cta-body { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: var(--sp-7); line-height: 1.7; }
.cta-inner .btn-row { justify-content: center; }

/* ── Section 10 — Global Reach ── */
#network {
  background: var(--charcoal-deep);
  padding: 96px 0;
}
.network-header { text-align: center; margin-bottom: var(--sp-8); }
.network-header h2 { margin-top: var(--sp-4); }
.network-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
  margin-bottom: var(--sp-7);
}
.network-number {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: var(--fw-600);
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}
.network-label {
  font-size: 10px;
  font-weight: var(--fw-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: var(--sp-3);
}
.network-divider { height: 0.5px; background: rgba(255,255,255,0.08); margin-bottom: var(--sp-6); }
.network-countries { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; row-gap: 6px; }
.country-pill {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  padding: 0 10px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.country-pill:first-child { border-left: none; padding-left: 0; }
.country-pill.here { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════
   INTERIOR PAGE COMPONENTS
   ═══════════════════════════════════════════ */

/* ── Page Hero (interior pages) ── */
.page-hero {
  background: var(--charcoal-deep);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.40;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.6); } /* Global Rule 1: image hero eyebrow */
.page-hero h1 {
  color: #fff;
  margin: var(--sp-3) 0 var(--sp-4);
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}
.page-hero-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ── Page Hero — light image variant ── */
.page-hero--light { background: #f5f5f3; }
.page-hero--light .page-hero-bg { opacity: 0.85; }
.page-hero--light .page-hero h1,
.page-hero--light h1 { color: var(--charcoal); }
.page-hero--light .page-hero p,
.page-hero--light p { color: var(--grey-body); }
.page-hero--light .eyebrow { color: var(--grey-body); } /* Global Rule 1: offwhite hero eyebrow */

/* ── Stats Bar ── */
.stats-bar {
  background: var(--charcoal);
  padding: 36px 0;
}
/* Light stats bar variant — white bg with dark text */
.stats-bar--light {
  background: #fff;
}
.stats-bar--light .stats-bar-num   { color: var(--charcoal); }
.stats-bar--light .stats-bar-label { color: var(--grey-mute); }

/* Intakes page — light hero grid */
.intakes-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 var(--sp-8);
  align-items: center;
}
.intakes-hero-divider {
  background: var(--grey-border);
  align-self: stretch;
}
.intakes-hero-left h1 {
  color: var(--charcoal);
  margin: var(--sp-4) 0 var(--sp-6);
}
.intakes-hero-right p {
  color: var(--grey-body);
  font-size: 17px;
  line-height: 1.75;
  max-width: 420px;
}
@media (max-width: 768px) {
  .intakes-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6) 0;
  }
  .intakes-hero-divider { display: none; }
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
.stats-bar-item {}
.stats-bar-num {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 200;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.stats-bar-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ── Two-column interior layout ── */
.interior-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.interior-two-col.reverse { direction: rtl; }
.interior-two-col.reverse > * { direction: ltr; }
.interior-two-col.align-center { align-items: center; }

/* ── Interior section headings ── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey-body); /* Global Rule 1: default grey on white/offwhite */
  display: block;
  margin-bottom: var(--sp-3);
}
.section-intro { max-width: 640px; }
.section-intro h1,
.section-intro h2 { margin-bottom: var(--sp-3); }
.section-intro p { margin-bottom: var(--sp-4); }

/* ── Proof list ── */
.proof-list {
  list-style: none;
  margin: var(--sp-4) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.proof-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 15px;
  color: var(--grey-body);
  line-height: 1.5;
}
.proof-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--orange);
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
}
.proof-list li::after {
  display: none;
  content: '';
  font-size: 0;
}

/* ── About proof points ── */
.interior-two-col h2 { margin-bottom: var(--sp-5); }
.interior-two-col h2 + p { margin-top: 0; }
.proof-points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin: var(--sp-6) 0 var(--sp-7);
}
.proof-point {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.proof-point-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-top: 2px;
}
.proof-point-text h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.proof-point-text p {
  font-size: 14px;
  color: var(--grey-body);
  line-height: 1.6;
  margin: 0;
}

/* ── Team Grid ── */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.team-card {
  flex: 0 0 calc(25% - 18px);
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4/6;
  background: var(--grey-border);
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top;
  display: block;
  margin-bottom: var(--sp-3);
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/6;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-deep) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  position: relative;
  overflow: hidden;
}
.team-photo-placeholder::after {
  content: attr(data-initials);
  font-size: 36px;
  font-weight: 200;
  color: rgba(255,255,255,0.3);
  letter-spacing: -1px;
}
.team-credential {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: var(--sp-2);
}
.team-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--grey-body);
}
.team-linkedin {
  display: inline-block;
  margin-top: var(--sp-2);
  font-size: 12px;
  color: var(--orange);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.team-card:hover .team-linkedin { opacity: 1; }

/* ── Programme tracks ── */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.track-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  border: 1px solid var(--grey-border);
  box-shadow: 0 2px 12px rgba(45,62,80,0.08); /* Global Rule 3 */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.track-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.track-card.featured .track-badge { background: var(--orange); color: #fff; }
.track-card.featured .track-name { color: #fff; }
.track-card.featured .track-body { color: rgba(255,255,255,0.65); }
.track-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-body);
  background: var(--grey-border);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: var(--sp-3);
}
.track-name {
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.track-body {
  font-size: 14px;
  color: var(--grey-body);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.track-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
}
.track-cta:hover { text-decoration: underline; }

/* ── Module list ── */
.module-list {
  list-style: none;
  margin: var(--sp-5) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.module-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-4) 0;
}
.module-code {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  padding-top: 2px;
}
.module-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.module-detail {
  font-size: 13px;
  color: var(--grey-body);
}

/* ── Why it works — reasons ── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.reason-card {
  padding: var(--sp-5);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
}
.reason-num {
  font-size: 40px;
  font-weight: 200;
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.reason-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.reason-body {
  font-size: 14px;
  color: var(--grey-body);
  line-height: 1.65;
}

/* ── Cohort cards (Intakes) ── */
.cohort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  align-items: start;
}
.cohort-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
  box-shadow: 0 2px 12px rgba(45,62,80,0.08); /* Global Rule 3 */
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.cohort-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.cohort-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.cohort-card.subject-to-interest { /* opacity: 0.65; — removed per brief 4.3: badge communicates status, not card opacity */ }
.cohort-header {
  padding: var(--sp-4) var(--sp-4) 0;
}
.cohort-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--orange);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: var(--sp-3);
}
.cohort-badge.interest    { background: var(--grey-body); }
.cohort-badge.early-bird  { background: var(--charcoal); color: #fff; } /* brief 4.3: early bird is dark charcoal, not orange */
.cohort-name {
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.cohort-schedule {
  font-size: 14px;
  color: var(--grey-body);
  margin-bottom: var(--sp-3);
}
.cohort-price-block {
  padding: var(--sp-3) var(--sp-4);
  background: var(--offwhite);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}
.cohort-early-bird {
  font-size: 28px;
  font-weight: 200;
  color: var(--charcoal);
  letter-spacing: -1px;
}
.cohort-early-bird span { font-size: 14px; font-weight: 400; color: var(--grey-body); }
.cohort-regular {
  font-size: 13px;
  color: var(--grey-body);
  text-decoration: line-through;
}
.cohort-body {
  padding: var(--sp-4);
}
.cohort-detail-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.cohort-detail-item {
  font-size: 13px;
  color: var(--grey-body);
  line-height: 1.5;
}
.cohort-detail-item strong {
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* ── Journey steps ── */
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-6);
  max-width: 720px;
}
.journey-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--grey-border);
  position: relative;
}
.journey-step:first-child { border-top: 1px solid var(--grey-border); }
.journey-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.journey-step-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.journey-step-body {
  font-size: 14px;
  color: var(--grey-body);
  line-height: 1.65;
}

/* ── ICF Credentials — level breakdown ── */
.credential-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.credential-overview-card {
  padding: var(--sp-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
  background: var(--offwhite);
}
.credential-code-large {
  font-size: 48px;
  font-weight: 200;
  color: var(--charcoal);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.credential-level-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: #fef0e8;
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: var(--sp-3);
}
.credential-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.credential-desc {
  font-size: 14px;
  color: var(--grey-body);
  line-height: 1.65;
}

/* ── Credential level detail blocks ── */
.credential-levels {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.credential-level-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-5);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
}
.credential-level-badge {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.credential-level-badge .badge-code {
  font-size: 22px;
  font-weight: 200;
  color: #fff;
  letter-spacing: -1px;
}
.credential-level-badge .badge-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.credential-level-h { font-size: 19px; font-weight: 500; color: var(--charcoal); margin-bottom: var(--sp-2); }
.credential-level-body { font-size: 15px; color: var(--grey-body); line-height: 1.7; }

/* ── Additional ICF approvals ── */
.approvals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.approval-card {
  padding: var(--sp-5);
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
}
.approval-icon {
  font-size: 32px;
  margin-bottom: var(--sp-3);
  line-height: 1;
}
.approval-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.approval-body {
  font-size: 14px;
  color: var(--grey-body);
  line-height: 1.65;
}

/* ── Alumni testimonials ── */
.alumni-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.alumni-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  border: 1px solid var(--grey-border);
  display: flex;
  flex-direction: column;
}
.alumni-stars {
  color: #f4a225;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: var(--sp-3);
}
.alumni-quote {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: var(--sp-4);
}
.alumni-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.alumni-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.alumni-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.alumni-role {
  font-size: 12px;
  color: var(--grey-body);
}

/* ── Community benefits (Alumni) ── */
.community-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}
.community-benefit {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.community-benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
  flex-shrink: 0;
}
.community-benefit-text {
  font-size: 15px;
  color: var(--grey-body);
  line-height: 1.55;
}

/* ── Article cards (Resources) ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
  box-shadow: 0 2px 12px rgba(45,62,80,0.08); /* Global Rule 3 */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}
.article-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.article-card-body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}
.article-badge {
  display: inline-block; /* 6.3: own line above meta */
  align-self: flex-start; /* prevent stretching in flex column */
  margin-bottom: var(--sp-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--orange);
  border-radius: 4px;
  padding: 3px 8px;
}
.article-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-body); /* 6.3: grey on offwhite background */
}
.article-date {
  font-size: 12px;
  color: var(--grey-body);
  margin-left: auto;
}
.article-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: var(--sp-3);
}
.article-summary {
  font-size: 14px;
  color: var(--grey-body);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-4);
  /* Forces text to truncate beautifully at ~3 lines if it runs over */
  display: -webkit-box;
  line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
}
.article-link:hover { text-decoration: underline; }
.articles-cta { text-align: center; margin-top: var(--sp-5); }

/* ── Clarity call feature block (Resources) ── */
.clarity-call-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
  overflow: hidden;
}
/* 6.4: Split card zones */
.clarity-call-card-top {
  background: var(--offwhite);
  padding: var(--sp-7) var(--sp-6);
}
.clarity-call-card-bottom {
  border-radius: 0; /* part of unified card */
}
.clarity-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}
.clarity-benefit {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: 15px;
  color: var(--grey-body);
}
.clarity-benefit::before {
  content: '→';
  color: var(--orange);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Resources placeholder guides ── */
.guide-placeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-5);
}
.guide-placeholder {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--grey-border);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  color: var(--grey-body);
  font-size: 14px;
}
.guide-placeholder-icon { font-size: 32px; margin-bottom: var(--sp-3); display: flex; justify-content: center; }
.guide-placeholder-label { font-size: 13px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.guide-placeholder-note { font-size: 12px; color: var(--grey-body); opacity: 0.7; }

/* ── FAQ Accordion ── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-6);
}
.faq-item {
  border-bottom: 1px solid var(--grey-border);
}
.faq-item:first-child { border-top: 1px solid var(--grey-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--sp-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
  transition: color 0.18s ease;
}
.faq-question:hover { color: var(--orange); }
.faq-question.open { color: var(--orange); }
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--grey-body);
  transition: transform 0.25s ease, background 0.25s ease;
  font-weight: 300;
}
.faq-question.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease, padding 0.45s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: var(--sp-4);
  font-size: 15px;
  color: var(--grey-body);
  line-height: 1.75;
}

/* ── FAQ open list (AEO — always-visible, no accordion) ── */
.faq-list {
  margin-top: var(--sp-6);
}
.faq-entry {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--grey-border);
}
.faq-entry:first-child { border-top: 1px solid var(--grey-border); }
.faq-entry-q {
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
}
.faq-entry-a {
  font-size: 15px;
  color: var(--grey-body);
  line-height: 1.75;
  max-width: 780px;
}
.faq-entry-a ul,
.faq-entry-a ol {
  padding-left: 1.4em;
  margin: 0.5em 0;
}
.faq-entry-a li {
  margin-bottom: 0.3em;
}

/* ── Quick facts bar (FAQ) ── */
.quick-facts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.quick-facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.quick-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 15px;
  color: var(--grey-body);
  line-height: 1.5;
}
.quick-facts-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}
.booking-note {
  margin-top: var(--sp-3);
  font-size: 12px;
  color: var(--grey-body);
  opacity: 0.65;
}

/* ── Join section (FAQ closing) ── */
.join-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.join-section h1 { margin-bottom: var(--sp-3); }
.join-section p { margin-bottom: var(--sp-5); color: var(--grey-body); font-size: 17px; line-height: 1.65; }
.join-actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ── Page CTA (full-bleed, interior pages) ── */
#page-cta {
  background: var(--charcoal-deep);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
}
#page-cta .section-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/nz-coastline.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
#page-cta .container { position: relative; z-index: 1; }
#page-cta .eyebrow { color: rgba(255,255,255,0.55); }
#page-cta h1, #page-cta h2 { color: #fff; max-width: 680px; margin: var(--sp-3) auto var(--sp-3); }
#page-cta p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto var(--sp-5); font-size: 17px; }
#page-cta .cta-actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ── Transformative edge (Programmes) ── */
.transformative-edge {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-8);
  align-items: start;
}
.edge-badge-block {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
}
.edge-badge-code {
  font-size: 56px;
  font-weight: 200;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.edge-badge-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-4);
}
.edge-badge-name {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
/* ── Pull quote (reusable standalone component) ── */
.pull-quote {
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-left: 3px solid var(--orange);
  background: var(--offwhite);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pull-quote p {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: var(--sp-2);
}
.pull-quote cite {
  font-size: 13px;
  color: var(--grey-body);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2px;
}
/* Legacy alias — keep for backwards compat */
.edge-quote { display: none; }

/* ── Pathway steps (ICF) ── */
.pathway-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  position: relative;
}
.pathway-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--grey-border);
  z-index: 0;
}
.pathway-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.pathway-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
}
.pathway-step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-1);
}
.pathway-step-body {
  font-size: 13px;
  color: var(--grey-body);
  line-height: 1.55;
}

/* ── Accreditation badges (ICF page hero) ── */
.accreditation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.accreditation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.accreditation-badge .badge-icon {
  font-size: 14px;
}

/* ── Interior responsive ── */
@media (max-width: 1200px) {
  /* team-grid is flex — 4-up is already the default */
}
@media (max-width: 900px) {
  .interior-two-col { grid-template-columns: 1fr; gap: var(--sp-6); }
  .interior-two-col.reverse { direction: ltr; }
  .tracks-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .cohort-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .credential-overview { grid-template-columns: 1fr; }
  .approvals-grid { grid-template-columns: 1fr; }
  .alumni-testimonials { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .clarity-call-feature { grid-template-columns: 1fr; }
  .quick-facts-layout { grid-template-columns: 1fr; }
  .transformative-edge { grid-template-columns: 1fr; }
  .pathway-steps { grid-template-columns: repeat(2, 1fr); }
  .pathway-steps::before { display: none; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { flex: 0 0 calc(33.333% - 16px); }
  .credential-levels .credential-level-block { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   BLOG POST TEMPLATE
   Reusable layout for all CMA blog posts.
   Content fields: title, category, date, author, heroImage.
   FUTURE: add tag/taxonomy system when content library grows.
════════════════════════════════════════════════════ */

/* Breadcrumb */
.blog-breadcrumb {
  text-align: center;
  font-size: 13px;
  color: var(--grey-mute);
  margin-bottom: var(--sp-5);
  padding-top: var(--sp-8);
}
.blog-breadcrumb a {
  color: var(--grey-mute);
  text-decoration: none;
}
.blog-breadcrumb a:hover { color: var(--charcoal); }
.blog-breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.4;
}
.blog-breadcrumb-current { color: var(--charcoal); font-weight: 500; }

/* Post header */
.blog-post-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: var(--sp-7);
}
.blog-post-header h1 {
  color: var(--charcoal);
  margin: var(--sp-3) 0 var(--sp-4);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.5px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-size: 13px;
  color: var(--grey-mute);
  margin-bottom: var(--sp-3);
}
.blog-post-meta-dot { opacity: 0.4; }
.blog-post-category {
  font-weight: 500;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-post-author {
  font-size: 13px;
  color: var(--grey-body);
  margin-top: var(--sp-2);
}

/* Hero image — full bleed */
.blog-post-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

/* Creates a blurred background using the same image so there are no empty gaps */
.blog-post-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('{{ thumbnail }}');
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.6);
  transform: scale(1.1); /* Prevents white edges from the blur */
  z-index: 1;
}

/* Sits on top of the blur, crisp and uncropped */
.blog-post-hero img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  max-height: 600px; /* Limits excessive vertical height */
  object-fit: contain;
  display: block;
}
/* Body — constrained reading column */
.blog-post-wrap {
  position: relative;
  padding: var(--sp-8) 0 var(--sp-10);
}
.blog-post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}
.blog-post-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--grey-body);
  margin-bottom: var(--sp-5);
}
.blog-post-body h2 {
  color: var(--charcoal);
  margin: var(--sp-7) 0 var(--sp-3);
  font-size: 24px;
}
.blog-post-body img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: var(--sp-6) 0;
}

/* Share sidebar — sticky on desktop */
.blog-share {
  position: absolute;
  right: calc((100vw - var(--content-max)) / 2 - 60px);
  top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
}
.blog-share-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mute);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: var(--sp-2);
}
.blog-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-body);
  text-decoration: none;
  transition: border-color var(--t-micro), color var(--t-micro);
}
.blog-share-btn:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.blog-share-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* Post footer */
.blog-post-footer {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--sp-6) var(--content-gutter) 0;
  border-top: 1px solid var(--grey-border);
}
.blog-post-footer-author {
  font-size: 14px;
  color: var(--grey-body);
}
.blog-post-footer-author strong { color: var(--charcoal); }

/* FUTURE: Related articles — placeholder, not yet built */
/* .blog-related { ... } */

@media (max-width: 1200px) {
  .blog-share { display: none; }
}
@media (max-width: 600px) {
  .page-hero { padding: 100px 0 60px; }
  .team-card { flex: 0 0 calc(50% - 12px); }
  .pathway-steps { grid-template-columns: 1fr; }
  .quick-facts-layout { gap: var(--sp-6); }
}

/* ── Homepage responsive ── */
@media (max-width: 900px) {
  .trust-layout { grid-template-columns: 1fr; gap: var(--sp-7); }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .event-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .programme-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .network-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-badges img { max-width: 80%; }
}
@media (max-width: 768px) {
  .audience-cards { grid-template-columns: 1fr; }
  .audience-card:nth-child(1),
  .audience-card:nth-child(2),
  .audience-card:nth-child(3) { aspect-ratio: 3/2; margin-top: 0; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .carousel-slide { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  #hero { align-items: flex-start; padding-top: 130px; }
  .hero-inner { padding-bottom: 60px; }
  .hero-scroll-indicator { display: none; }
  .trust-badges img { max-width: 90%; }
  .countdown { gap: var(--sp-3); }
  .cd-num { font-size: 40px; }
  #audience, #event, #programme, #pricing, #testimonials, #cta, #network {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}


/* ============================================================
   FULL-SCREEN MOBILE NAV OVERLAY (3.3)
   Replaces dropdown at all mobile breakpoints (≤900px)
   ============================================================ */
#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--charcoal);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#nav-overlay.open {
  display: flex;
}
.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  line-height: 1;
  padding: var(--sp-2);
  border-radius: var(--radius-xs);
  transition: color var(--t-micro);
}
.nav-overlay-close:hover { color: var(--white); }
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  list-style: none;
}
.nav-overlay-links .nav-link {
  font-size: 22px;
  font-weight: var(--fw-200);
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.3px;
  padding: 0;
  white-space: nowrap;
}
.nav-overlay-links .nav-link:hover,
.nav-overlay-links .nav-link[aria-current="page"] {
  color: var(--white);
  border: none;
  padding: 0;
  margin: 0;
}
.nav-overlay-cta {
  width: calc(100% - 48px);
  max-width: 320px;
  justify-content: center;
}


/* ============================================================
   SECTION PADDING — moved from inline styles for 480px control
   ============================================================ */
#intakes-hero   { padding: var(--sp-10) 0 var(--sp-9); background: #f8f7f5; }
#faq-hero       { padding: 100px 0 var(--sp-9); background: #f8f7f5; }
#resources-hero { padding: 100px 0 var(--sp-9); background: #f8f7f5; }
#event          { padding: 96px 0; position: relative; overflow: hidden; }


/* ============================================================
   GLOBAL RULES — 480px MOBILE OVERRIDES
   All overrides scoped to 480px — desktop values unchanged
   ============================================================ */
@media (max-width: 480px) {

  /* ── Global Rule 4 — Section Spacing ── */
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section.section--lg {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  /* Page hero sections (light heroes) */
  #intakes-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  #faq-hero {
    padding-top: 72px;
    padding-bottom: 48px;
  }
  #resources-hero {
    padding-top: 60px;
    padding-bottom: 48px;
  }
  #event {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  /* Card internal padding */
  .cohort-card .cohort-header,
  .cohort-card .cohort-body { padding: 16px 16px 0; }
  .cohort-card .cohort-price-block { padding: 12px 16px; }
  .cohort-card .cohort-body { padding: 16px; }

  /* Grid gaps */
  .cohort-grid     { gap: 12px; }
  .tracks-grid     { gap: 12px; }
  .articles-grid   { gap: 12px; }

  /* ── Global Rule 6 — Typography ── */
  h1, .h1 {
    font-size: 40px;
    letter-spacing: 0px;
    font-weight: 200;
  }
  h2, .h2 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  h3, .h3 {
    font-size: 20px;
    letter-spacing: 0px;
  }
  .stat-number,
  .cohort-early-bird,
  .pricing-amount { letter-spacing: -1px; }

  /* ── Global Rule 8 — Footer ── */
  .footer { padding-top: 108px; }

  /* ── Page 1.2 — Testimonials: swipeable carousel ── */
  /* JS flattens .carousel-slide wrappers into the track on mobile,
     so cards become direct flex children with scroll-snap per card.
     display:contents avoided — unreliable in Safari/iOS WebKit. */
  .carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding-bottom: 16px;
    transform: none !important;
    transition: none !important;
  }
  .testimonial-card {
    flex: 0 0 85%;
    min-width: 0;
    scroll-snap-align: start;
  }

  /* ── Page 1.3 — Pricing kerning ── */
  .pricing-amount,
  .pricing-early { letter-spacing: -1px; }

  /* ── Page 1.5 — Modal card padding ── */
  .modal { padding: 16px; }

  /* ── Page 3.4 — Hero CTA buttons full width ── */
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn-primary,
  .page-hero-actions .btn-ghost-light,
  .page-hero-actions .btn-ghost-dark {
    width: 100%;
    justify-content: center;
  }
  .hero-inner .btn-row { flex-direction: column; }
  .hero-inner .btn-row .btn-primary,
  .hero-inner .btn-row .btn-ghost-light { width: 100%; justify-content: center; }

  /* ── Page 4.1 — Auckland event section ── */
  .event-details { display: none; } /* clean up emoji details on mobile — content in prose */
  .event-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── Page 4.2 — Countdown tighten ── */
  .countdown-card { padding: 24px 20px; }
  .cd-num { font-size: 40px; letter-spacing: -1px; }
  .cd-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

  /* ── Page 4.3 — Cohort cards ── */
  .cohort-grid { grid-template-columns: 1fr; }

  /* ── Page 4.4 — Journey spacing ── */
  .journey-steps { gap: 20px; }
  .journey-steps + * { margin-top: 24px; }

  /* ── Page 5.2 — Credentials guide spacing ── */
  .credential-guide-btn { margin-bottom: 24px; }

  /* ── Page 5.3 — Credential card shadows (already via Global Rule 3) ── */

  /* ── Page 6.1 — Resources hero photo position ── */
  #resources-hero .interior-two-col {
    flex-direction: column;
    gap: 32px;
  }
  #resources-hero .interior-two-col > div:first-child {
    margin-top: -40px;
  }

  /* ── Page 6.2 — Free resource cards stack ── */
  .guide-placeholders {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .guide-placeholder { overflow: visible; }

  /* ── Page 6.3 — Blog card hierarchy ── */
  .article-badge { display: block; margin-bottom: 6px; }
  .article-meta  { flex-direction: column; gap: 2px; }

  /* ── Page 7.1 — FAQ hero eyebrow ── */
  #faq-hero {
    padding-top: 72px;
  }

  /* ── Page 7.2 — FAQ intro to first question spacing ── */
  .faq-intro-block { padding-bottom: 20px; }
  .faq-list { padding-top: 20px; }

  /* ── Intakes hero grid: stack on mobile ── */
  .intakes-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .intakes-hero-divider { display: none; }

  /* ── About page: faculty photo aspect ratio ── */
  .faculty-photo-wrap { aspect-ratio: 5/4; }
  .faculty-photo-wrap img { object-position: center top; }

  /* ── Programmes page: track grid ── */
  .tracks-grid { grid-template-columns: 1fr; }

  /* ── Resources: clarity call split card ── */
  .clarity-call-top    { background: #fff; padding: 24px 20px; }
  .clarity-call-bottom { background: var(--charcoal); padding: 24px 20px; border-radius: 0 0 14px 14px; }

}


/* ════════════════════════════════════════════
   ICON SYSTEM
   Icons loaded as <img> from /assets/*.svg
════════════════════════════════════════════ */

.icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── 24px — inline with text ── */
.icon-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Icon list — replaces proof-list checkmark bullets */
.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.icon-list li::before {
  display: none;
}

.icon-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Delivery mode items (charcoal card) */
.delivery-mode-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.delivery-mode-item:last-child {
  border-bottom: none;
}

.delivery-mode-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Module icon — replaces M1/M2/M3/M4 text labels */
.module-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ── 32px — display / standalone icons ── */

/* Approval card icon */
.approval-icon img {
  width: 32px;
  height: 32px;
}

/* Pathway step icon — replaces numbered circle, white circle masks connector line */
.pathway-icon {
  display: block;
  width: 48px;
  height: 48px;
  padding: 8px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto var(--sp-3);
  position: relative;
  z-index: 1;
}

/* ── Page anchor navigation (ICF Credentials) ── */
.page-anchors {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--grey-border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.page-anchors.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.page-anchors-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-anchors-list::-webkit-scrollbar { display: none; }
.page-anchor-link {
  display: block;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-body);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.page-anchor-link:hover { color: var(--charcoal); }
.page-anchor-link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
@media (max-width: 480px) {
  .page-anchor-link { padding: 12px 14px; font-size: 10px; }
}

/* Badge icon in credential bar — stays small (badge context) */
.badge-icon-img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 2px;
}

/* Dark section icon inversion
   SVGs use hardcoded #3A4F63 stroke — invert to white on dark backgrounds */
#event .icon-item img,
.clarity-call-card-bottom .icon-item img,
.delivery-mode-item img,
#credentials-badge-bar .badge-icon-img {
  filter: brightness(0) invert(1);
}

@media (min-width: 1024px) {
  #hero {
    /* Change from sticking to the bottom to centering vertically */
    align-items: center !important; 
    
    /* Give explicit padding at the top to clear the 80px nav overlay */
    padding-top: 120px !important; 
    
    /* Give padding at the bottom so it doesn't touch the bottom edge either */
    padding-bottom: 60px !important;
    
    /* Remove the strict 100vh so that if the text grows massive, 
       the section can expand naturally instead of clipping content */
    height: auto !important;
    min-height: 100vh !important; 
  }

  .hero-inner {
    /* Reset the absolute bottom padding since the parent now handles it spacing-wise */
    padding-bottom: 0 !important;
  }
}