/* ============================================================
   VIBRANT HEALTH ADVOCATES – SLATE | style.css
   Design: Warm & Human Community archetype
   ============================================================ */

/* ── Custom properties ─────────────────────────────────────── */
:root {
  --cream:        #FDF6EB;
  --cream-2:      #F5EAD4;
  --cream-3:      #EDDAB8;
  --cream-4:      #E4CAAC;
  --terra:        #C4673A;
  --terra-light:  #E8956D;
  --terra-dark:   #9E4F28;
  --brand:        #7B2D8B;
  --brand-light:  #F0D9F5;
  --brand-mid:    #C49AD1;
  --warm-brown:   #4A2E1A;
  --text:         #2D1F14;
  --text-mid:     #7A5540;
  --white-warm:   #FFFCF5;
  --radius:       24px;
  --radius-sm:    12px;
  --shadow:       0 6px 28px rgba(74,46,26,.13);
  --shadow-lg:    0 16px 52px rgba(74,46,26,.20);
}

/* ── 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', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.78;
  font-size: 1.0625rem;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand); }
a:hover { text-decoration: underline; }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2.25rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.18;
  color: var(--warm-brown);
  letter-spacing: -0.02em;
}
p { max-width: 68ch; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container { width: min(1160px, 92vw); margin-inline: auto; }
.section    { padding: 96px 0; }
.section--tight { padding: 64px 0; }

/* ── Section eyebrow ─────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

/* ── Heading squiggle (decorative underline SVG) ─────────────── */
.squig {
  display: block;
  width: 110px;
  height: 12px;
  margin: 8px 0 22px;
  overflow: visible;
}

/* ── Wave section divider ─────────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ── NAV ─────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2.5px dotted var(--cream-3);
  padding: 12px 0;
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; }
.brand-lockup .logo-icon  { height: 44px; width: auto; }
.brand-lockup .wordmark   { height: 30px; width: auto; max-width: 210px; }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--brand-light);
  color: var(--brand);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--warm-brown);
  border-radius: 8px;
  padding: 7px 13px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--warm-brown);
  line-height: 1;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg,
    rgba(45,31,20,.76) 0%,
    rgba(45,31,20,.50) 50%,
    rgba(74,46,26,.22) 100%
  );
}
.hero__text-zone {
  position: relative;
  z-index: 2;
  padding: 120px 0 56px;
  flex: 1;
}
.hero__tag {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.13;
  margin-bottom: 22px;
  max-width: 680px;
  letter-spacing: -0.025em;
}
.hero__sub {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 36px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 38px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

/* Stats card that pulls up out of bottom of hero */
.hero__card-zone {
  position: relative;
  z-index: 3;
  padding: 0;
}
.stats-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: 0 auto;
  transform: translateY(52%);
  border: 2px solid var(--cream-3);
}
.stat-item {
  padding: 28px 32px;
  text-align: center;
}
.stat-item:not(:last-child) {
  border-right: 2.5px dotted var(--cream-3);
}
.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--terra);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Home intro / split section ───────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--photo-right .split__photo { order: 2; }
.split--photo-right .split__text  { order: 1; }
.split__photo {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.split__photo--wide { aspect-ratio: 4/3; }
.split__text h2 { margin-bottom: 14px; }
.split__text p  { margin-bottom: 18px; max-width: 100%; }

/* ── Polaroid grid ─────────────────────────────────────────────── */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 44px;
  align-items: start;
  padding: 12px 4px;
}
.polaroid {
  background: var(--white-warm);
  padding: 14px 14px 40px;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-3);
  transition: transform 0.28s, box-shadow 0.28s;
  position: relative;
}
.polaroid:nth-child(1) { transform: rotate(-2deg); }
.polaroid:nth-child(2) { transform: rotate(1.6deg); margin-top: 44px; }
.polaroid:nth-child(3) { transform: rotate(-0.8deg); margin-top: 20px; }
.polaroid:hover { transform: rotate(0deg) scale(1.02); box-shadow: 0 20px 60px rgba(74,46,26,.25); }
.polaroid__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 20px;
}
.polaroid__icon { font-size: 1.7rem; margin-bottom: 8px; }
.polaroid__title {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--warm-brown);
  margin-bottom: 8px;
}
.polaroid__body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.66;
  max-width: 100%;
}

/* ── Impact strip ─────────────────────────────────────────────── */
.impact-strip {
  background: var(--terra);
  padding: 0;
}
.impact-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 56px 0;
}
.impact-item {
  padding: 24px 40px;
  text-align: center;
  color: #fff;
}
.impact-item:not(:last-child) {
  border-right: 2px solid rgba(255,255,255,.28);
}
.impact-num {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.impact-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: .88;
}

/* ── Programme cards ─────────────────────────────────────────── */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}
.prog-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 2.5px dotted var(--cream-3);
  position: relative;
  overflow: hidden;
}
.prog-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--terra);
  border-radius: var(--radius) var(--radius) 0 0;
}
.prog-card:nth-child(2)::after { background: var(--brand); }
.prog-card:nth-child(3)::after { background: var(--terra-dark); }
.prog-card:nth-child(4)::after { background: var(--brand-mid); }
.prog-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.prog-card__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--warm-brown);
  margin-bottom: 10px;
}
.prog-card__blurb {
  font-size: 0.94rem;
  color: var(--text-mid);
  margin-bottom: 18px;
  max-width: 100%;
  line-height: 1.65;
}
.prog-card__detail {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.72;
  max-width: 100%;
  border-top: 2px dotted var(--cream-3);
  padding-top: 18px;
}

/* ── Stamp badge ─────────────────────────────────────────────── */
.stamp-badge {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 3.5px dashed var(--brand);
  background: var(--brand-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  font-weight: 900;
  color: var(--brand);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  flex-shrink: 0;
}
.stamp-badge__big {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

/* ── Mission block ───────────────────────────────────────────── */
.mission-block {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  border: 2.5px dotted var(--brand-mid);
}
.mission-block__text { flex: 1; }
.mission-block__text h2 { color: var(--brand); margin-bottom: 18px; }
.mission-block__text p { max-width: 100%; margin-bottom: 16px; }
.mission-block__text p:last-child { margin-bottom: 0; }

/* ── Story block ─────────────────────────────────────────────── */
.story-block {
  background: var(--white-warm);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 2.5px dotted var(--cream-3);
}
.story-block h2 { margin-bottom: 22px; }
.story-block p  { margin-bottom: 20px; max-width: 100%; }
.story-block p:last-child { margin-bottom: 0; }

/* ── Team cards ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2.5px dotted var(--cream-3);
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand);
  margin: 0 auto 16px;
  border: 3px dashed var(--brand-mid);
}
.team-card__name { font-weight: 900; margin-bottom: 4px; font-size: 1rem; }
.team-card__role { font-size: 0.875rem; color: var(--text-mid); }

/* ── Ways cards ─────────────────────────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 32px;
  align-items: start;
}
.way-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--terra);
  position: relative;
}
.way-card:nth-child(2) { border-top-color: var(--brand); margin-top: 32px; }
.way-card:nth-child(3) { border-top-color: var(--terra-dark); margin-top: 16px; }
.way-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.way-card__title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--warm-brown);
  margin-bottom: 12px;
}
.way-card__body { font-size: 0.95rem; color: var(--text-mid); max-width: 100%; line-height: 1.68; }

/* ── Blog cards ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 40px;
  align-items: start;
}
.blog-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.blog-card:nth-child(2) { margin-top: 52px; }
.blog-card:nth-child(3) { margin-top: 26px; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); text-decoration: none; }
.blog-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card__body { padding: 26px 24px 30px; }
.blog-card__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--warm-brown);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card__dek {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 100%;
}
.blog-card__link {
  display: inline-block;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--brand);
  text-decoration: none;
}
.blog-card__link:hover { text-decoration: underline; }

/* ── Article layout ─────────────────────────────────────────── */
.article-banner {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.article-wrap {
  max-width: 74ch;
  margin: 0 auto;
  padding: 60px 24px 96px;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--brand);
  text-decoration: none;
  margin-bottom: 36px;
}
.article-back:hover { text-decoration: underline; }
.article-wrap h1 { margin-bottom: 18px; }
.article-dek {
  font-size: 1.12rem;
  color: var(--text-mid);
  border-left: 4px solid var(--terra);
  padding-left: 18px;
  margin-bottom: 44px;
  font-style: italic;
  line-height: 1.65;
  max-width: 100%;
}
.article-body p {
  margin-bottom: 24px;
  max-width: 100%;
  line-height: 1.82;
}

/* ── Photo banner ─────────────────────────────────────────────── */
.photo-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.photo-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,31,20,.60), rgba(45,31,20,.18));
}
.photo-banner__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 max(5vw, 32px);
}
.photo-banner__text h2 { color: #fff; max-width: 580px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn--terra  { background: var(--terra); color: #fff; box-shadow: var(--shadow); }
.btn--brand  { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--brand); border: 2.5px solid var(--brand); }
.btn--terra:hover  { box-shadow: var(--shadow-lg); }
.btn--brand:hover  { box-shadow: var(--shadow-lg); }

/* ── CTA banner ──────────────────────────────────────────────── */
.cta-band {
  background: var(--brand-light);
  border-top: 2.5px dotted var(--brand-mid);
  border-bottom: 2.5px dotted var(--brand-mid);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 10px; color: var(--brand); }
.cta-band p  { margin: 0 auto 32px; color: var(--text-mid); max-width: 52ch; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p  { margin-bottom: 16px; max-width: 100%; }
.contact-emails {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-emails a {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand);
  word-break: break-all;
}
.urgent-note {
  background: var(--cream-2);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 0.875rem;
  margin-top: 28px;
  max-width: 100%;
}
.form-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 2.5px dotted var(--cream-3);
}
.form-card h3 { margin-bottom: 28px; font-size: 1.35rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-3);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(123,45,139,.12);
}
.form-group textarea { min-height: 160px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Page header ──────────────────────────────────────────────── */
.page-header {
  background: var(--cream-2);
  padding: 80px 0 64px;
  border-bottom: 2.5px dotted var(--cream-3);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--brand-light);
  opacity: 0.45;
}
.page-header h1  { margin-bottom: 16px; position: relative; }
.page-header .lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 60ch;
  position: relative;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--warm-brown);
  color: rgba(255,255,255,.82);
  padding: 64px 0 36px;
}
.site-footer a { color: rgba(255,255,255,.68); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-lockup { display: flex; align-items: center; gap: 10px; }
.footer-lockup .logo-icon { height: 40px; width: auto; }
.footer-lockup .wordmark  {
  height: 26px; width: auto; max-width: 190px;
  filter: invert(1) brightness(10);
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.72;
  max-width: 30ch;
  color: rgba(255,255,255,.65);
}
.footer-emails { display: flex; flex-direction: column; gap: 8px; }
.footer-emails a { font-size: 0.8rem; word-break: break-all; }
.footer-col-heading {
  font-weight: 800;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.42);
}
.footer-bottom a { color: rgba(255,255,255,.42); }
.scio-tag {
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,.55);
  margin-left: 8px;
}

/* ── Decorative dotted border card ───────────────────────────── */
.dotted-card {
  border: 2.5px dotted var(--cream-3);
  border-radius: var(--radius);
  padding: 40px;
  background: var(--white-warm);
}

/* ── Inline photo polaroid (scrapbook aside) ─────────────────── */
.scrap-photo {
  display: inline-block;
  background: var(--white-warm);
  padding: 12px 12px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-3);
  transform: rotate(2.5deg);
  max-width: 340px;
  float: right;
  margin: 0 0 32px 40px;
  border-radius: 3px;
}
.scrap-photo img {
  width: 100%;
  border-radius: 2px;
}
.scrap-photo figcaption {
  font-size: 0.8rem;
  color: var(--text-mid);
  text-align: center;
  padding-top: 10px;
  font-style: italic;
}

/* ── What we do callout ──────────────────────────────────────── */
.what-callout {
  background: var(--terra);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 40px;
}
.what-callout h3 { color: #fff; margin-bottom: 14px; }
.what-callout p  { max-width: 100%; opacity: .9; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--photo-right .split__photo { order: 0; }
  .split--photo-right .split__text  { order: 0; }
  .split__photo { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .mission-block { flex-direction: column; }
  .stats-card { grid-template-columns: 1fr; max-width: 320px; transform: translateY(42%); }
  .stat-item:not(:last-child) { border-right: none; border-bottom: 2.5px dotted var(--cream-3); }
  .impact-inner { grid-template-columns: 1fr; padding: 40px 0; }
  .impact-item:not(:last-child) { border-right: none; border-bottom: 2px solid rgba(255,255,255,.28); }
  .form-row { grid-template-columns: 1fr; }
  .scrap-photo { float: none; margin: 0 auto 32px; transform: rotate(1.5deg); }
}
@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 2px);
    left: 0; right: 0;
    background: var(--cream);
    padding: 16px 24px;
    border-bottom: 2.5px dotted var(--cream-3);
    z-index: 200;
    gap: 2px;
    box-shadow: var(--shadow);
  }
  .nav-links.open  { display: flex; }
  .nav-links a { padding: 10px 16px; border-radius: 12px; }
  .nav-toggle  { display: block; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
  .section { padding: 60px 0; }
  .hero { min-height: 680px; }
  .hero__text-zone { padding: 90px 0 40px; }
  .stats-card { max-width: 90vw; transform: translateY(35%); }
  .polaroid:nth-child(n) { margin-top: 0; transform: rotate(-1deg); }
  .polaroid:nth-child(even) { transform: rotate(1deg); }
  .blog-card:nth-child(n) { margin-top: 0; }
  .way-card:nth-child(n)  { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mission-block { padding: 32px 24px; }
  .story-block   { padding: 32px 24px; }
  .form-card     { padding: 28px 20px; }
  .dotted-card   { padding: 28px 20px; }
  .what-callout  { padding: 28px 20px; }
  .page-header   { padding: 56px 0 48px; }
  .article-wrap  { padding: 48px 16px 72px; }
}
