/* =========================================================
   Extraordinary Life — Design System v2
   Minimalist · banner-led · UN Youth-inspired
   Warm palette kept, applied with restraint.
   Built per: anthropics/frontend-design + ui-ux-pro-max.
   ========================================================= */

/* ---------- Fonts ----------
   Display: Sora (bold geometric sans — confident, youthful, minimal)
   Body/UI: Inter (clean, highly legible)
   Loaded via <link> in each page's <head> — an @import here would serialise
   the request behind this stylesheet and block first paint. */

/* ---------- Tokens ---------- */
:root {
  /* Neutrals — white surfaces (white spaces stay white) */
  --ivory:        #FFFFFF;
  --cream:        #F7EDD5;   /* light champagne — used for gold banner bands */
  --sand:         #EFE3C6;   /* soft gold-grey chip */
  --paper:        #FFFFFF;

  /* Ink — deep teal-charcoal */
  --ink:          #1E2A27;
  --ink-soft:     #4C5A56;
  --ink-faint:    #67736E;   /* 4.9:1 on white — AA for normal text */

  /* Gold — primary accent (legacy token names kept) */
  --coral:        #C9A24B;   /* gold */
  --coral-deep:   #8A6A1F;   /* deep gold — text, links, eyebrows */
  --peach:        #E7CE8C;   /* light gold — accent on dark bands */
  --terracotta:   #D9B25E;

  /* Teal — secondary / grounding */
  --sage:         #2E8375;   /* teal mid */
  --sage-deep:    #1A5A50;   /* teal deep — icons, text */
  --teal-deep:    #123F39;   /* darkest teal — banner bands */
  --lilac:        #86B2A9;   /* soft teal */
  --sky:          #A9CFC8;   /* soft teal */

  /* Surfaces */
  --surface:      #FFFFFF;
  --line:         rgba(30, 42, 39, 0.12);
  --line-soft:    rgba(30, 42, 39, 0.07);

  /* Type */
  --display: 'Sora', system-ui, sans-serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radius — minimal, consistent */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadows — flat-first; used rarely */
  --shadow-sm: 0 1px 2px rgba(34,30,27,0.05);
  --shadow-md: 0 10px 30px rgba(34,30,27,0.08);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Accessibility: clear, consistent focus ring (ui-ux-pro-max P1) */
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

/* Skip link — first tab stop on every page */
.skip-link {
  position: absolute; left: 0; top: 0; z-index: 200;
  transform: translateY(-120%);
  background: var(--ink); color: #fff;
  padding: 0.9rem 1.4rem; font-weight: 600; font-size: 0.95rem;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { transform: translateY(0); }

/* Visually hidden but available to assistive tech */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Typography ----------
   Bold geometric headings, tight tracking — the UN Youth voice. */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); }
.display {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 600; letter-spacing: -0.015em; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; display: inline-block; }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--ink-soft); line-height: 1.55; font-weight: 400; }
.muted { color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
.narrow { max-width: 740px; }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 148px); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 1rem; }
.stack > * + * { margin-top: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 0.92em 1.55em; border-radius: var(--r-pill); min-height: 48px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--teal-deep); color: #fff; }
.btn-primary:hover { background: #0C332E; transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: var(--ink); }               /* gold, dark text */
.btn-coral:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--coral); color: var(--ink); }                /* gold, for dark bands */
.btn-gold:hover { background: #B4892F; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #F1EEE4; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1.05em 1.9em; font-size: 1.04rem; min-height: 56px; }

.link-arrow { display: inline-flex; align-items: center; min-height: 44px; gap: 0.5em; font-weight: 600; color: var(--coral-deep); border-bottom: 2px solid transparent; transition: gap 0.25s var(--ease), border-color 0.25s; }
.link-arrow:hover { gap: 0.85em; border-color: var(--coral); }

/* ---------- Announcement ---------- */
.announce {
  background: var(--ink); color: #F0EADE;
  font-size: 0.84rem; text-align: center; letter-spacing: 0.01em;
  padding: 0.7em var(--gutter); position: relative; z-index: 60;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; display: inline-flex; align-items: center; min-height: 32px; padding-inline: 0.2em; }
.announce .dot { color: var(--peach); margin-inline: 0.7em; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease); padding-block: 1rem; background: rgba(255,255,255,0); }
.site-header.scrolled { background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line-soft); padding-block: 0.6rem; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.55em; font-family: var(--display); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.brand .mark { width: 30px; height: 30px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; position: relative; display: inline-flex; align-items: center; min-height: 44px; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-5px; height:2px; width:0; background:var(--coral); transition: width 0.25s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (minimal, type-led) ---------- */
.hero { position: relative; padding-top: clamp(36px, 6vw, 72px); padding-bottom: clamp(56px, 8vw, 104px); overflow: hidden; }
.hero-gradient {
  position: absolute; inset: -25% -10% auto auto; width: 65%; height: 120%;
  background: radial-gradient(50% 50% at 80% 15%, rgba(201,162,75,0.22), transparent 62%),
              radial-gradient(45% 45% at 95% 60%, rgba(30,122,110,0.16), transparent 62%);
  z-index: 0; pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: stretch; }
.hero-copy { max-width: 640px; }
.hero h1 { margin-block: 1.2rem 1.4rem; }
.hero h1 .accent { color: var(--coral-deep); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; align-items: center; }
.hero-reassure { display: flex; align-items: center; gap: 0.55em; margin-top: 1.8rem; font-size: 0.9rem; color: var(--ink-soft); }
.hero-reassure svg { width: 18px; height: 18px; color: var(--sage-deep); flex: none; }

.hero-visual { position: relative; min-height: clamp(420px, 46vw, 620px); }
.hero-photo { position: absolute; inset: 0; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(160deg, var(--peach), var(--sky)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float { position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 0.85rem 1.05rem; display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; font-weight: 600; }
.hero-float.one { left: -5%; bottom: 14%; }
.hero-float.two { right: -4%; top: 10%; }
.hero-float .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: #F5EAD0; color: var(--coral-deep); flex: none; }
.hero-float .ico svg { width: 18px; height: 18px; }
.hero-float small { display: block; color: var(--ink-faint); font-weight: 500; font-size: 0.74rem; }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line-soft); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,3vw,2.5rem); padding-block: 2.2rem; }
.trust-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.trust-item .ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: #DCEAE5; color: var(--sage-deep); flex: none; }
.trust-item .ico svg { width: 20px; height: 20px; }
.trust-item strong { display: block; font-size: 0.95rem; font-weight: 600; }
.trust-item span { font-size: 0.83rem; color: var(--ink-soft); }

/* ---------- Section heads ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-block: 1rem 1.1rem; }

/* =========================================================
   BANNER BANDS — the signature UN Youth component.
   Full-bleed colour blocks: bold heading + short line + 1 CTA.
   ========================================================= */
.band { position: relative; overflow: hidden; }
.band-inner { padding-block: clamp(64px, 9vw, 120px); }
.band--coral { background: var(--cream); color: var(--ink); }   /* light gold */
.band--teal  { background: var(--teal-deep); color: #EEE7D4; }
.band--sage  { background: var(--sage-deep); color: #EEE7D4; }
.band--ink   { background: var(--teal-deep); color: #EEE7D4; }  /* dark teal */
.band--cream { background: var(--cream); color: var(--ink); }
.band--peach { background: var(--cream); color: var(--ink); }   /* light gold */

.band .eyebrow { color: inherit; opacity: 0.92; }
.band--cream .eyebrow, .band--peach .eyebrow, .band--coral .eyebrow { color: var(--coral-deep); opacity: 1; }
.band h2 { color: inherit; max-width: 18ch; }
.band--cream h2, .band--peach h2, .band--coral h2 { color: var(--ink); }
.band p.lead { color: inherit; opacity: 0.85; }
.band--cream p.lead, .band--peach p.lead, .band--coral p.lead { color: var(--ink-soft); opacity: 1; }

/* Banner layouts */
.band-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(1.5rem,4vw,4rem); align-items: center; }
.band-split .band-actions { justify-content: flex-end; }
.band-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.band-center { text-align: center; max-width: 760px; margin-inline: auto; }
.band-center h2 { max-width: 20ch; margin-inline: auto; }
.band-center .band-actions { justify-content: center; margin-top: 2rem; }
/* decorative oversized ring, minimal */
.band-ring { position: absolute; border: 2px solid currentColor; border-radius: 50%; opacity: 0.12; pointer-events: none; }
.band-ring.r1 { width: 380px; height: 380px; right: -120px; top: -140px; }
.band-ring.r2 { width: 220px; height: 220px; left: -90px; bottom: -110px; }

/* ---------- Empathy band (quotes) ---------- */
/* Standalone .empathy sections (inner pages) read as a teal banner band. */
.empathy:not(.band) { background: var(--teal-deep); color: #F1ECE2; }
.empathy:not(.band) h2 { color: #fff; }
.empathy:not(.band) .lead { color: rgba(241,236,226,0.85); }
.empathy .soft { color: var(--peach); }
.empathy .eyebrow { color: var(--peach); }

/* Contained CTA banner card (inner pages) */
.cta-final { position: relative; overflow: hidden; background: var(--teal-deep); color: #fff; border-radius: var(--r-lg); padding: clamp(2.6rem,6vw,5rem) var(--gutter); text-align: center; }
.cta-final .band-ring { position: absolute; }
.cta-final > * { position: relative; z-index: 2; }
.cta-final .eyebrow { color: #fff; opacity: 0.9; justify-content: center; }
.cta-final h2 { color: #fff; font-size: clamp(2.1rem,5vw,3.4rem); max-width: 20ch; margin-inline: auto; }
.cta-final .accent { color: var(--peach); }
.cta-final p { color: rgba(255,255,255,0.88); max-width: 52ch; margin: 1.2rem auto 2rem; }
.empathy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.feel-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-md); padding: 1.6rem; }
.feel-card .q { font-family: var(--display); font-weight: 600; font-size: 1.12rem; line-height: 1.3; color: #fff; }
.feel-card p { font-size: 0.92rem; color: rgba(255,255,255,0.78); margin-top: 0.7rem; }
.band--cream .feel-card, .band--peach .feel-card { background: rgba(255,255,255,0.6); border-color: var(--line-soft); }
.band--cream .feel-card .q, .band--peach .feel-card .q { color: var(--ink); }
.band--cream .feel-card p, .band--peach .feel-card p { color: var(--ink-soft); }

/* ---------- Pillars (flat, SVG icons, minimal) ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pillar { background: var(--surface); border-radius: var(--r-lg); padding: 1.9rem 1.8rem; border: 1px solid var(--line); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.pillar:hover { transform: translateY(-4px); border-color: var(--ink); }
.pillar .badge { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.2rem; }
.pillar .badge svg { width: 24px; height: 24px; stroke-width: 1.8; }
.pillar h3 { margin-bottom: 0.5rem; }
.pillar p { font-size: 0.94rem; color: var(--ink-soft); }
.bg-peach { background: #F3E7C6; color: var(--coral-deep); }
.bg-sage  { background: #DCEAE5; color: var(--sage-deep); }
.bg-lilac { background: #E4EFEB; color: var(--sage-deep); }
.bg-sky   { background: #DCEAE5; color: var(--sage-deep); }
.bg-coral { background: #F3E7C6; color: var(--coral-deep); }
.bg-cream { background: var(--sand); color: var(--ink-soft); }

/* ---------- Journey / timeline ---------- */
.journey { background: var(--ivory); }
.journey-track { display: grid; gap: 1rem; margin-top: 1rem; }
.journey-step { display: grid; grid-template-columns: 84px 1fr; gap: clamp(1rem,3vw,2.5rem); align-items: start; background: var(--surface); border-radius: var(--r-lg); padding: 1.7rem 1.9rem; border: 1px solid var(--line); }
.journey-step .num { font-family: var(--display); font-weight: 800; font-size: 2.1rem; color: var(--coral); line-height: 1; letter-spacing: -0.04em; }
.journey-step .when { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.5rem; }
.journey-step h3 { margin-bottom: 0.4rem; }
.journey-step p { color: var(--ink-soft); font-size: 0.95rem; max-width: 64ch; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
/* When a split has a photo, let the photo match the height of the copy beside
   it. A fixed aspect-ratio here leaves large dead gaps above and below the
   image whenever the text column is taller. */
.split:has(.split-media) { align-items: stretch; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--r-lg); overflow: hidden; min-height: clamp(300px, 32vw, 520px); background: linear-gradient(160deg,var(--sage),var(--teal-deep)); }
/* An explicit inline aspect-ratio (e.g. the square founder portrait) is a
   deliberate choice — keep that shape and centre it instead of stretching. */
.split-media[style*="aspect-ratio"] { min-height: 0; align-self: center; }
.split-media img, .split-media picture { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-media picture img { border-radius: inherit; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; margin-top: 1rem; color: var(--ink-soft); }
.check-list li svg { width: 22px; height: 22px; color: var(--sage-deep); flex: none; margin-top: 2px; }
.check-list li strong { color: var(--ink); display:block; font-weight:600; }

/* ---------- Facilitators ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.member { background: var(--surface); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); transition: transform 0.3s var(--ease); }
.member:hover { transform: translateY(-4px); }
.member .photo { aspect-ratio: 1/1; background: linear-gradient(150deg,var(--peach),var(--lilac)); }
.member .photo img { width:100%; height:100%; object-fit: cover; }
.member .info { padding: 1.4rem 1.5rem 1.6rem; }
.member .info h3 { font-size: 1.2rem; }
.member .role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral-deep); margin: 0.35rem 0 0.7rem; }
.member .info p { font-size: 0.9rem; color: var(--ink-soft); }
.member .creds { margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.member .creds span { font-size: 0.72rem; background: #EEF2F0; color: var(--ink-soft); padding: 0.3em 0.7em; border-radius: var(--r-pill); }

/* ---------- Stories ---------- */
.stories { background: var(--ivory); }
.stories-grid { columns: 3; column-gap: 1.3rem; }
.story { break-inside: avoid; background: var(--surface); border-radius: var(--r-lg); padding: 1.7rem; border: 1px solid var(--line); margin-bottom: 1.3rem; }
.story .stars { color: var(--coral); letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 0.8rem; }
.story p { font-family: var(--display); font-weight: 500; font-size: 1.04rem; line-height: 1.45; color: var(--ink); letter-spacing: -0.01em; }
.story .who { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.2rem; }
.story .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); display:grid; place-items:center; font-weight:700; color:#fff; font-size:0.9rem; }
.story .who b { font-size: 0.9rem; font-weight: 600; }
.story .who span { display: block; font-size: 0.78rem; color: var(--ink-faint); }
.story.highlight { background: var(--teal-deep); border-color: var(--teal-deep); }
.story.highlight p, .story.highlight .who b { color: #fff; }
.story.highlight .who span { color: rgba(255,255,255,0.7); }
.story.highlight .who .av { background: var(--coral); }
.story.highlight .stars { color: var(--peach); }

/* ---------- Safety / care ---------- */
.care-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.care-list { display: grid; gap: 1rem; }
.care-item { display: flex; gap: 1rem; padding: 1.3rem 1.4rem; background: var(--surface); border-radius: var(--r-md); border: 1px solid var(--line); }
.care-item .ico { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: #DCEAE5; color: var(--sage-deep); }
.care-item .ico svg { width: 21px; height: 21px; }
.care-item h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.care-item p { font-size: 0.9rem; color: var(--ink-soft); }
.parent-note { background: #FAF3E1; border-radius: var(--r-lg); padding: 2rem; border: 1px solid var(--line); position: sticky; top: 100px; }
.parent-note h3 { margin-bottom: 0.8rem; }
.parent-note p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; text-align: left; padding: 1.5rem 0; font-family: var(--display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; color: var(--ink); }
.faq-q .plus { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; position: relative; transition: background 0.25s, border-color 0.25s; }
.faq-q .plus::before, .faq-q .plus::after { content:""; position:absolute; background: var(--ink); border-radius: 2px; transition: transform 0.25s var(--ease), background 0.25s; }
.faq-q .plus::before { width: 13px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 13px; }
.faq-item.open .plus { background: var(--coral); border-color: var(--coral); }
.faq-item.open .plus::before, .faq-item.open .plus::after { background: #fff; }
.faq-item.open .plus::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding-bottom: 1.6rem; color: var(--ink-soft); max-width: 64ch; }

/* ---------- Access / pricing ---------- */
.access-card { background: var(--cream); border-radius: var(--r-lg); padding: clamp(2rem,4vw,3.4rem); border: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center; }
.access-card .price { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem,5vw,3.4rem); color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.access-card .price small { font-size: 1rem; color: var(--ink-faint); font-family: var(--sans); font-weight: 400; }
.access-card .note-pill { display: inline-flex; gap: 0.5em; align-items: center; background: #DCEAE5; color: var(--sage-deep); font-size: 0.8rem; font-weight: 600; padding: 0.4em 0.9em; border-radius: var(--r-pill); margin-bottom: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding-block: clamp(3rem,6vw,5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; color: var(--ink-soft); max-width: 36ch; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.1rem; }
.footer-col a { display: flex; align-items: center; min-height: 44px; font-size: 0.93rem; color: var(--ink-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--coral-deep); }
/* Footer contact / location block (replaces the old newsletter form) */
.footer-contact address { font-style: normal; font-size: 0.93rem; color: var(--ink-soft); line-height: 1.7; }
.footer-contact address a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; display: inline-flex; align-items: center; min-height: 44px; }
.footer-contact address a:hover { color: var(--coral-deep); }
.footer-contact .locality { display: block; margin-bottom: 0.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: 0.84rem; color: var(--ink-faint); }
.footer-bottom .socials { display: flex; gap: 0.6rem; }
.footer-bottom .socials a { width: 40px; height: 40px; border-radius: 50%; background: #fff; display: grid; place-items: center; border: 1px solid var(--line); transition: background 0.25s, color 0.25s, transform 0.25s; }
.footer-bottom .socials a:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 55; background: var(--paper); transform: translateX(100%); transition: transform 0.4s var(--ease); display: flex; flex-direction: column; padding: 6rem var(--gutter) 2rem; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--display); font-weight: 600; font-size: 1.7rem; letter-spacing: -0.02em; padding: 0.75rem 0; min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 2rem; justify-content: center; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.07s; } .reveal.d2 { transition-delay: 0.14s; }
.reveal.d3 { transition-delay: 0.21s; } .reveal.d4 { transition-delay: 0.28s; }

/* ---------- Inner page hero ---------- */
.page-hero { padding-top: clamp(36px,5vw,64px); padding-bottom: clamp(36px,5vw,64px); position: relative; overflow: hidden; }
.page-hero .hero-gradient { width: 55%; height: 130%; }
.page-hero h1 { font-size: clamp(2.5rem,6vw,4.6rem); font-weight: 800; letter-spacing: -0.035em; margin-block: 1rem; max-width: 15ch; }
.page-hero .lead { max-width: 56ch; }
.breadcrumb { font-size: 0.84rem; color: var(--ink-faint); margin-bottom: 0.5rem; }
.breadcrumb a:hover { color: var(--coral-deep); }

/* ---------- Form ---------- */
.form-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(1.8rem,4vw,3rem); border: 1px solid var(--line); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.45rem; }
.field label .opt { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: 0.9em 1.1em; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: #fff; font-family: inherit; font-size: 0.98rem; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; min-height: 48px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(201,162,75,0.18); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.choice-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; }
.choice span { display: inline-block; padding: 0.6em 1.1em; border-radius: var(--r-pill); border: 1.5px solid var(--line); font-size: 0.9rem; transition: all 0.2s; min-height: 44px; display: inline-flex; align-items: center; }
.choice input:focus-visible + span { outline: 3px solid var(--coral); outline-offset: 2px; }
.choice input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: #DCEAE5; color: var(--sage-deep); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.form-success .check svg { width: 32px; height: 32px; }

/* Date cards */
.date-grid { display: grid; gap: 1rem; }
.date-card { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; background: var(--surface); border-radius: var(--r-md); border: 1px solid var(--line); transition: border-color 0.25s, transform 0.25s; }
.date-card:hover { border-color: var(--coral); transform: translateX(4px); }
.date-card .d-when { font-family: var(--display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }
.date-card .d-where { font-size: 0.86rem; color: var(--ink-soft); }
.date-card .d-status { font-size: 0.74rem; font-weight: 700; padding: 0.35em 0.85em; border-radius: var(--r-pill); }
.d-status.open { background: #DCEAE5; color: var(--sage-deep); }
.d-status.few { background: #F3E7C6; color: var(--coral-deep); }
.d-status.wait { background: var(--sand); color: var(--ink-soft); }

/* Pull quote */
.pullquote { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem,3.6vw,2.7rem); line-height: 1.18; letter-spacing: -0.03em; color: var(--ink); max-width: 20ch; }
.pullquote .mk { color: var(--coral); }

/* Stat row */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem,5vw,3.4rem); color: var(--coral-deep); line-height: 1; letter-spacing: -0.03em; }
.stat .l { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.5rem; }

/* ---------- Photo gallery ---------- */
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.photo-gallery figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--cream); }
.photo-gallery figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.photo-gallery figure:hover img { transform: scale(1.04); }
@media (max-width: 760px) { .photo-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .photo-gallery { grid-template-columns: 1fr; } }

/* ---------- Brand: paper-plane wordmark ---------- */
.brand { white-space: nowrap; }
.brand .plane { width: 1.15em; height: 1.15em; margin-left: 0.22em; flex: none; }

/* =========================================================
   FOUR-STAGE STAIRCASE — the core framework
   ========================================================= */
.stairs { display: grid; gap: 1rem; max-width: 960px; }
.stair { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: clamp(1rem,3vw,1.6rem); align-items: start; background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem 1.9rem; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.stair:hover { transform: translateX(4px); }
.stair .step-num { font-family: var(--display); font-weight: 800; font-size: 1.55rem; letter-spacing: -0.04em; width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; line-height: 1; }
.stair .step-body h3 { font-size: clamp(1.2rem,2.2vw,1.5rem); }
.stair .step-body h3 .tag { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.4rem; }
.stair .step-body p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 0.6rem; max-width: 68ch; }
/* ascending climb + colour progression */
.stairs.climb .stair:nth-child(2) { margin-left: 3%; }
.stairs.climb .stair:nth-child(3) { margin-left: 6%; }
.stairs.climb .stair:nth-child(4) { margin-left: 9%; }
.stair.s1 { border-left-color: var(--peach); } .stair.s1 .step-num { background: #F3E7C6; color: var(--coral-deep); }
.stair.s2 { border-left-color: var(--coral); } .stair.s2 .step-num { background: #EBD9A6; color: var(--coral-deep); }
.stair.s3 { border-left-color: var(--sage); } .stair.s3 .step-num { background: #D3E4DE; color: var(--sage-deep); }
.stair.s4 { border-left-color: var(--teal-deep); } .stair.s4 .step-num { background: #BFD6CF; color: var(--teal-deep); }
.stairs-logic { text-align: center; max-width: 820px; margin: 2.4rem auto 0; font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem,2vw,1.28rem); line-height: 1.55; letter-spacing: -0.015em; color: var(--ink); }
.stairs-logic .arrow { color: var(--coral); font-weight: 700; }

/* =========================================================
   BEFORE / AFTER testimonials
   ========================================================= */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.ba-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.ba-row { padding: 1.5rem 1.7rem; }
.ba-row.before { background: #F7F4EC; border-bottom: 1px solid var(--line); }
.ba-row .tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.55rem; display: inline-flex; align-items: center; gap: 0.45em; }
.ba-row.before .tag { color: var(--ink-faint); }
.ba-row.after .tag { color: var(--sage-deep); }
.ba-row p { font-family: var(--display); font-weight: 500; font-size: 1.05rem; line-height: 1.4; letter-spacing: -0.01em; }
.ba-row.before p { color: var(--ink-soft); }
.ba-row.after p { color: var(--ink); }
.ba-card .ba-arrow { position: absolute; left: 1.7rem; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--teal-deep); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 4px var(--surface); z-index: 2; }
.ba-card .ba-arrow svg { width: 17px; height: 17px; }

/* =========================================================
   QUOTE BAND — big pull-quote interlude
   ========================================================= */
.quote-band { text-align: center; max-width: 940px; margin-inline: auto; }
.quote-band blockquote { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem,3.7vw,2.8rem); line-height: 1.18; letter-spacing: -0.03em; }
.quote-band blockquote .mk { color: var(--coral); }
.band--ink .quote-band blockquote .mk, .band--teal .quote-band blockquote .mk, .band--sage .quote-band blockquote .mk { color: var(--peach); }
.quote-band cite { display: block; margin-top: 1.3rem; font-style: normal; font-family: var(--sans); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.02em; opacity: 0.75; }

/* =========================================================
   INTERACTIVE STRUCTURE — click a stage / step to reveal it
   (progressive enhancement: only collapses when JS is on)
   ========================================================= */
html.js .stair, html.js .journey-step { padding-right: 3.4rem; }
html.js .stair::after, html.js .journey-step::after {
  content: ""; position: absolute; top: 2rem; right: 1.8rem;
  width: 10px; height: 10px; border-right: 2px solid var(--ink-faint);
  border-bottom: 2px solid var(--ink-faint); transform: rotate(45deg);
  transition: transform 0.3s var(--ease); pointer-events: none;
}
html.js .stair.open::after, html.js .journey-step.open::after { transform: rotate(-135deg); }

/* The heading becomes a real <button> (see main.js). It stays visually
   identical but stretches to cover the card so the whole row is clickable. */
html.js .disclosure-btn {
  display: block; width: 100%; text-align: left;
  font: inherit; color: inherit; letter-spacing: inherit;
  background: none; border: 0; padding: 0; cursor: pointer;
}
html.js .disclosure-btn::before { content: ""; position: absolute; inset: 0; z-index: 1; }
html.js .stair:has(.disclosure-btn:focus-visible),
html.js .journey-step:has(.disclosure-btn:focus-visible) { outline: 3px solid var(--coral); outline-offset: 3px; }
html.js .disclosure-btn:focus-visible { outline: none; }

/* collapse the descriptions until opened */
html.js .stair .step-body p,
html.js .journey-step p:not(.when) {
  max-height: 0; overflow: hidden; opacity: 0; margin-top: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease), margin-top 0.4s var(--ease);
}
html.js .stair.open .step-body p,
html.js .journey-step.open p:not(.when) { max-height: 340px; opacity: 1; margin-top: 0.6rem; }
html.js .journey-step.open p:not(.when) { margin-top: 0.4rem; }
/* the journey uses translateX-on-hover; disable so the chevron reads as a toggle */
html.js .stair:hover { transform: none; }

/* ---------- Responsive: new components ---------- */
@media (max-width: 760px) {
  .stairs.climb .stair { margin-left: 0 !important; }
  .stair { grid-template-columns: 52px 1fr; padding: 1.4rem 1.4rem; }
  html.js .stair, html.js .journey-step { padding-right: 3rem; }
  html.js .stair::after, html.js .journey-step::after { top: 1.6rem; right: 1.4rem; }
  .stair .step-num { width: 52px; height: 52px; font-size: 1.3rem; }
  .ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .brand { font-size: 1.02rem; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 440px; margin-inline: auto; order: -1; min-height: 0; aspect-ratio: 4 / 3.6; }
  .hero-float { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  /* Stacked: the photo no longer has a text column to match, so give it a
     shape of its own again. */
  .split-media { min-height: 0; aspect-ratio: 5 / 3.6; }
  .band-split { grid-template-columns: 1fr; }
  .band-split .band-actions { justify-content: flex-start; }
  .care-grid { grid-template-columns: 1fr; }
  .parent-note { position: static; }
  .trust .wrap { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .empathy-grid, .pillars-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .access-card { grid-template-columns: 1fr; text-align: center; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .trust .wrap, .empathy-grid, .pillars-grid, .team-grid { grid-template-columns: 1fr; }
  .stories-grid { columns: 1; }
  .journey-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .access-card .btn { width: 100%; justify-content: center; }
  .band-ring.r1 { width: 240px; height: 240px; }
}
