/* ============================================================
   Vibrant Health Advocates – Gamma
   Warm & Human Community · Design System
   ============================================================ */

:root {
  --cream:            #FAF7F2;
  --cream-dark:       #F0E8DA;
  --cream-card:       #FFFDF9;
  --cream-border:     #E8DDD0;
  --terracotta:       #C4613A;
  --terracotta-light: #E5916A;
  --terracotta-pale:  #F7E2D8;
  --purple:           #7B2D8B;
  --purple-light:     #F0D9F5;
  --purple-mid:       #B87BC5;
  --purple-pale:      #F8F0FB;
  --text-dark:        #2A1810;
  --text-medium:      #5A3D2C;
  --text-light:       #876450;
  --white:            #FFFFFF;
  --radius-img:       24px;
  --radius-card:      18px;
  --radius-sm:        10px;
  --shadow-sm:        0 2px 10px rgba(42,24,16,0.07);
  --shadow-md:        0 6px 28px rgba(42,24,16,0.13);
  --shadow-lg:        0 16px 56px rgba(42,24,16,0.18);
  --shadow-polaroid:  4px 8px 32px rgba(42,24,16,0.20), 0 2px 6px rgba(42,24,16,0.10);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--mid   { max-width: 960px;  margin: 0 auto; padding: 0 28px; }
.container--narrow{ max-width: 760px;  margin: 0 auto; padding: 0 28px; }
section { padding: 84px 0; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.section-label--purple { color: var(--purple); }

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-intro h2 { margin-bottom: 16px; }
.section-intro p  { color: var(--text-medium); font-size: 1.08rem; }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--cream-card);
  border-bottom: 1px solid var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-nav__logo     { width: 40px; height: 40px; object-fit: contain; }
.site-nav__wordmark { height: 30px; width: auto; object-fit: contain; }
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: wrap;
}
.site-nav__links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-medium);
  padding: 7px 15px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.site-nav__links a:hover,
.site-nav__links a.active { background: var(--purple-light); color: var(--purple); }
.site-nav__cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
}
.site-nav__cta:hover { background: #a94f2e !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; }

/* ── STAMP BADGE ── */
.stamp-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.75);
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.5;
  padding: 10px;
}
.stamp-badge__year { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.stamp-badge--dark  {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--cream);
  box-shadow: 0 0 0 6px var(--terracotta-pale);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(42,24,16,0.75) 0%,
    rgba(42,24,16,0.50) 55%,
    rgba(42,24,16,0.22) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 28px 220px;
}
.hero__content h1 {
  color: var(--white);
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  margin: 22px 0 22px;
}
.hero__sub {
  color: rgba(255,255,255,0.90);
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.75;
}

/* ── PULLED CARD ── */
.pulled-card-wrap {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: -110px auto 0;
  padding: 0 28px;
}
.pulled-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 44px 52px;
  border-top: 5px solid var(--terracotta);
}
.pulled-card p {
  font-size: 1.12rem;
  line-height: 1.88;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ── SQUIGGLE DIVIDERS ── */
.squiggle-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 16px 0;
  display: flex;
  justify-content: center;
}
.squiggle-wrap svg { display: block; width: 100%; max-width: 1200px; height: 50px; }

/* ── HIGHLIGHT / FEATURE CARDS ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.highlight-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.highlight-card::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--terracotta);
}
.highlight-card:nth-child(2) { margin-top: 48px; }
.highlight-card:nth-child(2)::after { background: var(--purple); }
.highlight-card:nth-child(3) { margin-top: 20px; }
.highlight-card:nth-child(3)::after { background: var(--terracotta-light); }
.highlight-card__icon  { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.highlight-card__title { font-size: 1.18rem; font-weight: 800; margin-bottom: 12px; }
.highlight-card__blurb { font-size: 0.96rem; color: var(--text-medium); line-height: 1.72; }

/* ── IMPACT STATS ── */
.impact-band {
  background: var(--terracotta);
  padding: 64px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.impact-stat__number {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  display: block;
  letter-spacing: -0.03em;
}
.impact-stat__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.impact-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto;
  display: none;
}

/* ── POLAROID CARDS ── */
.polaroid-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.polaroid {
  background: var(--white);
  padding: 12px 12px 48px;
  border-radius: 5px;
  box-shadow: var(--shadow-polaroid);
  transform: rotate(-2.5deg);
  flex: 1;
  min-width: 200px;
  max-width: 380px;
  border: 1px solid var(--cream-border);
}
.polaroid:nth-child(2) { transform: rotate(1.8deg);  margin-top: 32px; }
.polaroid:nth-child(3) { transform: rotate(-1.3deg); margin-top: 16px; }
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
}
.polaroid__caption {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── PAGE BANNER ── */
.page-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,24,16,0.1) 0%, rgba(42,24,16,0.65) 100%);
}
.page-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 52px;
  width: 100%;
}
.page-banner__content h1 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.page-banner__content .section-label { color: var(--terracotta-light); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--purple);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(240,217,245,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p  { color: rgba(255,255,255,0.82); margin-bottom: 36px; font-size: 1.1rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.18s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary { background: var(--terracotta); color: var(--white); }
.btn--primary:hover { background: #a94f2e; }
.btn--purple  { background: var(--purple);    color: var(--white); }
.btn--purple:hover  { background: #611f70; }
.btn--white   { background: var(--white);     color: var(--terracotta); }
.btn--white:hover   { background: var(--cream); }
.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border: 2.5px solid var(--terracotta);
}
.btn--outline:hover { background: var(--terracotta); color: var(--white); }
.btn--lg { font-size: 1.12rem; padding: 18px 44px; }

/* ── STORY / TWO-COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col--flip { direction: rtl; }
.two-col--flip > * { direction: ltr; }

/* ── MISSION BOX ── */
.mission-box {
  background: var(--purple-pale);
  border: 2.5px dashed var(--purple-mid);
  border-radius: var(--radius-card);
  padding: 52px 48px;
  position: relative;
}
.mission-box::before {
  content: '"';
  position: absolute;
  top: -28px; left: 28px;
  font-size: 9rem;
  color: var(--purple-mid);
  opacity: 0.22;
  line-height: 1;
  font-weight: 900;
}
.mission-box p {
  font-size: 1.12rem;
  color: var(--purple);
  font-weight: 600;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* ── TRUSTEE CARDS ── */
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trustee-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--terracotta);
  text-align: center;
}
.trustee-card:nth-child(2) { border-bottom-color: var(--purple); margin-top: 32px; }
.trustee-card:nth-child(3) { border-bottom-color: var(--terracotta-light); }
.trustee-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--terracotta);
  border: 3px solid var(--cream-border);
}
.trustee-card:nth-child(2) .trustee-avatar { background: var(--purple-light); color: var(--purple); }
.trustee-card__name { font-weight: 800; font-size: 1.05rem; margin-bottom: 6px; }
.trustee-card__role { font-size: 0.8rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── PROGRAMME CARDS ── */
.programmes-list { display: flex; flex-direction: column; gap: 36px; }
.programme-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 36px;
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 40px 40px 40px 36px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--terracotta);
  align-items: start;
}
.programme-card:nth-child(even)  { border-left-color: var(--purple); }
.programme-card__icon {
  width: 88px; height: 88px;
  background: var(--terracotta-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
}
.programme-card:nth-child(even) .programme-card__icon { background: var(--purple-light); }
.programme-card__blurb {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.programme-card:nth-child(even) .programme-card__blurb { color: var(--purple); }
.programme-card h3  { margin-bottom: 10px; }
.programme-card__detail { font-size: 0.97rem; color: var(--text-medium); line-height: 1.78; }

/* ── WAYS CARDS (Get Involved) ── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.way-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--terracotta);
  text-align: center;
}
.way-card:nth-child(2) { border-top-color: var(--purple);          margin-top: 44px; }
.way-card:nth-child(3) { border-top-color: var(--terracotta-light); }
.way-card__icon  { font-size: 3rem;  margin-bottom: 20px; display: block; }
.way-card__title { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.way-card__blurb { font-size: 0.97rem; color: var(--text-medium); line-height: 1.72; }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.blog-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card:nth-child(2) { margin-top: 48px; }
.blog-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.blog-card__body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card__dek {
  font-size: 0.91rem;
  color: var(--text-medium);
  line-height: 1.65;
  flex: 1;
}
.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--terracotta);
  text-decoration: none;
}
.blog-card__read-more::after { content: '→'; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 52px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--terracotta);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; color: var(--text-medium); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color 0.18s, background 0.18s;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
}
.form-group textarea { min-height: 165px; resize: vertical; }

/* ── CONTACT DETAILS ── */
.contact-details {
  background: var(--terracotta-pale);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border: 2px dashed var(--terracotta-light);
}
.contact-details h3 { margin-bottom: 16px; font-size: 1.1rem; }
.contact-details p  { margin-bottom: 10px; font-size: 0.97rem; color: var(--text-medium); }
.contact-details a  { color: var(--terracotta); font-weight: 700; text-decoration: none; word-break: break-all; }
.contact-details a:hover { text-decoration: underline; }

/* ── ARTICLE ── */
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.article-tag  {
  display: inline-block;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
}
.article-dek {
  font-size: 1.22rem;
  color: var(--text-medium);
  line-height: 1.72;
  font-weight: 400;
  margin-bottom: 0;
}
.article-header-section { padding: 64px 0 40px; }
.article-img-section { padding: 0 0 56px; }
.article-img-section .polaroid { max-width: 800px; margin: 0 auto; transform: rotate(-1.5deg); }
.article-body-section { padding: 0 0 88px; }
.article-body-section p { font-size: 1.06rem; color: var(--text-medium); line-height: 1.85; margin-bottom: 1.35em; }
.article-body-section h3 { margin: 2.4em 0 0.8em; font-size: 1.3rem; }
.article-body-section strong { color: var(--text-dark); }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.article-back:hover { color: var(--purple); }
.tip-block {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  border-left: 4px solid var(--terracotta);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.tip-block:nth-child(even) { border-left-color: var(--purple); }
.tip-block h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-dark); }
.tip-block p  { margin-bottom: 0; }
.pull-quote {
  border-left: 4px solid var(--terracotta);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--terracotta-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 600;
}

/* ── DOTTED-BORDER ACCENT ── */
.dotted-band {
  border: 2.5px dashed var(--terracotta-light);
  border-radius: var(--radius-card);
  padding: 40px;
  background: var(--cream);
}

/* ── INTRO TEXT (home) ── */
.home-intro-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.9;
  max-width: 820px;
}
.home-intro-text p:first-child::first-letter {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 0.8;
  float: left;
  margin-right: 10px;
  color: var(--terracotta);
  padding-top: 6px;
}

/* ── BAND BACKGROUNDS ── */
.band--cream      { background: var(--cream); }
.band--cream-dark { background: var(--cream-dark); }
.band--purple     { background: var(--purple); }
.band--terracotta { background: var(--terracotta); }
.band--purple-pale { background: var(--purple-pale); }

/* ── FOOTER ── */
.site-footer { background: var(--text-dark); padding: 68px 0 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 52px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-lockup { display: flex; align-items: center; gap: 10px; }
.footer-lockup img.flogo { width: 38px; height: 38px; object-fit: contain; }
.footer-lockup img.fwordmark {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: invert(1) brightness(10);
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 0; }
.footer-emails { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.footer-emails a {
  color: var(--terracotta-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
  line-height: 1.4;
}
.footer-emails a:hover { text-decoration: underline; }
.footer-nav h4 {
  color: rgba(255,255,255,0.38);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.70);
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--terracotta-light); }
.site-footer__bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .highlights-grid  { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { 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: 1fr; gap: 20px; }
  .trustees-grid    { grid-template-columns: 1fr; }
  .trustee-card:nth-child(2) { margin-top: 0; }
  .two-col          { grid-template-columns: 1fr; gap: 40px; }
  .two-col--flip    { direction: ltr; }
  .programme-card   { grid-template-columns: 1fr; gap: 16px; }
  .form-row         { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero   { min-height: 560px; }
  .hero__content { padding: 72px 20px 200px; }
  .pulled-card-wrap { padding: 0 16px; margin-top: -90px; }
  .pulled-card { padding: 28px 24px; }
  .page-banner { height: 300px; }
  .contact-form { padding: 28px 20px; }
  .mission-box  { padding: 36px 24px; }
  .blog-grid    { grid-template-columns: 1fr; }
  .polaroid-row { flex-direction: column; align-items: center; }
  .polaroid     { transform: rotate(-1.5deg) !important; margin-top: 0 !important; }
  .nav-toggle   { display: flex; }
  .site-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream-card);
    flex-direction: column;
    padding: 12px;
    border-bottom: 2px solid var(--cream-border);
    box-shadow: var(--shadow-md);
  }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links a { padding: 10px 16px; width: 100%; border-radius: 10px; }
  .site-nav {position: sticky; }
}
