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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #FAF5EC;
  --cream-deep:  #F2E8D5;
  --terra:       #C4603A;
  --terra-light: #E8906A;
  --terra-pale:  #F5DDD3;
  --brand:       #7B2D8B;
  --brand-light: #F0D9F5;
  --brand-mid:   #A855B8;
  --ink:         #2C1A0E;
  --ink-soft:    #5C3D2A;
  --muted:       #8B6E5A;
  --white:       #FFFFFF;
  --radius-card: 28px;
  --radius-img:  24px;
  --shadow-soft: 0 4px 24px rgba(44,26,14,0.10);
  --shadow-card: 0 8px 40px rgba(44,26,14,0.13);
  --shadow-polar: 0 6px 32px rgba(44,26,14,0.18);
}

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(--ink);
  line-height: 1.75;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.section--cream { background: var(--cream); }
.section--deep { background: var(--cream-deep); }
.section--terra { background: var(--terra-pale); }
.section--brand { background: var(--brand-light); }
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--cream); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  background: var(--cream);
  border-bottom: 2px dotted var(--terra-pale);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-lockup:hover { text-decoration: none; }

.brand-lockup .logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-lockup .wordmark {
  height: 28px;
  width: auto;
  object-fit: contain;
  /* dark artwork on transparent — shows fine on light header */
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--brand-light);
  color: var(--brand);
  text-decoration: none;
}

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  border-radius: 20px !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--terra-light) !important;
  color: var(--white) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--terra);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--terra);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 640px;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,14,0.35) 0%, rgba(44,26,14,0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 100px 24px 160px;
  margin: 0 auto 0 0;
  padding-left: max(24px, calc((100vw - 1140px) / 2 + 24px));
}

.hero__eyebrow {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero__sub {
  color: rgba(250,245,236,0.9);
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Pulled-up overlap card */
.hero-overlap {
  position: relative;
  z-index: 3;
  margin-top: -80px;
}

.hero-overlap__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  font-weight: 800;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); text-decoration: none; }

.btn-primary { background: var(--terra); color: var(--white); }
.btn-primary:hover { background: var(--terra-light); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.btn-brand { background: var(--brand); color: var(--white); }
.btn-brand:hover { background: var(--brand-mid); color: var(--white); }

.btn-terra { background: var(--terra); color: var(--white); }

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.card--cream {
  background: var(--cream);
  border: 2px solid var(--cream-deep);
}

/* Highlight cards (hero overlap) */
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--terra);
}

.highlight-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.highlight-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.highlight-card__blurb {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Impact stat cards */
.impact-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.impact-card__stat {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-card__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Programme cards */
.programme-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.programme-card__head {
  background: var(--cream-deep);
  padding: 28px 28px 20px;
  border-bottom: 2px dotted var(--terra-pale);
}

.programme-card__icon { font-size: 2.2rem; margin-bottom: 10px; }
.programme-card__title { font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; }
.programme-card__blurb { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

.programme-card__body {
  padding: 24px 28px 28px;
  flex: 1;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Blog / article teaser cards */
.article-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(44,26,14,0.18);
  text-decoration: none;
}

.article-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.article-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-card__dek {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.article-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   POLAROID / PHOTO GALLERY
   ============================================================ */

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  align-items: start;
}

.polaroid {
  background: var(--white);
  padding: 12px 12px 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-polar);
  border: 1.5px solid var(--cream-deep);
  display: inline-block;
}

.polaroid:nth-child(1) { transform: rotate(-2.5deg); }
.polaroid:nth-child(2) { transform: rotate(1.8deg) translateY(12px); }
.polaroid:nth-child(3) { transform: rotate(-1.2deg) translateY(-8px); }
.polaroid:nth-child(4) { transform: rotate(2.1deg) translateY(6px); }

.polaroid__img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.polaroid__caption {
  text-align: center;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   STAMP BADGE
   ============================================================ */

.stamp-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  box-shadow: 0 4px 20px rgba(196,96,58,0.4);
  border: 3px dashed rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.stamp-badge--brand {
  background: var(--brand);
  box-shadow: 0 4px 20px rgba(123,45,139,0.4);
}

.stamp-badge__big {
  font-size: 1.5rem;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

/* ============================================================
   SQUIGGLE DIVIDERS (inline SVG via background)
   ============================================================ */

.squiggle-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.squiggle-divider svg {
  display: block;
  width: 100%;
}

.squiggle-down { margin-bottom: -2px; }
.squiggle-up   { margin-top: -2px; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terra);
  margin-bottom: 12px;
}

.section-heading { margin-bottom: 16px; }

.section-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

/* ============================================================
   DOTTED ACCENT
   ============================================================ */

.dotted-box {
  border: 2px dotted var(--terra);
  border-radius: var(--radius-card);
  padding: 32px;
}

.dotted-box--brand {
  border-color: var(--brand);
}

/* ============================================================
   SPLIT / TWO-COL LAYOUTS
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--wide { grid-template-columns: 3fr 2fr; }
.split--rev  { }
.split--rev .split__img { order: 1; }
.split--rev .split__text { order: 2; }

.split__img img {
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

/* ============================================================
   STATS ROW
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Staggered rows */
.stagger-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stagger-row > * {
  flex: 1 1 280px;
}

.stagger-row > *:nth-child(even) {
  margin-top: 32px;
}

/* ============================================================
   WAY CARDS (Get Involved)
   ============================================================ */

.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--terra);
  position: relative;
  overflow: hidden;
}

.way-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--terra-pale);
  border-radius: 50%;
  opacity: 0.6;
}

.way-card--brand { border-left-color: var(--brand); }
.way-card--brand::before { background: var(--brand-light); }

.way-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.way-card__title { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.way-card__blurb { color: var(--ink-soft); line-height: 1.7; margin: 0; }

/* ============================================================
   TRUSTEE CARDS
   ============================================================ */

.trustee-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  border-top: 3px dotted var(--terra);
}

.trustee-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  border: 3px solid var(--brand);
}

.trustee-card__name { font-weight: 800; font-size: 1.1rem; margin-bottom: 4px; }
.trustee-card__role { font-size: 0.88rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   PULL QUOTE / TESTIMONIAL
   ============================================================ */

.pull-quote {
  border-left: 5px solid var(--terra);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--terra-pale);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.pull-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--cream-deep);
  border-radius: 14px;
  background: var(--white);
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
}

.form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   PAGE BANNERS (internal pages)
   ============================================================ */

.page-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.page-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.5;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,14,0.2) 0%, rgba(44,26,14,0.7) 100%);
}

.page-banner__content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.page-banner__content h1 { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.page-banner__content p { color: rgba(250,245,236,0.9); max-width: 560px; margin-top: 10px; font-size: 1.05rem; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */

.article-header { padding: 60px 0 40px; }

.article-header__eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 16px;
}

.article-header__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.article-header__dek {
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 680px;
  font-style: italic;
  font-weight: 500;
}

.article-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-img);
  margin-bottom: 48px;
  box-shadow: var(--shadow-card);
}

.article-body {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink);
}

.article-body p { margin-bottom: 1.5em; }

.article-body h2 {
  font-size: 1.5rem;
  margin: 2em 0 0.6em;
  color: var(--ink);
}

.article-nav-links {
  display: flex;
  gap: 20px;
  padding-top: 40px;
  border-top: 2px dotted var(--cream-deep);
  margin-top: 60px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 32px;
}

.site-footer .brand-lockup .wordmark {
  filter: invert(1) brightness(2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,245,236,0.15);
  margin-bottom: 32px;
}

.footer-brand__tagline {
  font-size: 0.92rem;
  color: rgba(250,245,236,0.7);
  margin: 16px 0 20px;
  line-height: 1.65;
}

.footer-brand__emails a {
  display: block;
  font-size: 0.85rem;
  color: var(--terra-light);
  margin-bottom: 4px;
  word-break: break-all;
}

.footer-brand__emails a:hover { color: var(--white); }

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,245,236,0.5);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(250,245,236,0.8);
  font-size: 0.92rem;
  font-weight: 600;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(250,245,236,0.5);
  margin: 0;
}

.footer-scio {
  display: inline-block;
  background: rgba(250,245,236,0.08);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: rgba(250,245,236,0.5);
  font-weight: 700;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.text-terra  { color: var(--terra); }
.text-brand  { color: var(--brand); }
.text-muted  { color: var(--muted); }
.text-cream  { color: var(--cream); }
.text-white  { color: var(--white); }

.bg-terra-pale { background: var(--terra-pale); }
.bg-brand-light { background: var(--brand-light); }

.rounded-full { border-radius: 50%; }

.full-bleed-img {
  width: 100%;
  border-radius: var(--radius-img);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.full-bleed-img--tall { height: 480px; }
.full-bleed-img--med  { height: 360px; }

/* ============================================================
   MISSION BLOCK
   ============================================================ */

.mission-block {
  background: var(--brand);
  border-radius: var(--radius-card);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mission-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 24px;
  font-size: 14rem;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.mission-block p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

/* ============================================================
   SCIO RIBBON
   ============================================================ */

.scio-ribbon {
  background: var(--brand-light);
  border-top: 2px dotted var(--brand);
  border-bottom: 2px dotted var(--brand);
  padding: 12px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .split,
  .split--wide    { grid-template-columns: 1fr; }
  .split--rev .split__img  { order: unset; }
  .split--rev .split__text { order: unset; }
  .grid-3         { grid-template-columns: 1fr 1fr; }
  .grid-4         { grid-template-columns: 1fr 1fr; }
  .stats-row      { grid-template-columns: 1fr 1fr; }
  .hero-overlap__inner { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section        { padding: 52px 0; }
  h1              { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero__content  { padding: 72px 20px 120px; }
  .grid-3         { grid-template-columns: 1fr; }
  .grid-2         { grid-template-columns: 1fr; }
  .grid-4         { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .polaroid-grid  { grid-template-columns: 1fr 1fr; }
  .polaroid:nth-child(n) { transform: none; }
  .stagger-row > *:nth-child(even) { margin-top: 0; }
  .hero-overlap   { margin-top: 0; }
  .nav-toggle     { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 24px;
    border-bottom: 2px dotted var(--terra-pale);
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .site-nav.open  { display: flex; }
  .site-header .container { position: relative; }
  .mission-block  { padding: 32px 24px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .article-nav-links { flex-direction: column; }
}
