/* ============================================================
   WARM & HUMAN COMMUNITY — Vibrant Health Advocates · Amber
   ============================================================ */

:root {
  --cream:           #FDF6EE;
  --cream-white:     #FFF8F0;
  --sand:            #EDD9C3;
  --sand-dark:       #D4B896;
  --terracotta:      #C4622D;
  --terracotta-lt:   #F2BFA1;
  --terracotta-pale: #FDE8D8;
  --purple:          #7B2D8B;
  --purple-lt:       #F0D9F5;
  --purple-mid:      #C89FD4;
  --purple-dk:       #5C1E6B;
  --text-dk:         #2C1810;
  --text-mid:        #5C3D2E;
  --text-lt:         #8B6355;
  --r-sm:  12px;
  --r-md:  24px;
  --r-lg:  36px;
  --r-xl:  56px;
  --sh-soft:   0 4px 24px rgba(44,24,16,.08);
  --sh-card:   0 8px 40px rgba(44,24,16,.12);
  --sh-strong: 0 16px 60px rgba(44,24,16,.18);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--text-dk);
  line-height: 1.78;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--purple); text-decoration: none; transition: color .15s; }
a:hover { color: var(--purple-dk); text-decoration: underline; }
p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 28px;
}
.container--narrow { max-width: 820px; }
.container--article { max-width: 760px; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; color: var(--text-dk); }
h1 { font-size: clamp(2rem,   5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem,3.5vw,2.3rem); }
h3 { font-size: clamp(1.15rem,2.5vw,1.5rem); }
h4 { font-size: 1.05rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 700; font-size: .95rem; font-family: inherit;
  cursor: pointer; border: 2px solid transparent;
  transition: all .2s ease; text-decoration: none; line-height: 1;
}
.btn-primary  { background: var(--purple);      color: #fff; }
.btn-primary:hover  { background: var(--purple-dk); color:#fff; transform:translateY(-2px); box-shadow:0 8px 24px rgba(123,45,139,.28); text-decoration:none; }
.btn-terracotta { background: var(--terracotta); color:#fff; }
.btn-terracotta:hover { background:#a84f22; color:#fff; transform:translateY(-2px); box-shadow:0 8px 24px rgba(196,98,45,.3); text-decoration:none; }
.btn-white  { background: #fff; color: var(--purple); }
.btn-white:hover  { background: var(--purple-lt); color: var(--purple); transform:translateY(-2px); text-decoration:none; }
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple-lt); transform:translateY(-2px); text-decoration:none; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--cream-white);
  border-bottom: 3px dotted var(--sand);
  padding: 14px 0;
}
.header__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; position: relative;
}
.brand-lockup {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; }
.brand-logo     { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }
.brand-wordmark { height: 34px; width: auto; object-fit: contain; }

/* mobile nav checkbox hack */
.nav-toggle-input { display: none; }
.nav-toggle-label {
  display: none; cursor: pointer; font-size: 1.5rem;
  padding: 4px 10px; border-radius: 10px; line-height: 1;
  color: var(--text-dk); user-select: none; transition: background .15s;
}
.nav-toggle-label:hover { background: var(--purple-lt); }

.site-nav ul {
  display: flex; align-items: center;
  gap: 4px; flex-wrap: wrap;
}
.site-nav a {
  display: inline-block; padding: 8px 14px; border-radius: 50px;
  color: var(--text-dk); font-weight: 600; font-size: .9rem;
  transition: all .15s;
}
.site-nav a:hover { background: var(--purple-lt); color: var(--purple); text-decoration:none; }
.site-nav a.active { background: var(--purple); color: #fff; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #2C1810; color: var(--sand);
  padding: 64px 0 32px; margin-top: 80px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand-lockup { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo     { width: 36px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-wordmark { height: 26px; width: auto; filter: brightness(0) invert(1); }
.footer__tagline { color: var(--sand); font-size: .9rem; line-height: 1.6; margin-bottom: 12px; }
.footer__sco     { font-size: .75rem; color: rgba(237,217,195,.5); text-transform:uppercase; letter-spacing:.07em; }
.footer__heading { font-size:.75rem; text-transform:uppercase; letter-spacing:.12em; color:var(--terracotta-lt); font-weight:700; margin-bottom:14px; }
.footer__nav ul  { display:flex; flex-direction:column; gap:9px; }
.footer__nav a   { color:var(--sand); font-size:.9rem; transition:color .15s; }
.footer__nav a:hover { color:#fff; text-decoration:none; }
.footer__contacts { display:flex; flex-direction:column; gap:10px; }
.footer__contacts a { color:var(--purple-lt); font-size:.82rem; word-break:break-all; line-height:1.45; }
.footer__contacts a:hover { color:#fff; text-decoration:none; }
.footer__bottom {
  border-top: 1px solid rgba(237,217,195,.15); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; font-size: .8rem; color: rgba(237,217,195,.4);
}

/* ── Squiggle Dividers ──────────────────────────────────────── */
.squiggle-wrap {
  display: block; width: 100%; overflow: hidden;
  padding: 6px 0; line-height: 0; pointer-events: none;
}
.squiggle-wrap svg { display: block; width: 100%; }

/* ── Section defaults ───────────────────────────────────────── */
.section { padding: 80px 0; }
.bg-cream        { background: var(--cream); }
.bg-white        { background: var(--cream-white); }
.bg-sand         { background: #F5EAD6; }
.bg-purple-lt    { background: var(--purple-lt); }
.bg-terra-pale   { background: var(--terracotta-pale); }

.eyebrow {
  display: inline-block; font-size: .77rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--terracotta); margin-bottom: 10px;
}
.section-hd { margin-bottom: 56px; }
.section-hd--center { text-align: center; margin-inline: auto; max-width: 680px; }
.section-hd h2 { margin-bottom: 12px; }
.section-hd .sub { color: var(--text-mid); font-size: 1.03rem; max-width: 600px; }
.section-hd--center .sub { margin-inline: auto; }

/* ── PAGE HERO (non-index) ──────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 72px 0 60px; background: var(--terracotta-pale);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(to right,var(--terracotta-lt) 0,var(--terracotta-lt) 12px,transparent 12px,transparent 22px);
}
.page-hero__ring1 {
  position:absolute; top:-70px; right:-60px;
  width:300px; height:300px; border-radius:50%;
  border:3px dashed var(--terracotta-lt); opacity:.4; pointer-events:none;
}
.page-hero__ring2 {
  position:absolute; bottom:-50px; left:4%;
  width:180px; height:180px; border-radius:50%;
  border:3px dotted var(--purple-mid); opacity:.25; pointer-events:none;
}
.page-hero h1 { font-size: clamp(1.9rem,4vw,3rem); margin-bottom: 16px; max-width: 700px; }
.page-hero p  { font-size: 1.08rem; color: var(--text-mid); max-width: 580px; line-height: 1.72; }

/* ── HERO (index) ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  background: url('img/hero.jpg') center / cover no-repeat;
  display: flex; align-items: flex-start;
  padding: 96px 0 208px;
}
.hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(108deg,rgba(253,246,238,.95) 0%,rgba(253,246,238,.8) 42%,rgba(253,246,238,.25) 70%,transparent 100%);
}
.hero__content { position:relative; z-index:2; max-width:560px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-lt); color: var(--purple);
  font-weight: 700; font-size: .78rem; letter-spacing: .09em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px; border: 2px solid var(--purple-mid);
}
.hero h1  { color: var(--text-dk); margin-bottom: 18px; }
.hero__sub { font-size: 1.03rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 32px; max-width: 500px; }

/* ── IMPACT PULL-UP ─────────────────────────────────────────── */
.impact-pullup { background: var(--cream); padding: 0 0 72px; }
.impact-card {
  position: relative; z-index: 3; margin-top: -104px;
  background: var(--cream-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-strong); padding: 40px 52px;
  border: 2px solid var(--sand);
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.impact-stat      { text-align: center; padding: 0 20px; }
.impact-stat__num {
  font-size: clamp(2rem,4vw,2.8rem); font-weight: 900;
  color: var(--purple); line-height: 1; margin-bottom: 8px;
}
.impact-stat__lbl {
  font-size: .82rem; color: var(--text-mid);
  font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
}
.impact-sep {
  width: 2px; height: 60px; flex-shrink: 0;
  background: repeating-linear-gradient(to bottom,var(--sand) 0,var(--sand) 6px,transparent 6px,transparent 14px);
}
.stamp-badge {
  width: 110px; height: 110px; border-radius: 50%;
  border: 4px dashed var(--purple); background: var(--purple-lt);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 12px; flex-shrink: 0;
  transform: rotate(-7deg);
}
.stamp-badge__main { font-size: .98rem; font-weight:900; color:var(--purple); line-height:1.15; text-transform:uppercase; }
.stamp-badge__sub  { font-size: .58rem; color:var(--purple); font-weight:700; text-transform:uppercase; letter-spacing:.09em; margin-top:4px; }

/* ── HOME INTRO SPLIT ───────────────────────────────────────── */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.intro-split__body p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.85; }

/* ── Photo helpers ──────────────────────────────────────────── */
.photo-r { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-card); }
.photo-r img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-r--tilted { transform: rotate(1.4deg); }

/* ── Polaroid ───────────────────────────────────────────────── */
.polaroid {
  background: var(--cream-white); padding: 12px 12px 44px;
  box-shadow: var(--sh-strong); display: inline-block;
}
.polaroid img { border-radius: 4px; display:block; width:100%; }
.polaroid__cap { text-align:center; padding-top:9px; font-size:.76rem; color:var(--text-lt); font-weight:600; }
.pol-r1 { transform: rotate(2.5deg); }
.pol-l1 { transform: rotate(-1.8deg); }
.pol-r2 { transform: rotate(1.2deg); }
.pol-l2 { transform: rotate(-3.1deg); }
.pol-r3 { transform: rotate(3.4deg); }

/* ── Polaroid scatter (homepage) ────────────────────────────── */
.pol-scatter {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; align-items: center; padding: 24px 0 40px;
}
.pol-scatter__item { transition: transform .3s ease; }
.pol-scatter__item:hover { transform: rotate(0deg) translateY(-10px) scale(1.03) !important; z-index: 2; }

/* ── Highlights (home) ──────────────────────────────────────── */
.highlights-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; align-items: start;
}
.h-card {
  background: var(--cream-white); border-radius: var(--r-md);
  padding: 36px 28px; box-shadow: var(--sh-soft);
  border: 2px solid var(--sand);
  transition: transform .2s, box-shadow .2s;
}
.h-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }
.h-card:nth-child(2) { margin-top: 36px; }
.h-card:nth-child(3) { margin-top: 16px; }
.h-card__icon { font-size: 2.4rem; display: block; line-height: 1; margin-bottom: 16px; }
.h-card h3    { color: var(--purple); margin-bottom: 12px; }
.h-card p     { color: var(--text-mid); font-size: .94rem; line-height: 1.74; }

/* ── CTA strip ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--purple); padding: 72px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content:''; position:absolute; top:-60%; left:-8%;
  width:40%; height:220%; background:rgba(255,255,255,.04);
  border-radius:50%; pointer-events:none;
}
.cta-strip::after {
  content:''; position:absolute; bottom:-40%; right:-4%;
  width:30%; height:170%; background:rgba(255,255,255,.04);
  border-radius:50%; pointer-events:none;
}
.cta-strip h2 { color:#fff; margin-bottom:18px; }
.cta-strip p  { color:var(--purple-lt); font-size:1.04rem; margin-bottom:36px; max-width:540px; margin-inline:auto; }

/* ── ABOUT page ─────────────────────────────────────────────── */
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-split--rev { direction: rtl; }
.about-split--rev > * { direction: ltr; }
.about-body p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.85; }
.photo-banner {
  position:relative; height:440px; overflow:hidden;
  border-radius: var(--r-md); box-shadow: var(--sh-strong);
}
.photo-banner img { width:100%; height:100%; object-fit:cover; display:block; }
.photo-banner::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom,transparent 45%,rgba(44,24,16,.45) 100%);
  pointer-events:none;
}

/* Story */
.story-body p { color:var(--text-mid); font-size:1.02rem; line-height:1.87; margin-bottom:1.5em; }

/* Mission dotted card */
.mission-card {
  border: 2px dotted var(--terracotta); border-radius: var(--r-md);
  padding: 44px 52px; background: var(--terracotta-pale);
  max-width: 900px; margin-inline: auto;
}
.mission-card h3 { color: var(--terracotta); font-size: clamp(1.1rem,2vw,1.35rem); margin-bottom: 16px; }
.mission-card p  { color: var(--text-mid); font-size: 1.02rem; line-height: 1.87; }

/* Trustees */
.trustees-list { display:flex; gap:20px; flex-wrap:wrap; justify-content:center; margin-top:48px; }
.trustee-card {
  background: var(--cream-white); border: 2px dotted var(--purple-mid);
  border-radius: var(--r-md); padding: 28px 24px; text-align: center;
  flex: 1; min-width: 150px; max-width: 200px;
  transition: transform .2s; box-shadow: var(--sh-soft);
}
.trustee-card:hover { transform: translateY(-4px); }
.trustee-avatar {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--purple-lt); border: 3px solid var(--purple-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--purple);
  margin: 0 auto 14px;
}
.trustee-card h4   { font-size: .96rem; margin-bottom: 6px; }
.trustee-card__role { font-size:.76rem; color:var(--terracotta); font-weight:700; text-transform:uppercase; letter-spacing:.07em; }

/* ── OUR WORK page ──────────────────────────────────────────── */
.whatwedo-body p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.85; }

/* Programmes */
.progs-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 28px; align-items: start;
}
.prog-card {
  background: var(--cream-white); border-radius: var(--r-md);
  padding: 36px 30px; box-shadow: var(--sh-soft); border: 2px solid var(--sand);
  transition: transform .2s, box-shadow .2s;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }
.prog-card:nth-child(even) { margin-top: 32px; }
.prog-icon  { font-size: 2.4rem; display: block; line-height: 1; margin-bottom: 16px; }
.prog-card h3    { color: var(--purple); margin-bottom: 10px; }
.prog-blurb { color: var(--terracotta); font-weight: 600; font-size: .94rem; line-height: 1.5; margin-bottom: 14px; }
.prog-detail { color: var(--text-mid); font-size: .92rem; line-height: 1.77; }

/* ── GET INVOLVED page ──────────────────────────────────────── */
.ways-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; align-items: start;
}
.way-card {
  background: var(--cream-white); border-radius: var(--r-md);
  padding: 40px 28px; box-shadow: var(--sh-card); text-align: center;
  border: 2px solid var(--sand); transition: transform .2s, box-shadow .2s;
}
.way-card:hover { transform: translateY(-4px); box-shadow: var(--sh-strong); }
.way-card:nth-child(2) { margin-top: 40px; }
.way-icon  { font-size: 3rem; display: block; line-height: 1; margin-bottom: 20px; }
.way-card h3 { color: var(--purple); margin-bottom: 12px; }
.way-card p  { color: var(--text-mid); font-size: .93rem; line-height: 1.74; }

/* ── BLOG page ──────────────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; align-items: start;
}
.blog-card {
  background: var(--cream-white); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--sh-card); border: 2px solid var(--sand);
  display: block; color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-strong); text-decoration: none; color: inherit; }
.blog-card:nth-child(2) { margin-top: 40px; }
.blog-card__img { height: 230px; overflow: hidden; }
.blog-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 28px 24px; }
.blog-tag {
  display: inline-block; background: var(--purple-lt); color: var(--purple);
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.blog-card h3  { font-size: 1.04rem; line-height: 1.4; margin-bottom: 10px; color: var(--text-dk); }
.blog-card .dek { color: var(--text-mid); font-size: .88rem; line-height: 1.65; }

/* ── CONTACT page ───────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 64px; align-items: start;
}
.contact-form {
  background: var(--cream-white); border-radius: var(--r-lg);
  padding: 48px 44px; box-shadow: var(--sh-card); border: 2px solid var(--sand);
}
.form-group { margin-bottom: 22px; }
.form-group label { display:block; font-weight:700; font-size:.88rem; margin-bottom:8px; color:var(--text-dk); }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:13px 18px; border:2px solid var(--sand);
  border-radius: var(--r-sm); background: var(--cream);
  font-family:inherit; font-size:.97rem; color:var(--text-dk);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--purple); box-shadow:0 0 0 3px rgba(123,45,139,.12); }
.form-group textarea { min-height:130px; resize:vertical; line-height:1.6; }
.form-submit {
  width:100%; background:var(--purple); color:#fff; border:none;
  border-radius:50px; padding:16px 40px; font-size:1rem; font-weight:800;
  font-family:inherit; cursor:pointer; transition:all .2s;
}
.form-submit:hover { background:var(--purple-dk); transform:translateY(-2px); box-shadow:0 8px 24px rgba(123,45,139,.3); }

.contact-info h3      { color:var(--purple); margin-bottom:18px; }
.contact-info > p     { color:var(--text-mid); font-size:1.02rem; line-height:1.82; margin-bottom:36px; }
.contact-detail       { display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.contact-detail__icon {
  width:44px; height:44px; border-radius:50%;
  background:var(--purple-lt); border:2px solid var(--purple-mid);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0;
}
.contact-detail__text strong { display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color:var(--terracotta); margin-bottom:4px; }
.contact-detail__text a { color:var(--text-dk); font-size:.88rem; word-break:break-all; line-height:1.5; }
.contact-detail__text a:hover { color:var(--purple); }
.contact-detail__text p { color:var(--text-mid); font-size:.9rem; }

/* ── ARTICLE page ───────────────────────────────────────────── */
.article-section { padding: 56px 0 88px; }
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:.83rem; color:var(--text-lt); padding:20px 0 0; margin-bottom:6px;
}
.breadcrumb a { color:var(--text-lt); }
.breadcrumb a:hover { color:var(--purple); }
.breadcrumb__sep { color:var(--sand-dark); }
.article-img-wrap {
  border-radius: var(--r-lg); overflow:hidden;
  margin-bottom: 52px; height: 440px; box-shadow: var(--sh-strong);
}
.article-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
.article-tag {
  display:inline-block; background:var(--purple-lt); color:var(--purple);
  font-size:.73rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em;
  padding:5px 14px; border-radius:50px; margin-bottom:18px;
}
.article-title { font-size:clamp(1.6rem,3.5vw,2.4rem); margin-bottom:20px; }
.article-dek {
  font-size:1.08rem; font-style:italic; color:var(--text-mid); line-height:1.65;
  padding:20px 24px; border-left:5px solid var(--terracotta);
  background:var(--terracotta-pale); border-radius:0 var(--r-sm) var(--r-sm) 0;
  margin-bottom:44px;
}
.article-body { color:var(--text-mid); font-size:1.02rem; line-height:1.87; }
.article-body p { margin-bottom:1.5em; }
.article-back {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--terracotta); font-weight:700; font-size:.9rem;
  margin-bottom:48px; transition:gap .15s;
}
.article-back:hover { gap:14px; color:var(--terracotta); text-decoration:none; }

/* ── Pull quote ─────────────────────────────────────────────── */
.pull-quote {
  border-left:5px solid var(--terracotta);
  padding:18px 28px; background:var(--terracotta-pale);
  border-radius:0 var(--r-sm) var(--r-sm) 0; margin:32px 0;
}
.pull-quote p { font-size:1.12rem; font-style:italic; color:var(--terracotta); font-weight:600; line-height:1.65; }

/* ── Helpers ─────────────────────────────────────────────────── */
.text-center   { text-align: center; }
.text-purple   { color: var(--purple); }
.text-terra    { color: var(--terracotta); }
.text-mid      { color: var(--text-mid); }
.mt-8          { margin-top: 32px; }
.mt-12         { margin-top: 48px; }
.mb-0          { margin-bottom: 0; }
.flex-center   { display:flex; align-items:center; justify-content:center; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .intro-split,
  .about-split,
  .about-split--rev,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-split--rev { direction: ltr; }

  .highlights-grid  { grid-template-columns: 1fr; }
  .h-card:nth-child(2), .h-card:nth-child(3) { margin-top: 0; }

  .progs-grid { grid-template-columns: 1fr; }
  .prog-card:nth-child(even) { margin-top: 0; }

  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2) { margin-top: 0; }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:nth-child(2) { margin-top: 0; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .impact-sep { display: none; }
  .impact-card { padding: 32px 24px; flex-wrap: wrap; }

  .pol-scatter { grid-template-columns: 1fr 1fr; }
  .pol-scatter__item:last-child { display:none; }

  .trustees-list { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero { min-height: 520px; padding: 80px 0 190px; }
  .impact-card { margin-top: -64px; padding: 28px 20px; flex-direction: column; }
  .impact-stat { width: 100%; padding: 0; }
  .impact-stat + .impact-stat { padding-top: 14px; border-top: 1px dotted var(--sand); }
  .stamp-badge { margin: 8px auto; }

  .pol-scatter { grid-template-columns: 1fr; gap: 24px; }
  .pol-scatter__item { transform: none !important; }
  .pol-scatter__item:last-child { display: block; }

  .blog-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section { padding: 56px 0; }

  .photo-banner { height: 260px; }
  .article-img-wrap { height: 240px; }

  .contact-form { padding: 32px 22px; }
  .mission-card { padding: 32px 24px; }

  /* hamburger */
  .nav-toggle-label { display: block; }
  .site-nav {
    display: none; position: absolute;
    top: calc(100% + 14px); left: -28px; right: -28px;
    background: var(--cream-white); border-top: 2px dotted var(--sand);
    border-bottom: 2px dotted var(--sand);
    padding: 16px 20px; z-index: 300; box-shadow: var(--sh-card);
  }
  .site-nav ul { flex-direction: column; gap: 4px; align-items: flex-start; }
  .nav-toggle-input:checked ~ nav.site-nav { display: block; }
}
