/* ============================================================
   VIBRANT HEALTH ADVOCATES – NORTH STAR
   Design Archetype: Warm & Human Community
   ============================================================ */

:root {
  --cream:          #FDF6EC;
  --cream-deep:     #F0E0C4;
  --cream-card:     #FFF9F2;
  --terracotta:     #C4622D;
  --terra-light:    #E8845A;
  --brand:          #7B2D8B;
  --brand-light:    #F0D9F5;
  --brand-mid:      #A96BBC;
  --text:           #2C1810;
  --text-mid:       #5C3D2E;
  --text-muted:     #8B6655;
  --white:          #FFFFFF;
  --radius-img:     24px;
  --radius-card:    20px;
  --radius-sm:      12px;
  --shadow-soft:    0 4px 24px rgba(44,24,16,.10);
  --shadow-card:    0 10px 44px rgba(44,24,16,.16);
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── NAV ───────────────────────────────────────────────────── */
.site-nav {
  background: var(--cream-card);
  border-bottom: 2px dotted var(--terracotta);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand .logo-icon { width: 46px; height: 46px; object-fit: contain; }
.nav-brand .wordmark  { height: 34px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text);
  font-weight: 700;
  font-size: .88rem;
  padding: .38rem .82rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--brand-light); color: var(--brand); }
.nav-links .nav-cta a {
  background: var(--terracotta);
  color: var(--white);
  padding: .42rem 1.1rem;
}
.nav-links .nav-cta a:hover { background: var(--brand); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--terracotta);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: .5rem .6rem;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ─── HERO (HOMEPAGE) ───────────────────────────────────────── */
.hero { position: relative; }
.hero-photo {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(44,24,16,.22) 0%,
    rgba(44,24,16,.52) 55%,
    rgba(44,24,16,.72) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 5rem;
  text-align: center;
  color: var(--white);
  z-index: 2;
}
.hero-content .hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(240,217,245,.25);
  border: 1px solid rgba(240,217,245,.5);
  border-radius: 999px;
  padding: .3rem 1rem;
  margin-bottom: 1.1rem;
  color: var(--brand-light);
}
.hero-content h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
  max-width: 820px;
}
.hero-content .hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.22);
}
.hero-btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: .78rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(196,98,45,.45);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.hero-btn:hover {
  background: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(123,45,139,.4);
  text-decoration: none;
  color: var(--white);
}

/* Pull-up card overlaps hero bottom */
.hero-pullup {
  position: relative;
  z-index: 10;
  margin-top: -72px;
  padding: 0 2rem;
}
.hero-pullup .pullup-inner {
  max-width: 920px;
  margin: 0 auto;
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 2.5rem 3.5rem;
  box-shadow: var(--shadow-card);
  border: 2.5px solid var(--cream-deep);
}
.hero-pullup p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 500;
  text-align: center;
}

/* ─── GENERAL SECTIONS ──────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section--deep  { background: var(--cream-deep); }
.section--brand { background: var(--brand-light); }
.section--terra { background: var(--terracotta); }
.section--dark  { background: var(--text); color: var(--cream); }

.inner         { max-width: 1200px; margin: 0 auto; }
.inner--narrow { max-width: 820px;  margin: 0 auto; }
.inner--mid    { max-width: 960px;  margin: 0 auto; }

/* ─── TYPOGRAPHY AIDS ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,98,45,.1);
  padding: .28rem .9rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}
.section-label--brand {
  color: var(--brand);
  background: rgba(123,45,139,.1);
}
.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.section-heading--white { color: var(--white); }
.section-heading--center { text-align: center; }
.section-intro {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 680px;
  margin-bottom: 2.5rem;
}
.section-intro--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro--white  { color: rgba(255,255,255,.85); }

.body-para {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 1rem;
  padding: .82rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn--terra { background: var(--terracotta); color: var(--white); }
.btn--terra:hover { background: #a84e23; color: var(--white); }
.btn--brand { background: var(--brand); color: var(--white); }
.btn--brand:hover { background: #5d2070; color: var(--white); }
.btn--white { background: var(--white); color: var(--terracotta); }
.btn--white:hover { background: var(--cream); color: var(--terracotta); }
.btn--outline {
  background: transparent;
  border: 2.5px solid var(--white);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.12); }

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

.squiggle-line {
  text-align: center;
  margin: 2.5rem 0;
  line-height: 0;
}
.squiggle-line svg { display: inline-block; }

/* ─── POLAROID CARDS ────────────────────────────────────────── */
.polaroid {
  display: inline-block;
  background: var(--white);
  padding: 10px 10px 36px;
  box-shadow: var(--shadow-card);
  border-radius: 6px;
  position: relative;
}
.polaroid img {
  border-radius: var(--radius-img);
  width: 100%;
  object-fit: cover;
  display: block;
}
.polaroid .polaroid-cap {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
  font-style: italic;
}
.tilt-l  { transform: rotate(-2.8deg); }
.tilt-r  { transform: rotate( 2.2deg); }
.tilt-ll { transform: rotate(-1.4deg); }
.tilt-rr { transform: rotate( 3.1deg); }

/* ─── HIGHLIGHTS / FEATURE CARDS ───────────────────────────── */
.cards-stagger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.cards-stagger .card:nth-child(even) { margin-top: 2.5rem; }

.card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-deep);
}
.card--dotted  { border: 2px dotted var(--brand-mid); }
.card--terra   { border: 2px dotted var(--terra-light); }
.card-icon     { font-size: 2.2rem; margin-bottom: .9rem; display: block; }
.card-title    { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: .65rem; }
.card-blurb    { color: var(--text-mid); line-height: 1.75; font-size: .97rem; }

/* ─── IMPACT STATS ──────────────────────────────────────────── */
.impact-section {
  text-align: center;
}
.impact-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  align-items: center;
}
.impact-stat {}
.stat-number {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-mid);
  display: block;
  margin-top: .4rem;
}

/* Stamp badge */
.stamp-badge {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 3px dashed var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1.2rem;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terracotta);
  background: rgba(196,98,45,.07);
  transform: rotate(-9deg);
  line-height: 1.4;
  flex-shrink: 0;
}

/* ─── SPLIT LAYOUT ──────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }
.split--top { align-items: start; }

/* ─── PHOTO BANNER (FULL-BLEED) ─────────────────────────────── */
.photo-banner-wrap { position: relative; }
.photo-banner {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(44,24,16,.15) 0%,
    rgba(44,24,16,.55) 100%
  );
}
.photo-banner-text {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  right: 2rem;
  color: var(--white);
  max-width: 700px;
}
.photo-banner-text h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: .75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.photo-banner-text .lede {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 1px 5px rgba(0,0,0,.2);
}

/* ─── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--terracotta);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.cta-band .btn { position: relative; z-index: 1; }

/* ─── PAGE HERO (INTERNAL) ──────────────────────────────────── */
.page-hero {
  padding: 4rem 2rem 3.5rem;
  background: var(--cream-deep);
  border-bottom: 2.5px dotted var(--terracotta);
}
.page-hero .section-label { margin-bottom: .8rem; }
.page-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 1rem;
}
.page-hero .lede {
  font-size: 1.18rem;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.7;
  font-weight: 500;
}

/* ─── MISSION BLOCK ─────────────────────────────────────────── */
.mission-block {
  background: var(--brand);
  border-radius: var(--radius-card);
  padding: 3rem 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: 1rem;
  font-size: 14rem;
  color: rgba(255,255,255,.07);
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}
.mission-block .mission-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(240,217,245,.18);
  padding: .28rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.mission-block p {
  font-size: 1.08rem;
  line-height: 1.88;
  position: relative;
  z-index: 1;
}

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

/* ─── TRUSTEES ──────────────────────────────────────────────── */
.trustee-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trustee-card {
  flex: 1;
  min-width: 170px;
  background: var(--cream-card);
  border: 2px dotted var(--brand-mid);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.trustee-name { font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: .3rem; }
.trustee-role { font-size: .82rem; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .07em; }

/* ─── PROGRAMME ITEMS ───────────────────────────────────────── */
.programme-item {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 2px solid var(--cream-deep);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: .75rem 1.75rem;
  align-items: start;
}
.prog-icon { font-size: 2.2rem; line-height: 1; padding-top: .3rem; }
.prog-title { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.prog-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 999px;
  padding: .18rem .75rem;
  margin-bottom: .75rem;
}
.prog-blurb { color: var(--brand); font-weight: 700; font-size: .97rem; margin-bottom: .7rem; }
.prog-detail { color: var(--text-mid); line-height: 1.82; font-size: .97rem; }

/* ─── BLOG CARDS ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-deep);
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.blog-card .card-img { width: 100%; height: 230px; object-fit: cover; display: block; }
.blog-card .card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .card-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terracotta);
  margin-bottom: .5rem;
}
.blog-card .card-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: .6rem; line-height: 1.3; }
.blog-card .card-dek   { color: var(--text-mid); font-size: .94rem; line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.blog-card .card-link  {
  font-weight: 800;
  color: var(--brand);
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  text-decoration: none;
}
.blog-card .card-link:hover { color: var(--terracotta); text-decoration: none; }
.blog-card .card-link::after { content: '→'; }

/* ─── WAYS CARDS ────────────────────────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.way-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-deep);
  transition: transform .2s;
}
.way-card:nth-child(2) { margin-top: 2rem; }
.way-card:hover { transform: translateY(-4px); }
.way-icon  { font-size: 2.6rem; margin-bottom: 1rem; display: block; }
.way-title { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: .7rem; }
.way-blurb { color: var(--text-mid); line-height: 1.75; font-size: .97rem; }

/* ─── ARTICLE ───────────────────────────────────────────────── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 2rem 4rem; }
.article-img {
  width: 100%;
  border-radius: var(--radius-img);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-card);
  max-height: 500px;
  object-fit: cover;
}
.article-meta {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.article-title {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.13;
  color: var(--text);
  margin-bottom: .8rem;
}
.article-dek {
  font-size: 1.18rem;
  color: var(--text-mid);
  line-height: 1.72;
  font-weight: 500;
  margin-bottom: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 2px dotted var(--cream-deep);
}
.article-body p { color: var(--text-mid); line-height: 1.88; font-size: 1.04rem; margin-bottom: 1.5rem; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--brand);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 2.5rem;
  text-decoration: none;
}
.article-back:hover { color: var(--terracotta); text-decoration: none; }
.article-back::before { content: '←'; }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 2.75rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-deep);
}
.contact-form-wrap h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; color: var(--text); margin-bottom: .45rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .72rem 1rem;
  border: 2px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .98rem;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
}
.form-group textarea { min-height: 130px; }

.contact-aside h3 { font-size: 1.4rem; font-weight: 900; color: var(--text); margin-bottom: 1.75rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px dotted var(--cream-deep);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .det-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-detail .det-body { font-size: .93rem; color: var(--text-mid); line-height: 1.65; }
.contact-detail .det-body strong { display: block; color: var(--text); font-weight: 700; margin-bottom: .15rem; }
.contact-detail .det-body a { color: var(--brand); word-break: break-all; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--text); color: var(--cream); padding: 4.5rem 2rem 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,246,236,.13);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
  text-decoration: none;
}
.footer-brand .logo-icon { width: 42px; height: 42px; object-fit: contain; }
.footer-brand .wordmark  { height: 30px; width: auto; object-fit: contain; filter: invert(1) brightness(3); }
.footer-about { font-size: .9rem; color: rgba(253,246,236,.68); line-height: 1.72; }
.footer-col-heading {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terra-light);
  margin-bottom: 1rem;
}
.footer-nav-links { list-style: none; }
.footer-nav-links li { margin-bottom: .45rem; }
.footer-nav-links a {
  color: rgba(253,246,236,.72);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-nav-links a:hover { color: var(--cream); text-decoration: none; }
.footer-emails { list-style: none; }
.footer-emails li { margin-bottom: .85rem; }
.footer-emails a {
  color: var(--brand-light);
  font-size: .82rem;
  text-decoration: none;
  word-break: break-all;
  display: block;
  line-height: 1.5;
}
.footer-emails a:hover { color: var(--white); text-decoration: underline; }
.footer-address { font-size: .85rem; color: rgba(253,246,236,.55); line-height: 1.7; margin-top: 1rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(253,246,236,.42); }

/* ─── UTILITY ───────────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .cards-stagger { grid-template-columns: 1fr; }
  .cards-stagger .card:nth-child(even) { margin-top: 0; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--flip { direction: ltr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2) { margin-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .programme-item { grid-template-columns: 2.5rem 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-card);
    border-bottom: 2px dotted var(--terracotta);
    padding: 1rem 1.5rem 1.5rem;
    gap: .3rem;
    box-shadow: 0 8px 24px rgba(44,24,16,.12);
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }

  .hero-photo { height: 500px; }
  .hero-content { padding: 2.5rem 1.25rem 6rem; }
  .hero-pullup { margin-top: -56px; padding: 0 1.25rem; }
  .hero-pullup .pullup-inner { padding: 1.75rem 1.5rem; }

  .section { padding: 3rem 1.25rem; }
  .page-hero { padding: 2.5rem 1.25rem; }
  .photo-banner { height: 300px; }
  .photo-banner-text h1 { font-size: 1.6rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trustee-row { flex-direction: column; }
  .impact-row { gap: 2rem; }
  .programme-item { grid-template-columns: 1fr; gap: .5rem; }
  .mission-block { padding: 2rem 1.75rem; }
  .dotted-box { padding: 1.75rem 1.5rem; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .article-wrap { padding: 2rem 1.25rem 3rem; }
  .hero-pullup .pullup-inner p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-photo { height: 440px; }
  .ways-grid { grid-template-columns: 1fr; }
}
