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

:root {
  --cream:          #FAF7F2;
  --cream-mid:      #F2EAE0;
  --cream-border:   #E5D8CB;
  --terracotta:     #C8623A;
  --terracotta-lt:  #F5D9CB;
  --brand:          #7B2D8B;
  --brand-lt:       #F0D9F5;
  --brand-dk:       #5A2067;
  --text:           #2C1A0E;
  --text-muted:     #6B4F3A;
  --white:          #FFFDF8;
  --shadow-sm:      0 4px 16px rgba(44,26,14,.10);
  --shadow:         0 8px 36px rgba(44,26,14,.13);
  --shadow-lg:      0 16px 56px rgba(44,26,14,.18);
  --r:              24px;
  --r-sm:           12px;
}

/* ── 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, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.78;
  font-size: 1.05rem;
}
img   { max-width: 100%; display: block; }
a     { color: var(--brand); }
a:hover { opacity: .8; }
ul    { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4 { font-weight: 800; line-height: 1.18; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.75rem; }
.section   { padding: 5rem 0; }
.section--white      { background: var(--white); }
.section--cream      { background: var(--cream); }
.section--cream-mid  { background: var(--cream-mid); }
.section--brand-lt   { background: var(--brand-lt); }
.section--terra-lt   { background: var(--terracotta-lt); }
.section--brand      { background: var(--brand); }
.section--terra      { background: var(--terracotta); }
.section--dark       { background: var(--text); }

/* ── NAV ────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  position: sticky; top: 0; z-index: 200;
  border-bottom: 2px solid var(--cream-border);
  box-shadow: 0 2px 12px rgba(44,26,14,.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  position: relative;
}
.brand-lockup {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; flex-shrink: 0;
}
.brand-lockup:hover { opacity: 1; text-decoration: none; }
.nav-logo     { height: 48px; width: auto; }
.nav-wordmark { height: 34px; width: auto; }

/* checkbox hamburger (CSS-only mobile) */
.nav-toggle-cb { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
  background: none; border: none;
}
.nav-toggle-label span {
  display: block; width: 26px; height: 3px;
  background: var(--text); border-radius: 2px; transition: .2s;
}

.nav-links {
  display: flex; align-items: center; gap: .2rem;
}
.nav-links a {
  color: var(--text); font-weight: 700; font-size: .92rem;
  padding: .45rem .85rem; border-radius: 100px;
  text-decoration: none; transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--brand-lt); color: var(--brand); opacity: 1; }
.nav-links a.active { color: var(--brand); background: var(--brand-lt); }
.nav-links .nav-cta > a {
  background: var(--brand); color: white; padding: .45rem 1.2rem;
}
.nav-links .nav-cta > a:hover { background: var(--brand-dk); color: white; }

/* ── SQUIGGLE DIVIDER ───────────────────────────────── */
.squiggle { display: block; overflow: hidden; line-height: 0; padding: 1.5rem 0; }
.squiggle svg { display: block; width: 100%; }

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background: var(--terracotta);
  padding: 5rem 1.75rem 4.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 10%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1  { color: white; margin-bottom: .85rem; }
.page-hero p   { color: rgba(255,255,255,.88); font-size: 1.15rem; max-width: 600px; font-weight: 500; }
.page-hero .breadcrumb { font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: white; }

/* ── HERO (homepage) ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 720px;
  background-size: cover;
  background-position: center 30%;
  display: flex; align-items: flex-start;
  padding: 130px 1.75rem 260px;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,26,14,.12) 0%,
    rgba(44,26,14,.48) 55%,
    rgba(44,26,14,.72) 100%
  );
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 1; max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--brand); color: white;
  font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  padding: .32rem 1rem; border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.18rem; font-weight: 500;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 10px rgba(0,0,0,.28);
  max-width: 560px; line-height: 1.65;
}

/* ── OVERLAP CARD ───────────────────────────────────── */
.overlap-wrapper {
  position: relative; z-index: 10;
  margin-top: -210px;
  padding: 0 1.75rem 4.5rem;
}
.overlap-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2.75rem 3.25rem;
  max-width: 940px;
  box-shadow: var(--shadow-lg);
  border: 2.5px solid var(--cream-border);
  position: relative;
}
.overlap-card::before {
  content: '';
  position: absolute; top: -10px; left: 3rem; right: 3rem;
  height: 18px; background: var(--terracotta-lt);
  border-radius: 10px; z-index: -1;
}
.overlap-card .oc-label {
  display: block;
  color: var(--terracotta); font-weight: 800; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: .8rem;
}
.overlap-card p { color: var(--text); line-height: 1.82; }

/* ── IMPACT STRIP ───────────────────────────────────── */
.impact-strip { padding: 3.5rem 1.75rem; }
.impact-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; max-width: 900px; margin: 0 auto; text-align: center;
}
.impact-stat { color: white; }
.impact-stat .stat-num {
  display: block;
  font-size: clamp(2.4rem,5vw,3.75rem);
  font-weight: 900; line-height: 1;
  margin-bottom: .4rem;
}
.impact-stat .stat-lbl { font-size: .92rem; opacity: .85; font-weight: 600; }

/* ── SECTION LABELS ─────────────────────────────────── */
.section-label {
  display: inline-block;
  color: var(--terracotta); font-weight: 800; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .15em;
  margin-bottom: .8rem;
}
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .6rem; }
.section-header p  { color: var(--text-muted); max-width: 620px; font-size: 1.08rem; }

/* ── HIGHLIGHT CARDS (staggered grid) ───────────────── */
.highlights-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; align-items: start;
}
.highlight-card {
  background: var(--white); border-radius: var(--r);
  padding: 2.25rem; box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-border); position: relative;
}
.highlight-card:nth-child(2) { margin-top: 2.5rem; }
.highlight-card:nth-child(3) { margin-top: -.75rem; }
.hl-icon {
  font-size: 2.5rem; display: block; margin-bottom: 1rem;
}
.highlight-card h3 { color: var(--terracotta); margin-bottom: .7rem; font-size: 1.3rem; }
.highlight-card p  { color: var(--text-muted); line-height: 1.72; font-size: .97rem; }

/* ── PHOTO SPLIT ────────────────────────────────────── */
.photo-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.photo-split.rev { }
.photo-frame { position: relative; }
.photo-frame img {
  border-radius: var(--r); width: 100%;
  aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow);
}
.photo-frame::before {
  content: '';
  position: absolute; inset: -10px;
  border: 2px dotted var(--terracotta);
  border-radius: calc(var(--r) + 10px); z-index: -1;
}
.photo-frame--stamp { position: relative; }

/* ── STAMP BADGE ────────────────────────────────────── */
.stamp-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--brand-lt);
  border: 3.5px dashed var(--brand);
  outline: 3px solid var(--brand-lt); outline-offset: 5px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .1rem;
  font-weight: 900; font-size: .7rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.stamp-badge .stamp-lg { font-size: 1.15rem; font-weight: 900; line-height: 1; }
.stamp-badge .stamp-sm { font-size: .62rem; opacity: .8; }

/* ── POLAROID CARDS ─────────────────────────────────── */
.polaroid-row {
  display: flex; gap: 2rem; align-items: flex-start;
  justify-content: center; flex-wrap: wrap;
}
.polaroid {
  background: var(--white);
  border: 2px solid var(--cream-border);
  border-radius: 6px;
  padding: 1rem 1rem 3rem;
  box-shadow: var(--shadow);
  position: relative; flex: 1; min-width: 220px; max-width: 300px;
}
.polaroid img {
  width: 100%; border-radius: 4px;
  aspect-ratio: 4/3; object-fit: cover;
  display: block;
}
.polaroid .pol-caption {
  text-align: center; font-style: italic;
  font-weight: 700; font-size: .85rem;
  color: var(--text-muted); margin-top: .85rem;
}
.polaroid-row .polaroid:nth-child(1) { transform: rotate(-2.8deg); }
.polaroid-row .polaroid:nth-child(2) { transform: rotate(1.6deg); margin-top: 1.8rem; }
.polaroid-row .polaroid:nth-child(3) { transform: rotate(-1.2deg); margin-top: -.4rem; }

/* ── DOTTED BOX ─────────────────────────────────────── */
.dotted-box {
  border: 2.5px dotted var(--terracotta);
  border-radius: var(--r); padding: 2.5rem;
}

/* ── PULL QUOTE ─────────────────────────────────────── */
.pull-quote {
  border-left: 5px solid var(--terracotta);
  background: var(--terracotta-lt);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.5rem 2rem;
  font-size: 1.22rem; font-weight: 700; font-style: italic;
  color: var(--text); margin: 2.5rem 0; line-height: 1.55;
}

/* ── MISSION BOX ─────────────────────────────────────── */
.mission-box {
  background: var(--brand-lt);
  border-radius: var(--r); padding: 3rem;
  border: 2.5px solid var(--brand);
  position: relative; overflow: hidden;
}
.mission-box::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(123,45,139,.07);
}
.mission-box h2 { color: var(--brand); margin-bottom: 1.2rem; }
.mission-box p  { color: var(--text); line-height: 1.82; }

/* ── TRUSTEES ────────────────────────────────────────── */
.trustees-row { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.trustee-card {
  background: var(--white); border-radius: var(--r);
  padding: 1.75rem 2rem; flex: 1; min-width: 190px;
  border: 2px solid var(--cream-border); box-shadow: var(--shadow-sm);
}
.trustee-card h4   { color: var(--brand); margin-bottom: .3rem; }
.trustee-card .role {
  color: var(--terracotta); font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
}

/* ── PROGRAMME CARDS ─────────────────────────────────── */
.programme-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem;
  align-items: start;
}
.programme-card {
  background: var(--white); border-radius: var(--r);
  padding: 2.5rem; border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.programme-card::after {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--terracotta-lt); opacity: .6;
}
.programme-card:nth-child(2) { margin-top: 2.25rem; }
.programme-card:nth-child(4) { margin-top: -1.5rem; }
.prog-icon { font-size: 2.2rem; display: block; margin-bottom: 1rem; position: relative; z-index: 1; }
.programme-card h3   { color: var(--terracotta); margin-bottom: .65rem; position: relative; z-index: 1; }
.programme-card .blurb  { font-weight: 700; margin-bottom: 1rem; position: relative; z-index: 1; }
.programme-card .detail {
  font-size: .94rem; color: var(--text-muted); line-height: 1.77;
  position: relative; z-index: 1;
}

/* ── WAYS GRID (Get Involved) ───────────────────────── */
.ways-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; align-items: start;
}
.way-card {
  background: var(--white); border-radius: var(--r);
  padding: 2.5rem 2rem; text-align: center;
  border: 2px solid var(--cream-border); box-shadow: var(--shadow-sm);
}
.way-card:nth-child(2) { margin-top: 2.5rem; }
.way-icon { font-size: 3rem; display: block; margin-bottom: 1.25rem; }
.way-card h3 { color: var(--terracotta); margin-bottom: .75rem; }
.way-card p  { color: var(--text-muted); line-height: 1.72; font-size: .97rem; }

/* ── BLOG CARDS ─────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; align-items: start;
}
.blog-card {
  background: var(--white); border-radius: var(--r);
  overflow: hidden; border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-card:nth-child(2) { margin-top: 2.5rem; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.blog-card-link:hover { opacity: 1; text-decoration: none; }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  display: block;
}
.blog-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { color: var(--text); margin-bottom: .5rem; font-size: 1.05rem; }
.blog-card-body .dek { font-size: .9rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.read-more {
  display: inline-block; margin-top: 1rem;
  color: var(--brand); font-weight: 800; font-size: .88rem;
  text-decoration: none;
}
.read-more::after { content: ' →'; }

/* ── ARTICLE ─────────────────────────────────────────── */
.article-hero-wrap { position: relative; margin-bottom: 3rem; }
.article-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 0 0 var(--r) var(--r); display: block;
}
.article-body {
  max-width: 760px; margin: 0 auto;
  padding: 0 1.75rem 6rem;
}
.article-body h1  { margin-bottom: .8rem; }
.article-dek {
  font-size: 1.18rem; color: var(--text-muted); font-weight: 600;
  border-bottom: 2.5px dotted var(--cream-border);
  padding-bottom: 1.5rem; margin-bottom: 2rem; line-height: 1.5;
}
.article-content p { line-height: 1.87; margin-bottom: 1.6em; }
.article-back { display: inline-block; margin-bottom: 1.5rem; color: var(--brand); font-weight: 700; text-decoration: none; font-size: .9rem; }
.article-back::before { content: '← '; }
.article-back:hover { opacity: .7; }

/* ── CTA SECTION ────────────────────────────────────── */
.cta-section {
  padding: 5.5rem 1.75rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-section::after {
  content: ''; position: absolute; bottom: -100px; right: -50px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-section h2 { color: white; margin-bottom: 1.6rem; position: relative; z-index: 1; }
.cta-section p  { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 2rem; font-size: 1.08rem; position: relative; z-index: 1; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .9rem 2.4rem; border-radius: 100px;
  font-weight: 800; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  border: none; font-family: inherit;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  position: relative; z-index: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); opacity: 1; }
.btn-white   { background: var(--white); color: var(--terracotta); }
.btn-brand   { background: var(--brand); color: white; }
.btn-terra   { background: var(--terracotta); color: white; }
.btn-outline { background: transparent; color: white; border: 2.5px solid white; }

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 3fr 2fr; gap: 3.5rem; align-items: start;
}
.contact-form {
  background: var(--white); border-radius: var(--r);
  padding: 3rem; box-shadow: var(--shadow);
  border: 2px solid var(--cream-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-weight: 700; font-size: .9rem;
  margin-bottom: .38rem; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .78rem 1.1rem;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-sm); font-size: 1rem;
  font-family: inherit; background: var(--cream);
  color: var(--text); transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--brand);
}
.form-group textarea { min-height: 145px; resize: vertical; }

.contact-info { padding: .5rem 0; }
.contact-info h3  { color: var(--terracotta); margin-bottom: 1.25rem; }
.ci-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.4; }
.ci-body strong { display: block; font-weight: 800; color: var(--text); margin-bottom: .2rem; }
.ci-body p, .ci-body a { font-size: .92rem; color: var(--text-muted); word-break: break-all; line-height: 1.55; }
.ci-body a { display: block; text-decoration: none; }
.ci-body a:hover { color: var(--brand); }

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer { background: var(--text); color: rgba(255,255,255,.78); padding: 4.5rem 1.75rem 2.25rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 2rem;
}
.footer-lockup { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.4rem; }
.footer-lockup .f-logo     { height: 44px; filter: brightness(0) invert(1); }
.footer-lockup .f-wordmark { height: 30px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.62); line-height: 1.68; }
.footer-col h4 {
  color: white; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 1.2rem;
}
.footer-col li { margin-bottom: .55rem; }
.footer-col a  { color: rgba(255,255,255,.65); font-size: .88rem; text-decoration: none; transition: color .18s; }
.footer-col a:hover { color: var(--brand-lt); }
.footer-emails a { word-break: break-all; font-size: .83rem; display: block; margin-bottom: .5rem; }
.footer-bottom { text-align: center; font-size: .8rem; color: rgba(255,255,255,.38); }

/* ── FULL-BLEED PHOTO ────────────────────────────────── */
.full-bleed-photo {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow);
  display: block;
}

/* ── STORY PROSE ────────────────────────────────────── */
.story-prose { max-width: 820px; }
.story-prose p { line-height: 1.87; color: var(--text); }

/* ── WHAT WE DO PROSE ───────────────────────────────── */
.wwd-prose { max-width: 820px; margin: 0 auto; }
.wwd-prose p { line-height: 1.87; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }

  .photo-split { grid-template-columns: 1fr; gap: 2.5rem; }

  .programme-list { grid-template-columns: 1fr; }
  .programme-card:nth-child(2),
  .programme-card:nth-child(4) { 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; }

  .impact-grid { grid-template-columns: repeat(3,1fr); }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .polaroid-row .polaroid { transform: none !important; margin-top: 0 !important; }
}

@media (max-width: 680px) {
  .nav-toggle-label { display: flex; }
  .nav-links {
    display: none; position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.75rem;
    border-bottom: 2px solid var(--cream-border);
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    gap: .25rem; z-index: 100;
  }
  .nav-toggle-cb:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: .6rem .85rem; }

  .hero { min-height: 580px; padding-top: 100px; padding-bottom: 230px; }
  .overlap-wrapper { margin-top: -180px; padding: 0 1rem 3rem; }
  .overlap-card { padding: 2rem 1.5rem; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  .trustees-row { flex-direction: column; }

  .impact-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .polaroid-row { flex-direction: column; align-items: center; }
  .polaroid { max-width: 280px; }

  .stamp-badge { width: 100px; height: 100px; bottom: -12px; right: -12px; }
  .stamp-badge .stamp-lg { font-size: .95rem; }

  .article-hero-img { height: 260px; }
  .contact-form { padding: 1.75rem; }
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 3rem 1.75rem 2.75rem; }
}
