/* ============================================================
   VIBRANT HEALTH ADVOCATES – APOLLO
   Warm & Human Community Design System
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #FDF6EC;
  --cream-warm:   #F4E8D1;
  --cream-card:   #FFF9F2;
  --terra:        #C4622D;
  --terra-light:  #E8845A;
  --terra-pale:   #F5D5C0;
  --warm-brown:   #7A3F1E;
  --brand:        #7B2D8B;
  --brand-light:  #F0D9F5;
  --brand-mid:    #A64DB8;
  --text:         #2C1810;
  --text-mid:     #5C3D2E;
  --text-soft:    #8B6355;
  --white:        #FFFFFF;
  --shadow:       rgba(60,30,10,0.12);
  --shadow-deep:  rgba(60,30,10,0.22);
  --radius-sm:    10px;
  --radius:       24px;
  --radius-lg:    40px;
  --font: system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */

h1,h2,h3,h4,h5 {
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}
h1 { font-size: clamp(2.1rem,5vw,3.75rem); }
h2 { font-size: clamp(1.75rem,4vw,2.875rem); }
h3 { font-size: clamp(1.25rem,2.5vw,1.625rem); }
h4 { font-size: 1.125rem; font-weight: 800; }

p { line-height: 1.82; margin-bottom: 1.25em; max-width: 72ch; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.0625rem,2vw,1.25rem); color: var(--text-mid); line-height: 1.72; }

/* ── NAV ─────────────────────────────────────────────── */

.site-nav {
  background: var(--cream-card);
  border-bottom: 2.5px solid var(--cream-warm);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none !important;
}
.brand-lockup:hover { text-decoration: none !important; }
.brand-lockup .logo-icon { height: 46px; width: auto; }
.brand-lockup .wordmark  { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-mid);
  padding: 0.45rem 0.875rem;
  border-radius: 999px;
  transition: background .18s, color .18s;
  white-space: nowrap;
  text-decoration: none !important;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--brand-light);
  color: var(--brand);
}
.nav-links .nav-cta a {
  background: var(--brand);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
}
.nav-links .nav-cta a:hover { background: var(--brand-mid); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: transform .2s;
}

/* ── FOOTER ──────────────────────────────────────────── */

.site-footer {
  background: var(--warm-brown);
  color: var(--terra-pale);
  padding: 4.5rem 1.5rem 2.5rem;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.125rem; }
.footer-brand .logo-icon { filter: brightness(0) invert(1); }
.footer-brand .wordmark  { filter: brightness(0) invert(1); }
.footer-brand p { color: var(--terra-pale); font-size: 0.9375rem; max-width: 30ch; margin: 0; }
.footer-emails { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-emails a {
  color: var(--terra-pale);
  font-size: 0.875rem;
  word-break: break-all;
  line-height: 1.4;
  font-weight: 500;
}
.footer-emails a:hover { color: var(--white); text-decoration: none; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 1.125rem;
}
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 0.5rem; }
.footer-col a { color: var(--terra-pale); font-size: 0.9375rem; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-col p { color: var(--terra-pale); font-size: 0.9375rem; max-width: none; }

.footer-bottom {
  max-width: 1240px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── HERO (FULL-BLEED HOMEPAGE) ──────────────────────── */

.hero-full {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* large bottom padding so headline stays well above the overlap zone */
  padding: 7rem 1.5rem 19rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
    rgba(15,5,0,0.22) 0%,
    rgba(15,5,0,0.52) 50%,
    rgba(15,5,0,0.80) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 870px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1.125rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  margin-bottom: 1.25rem;
}
.hero-content .lead {
  color: rgba(255,255,255,0.88);
  max-width: 58ch;
  margin: 0 auto;
}

/* Pulled-up stats card */
.hero-overlap-zone {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  margin-top: -9rem;
}
.stats-card {
  background: var(--cream-card);
  border: 3px solid var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 14px 60px var(--shadow-deep);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: center;
}
.stat-item { padding: 0.75rem 1.5rem; position: relative; }
.stat-item + .stat-item {
  border-left: 2px dotted var(--terra-pale);
}
.stat-item .num {
  display: block;
  font-size: clamp(2.25rem,4vw,3.25rem);
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-item .lbl {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.4;
}

/* ── SQUIGGLE DIVIDERS ───────────────────────────────── */

.squiggle-wrap {
  display: block;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}
.squiggle-wrap svg { display: block; width: 100%; }

/* ── SECTIONS ────────────────────────────────────────── */

.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }

.bg-cream      { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-cream-card { background: var(--cream-card); }
.bg-terra      { background: var(--terra); }
.bg-brand      { background: var(--brand); }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 0.75rem;
}
.eyebrow-brand { color: var(--brand); }
.eyebrow-light { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ─────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.875rem 2.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s, box-shadow .15s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-brand  { background: var(--brand); color: var(--white); }
.btn-terra  { background: var(--terra); color: var(--white); }
.btn-white  { background: var(--white); color: var(--brand); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ── POLAROID CARDS ──────────────────────────────────── */

.polaroid {
  background: var(--white);
  padding: 10px 10px 56px;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(60,30,10,0.2), 0 2px 8px rgba(60,30,10,0.08);
  display: inline-block;
  max-width: 100%;
  position: relative;
}
.polaroid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.polaroid-label {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.tilt-r  { transform: rotate(2.5deg); }
.tilt-l  { transform: rotate(-2.2deg); }
.tilt-r2 { transform: rotate(1.2deg); }
.tilt-l2 { transform: rotate(-1.5deg); }

/* Polaroid cluster (absolute positioned overlapping group) */
.polaroid-cluster {
  position: relative;
  height: 420px;
}
.polaroid-cluster .pc1 {
  position: absolute;
  width: 63%;
  top: 0; left: 0;
  z-index: 2;
  transform: rotate(-2.5deg);
}
.polaroid-cluster .pc2 {
  position: absolute;
  width: 58%;
  bottom: 0; right: 0;
  z-index: 3;
  transform: rotate(2.2deg);
}
.polaroid-cluster .pc1 .polaroid,
.polaroid-cluster .pc2 .polaroid { transform: none; }

/* ── STAMP BADGE ─────────────────────────────────────── */

.stamp-badge {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px dashed var(--brand);
  background: var(--brand-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  transform: rotate(-7deg);
  flex-shrink: 0;
  box-shadow: 0 4px 22px rgba(123,45,139,0.22);
}
.stamp-badge .stamp-icon { font-size: 2.25rem; line-height: 1; margin-bottom: 0.25rem; }
.stamp-badge .stamp-main {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
.stamp-badge .stamp-sub {
  font-size: 0.5625rem;
  font-weight: 800;
  color: var(--brand-mid);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.2rem;
  line-height: 1.35;
}

/* ── FEATURE / HIGHLIGHT CARDS ───────────────────────── */

.cards-staggered {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.75rem;
  align-items: start;
}
.cards-staggered > *:nth-child(2) { margin-top: 2.5rem; }
.cards-staggered > *:nth-child(3) { margin-top: 1.25rem; }

.feature-card {
  background: var(--cream-card);
  border: 2.5px solid var(--cream-warm);
  border-radius: var(--radius);
  padding: 2rem 1.875rem;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-deep);
}
.feature-card.dotted { border: 3px dotted var(--terra); }
.feature-card.brand-tint { background: var(--brand-light); border-color: rgba(123,45,139,0.3); }

.card-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.feature-card p  { color: var(--text-mid); margin: 0; font-size: 0.9375rem; line-height: 1.72; }

/* ── SPLIT LAYOUT ────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-text h2 { margin-bottom: 1.25rem; }
.split-text p  { color: var(--text-mid); }

/* ── IMPACT BAND ─────────────────────────────────────── */

.impact-band {
  background: var(--terra);
  padding: 5rem 1.5rem;
  text-align: center;
}
.impact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.impact-stat { padding: 1rem 2rem; position: relative; }
.impact-stat + .impact-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 2px;
  background: rgba(255,255,255,0.25);
}
.impact-stat .num {
  display: block;
  font-size: clamp(2.75rem,5vw,4.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-stat .lbl {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.87);
  font-weight: 600;
  line-height: 1.4;
}

/* ── PHOTO BAND (full-bleed image with text overlay) ─── */

.photo-band { position: relative; overflow: hidden; }
.photo-band img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(15,5,0,0.74) 0%,
    rgba(15,5,0,0.22) 65%,
    transparent 100%);
}
.photo-band-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  color: var(--white);
  max-width: 44ch;
}
.photo-band-content h2 { color: var(--white); margin-bottom: 1rem; }
.photo-band-content p  { color: rgba(255,255,255,0.87); margin-bottom: 1.75rem; max-width: 40ch; }

/* ── CTA SECTION ─────────────────────────────────────── */

.cta-section {
  background: var(--brand);
  padding: 5.5rem 1.5rem;
  text-align: center;
}
.cta-section h2   { color: var(--white); margin-bottom: 1rem; }
.cta-section .lead { color: rgba(255,255,255,0.85); max-width: 55ch; margin: 0 auto 2.5rem; }

/* ── PROGRAMME CARDS ─────────────────────────────────── */

.programme-list { display: flex; flex-direction: column; gap: 2rem; }
.programme-card {
  background: var(--cream-card);
  border: 2px solid var(--cream-warm);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 2px 16px var(--shadow);
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 2rem;
  align-items: start;
  transition: transform .2s, box-shadow .2s;
}
.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px var(--shadow-deep);
}
.prog-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.125rem;
  flex-shrink: 0;
}
.programme-card h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.programme-card .prog-blurb {
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}
.programme-card .prog-detail {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.78;
  margin: 0;
  max-width: none;
}

/* ── WAYS CARDS ──────────────────────────────────────── */

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  align-items: start;
}
.ways-grid > *:nth-child(2) { margin-top: 2.25rem; }

/* ── BLOG GRID ───────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  align-items: start;
}
.blog-grid > *:nth-child(2) { margin-top: 2.5rem; }

.blog-card {
  background: var(--cream-card);
  border: 2.5px solid var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 18px var(--shadow);
  display: block;
  text-decoration: none !important;
  color: var(--text);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px var(--shadow-deep);
}
.blog-card-img { width: 100%; height: 230px; object-fit: cover; }
.blog-card-body { padding: 1.625rem; }
.blog-card h3 { font-size: 1.0625rem; margin-bottom: 0.625rem; color: var(--text); line-height: 1.35; }
.blog-card .dek { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.125rem; max-width: none; }
.blog-card .read-more { font-weight: 700; font-size: 0.875rem; color: var(--brand); }

/* ── ARTICLE PAGE ────────────────────────────────────── */

.article-hero {
  background: var(--cream-warm);
  padding: 3.5rem 1.5rem 0;
}
.article-hero-inner { max-width: 860px; margin: 0 auto; }
.article-hero .eyebrow { display: block; margin-bottom: 1rem; }
.article-hero h1 { margin-bottom: 1rem; }
.article-dek {
  font-size: 1.1875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: none;
}
.article-hero-img-wrap {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.article-hero-img-wrap img { width: 100%; height: 410px; object-fit: cover; }

.article-body { background: var(--cream-card); padding: 3.5rem 1.5rem 5rem; }
.article-body-inner { max-width: 740px; margin: 0 auto; }
.article-body p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: none;
  margin-bottom: 1.625em;
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */

.page-hero {
  background: var(--cream-warm);
  padding: 4.5rem 1.5rem 4rem;
  border-bottom: 3px solid var(--terra-pale);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -6%;
  top: -40%;
  width: 38%;
  height: 180%;
  background: var(--terra-pale);
  border-radius: 50%;
  opacity: 0.28;
  pointer-events: none;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.875rem; }

/* ── DOTTED BOX ──────────────────────────────────────── */

.dotted-box {
  border: 3px dotted var(--terra);
  border-radius: var(--radius);
  padding: 2.25rem;
  background: var(--cream-card);
}

/* ── TRUSTEE CARDS ───────────────────────────────────── */

.trustee-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trustee-card {
  flex: 1;
  min-width: 200px;
  background: var(--cream-card);
  border: 3px dotted var(--terra);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.trustee-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-light);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--brand);
}
.trustee-card h4 { margin-bottom: 0.25rem; }
.trustee-card .role {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
}

/* ── CONTACT FORM ────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p  { color: var(--text-mid); }
.contact-detail  { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.75rem; }
.contact-detail a { color: var(--text-mid); font-weight: 600; font-size: 0.9375rem; word-break: break-all; }
.contact-detail a:hover { color: var(--brand); }

.form-wrap {
  background: var(--cream-card);
  border: 2.5px solid var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 28px var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }

label { font-weight: 700; font-size: 0.9375rem; color: var(--text-mid); }
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: var(--font);
  font-size: 1rem;
  border: 2px solid var(--cream-warm);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
input:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.12);
}
textarea { min-height: 160px; resize: vertical; }

/* ── UTILITY ─────────────────────────────────────────── */

.text-center { text-align: center; }
.text-terra  { color: var(--terra) !important; }
.text-brand  { color: var(--brand) !important; }
.text-white  { color: var(--white) !important; }
.text-soft   { color: var(--text-soft) !important; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-prose { max-width: 70ch; }

/* ── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 1024px) {
  .split { gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .cards-staggered,
  .ways-grid,
  .blog-grid,
  .impact-inner { grid-template-columns: 1fr 1fr; }

  .cards-staggered > *:nth-child(2),
  .cards-staggered > *:nth-child(3),
  .ways-grid > *:nth-child(2),
  .blog-grid > *:nth-child(2) { margin-top: 0; }

  .stats-card { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 2px dotted var(--terra-pale); }

  .split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .programme-card { grid-template-columns: 1fr; }

  .photo-band img { height: 380px; }
  .polaroid-cluster { height: 340px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--cream-card);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 2px solid var(--cream-warm);
    box-shadow: 0 14px 40px var(--shadow-deep);
    z-index: 199;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-full { padding-bottom: 23rem; }
  .hero-overlap-zone { margin-top: -8rem; }

  .cards-staggered,
  .ways-grid,
  .blog-grid,
  .impact-inner,
  .trustee-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .polaroid-cluster { height: 280px; }
  .polaroid-cluster .pc1 { width: 65%; }
  .polaroid-cluster .pc2 { width: 60%; }

  .photo-band img { height: 300px; }
  .photo-band-content { left: 1.5rem; max-width: 80vw; }

  .section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
}
