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

:root {
  --cream: #FAF6F0;
  --cream-warm: #F5EDE0;
  --cream-border: #E8D5BE;
  --cream-deep: #EDE0D0;
  --terracotta: #C0714F;
  --terracotta-light: #E8A882;
  --terracotta-pale: #FAE8DF;
  --brand: #7B2D8B;
  --brand-light: #F0D9F5;
  --brand-mid: #9B4DAB;
  --brown: #8B5E3C;
  --text: #2C1810;
  --text-mid: #6B4C3B;
  --text-light: #9E8A7A;
  --white: #FFFDF9;
  --shadow: 0 4px 24px rgba(44,24,16,0.10);
  --shadow-card: 0 10px 44px rgba(44,24,16,0.17);
  --radius-img: 26px;
  --radius-card: 20px;
  --font: system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--cream); color: var(--text); line-height: 1.78; font-size: 17px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); }
a:hover { color: var(--brand-mid); }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
  position: relative;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup img.logo-icon { height: 42px; width: auto; }
.brand-lockup img.wordmark  { height: 30px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.8vw, 1.5rem);
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.nav-cta {
  background: var(--brand) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 999px !important;
  border-bottom: none !important;
  font-weight: 800 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--brand-mid) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 7px 9px;
  color: var(--text);
  flex-shrink: 0;
}

/* ── HERO (homepage) ── */
.hero { position: relative; }
.hero-image-wrap {
  position: relative;
  height: clamp(440px, 62vh, 600px);
  overflow: hidden;
  border-radius: 0 0 44px 44px;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,24,16,.18) 0%, rgba(44,24,16,.68) 100%);
  border-radius: 0 0 44px 44px;
}
.hero-text {
  position: absolute;
  top: 9%;
  left: 50%; transform: translateX(-50%);
  width: min(820px, 90vw);
  text-align: center;
  color: var(--white);
  z-index: 2;
  padding: 0 1rem;
}
.hero-text h1 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: .8rem;
  text-shadow: 0 2px 28px rgba(0,0,0,.4);
}
.hero-text .hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  line-height: 1.75;
  opacity: .92;
  max-width: 620px;
  margin: 0 auto;
  text-shadow: 0 1px 14px rgba(0,0,0,.3);
}
.hero-card {
  position: relative;
  max-width: 700px;
  margin: -72px auto 0;
  background: var(--white);
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.75rem, 4vw, 3rem);
  border: 3px solid var(--cream-border);
  box-shadow: 0 16px 60px rgba(44,24,16,.22);
  text-align: center;
  z-index: 5;
}
.hero-card p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hero-card .btn-primary { display: inline-block; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--brand);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 34px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(123,45,139,.32);
  display: inline-block;
}
.btn-primary:hover { background: var(--brand-mid); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--brand) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 30px;
  border-radius: 999px;
  text-decoration: none !important;
  border: 2.5px solid var(--brand);
  transition: background .2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--brand-light); }
.btn-white {
  background: var(--white);
  color: var(--brand) !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 38px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 22px rgba(0,0,0,.22);
  display: inline-block;
}
.btn-white:hover { opacity: .92; transform: translateY(-1px); }
.btn-terracotta {
  background: var(--terracotta);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 34px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(192,113,79,.32);
  display: inline-block;
}
.btn-terracotta:hover { background: #A85D3F; transform: translateY(-1px); }

/* ── LAYOUT UTILITIES ── */
.section { padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,2.5rem); }
.section-sm { padding: clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,2.5rem); }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-terracotta-pale { background: var(--terracotta-pale); }
.text-center { text-align: center; }

/* ── SECTION LABELS + HEADINGS ── */
.section-label {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.section-label.terra {
  background: var(--terracotta-pale);
  color: var(--terracotta);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 680px;
}
.section-lead.wide { max-width: 820px; }

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

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--white);
  padding: clamp(2.5rem,5vw,4rem) clamp(1rem,4vw,2.5rem) clamp(1.5rem,3vw,2.5rem);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .7rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .dek {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--text-mid);
  line-height: 1.78;
  max-width: 640px;
  margin: 0 auto;
}

/* ── PHOTO BANNER ── */
.photo-banner {
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  overflow: hidden;
  border-radius: 0 0 36px 36px;
  position: relative;
}
.photo-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.photo-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(44,24,16,.08),rgba(44,24,16,.4));
  border-radius: 0 0 36px 36px;
}

/* ── INTRO SECTION (homepage) ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.intro-text p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 1.03rem;
}
.intro-imagery {
  position: relative;
  height: 420px;
}
.polaroid {
  position: absolute;
  background: var(--white);
  padding: 10px 10px 36px;
  border: 2.5px solid var(--cream-border);
  box-shadow: var(--shadow-card);
  border-radius: 6px;
}
.polaroid img {
  display: block;
  object-fit: cover;
  border-radius: 16px;
}
.polaroid-caption {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 10px;
}
.polaroid-a { width: 66%; top: 0; right: 0; transform: rotate(2.2deg); z-index: 1; }
.polaroid-a img { width: 100%; height: 210px; }
.polaroid-b { width: 54%; bottom: 10px; left: 0; transform: rotate(-3.4deg); z-index: 2; }
.polaroid-b img { width: 100%; height: 175px; }

/* ── HIGHLIGHT CARDS ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
  position: relative;
}
.highlight-card:nth-child(2) { transform: translateY(22px); }
.highlight-card:nth-child(3) { transform: translateY(-12px); }
.highlight-dot-bar {
  position: absolute;
  top: 0; left: 22px;
  width: 44px; height: 5px;
  background: repeating-linear-gradient(
    to right,
    var(--terracotta) 0, var(--terracotta) 5px,
    transparent 5px, transparent 10px
  );
  border-radius: 3px;
}
.highlight-icon { font-size: 2.2rem; display: block; margin-bottom: .75rem; }
.highlight-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
}
.highlight-card p { color: var(--text-mid); line-height: 1.78; font-size: .97rem; }

/* ── IMPACT / STAMP BADGES ── */
.impact-row {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-top: 2rem;
}
.stamp {
  width: 165px; height: 165px;
  border-radius: 50%;
  border: 3.5px dashed var(--terracotta);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
}
.stamp::before {
  content: '';
  position: absolute; inset: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-border);
}
.stamp-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  position: relative;
}
.stamp-label {
  font-size: .76rem;
  font-weight: 700;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.3;
  padding: 0 12px;
  margin-top: 5px;
  position: relative;
}

/* ── PROGRAMME CARDS ── */
.programmes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.programme-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.programme-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(to right, var(--brand-light), var(--terracotta-pale));
}
.programme-card .prog-icon { font-size: 2rem; display: block; margin-bottom: .7rem; }
.programme-card h3 { font-size: 1.18rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.programme-card .blurb { color: var(--text-mid); font-weight: 600; margin-bottom: .75rem; font-size: .97rem; }
.programme-card .detail {
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.78;
  border-top: 1.5px dashed var(--cream-border);
  padding-top: .75rem;
  margin-top: .5rem;
}

/* ── WAYS CARDS (Get Involved) ── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.25rem 1.75rem;
  border: 2.5px dashed var(--cream-border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.way-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.way-card:nth-child(2) { transform: translateY(18px); }
.way-card:nth-child(2):hover { transform: translateY(13px); }
.way-icon { font-size: 2.6rem; display: block; margin-bottom: .75rem; }
.way-card h3 { font-size: 1.22rem; font-weight: 800; color: var(--text); margin-bottom: .7rem; }
.way-card p { color: var(--text-mid); line-height: 1.78; font-size: .97rem; }

/* ── TRUSTEES ── */
.trustees-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trustee-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 190px;
  flex: 1;
}
.trustee-initial {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
  border: 3px solid var(--brand);
}
.trustee-card .t-name { font-weight: 800; color: var(--text); font-size: 1rem; display: block; }
.trustee-card .t-role { color: var(--terracotta); font-size: .88rem; font-weight: 700; }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: start;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-card:nth-child(2) { transform: translateY(16px); }
.blog-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.blog-card:nth-child(2):hover { transform: translateY(12px); }
.blog-card-img {
  width: 100%; height: 210px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.04rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; line-height: 1.38; }
.blog-card .dek { color: var(--text-mid); font-size: .92rem; line-height: 1.72; flex: 1; margin-bottom: 1rem; }
.blog-card .read-more {
  color: var(--brand);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
}
.blog-card .read-more::after { content: '→'; transition: transform .15s; }
.blog-card .read-more:hover::after { transform: translateX(3px); }

/* ── MISSION BOX ── */
.mission-box {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--terracotta-pale) 100%);
  border-radius: 28px;
  padding: clamp(2rem,4vw,3rem);
  border: 2px solid var(--cream-border);
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '\201C';
  position: absolute; top: -30px; left: 16px;
  font-size: 14rem;
  color: rgba(123,45,139,.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.mission-box p {
  color: var(--text-mid);
  font-size: 1.07rem;
  line-height: 1.88;
  position: relative;
}
.mission-box p + p { margin-top: 1.1rem; }

/* ── STORY GRID ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,4rem);
  align-items: center;
}
.story-img {
  width: 100%;
  height: clamp(320px,40vw,460px);
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
  display: block;
}
.story-text h2 {
  font-size: clamp(1.65rem,2.8vw,2.2rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.story-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; font-size: 1.02rem; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, #9B4DAB 100%);
  color: var(--white);
  text-align: center;
  padding: clamp(3rem,6vw,4.5rem) clamp(1rem,4vw,2.5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -70px; right: -70px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -90px; left: -50px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-band h2 {
  font-size: clamp(1.7rem,3.5vw,2.4rem);
  font-weight: 900;
  margin-bottom: .75rem;
  position: relative; z-index: 1;
}
.cta-band p {
  font-size: 1.05rem; opacity: .9;
  margin-bottom: 1.75rem;
  position: relative; z-index: 1;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-band p + .btn-white { position: relative; z-index: 1; }
.cta-band .btn-white { position: relative; z-index: 1; }

/* ── WHAT WE DO ── */
.wwd-text { max-width: 820px; margin: 0 auto; }
.wwd-text p {
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 1.25rem;
  font-size: 1.04rem;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem,5vw,4rem);
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem,4vw,2.75rem);
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
  font-size: .94rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-border);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, background .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  background: var(--white);
}
.form-group textarea { min-height: 155px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: var(--font);
  box-shadow: 0 4px 18px rgba(123,45,139,.3);
}
.form-submit:hover { background: var(--brand-mid); transform: translateY(-1px); }
.contact-sidebar h3 {
  font-size: 1.18rem; font-weight: 800;
  color: var(--text); margin-bottom: 1.1rem;
}
.contact-item {
  display: flex; align-items: flex-start;
  gap: 12px; margin-bottom: 1.5rem;
}
.contact-item .ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item .ci-label { font-weight: 700; color: var(--text); font-size: .88rem; display: block; margin-bottom: 2px; }
.contact-item a {
  color: var(--brand);
  font-size: .9rem;
  word-break: break-all;
  text-decoration: none;
  display: block;
}
.contact-item a:hover { text-decoration: underline; }
.contact-item p { color: var(--text-mid); font-size: .92rem; line-height: 1.6; }
.contact-note {
  background: var(--brand-light);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--cream-border);
  margin-top: 1.5rem;
}
.contact-note p {
  color: var(--brand);
  font-size: .92rem;
  line-height: 1.7;
  font-weight: 600;
}

/* ── ARTICLE ── */
.article-header {
  background: var(--white);
  padding: clamp(2.5rem,5vw,4rem) clamp(1rem,4vw,2.5rem) 0;
  text-align: center;
}
.article-header h1 {
  font-size: clamp(1.7rem,3.5vw,2.6rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.22;
  max-width: 760px;
  margin: 0 auto .8rem;
}
.article-header .dek {
  color: var(--text-mid);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
.article-img-wrap {
  padding: clamp(1.5rem,3vw,2.5rem) clamp(1rem,4vw,2.5rem) 0;
  max-width: 960px;
  margin: 0 auto;
}
.article-img-wrap img {
  width: 100%;
  height: clamp(260px,38vw,460px);
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
  display: block;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem,4vw,3rem) clamp(1rem,4vw,2rem) clamp(3rem,5vw,4.5rem);
}
.article-body p {
  color: var(--text-mid);
  line-height: 1.92;
  margin-bottom: 1.3rem;
  font-size: 1.06rem;
}
.article-body h2 {
  font-size: 1.5rem; font-weight: 800;
  color: var(--text); margin: 2rem 0 .75rem;
}
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-weight: 700; font-size: .93rem;
  text-decoration: none;
  margin: 0 0 2rem;
}
.article-back::before { content: '←'; }
.article-back:hover { text-decoration: underline; }

/* ── FOOTER ── */
.site-footer {
  background: #2C1810;
  color: #C8B5A8;
  padding: clamp(3rem,5vw,4.5rem) clamp(1rem,4vw,2.5rem) 1.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-brand .brand-lockup { margin-bottom: 1rem; }
.footer-brand .brand-lockup img.wordmark { filter: invert(1); }
.footer-brand p { font-size: .92rem; line-height: 1.75; color: #C8B5A8; }
.footer-col h4 {
  font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--white); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: #C8B5A8; text-decoration: none; font-size: .92rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-email {
  display: block;
  color: #F0D9F5 !important;
  font-size: .86rem;
  word-break: break-all;
  margin-bottom: .6rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-email:hover { color: var(--white) !important; }
.footer-col .reg-note { font-size: .82rem; color: #9E8A7A; line-height: 1.6; margin-top: 1rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: #9E8A7A; }

/* ── MISC ── */
.dotted-rule {
  border: none;
  border-top: 2px dashed var(--cream-border);
  margin: 2.5rem 0;
}
.inline-stamp {
  display: inline-flex; align-items: center;
  background: var(--terracotta-pale);
  border: 2px dashed var(--terracotta);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--terracotta);
  gap: 6px;
}
.about-paras p { color: var(--text-mid); line-height: 1.88; margin-bottom: 1.2rem; font-size: 1.04rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .intro-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2), .highlight-card:nth-child(3) { transform: none; }
  .programmes-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2) { transform: none; }
  .way-card:nth-child(2):hover { transform: translateY(-5px); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:nth-child(2) { transform: none; }
  .blog-card:nth-child(2):hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .intro-imagery { height: 320px; }
  .polaroid-a { width: 62%; }
  .polaroid-a img { height: 165px; }
  .polaroid-b { width: 50%; }
  .polaroid-b img { height: 140px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    border-bottom: 2px solid var(--cream-border);
    box-shadow: var(--shadow-card);
    gap: .9rem;
    z-index: 199;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-text h1 { font-size: 1.75rem; }
  .hero-card { margin-top: -40px; }
  .footer-top { grid-template-columns: 1fr; }
  .impact-row { gap: 1.5rem; }
  .stamp { width: 140px; height: 140px; }
  .stamp-num { font-size: 1.85rem; }
  .trustees-row { flex-direction: column; }
  .trustee-card { min-width: unset; }
  .hero-image-wrap { height: 400px; }
}
@media (max-width: 420px) {
  .hero-text h1 { font-size: 1.55rem; }
  .hero-text .hero-sub { font-size: .88rem; }
  .hero-card { padding: 1.25rem 1.25rem; }
  .brand-lockup img.logo-icon { height: 34px; }
  .brand-lockup img.wordmark { height: 24px; }
}
