/* ================================================================
   VIBRANT HEALTH ADVOCATES – THETA
   Warm & Human Community Design System
   ================================================================ */

:root {
  --cream:          #FAF5EE;
  --cream-mid:      #F2E8D4;
  --cream-border:   #E0CCAA;
  --cream-white:    #FFFDF8;
  --terra:          #C4623A;
  --terra-light:    #E8937A;
  --terra-pale:     #FDF0EA;
  --terra-dark:     #9E4424;
  --purple:         #7B2D8B;
  --purple-light:   #F0D9F5;
  --purple-pale:    #FAF3FC;
  --purple-mid:     #B86AC7;
  --text-dark:      #2A1408;
  --text-mid:       #6B4230;
  --text-muted:     #9B7860;
  --white:          #FFFFFF;
  --shadow-xs:      0 2px 6px rgba(42,20,8,.08);
  --shadow-sm:      0 4px 16px rgba(42,20,8,.11);
  --shadow:         0 8px 32px rgba(42,20,8,.14);
  --shadow-lg:      0 16px 56px rgba(42,20,8,.18);
  --r-img:          26px;
  --r-card:         20px;
  --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, 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 1.0625rem;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---- Type scale ---- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.18; color: var(--text-dark); letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.65rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---- Layout helpers ---- */
.container      { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section        { padding: 80px 0; }
.section-sm     { padding: 56px 0; }

/* ================================================================
   HEADER / NAV
   ================================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 2px dashed var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 13px 28px;
  gap: 16px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.brand-icon    { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }
.brand-wordmark { height: 30px; width: auto; object-fit: contain; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.site-nav a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--text-mid);
  font-weight: 700;
  font-size: .9375rem;
  text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--purple-light);
  color: var(--purple);
  text-decoration: none;
}
.nav-cta, .nav-cta:hover {
  background: var(--terra) !important;
  color: var(--white) !important;
}
.nav-cta:hover { background: var(--terra-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--cream-border);
  border-radius: 8px;
  padding: 9px 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; }

/* ================================================================
   HERO (homepage)
   ================================================================ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(42,20,8,.76) 0%, rgba(123,45,139,.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 40px 300px 56px;
  max-width: 820px;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,217,245,.15);
  border: 2px solid rgba(240,217,245,.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .8125rem;
  font-weight: 800;
  color: var(--purple-light);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 22px;
  width: fit-content;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; max-width: 680px; }
.hero-content p  { color: rgba(255,255,255,.88); font-size: 1.125rem; max-width: 540px; line-height: 1.7; }

/* Overlap card pulled up over hero bottom */
.hero-overlap-zone {
  position: relative;
  z-index: 10;
  margin-top: -220px;
  padding-bottom: 0;
}
.hero-overlap-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: end;
}
.overlap-card-main {
  background: var(--cream-white);
  border-radius: var(--r-img);
  box-shadow: var(--shadow-lg);
  border: 7px solid var(--cream-white);
  overflow: hidden;
  transform: rotate(-1.5deg);
}
.overlap-card-main img { width: 100%; height: 260px; object-fit: cover; border-radius: calc(var(--r-img) - 5px); }
.overlap-card-main-body {
  padding: 20px 22px 22px;
  background: var(--cream-white);
}
.overlap-card-main-body p {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-mid);
  text-align: center;
  margin: 0;
}
.overlap-card-stats {
  background: var(--purple);
  border-radius: var(--r-card);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  color: var(--white);
}
.overlap-card-stats h3 { color: var(--purple-light); font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .08em; }
.mini-stat { margin-bottom: 16px; }
.mini-stat:last-child { margin-bottom: 0; }
.mini-stat-num { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.mini-stat-label { font-size: .8125rem; opacity: .75; margin-top: 2px; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(42,20,8,.78) 0%, rgba(123,45,139,.42) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 70px 28px 60px;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); max-width: 700px; }
.page-hero-content p  { color: rgba(255,255,255,.85); max-width: 580px; margin-top: 14px; font-size: 1.075rem; }

/* ================================================================
   SECTION LABELS & HEADERS
   ================================================================ */
.section-tag {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: var(--purple-light);
  color: var(--purple);
}
.section-tag--terra { background: var(--terra-pale); color: var(--terra); }
.section-tag--cream { background: rgba(255,255,255,.25); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.3); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-mid); font-size: 1.0625rem; }

/* ================================================================
   SQUIGGLE DIVIDERS
   ================================================================ */
.squiggle-wrap { width: 100%; overflow: hidden; line-height: 0; position: relative; z-index: 1; }
.squiggle-wrap svg { display: block; width: 100%; }

/* ================================================================
   STAMP BADGE
   ================================================================ */
.stamp {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  border: 3px dashed rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  padding: 12px;
  flex-shrink: 0;
}
.stamp--purple { background: var(--purple); }
.stamp--sm { width: 72px; height: 72px; font-size: .58rem; }

/* ================================================================
   POLAROID CARDS
   ================================================================ */
.polaroid {
  background: var(--white);
  border: 7px solid var(--white);
  border-radius: var(--r-img);
  box-shadow: var(--shadow-lg);
  padding: 0 0 22px;
  overflow: hidden;
  position: relative;
}
.polaroid img { width: 100%; object-fit: cover; display: block; }
.polaroid-caption {
  text-align: center;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 14px 16px 0;
}
.rotate-l2  { transform: rotate(-2.2deg); }
.rotate-r15 { transform: rotate(1.6deg); }
.rotate-l1  { transform: rotate(-1deg); }

/* ================================================================
   DOTTED CARD
   ================================================================ */
.dotted-card {
  border: 2px dashed var(--cream-border);
  border-radius: var(--r-card);
  background: var(--cream);
  padding: 32px 28px;
}

/* ================================================================
   HIGHLIGHT CARDS (staggered)
   ================================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-border);
}
.highlight-card:nth-child(2) { margin-top: 36px; background: var(--purple-pale); border-color: var(--purple-light); }
.highlight-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.highlight-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.highlight-card p  { font-size: .9375rem; color: var(--text-mid); margin: 0; }

/* ================================================================
   IMPACT STATS BAR
   ================================================================ */
.impact-bar {
  background: var(--purple);
  border-radius: 28px;
  padding: 52px 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.impact-bar::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.impact-bar::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.impact-item { text-align: center; position: relative; z-index: 1; }
.impact-num  { font-size: clamp(2.2rem,4.5vw,3.2rem); font-weight: 800; color: var(--purple-light); line-height: 1; }
.impact-lbl  { font-size: .9375rem; color: rgba(255,255,255,.8); margin-top: 6px; font-weight: 600; }

/* ================================================================
   PROGRAMME CARDS
   ================================================================ */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}
.programme-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 34px 30px;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}
.programme-card:nth-child(2) { margin-top: 36px; }
.programme-card:nth-child(4) { margin-top: 36px; }
.prog-icon { font-size: 2.3rem; margin-bottom: 16px; display: block; }
.programme-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.prog-blurb { font-weight: 600; color: var(--text-mid); margin-bottom: 14px; font-size: 1rem; }
.prog-detail { font-size: .9375rem; color: var(--text-muted); margin: 0; }

/* ================================================================
   BLOG CARDS
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.blog-card {
  display: block;
  background: var(--white);
  border-radius: var(--r-card);
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); text-decoration: none; }
.blog-card:nth-child(2) { margin-top: 36px; }
.blog-card-img { width: 100%; height: 210px; object-fit: cover; border-radius: 0; }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--terra-pale);
  color: var(--terra);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.1rem; line-height: 1.35; margin-bottom: 8px; }
.blog-card-dek { font-size: .9rem; color: var(--text-muted); margin: 0; }
.read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: .8125rem;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ================================================================
   WAYS / GET INVOLVED
   ================================================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.way-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 36px 28px;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.way-card:nth-child(2) { margin-top: 36px; background: var(--purple-pale); border-color: var(--purple-light); }
.way-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.way-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.way-card p  { font-size: .9375rem; color: var(--text-mid); margin: 0; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-block {
  background: var(--terra);
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 28px;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-block h2 { color: var(--white); max-width: 560px; margin: 0 auto 14px; position: relative; z-index: 1; }
.cta-block p  { color: rgba(255,255,255,.88); max-width: 480px; margin: 0 auto 28px; position: relative; z-index: 1; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform .15s, box-shadow .15s, background .18s;
  letter-spacing: .01em;
  position: relative;
  z-index: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.btn--white  { background: var(--white);  color: var(--terra); }
.btn--terra  { background: var(--terra);  color: var(--white); }
.btn--purple { background: var(--purple); color: var(--white); }
.btn--cream  { background: var(--cream);  color: var(--text-dark); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline:hover { background: rgba(255,255,255,.12); }

/* ================================================================
   SPLIT LAYOUT
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--3-2 { grid-template-columns: 3fr 2fr; }
.split--wide-img { gap: 48px; }

/* ================================================================
   MISSION BOX
   ================================================================ */
.mission-box {
  background: var(--purple);
  border-radius: var(--r-card);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.mission-box::after {
  content: '\201C';
  position: absolute;
  bottom: -30px; right: 24px;
  font-size: 14rem;
  font-weight: 800;
  opacity: .07;
  color: var(--white);
  line-height: 1;
}
.mission-box .section-tag { background: rgba(240,217,245,.18); color: var(--purple-light); border: 1px solid rgba(240,217,245,.3); margin-bottom: 16px; }
.mission-box h3 { color: var(--purple-light); margin-bottom: 16px; }
.mission-box p  { color: rgba(255,255,255,.9); font-size: 1.05rem; line-height: 1.78; position: relative; z-index: 1; margin: 0; }

/* ================================================================
   TRUSTEES
   ================================================================ */
.trustees-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px; }
.trustee-card {
  flex: 1 1 180px;
  background: var(--white);
  border: 2px solid var(--cream-border);
  border-radius: var(--r-card);
  padding: 22px 24px;
}
.trustee-name { font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.trustee-role { font-size: .875rem; color: var(--text-muted); }

/* ================================================================
   PHOTO BANNER (page-level full-bleed)
   ================================================================ */
.photo-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: var(--r-img) var(--r-img) 0 0;
}
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,20,8,.55) 0%, transparent 60%);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form { }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9375rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,45,139,.12);
}
.form-group textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-aside {
  background: var(--cream-mid);
  border-radius: var(--r-card);
  padding: 36px 32px;
  border: 2px dashed var(--cream-border);
}
.contact-aside h3 { font-size: 1.2rem; margin-bottom: 20px; }
.contact-detail { margin-bottom: 20px; }
.contact-detail strong { display: block; font-size: .8125rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }
.contact-detail a { color: var(--purple); font-size: .9375rem; word-break: break-all; }

/* ================================================================
   ARTICLE PAGE
   ================================================================ */
.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-img);
  margin: 32px 0;
}
.article-header { padding: 64px 0 32px; }
.article-header h1 { max-width: 780px; font-size: clamp(1.9rem,4vw,3rem); margin-bottom: 16px; }
.article-dek { font-size: 1.2rem; color: var(--text-mid); max-width: 680px; line-height: 1.65; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.article-meta time { font-size: .875rem; color: var(--text-muted); }

.article-body { max-width: 720px; }
.article-body p {
  color: var(--text-mid);
  font-size: 1.0625rem;
  line-height: 1.82;
  margin-bottom: 1.5em;
}
.article-body p:first-of-type::first-letter {
  font-size: 3.6em;
  font-weight: 800;
  float: left;
  line-height: .82;
  margin-right: 8px;
  color: var(--terra);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9375rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  text-decoration: none;
}
.article-back:hover { color: var(--purple); text-decoration: none; }

/* ================================================================
   ABOUT — STORY
   ================================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.story-img-wrap { position: relative; }
.story-stamp {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

/* What We Do pull quote */
.pull-quote {
  background: var(--terra-pale);
  border-left: 5px solid var(--terra);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 28px 32px;
  margin: 32px 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--terra-dark);
  line-height: 1.6;
}

/* Intro text block */
.intro-text { max-width: 740px; font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 68px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: .9375rem;
  color: rgba(255,255,255,.58);
  margin-top: 18px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .9375rem; text-decoration: none; transition: color .18s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-emails a { display: block; color: var(--purple-light); font-size: .875rem; word-break: break-all; margin-bottom: 6px; }
.footer-emails a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.38); margin: 0; }
.oscr-pill {
  background: rgba(240,217,245,.1);
  border: 1px solid rgba(240,217,245,.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
}

/* ================================================================
   UTILITY
   ================================================================ */
.text-terra  { color: var(--terra); }
.text-purple { color: var(--purple); }
.text-mid    { color: var(--text-mid); }
.bg-cream-mid { background: var(--cream-mid); }
.bg-cream     { background: var(--cream); }
.bg-terra-pale{ background: var(--terra-pale); }
.bg-purple-pale{ background: var(--purple-pale); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .highlights-grid       { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2) { margin-top: 0; }
  .programmes-grid       { grid-template-columns: 1fr; }
  .programme-card:nth-child(2),
  .programme-card:nth-child(4) { margin-top: 0; }
  .blog-grid             { grid-template-columns: 1fr; }
  .blog-card:nth-child(2) { margin-top: 0; }
  .ways-grid             { grid-template-columns: 1fr; }
  .way-card:nth-child(2) { margin-top: 0; }
  .story-grid            { grid-template-columns: 1fr; gap: 32px; }
  .story-stamp           { bottom: -10px; right: 10px; }
  .split                 { grid-template-columns: 1fr; gap: 36px; }
  .split--3-2            { grid-template-columns: 1fr; }
  .contact-grid          { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; gap: 32px; }
  .hero-overlap-inner    { grid-template-columns: 1fr; }
  .overlap-card-stats    { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 2px solid var(--cream-border);
    box-shadow: var(--shadow);
    z-index: 100;
  }
  .site-nav.open { display: flex; }
  .site-nav li { width: 100%; }
  .site-nav a { width: 100%; border-radius: var(--r-sm); }

  .hero-content { padding: 100px 24px 260px; }
  .hero-overlap-zone { margin-top: -180px; }
  .hero-overlap-inner { padding: 0 20px; }

  .cta-block { padding: 48px 24px; margin: 60px 16px; border-radius: 24px; }
  .impact-bar { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }

  .form-row { grid-template-columns: 1fr; }
  .article-hero-img { height: 260px; }
  .page-hero { min-height: 280px; }
  .page-hero-content { padding: 50px 24px 44px; }
  .mission-box { padding: 36px 24px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .footer-grid { gap: 28px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 80px 20px 200px; }
  .hero-overlap-zone { margin-top: -140px; }
  .brand-wordmark { height: 22px; }
  .brand-icon { width: 36px; height: 36px; }
  .section { padding: 56px 0; }
  .container, .container-wide { padding: 0 20px; }
  .article-hero-img { height: 210px; border-radius: var(--r-sm); }
}
