/* ═══════════════════════════════════════════════════════════════
   VIBRANT HEALTH ADVOCATES – VESTA
   Warm & Human Community Design System
   ═══════════════════════════════════════════════════════════════ */

:root {
  --cream:        #FAF6F0;
  --cream-card:   #FFF9F2;
  --cream-border: #EEE0CC;
  --terra:        #C96843;
  --terra-pale:   #F5E2CC;
  --terra-mid:    #DF9260;
  --purple:       #7B2D8B;
  --purple-pale:  #F0D9F5;
  --purple-mid:   #C084D0;
  --warm-dk:      #2D1509;
  --warm-mid:     #6B3A28;
  --warm-lt:      #9A6040;
  --white-warm:   #FFFDF8;

  --font: ui-rounded, system-ui, -apple-system, 'Segoe UI', Tahoma, sans-serif;

  --r-sm: 12px;
  --r-md: 24px;
  --r-lg: 36px;

  --sh-sm: 0 2px 12px rgba(45,21,9,.08);
  --sh-md: 0 6px 28px rgba(45,21,9,.14);
  --sh-lg: 0 18px 56px rgba(45,21,9,.2);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--warm-dk);
  line-height: 1.74;
  font-size: 1.05rem;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
p + p { margin-top: 1.1rem; }

/* ── Layout Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--pale   { background: var(--cream-card); }
.section--terra  { background: var(--terra-pale); }
.section--purple { background: var(--purple-pale); }
.section--dark   { background: var(--warm-dk); color: rgba(255,255,255,.85); }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; color: var(--warm-dk); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }

.label-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  background: var(--terra-pale);
  padding: .3em .85em;
  border-radius: 100px;
  margin-bottom: .7rem;
}
.label-chip--purple {
  color: var(--purple);
  background: var(--purple-pale);
}

.lead {
  font-size: 1.15rem;
  color: var(--warm-mid);
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .9em 2em;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); text-decoration: none; }
.btn--terra    { background: var(--terra); color: #fff; }
.btn--purple   { background: var(--purple); color: #fff; }
.btn--outline  { border-color: var(--terra); color: var(--terra); background: transparent; }
.btn--outline:hover { background: var(--terra); color: #fff; }
.btn--white    { background: #fff; color: var(--terra); }
.btn--white:hover { background: var(--cream-card); }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream-card);
  border-bottom: 2px solid var(--cream-border);
  box-shadow: var(--sh-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none !important;
  flex-shrink: 0;
}
.brand-logo     { height: 46px; width: auto; }
.brand-wordmark { height: 30px; width: auto; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .15rem; align-items: center; }
.main-nav a {
  display: block;
  padding: .4em .9em;
  border-radius: 100px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--warm-mid);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--terra-pale);
  color: var(--terra);
  text-decoration: none;
}
.main-nav a.active { font-weight: 800; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid var(--cream-border);
  border-radius: 10px;
  padding: .45rem .7rem;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--warm-dk);
  line-height: 1;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   HERO BANNER  (full-bleed photo)
══════════════════════════════════════════ */
.hero-banner {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(3.5rem, 9vw, 7rem);
  padding-bottom: 9rem;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg,
    rgba(45,21,9,.62) 0%,
    rgba(45,21,9,.3) 55%,
    rgba(45,21,9,.55) 100%);
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
  color: #fff;
}
.hero-text h1 {
  color: #fff;
  text-shadow: 0 3px 20px rgba(0,0,0,.45);
  margin-bottom: 1.2rem;
}
.hero-text .hero-sub {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,255,255,.87);
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-text .hero-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Pull-up card: overlaps into section below hero */
.hero-pull-up-wrap {
  position: relative;
  z-index: 10;
}
.hero-pull-up {
  margin-top: -90px;
}
.stats-card {
  background: var(--cream-card);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  box-shadow: var(--sh-lg);
  display: flex;
  gap: 1.5rem;
  justify-content: space-around;
  border: 2.5px solid var(--cream-border);
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 0 .5rem; }
.stat-num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--warm-mid);
  max-width: 130px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   SQUIGGLE DIVIDERS  (hand-drawn SVG)
══════════════════════════════════════════ */
.squiggle-wrap {
  padding: .5rem 0;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.squiggle-wrap svg { width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════════
   POLAROID / SCRAPBOOK CARDS
══════════════════════════════════════════ */
.polaroid-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 1.5rem 0 3.5rem;
}
.polaroid-card {
  flex: 1 1 270px;
  max-width: 330px;
  background: var(--white-warm);
  padding: 13px 13px 44px;
  box-shadow: var(--sh-md);
  border-radius: 3px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.polaroid-card:hover {
  box-shadow: var(--sh-lg);
  z-index: 5;
}
.polaroid-card:nth-child(1) { transform: rotate(-2.5deg); }
.polaroid-card:nth-child(1):hover { transform: rotate(-2.5deg) scale(1.04); }
.polaroid-card:nth-child(2) { transform: rotate(1.8deg); margin-top: 2.8rem; }
.polaroid-card:nth-child(2):hover { transform: rotate(1.8deg) scale(1.04); }
.polaroid-card:nth-child(3) { transform: rotate(-1.2deg); }
.polaroid-card:nth-child(3):hover { transform: rotate(-1.2deg) scale(1.04); }

.polaroid-img-box {
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 2px;
  overflow: hidden;
  background: var(--terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: .8rem;
}
.polaroid-img-box img { width: 100%; height: 100%; object-fit: cover; }
.polaroid-caption { padding: 0 .25rem; }
.polaroid-caption h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.polaroid-caption p  { font-size: .88rem; color: var(--warm-mid); line-height: 1.6; }

/* sticker tape top */
.polaroid-card::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  width: 60px;
  height: 22px;
  background: rgba(201,104,67,.22);
  border-radius: 3px;
}
.polaroid-card:nth-child(2)::after { transform: translateX(-50%) rotate(-2deg); }

/* ══════════════════════════════════════════
   STAMP BADGE
══════════════════════════════════════════ */
.stamp-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px dashed var(--purple);
  background: var(--purple-pale);
  color: var(--purple);
  text-align: center;
  transform: rotate(-10deg);
  padding: 14px;
  gap: 3px;
  flex-shrink: 0;
}
.stamp-badge .s1 { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.stamp-badge .s2 { font-size: 1.05rem; font-weight: 800; line-height: 1.1; }
.stamp-badge .s3 { font-size: .58rem; font-weight: 700; letter-spacing: .05em; }

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.sh { margin-bottom: 3rem; }
.sh.ctr { text-align: center; }
.sh h2 { margin-top: .5rem; }
.sh p  { margin-top: .8rem; color: var(--warm-mid); max-width: 68ch; }
.sh.ctr p { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   SPLIT LAYOUT  (photo + text)
══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split.flip .split-media { order: 2; }
.split-media img {
  border-radius: var(--r-md);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--sh-md);
}
.split-media.offset img { margin-top: -2.5rem; margin-bottom: -2.5rem; }
.split-text p { margin-top: 1rem; color: var(--warm-mid); }
.split-text h2 { margin-bottom: 1rem; }

/* ══════════════════════════════════════════
   DOTTED CALLOUT BOX
══════════════════════════════════════════ */
.dotted-box {
  border: 2.5px dotted var(--terra);
  border-radius: var(--r-md);
  padding: 2.5rem 3rem;
  background: var(--terra-pale);
  position: relative;
}
.dotted-box--purple {
  border-color: var(--purple);
  background: var(--purple-pale);
}
.dotted-box h3 { margin-bottom: .75rem; }
.dotted-box p  { color: var(--warm-mid); }

/* ══════════════════════════════════════════
   PROGRAMME CARDS
══════════════════════════════════════════ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.prog-card {
  background: var(--cream-card);
  border-radius: var(--r-md);
  padding: 2rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s;
}
.prog-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.prog-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.prog-card h3 { margin-bottom: .6rem; }
.prog-blurb { color: var(--terra); font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.prog-detail { font-size: .88rem; color: var(--warm-mid); line-height: 1.68; }

/* ══════════════════════════════════════════
   WAYS CARDS  (get involved)
══════════════════════════════════════════ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}
.way-card {
  background: var(--cream-card);
  border-radius: var(--r-md);
  padding: 2.5rem 2rem;
  border: 2.5px solid var(--cream-border);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.way-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.way-icon { font-size: 3.2rem; margin-bottom: 1.2rem; }
.way-card h3 { margin-bottom: .75rem; }
.way-card p  { color: var(--warm-mid); font-size: .93rem; }

/* ══════════════════════════════════════════
   BLOG  (teaser cards)
══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--cream-card);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 2px solid var(--cream-border);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); text-decoration: none; }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; flex-shrink: 0; }
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.blog-card-body h3 { font-size: 1.1rem; line-height: 1.3; color: var(--warm-dk); }
.blog-card-body .dek { font-size: .88rem; color: var(--warm-mid); line-height: 1.55; flex: 1; }
.blog-card-body .read-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--terra);
  font-weight: 700;
  font-size: .88rem;
  margin-top: .5rem;
}

/* ══════════════════════════════════════════
   ARTICLE PAGE
══════════════════════════════════════════ */
.article-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: 2.5rem;
  box-shadow: var(--sh-md);
}
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article-dek {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--warm-mid);
  margin: 1rem 0 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--cream-border);
  line-height: 1.65;
}
.article-body p { margin-bottom: 1.5rem; }
.article-body p:last-child { margin-bottom: 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--terra);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 2rem;
}
.back-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.contact-form-wrap { }
.form-row { margin-bottom: 1.5rem; }
.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: .4rem;
  font-size: .93rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: .85em 1.1em;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-sm);
  background: var(--cream-card);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--warm-dk);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-pale); }
.form-row textarea { min-height: 160px; resize: vertical; }
.contact-aside { }
.contact-detail-card {
  background: var(--terra-pale);
  border-radius: var(--r-md);
  padding: 2rem;
  border: 2px solid var(--cream-border);
  margin-bottom: 1.5rem;
}
.contact-detail-card h4 { margin-bottom: .75rem; color: var(--terra); }
.contact-detail-card a { color: var(--warm-dk); word-break: break-all; font-size: .9rem; display: block; margin-bottom: .4rem; }
.contact-detail-card a:hover { color: var(--terra); }

/* ══════════════════════════════════════════
   TRUSTEES
══════════════════════════════════════════ */
.trustee-row {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.trustee-card {
  flex: 1 1 200px;
  background: var(--cream-card);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  border: 2px solid var(--cream-border);
  text-align: center;
  box-shadow: var(--sh-sm);
}
.trustee-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--terra-pale);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  border: 3px solid var(--cream-border);
}
.trustee-name { font-weight: 800; font-size: 1rem; margin-bottom: .25rem; }
.trustee-role { font-size: .85rem; color: var(--terra); font-weight: 700; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: var(--terra);
  color: #fff;
  text-align: center;
  padding: 5.5rem 1.5rem;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 60ch; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-banner--purple { background: var(--purple); }

/* ══════════════════════════════════════════
   MISSION BLOCK
══════════════════════════════════════════ */
.mission-block {
  background: var(--purple-pale);
  border-radius: var(--r-lg);
  padding: 3.5rem;
  border: 2px solid var(--purple-mid);
  position: relative;
}
.mission-block .mission-quote {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--warm-mid);
  line-height: 1.75;
  font-style: italic;
}
.mission-block .stamp-float {
  position: absolute;
  top: -30px;
  right: 40px;
}

/* ══════════════════════════════════════════
   PAGE HERO  (inner pages — short)
══════════════════════════════════════════ */
.page-hero {
  background: var(--terra-pale);
  padding: 4rem 1.5rem 3rem;
  border-bottom: 2px solid var(--cream-border);
}
.page-hero--img {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: flex-end;
  padding: 3rem 1.5rem 2.5rem;
}
.page-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,21,9,.7) 0%, rgba(45,21,9,.25) 100%);
}
.page-hero--img .page-hero-text { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-hero--img h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.page-hero--img .lead { color: rgba(255,255,255,.85); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--warm-dk);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 3rem;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-logo      { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-wordmark  { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: .83rem; line-height: 1.55; margin-top: .5rem; color: rgba(255,255,255,.55); }

.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h5 { color: rgba(255,255,255,.95); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .15s; }
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-contact-col h5 { color: rgba(255,255,255,.95); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-contact-col a { display: block; color: rgba(255,255,255,.65); font-size: .83rem; word-break: break-all; margin-bottom: .5rem; transition: color .15s; }
.footer-contact-col a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ══════════════════════════════════════════
   INTRO SECTION  (home)
══════════════════════════════════════════ */
.intro-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text h2 { margin-bottom: 1.2rem; }
.intro-text p  { color: var(--warm-mid); margin-bottom: 1rem; }
.intro-img img {
  border-radius: var(--r-md);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
  box-shadow: var(--sh-md);
}
/* decorative offset frame */
.intro-img {
  position: relative;
}
.intro-img::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 3px dotted var(--terra-mid);
  border-radius: calc(var(--r-md) + 14px);
  opacity: .45;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   WHAT WE DO (our-work long-form text)
══════════════════════════════════════════ */
.longform { max-width: 80ch; }
.longform p { color: var(--warm-mid); margin-bottom: 1.4rem; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .intro-section { grid-template-columns: 1fr; gap: 3rem; }
  .split         { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.flip .split-media { order: 0; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .mission-block { padding: 2.5rem; }
  .mission-block .stamp-float { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  .section { padding: 3.5rem 0; }
  .hero-banner { min-height: 88vh; padding-bottom: 7rem; }
  .hero-pull-up { margin-top: -50px; }
  .stats-card { flex-direction: column; gap: 1.75rem; padding: 2rem 1.5rem; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0; right: 0;
    background: var(--cream-card);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 2px solid var(--cream-border);
    box-shadow: var(--sh-md);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: .2rem; }
  .main-nav a { padding: .7em 1em; display: block; }
  .polaroid-row { flex-direction: column; align-items: center; }
  .polaroid-card {
    max-width: 100%;
    width: 100%;
    margin-top: 0 !important;
    transform: none !important;
  }
  .polaroid-card::after { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { gap: 2rem; }
  .trustee-row { flex-direction: column; }
  .blog-grid { grid-template-columns: 1fr; }
  .dotted-box { padding: 1.75rem; }
  .mission-block { padding: 2rem; }
  .prog-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .header-inner { padding: .75rem 1rem; }
  .brand-wordmark { height: 22px; }
  .brand-logo { height: 36px; }
  .hero-text h1 { font-size: 1.8rem; }
  .stats-card { border-radius: var(--r-md); }
}

/* ══════════════════════════════════════════
   UTILITY  HELPERS
══════════════════════════════════════════ */
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3.5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.text-terra  { color: var(--terra) !important; }
.text-purple { color: var(--purple) !important; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
