/* ============================================================
   VIBRANT HEALTH ADVOCATES – BETA  |  Warm & Human Community
   ============================================================ */

:root {
  --cream:        #FDF6EC;
  --cream-alt:    #F5ECD8;
  --cream-card:   #FFFDF8;
  --cream-border: #EDD9B8;
  --terra:        #C4622D;
  --terra-light:  #E8845A;
  --terra-pale:   #FAE8DF;
  --purple:       #7B2D8B;
  --purple-light: #F0D9F5;
  --purple-mid:   #B06EC0;
  --text:         #2C1810;
  --text-mid:     #6B4030;
  --text-light:   #9C7060;
  --radius-sm:    16px;
  --radius:       24px;
  --radius-lg:    36px;
  --shadow:       0 6px 28px rgba(44,24,16,0.11);
  --shadow-lg:    0 18px 60px rgba(44,24,16,0.18);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica Neue, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.1rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--cream-alt); }
.section-terra { background: var(--terra-pale); }
.section-purple { background: var(--purple-light); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-border);
  padding: 0.7rem 0;
  box-shadow: 0 2px 12px rgba(44,24,16,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; }
.brand-logo   { width: 44px; height: 44px; object-fit: contain; }
.brand-wordmark { height: 30px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
}
.nav-links a {
  display: block;
  padding: 0.42rem 0.9rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--purple-light); color: var(--purple); text-decoration: none; }
.nav-links a.active { background: var(--purple-light); color: var(--purple); }
.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  padding: 0.48rem 1.2rem !important;
}
.nav-cta:hover { background: #6a2578 !important; color: #fff !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.82);
  padding: 3.5rem 0 1.75rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand-lockup { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo     { width: 38px; height: 38px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-wordmark { height: 25px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-tagline  { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; margin-top: 0.5rem; }
.footer-heading  { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; font-weight: 700; color: rgba(255,255,255,0.45); margin-bottom: 0.85rem; }
.footer-links a  { display: block; color: rgba(255,255,255,0.75); padding: 0.25rem 0; font-size: 0.88rem; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-contact a { color: rgba(255,255,255,0.8); font-size: 0.82rem; word-break: break-all; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact p { margin-bottom: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   HERO — full bleed photo, text at top, card pulled up below
   ============================================================ */
.hero-wrap { position: relative; }
.hero-section {
  position: relative;
  height: 82vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(253,246,236,0.72) 0%,
    rgba(253,246,236,0.25) 50%,
    rgba(44,24,16,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 0 3rem;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  max-width: 620px;
  color: var(--text);
  text-shadow: 0 2px 12px rgba(253,246,236,0.5);
  margin-bottom: 1.25rem;
}
.hero-sub {
  max-width: 520px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
  background: rgba(253,246,236,0.75);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(2px);
}

/* Pulled overlap card */
.hero-pulled-card-wrap {
  position: relative;
  z-index: 10;
  margin-top: -90px;
  padding-bottom: 0;
}
.hero-pulled-card {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  overflow: hidden;
}
.hpc-stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 2px dotted var(--cream-border);
}
.hpc-stat:last-child { border-right: none; }
.hpc-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hpc-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253,246,236,0.3) 0%, rgba(44,24,16,0.6) 100%);
}
.page-banner-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 0;
  color: #fff;
}
.page-banner-text h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.page-banner-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

/* ============================================================
   SQUIGGLE DIVIDERS
   ============================================================ */
.squiggle-row { line-height: 0; overflow: hidden; }
.squiggle-row svg { width: 100%; height: 60px; display: block; }

/* ============================================================
   STAMP BADGE
   ============================================================ */
.stamp-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px dashed var(--terra);
  background: var(--terra-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  margin: 0 auto;
  transition: transform 0.3s;
}
.stamp-badge:hover { transform: rotate(5deg) scale(1.05); }
.stamp-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
}
.stamp-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  line-height: 1.35;
  margin-top: 0.3rem;
}
.stamp-purple { border-color: var(--purple); background: var(--purple-light); }
.stamp-purple .stamp-number { color: var(--purple); }

/* Impact row */
.impact-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   HIGHLIGHTS / STAGGER CARDS
   ============================================================ */
.stagger-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.stagger-card {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  background: var(--cream-card);
  border-radius: var(--radius);
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stagger-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stagger-card:nth-child(2) { margin-top: 2.5rem; }
.stagger-card:nth-child(3) { margin-top: 1.25rem; }
.sc-icon { font-size: 2.5rem; padding: 1.5rem 1.5rem 0; }
.sc-body { padding: 1rem 1.5rem 1.75rem; }
.sc-body h3 { margin-bottom: 0.6rem; color: var(--terra); }
.sc-body p  { font-size: 0.92rem; color: var(--text-mid); }

/* ============================================================
   POLAROID CARDS
   ============================================================ */
.polaroid-cluster {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0 2rem;
}
.polaroid {
  background: #FFFDF8;
  padding: 10px 10px 40px;
  border: 1px solid #e0d4bc;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  max-width: 260px;
  flex-shrink: 0;
}
.polaroid:hover { transform: rotate(0deg) scale(1.04); box-shadow: var(--shadow-lg); z-index: 5; }
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.polaroid-cap {
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.3;
  padding: 0 0.25rem;
}

/* ============================================================
   DOTTED CALLOUT BOX
   ============================================================ */
.dotted-box {
  border: 2px dotted var(--terra);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  background: var(--terra-pale);
}
.dotted-box-purple {
  border-color: var(--purple);
  background: var(--purple-light);
}

/* ============================================================
   INTRO / BODY TEXT SECTION
   ============================================================ */
.intro-text {
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}
.intro-text p { margin-bottom: 1.4em; }
.intro-text p:last-child { margin-bottom: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--purple);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  color: #fff;
  margin: 0 1rem;
}
.cta-banner h2 { color: #fff; margin-bottom: 1.25rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 2rem; }
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); text-decoration: none; }
.btn-cream { background: var(--cream); color: var(--purple); }
.btn-cream:hover { background: #fff; color: var(--purple); }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: #6a2578; color: #fff; }
.btn-terra { background: var(--terra); color: #fff; }
.btn-terra:hover { background: #b35525; color: #fff; }

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.prog-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prog-icon { font-size: 2.8rem; padding: 1.75rem 1.75rem 0.5rem; }
.prog-body { padding: 0.5rem 1.75rem 2rem; }
.prog-body h3 { color: var(--terra); margin-bottom: 0.6rem; }
.prog-body p  { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1rem; }
.prog-detail {
  font-size: 0.82rem;
  color: var(--text-mid);
  border-top: 1px dotted var(--cream-border);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  line-height: 1.65;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); text-decoration: none; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  width: fit-content;
}
.blog-card-body h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card-body .dek { font-size: 0.88rem; color: var(--text-mid); flex: 1; line-height: 1.6; margin-bottom: 1rem; }
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero { height: 420px; overflow: hidden; border-radius: 0; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--terra);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 2rem;
  border-radius: 50px;
  padding: 0.4rem 0;
}
.article-back:hover { text-decoration: none; color: var(--purple); }
.article-eyebrow {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.article-wrap h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }
.article-dek {
  font-size: 1.12rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px dotted var(--cream-border);
}
.article-body { font-size: 1.02rem; line-height: 1.85; color: var(--text); }
.article-body p { margin-bottom: 1.5em; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  background: var(--cream-card);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.12);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.contact-info-box { padding: 2rem; background: var(--terra-pale); border-radius: var(--radius); border: 2px dotted var(--terra); }
.contact-info-box h3 { color: var(--terra); margin-bottom: 1rem; font-size: 1.15rem; }
.contact-info-box a { color: var(--purple); word-break: break-all; font-size: 0.88rem; }

/* ============================================================
   TRUSTEE CARDS
   ============================================================ */
.trustee-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trustee-card {
  background: var(--cream-card);
  border: 2px solid var(--cream-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  transition: transform 0.3s;
}
.trustee-card:hover { transform: translateY(-4px); }
.trustee-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  border: 3px dashed var(--purple-mid);
}
.trustee-card h4 { margin-bottom: 0.25rem; color: var(--text); }
.trustee-role { font-size: 0.82rem; color: var(--purple); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   WAYS / GET INVOLVED CARDS
   ============================================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.way-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
  padding: 2.25rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.way-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.way-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.way-card h3 { color: var(--terra); margin-bottom: 0.6rem; }
.way-card p  { font-size: 0.92rem; color: var(--text-mid); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.section-title {
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* two-col text */
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

/* Pull quote */
.pull-quote {
  border-left: 5px solid var(--terra);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--terra-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.05rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 2px dotted var(--cream-border); padding: 0.75rem 1.5rem 1rem; box-shadow: 0 8px 24px rgba(44,24,16,0.1); z-index: 999; }
  .nav-links.open a { padding: 0.6rem 0.5rem; border-bottom: 1px dotted var(--cream-border); border-radius: 0; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }

  .hero-section { min-height: 560px; }
  .hero-pulled-card { grid-template-columns: 1fr; }
  .hpc-stat { border-right: none; border-bottom: 2px dotted var(--cream-border); }
  .hpc-stat:last-child { border-bottom: none; }

  .two-col-text { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .stagger-card:nth-child(2),
  .stagger-card:nth-child(3) { margin-top: 0; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .hero-section { min-height: 480px; height: 75vh; }
  .hero-content { padding: 3.5rem 0 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-pulled-card-wrap { margin-top: -50px; }
  .cta-banner { padding: 2.5rem 1.5rem; margin: 0 0.5rem; border-radius: var(--radius); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .polaroid { max-width: 200px; padding: 8px 8px 32px; }
  .page-banner { height: 260px; }
  .impact-row { gap: 1.5rem; }
  .stamp-badge { width: 115px; height: 115px; }
  .stamp-number { font-size: 1.8rem; }
}
