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

/* ── 1. Custom Properties ──────────────────────────────────── */
:root {
  --cream:         #FBF6EE;
  --cream-deep:    #F0E5D0;
  --cream-border:  #E2CEAF;
  --sand:          #D4B896;
  --terracotta:    #C4623A;
  --terracotta-lt: #E8896A;
  --terracotta-dk: #9E4A28;
  --brand:         #7B2D8B;
  --brand-lt:      #F0D9F5;
  --brand-mid:     #B870CC;
  --text-dark:     #2A1810;
  --text-mid:      #6B4530;
  --text-warm:     #9B7558;
  --white:         #FFFFFF;

  --font: ui-rounded, 'SF Pro Rounded', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --line-height: 1.78;

  --section-pad: clamp(3rem, 7vw, 6rem);
  --gutter: clamp(1.25rem, 5vw, 2.5rem);

  --radius-photo: 28px;
  --radius-card:  20px;
  --shadow-soft:  0 4px 18px rgba(42, 24, 16, 0.10);
  --shadow-card:  0 8px 32px rgba(42, 24, 16, 0.14);
  --shadow-lift:  0 18px 60px rgba(42, 24, 16, 0.22);
}

/* ── 2. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: var(--line-height);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── 3. Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

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

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.82;
  color: var(--text-mid);
}
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.55rem;
}

/* ── 4. Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-pad) 0; }
.section--cream     { background: var(--cream); }
.section--cream-dp  { background: var(--cream-deep); }
.section--brand-lt  { background: var(--brand-lt); }

/* ── 5. Navigation ─────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-border);
}
.site-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none !important;
}
.site-nav__logo     { height: 44px; width: auto; }
.site-nav__wordmark { height: 34px; width: auto; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.8vw, 1.4rem);
  list-style: none;
  flex-wrap: nowrap;
}
.site-nav__links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 4px 2px;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  text-decoration: none;
}

/* ── 6. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.72em 1.7em;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none !important;
  line-height: 1.4;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--brand {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123, 45, 139, 0.32);
}
.btn--brand:hover { box-shadow: 0 8px 28px rgba(123, 45, 139, 0.44); }

.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 98, 58, 0.32);
}
.btn--terracotta:hover { box-shadow: 0 8px 28px rgba(196, 98, 58, 0.44); }

.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 2.5px solid var(--brand);
}
.btn--outline:hover { background: var(--brand-lt); }

.btn--lg { padding: 0.88em 2.2em; font-size: 1.05rem; }

/* ── 7. Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 680px;
  background: var(--text-dark);
  overflow: visible;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.62;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,24,16,0.18) 0%,
    rgba(42,24,16,0.12) 50%,
    rgba(42,24,16,0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px var(--gutter) 200px;
  /* bottom padding ensures headline never gets near the overlap card */
}
.hero__stamp-wrap {
  position: absolute;
  top: 56px;
  right: var(--gutter);
  z-index: 3;
}
.stamp-badge {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 3.5px dashed rgba(240, 217, 245, 0.88);
  background: rgba(123, 45, 139, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  transform: rotate(-9deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.stamp-badge__main {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.stamp-badge__sub {
  font-size: 0.58rem;
  font-weight: 800;
  color: rgba(240,217,245,0.95);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.hero__eyebrow { color: var(--terracotta-lt); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  max-width: 15ch;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28);
}
.hero__sub {
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  max-width: 540px;
  line-height: 1.72;
  margin-bottom: 2rem;
}

/* Overlap card – the star of the homepage hero */
.hero__overlap-card {
  position: absolute;
  bottom: -72px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 880px);
  z-index: 20;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lift);
  border-top: 5px solid var(--terracotta);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.after-hero {
  background: var(--cream);
  padding-top: calc(72px + var(--section-pad));
}

/* ── 8. Impact Stats ───────────────────────────────────────── */
.impact-stat { padding: 0.75rem 1rem; }
.impact-stat + .impact-stat { border-left: 1.5px solid var(--cream-border); }
.impact-stat__number {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.3em;
}
.impact-stat__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── 9. Squiggle Divider ───────────────────────────────────── */
.squiggle {
  width: 100%;
  line-height: 0;
  padding: 4px 0;
  overflow: hidden;
}
.squiggle svg { display: block; width: 100%; height: 52px; }

/* ── 10. Section Headers ───────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header h2 { margin-bottom: 0.5em; }
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.78;
}

/* ── 11. Highlight Cards (staggered) ─────────────────────────*/
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--cream-border);
}
.highlight-card:nth-child(1) { border-top: 5px solid var(--brand-mid); }
.highlight-card:nth-child(2) { margin-top: 44px; border-top: 5px solid var(--terracotta); }
.highlight-card:nth-child(3) { margin-top: 18px; border-top: 5px solid var(--brand); }
.highlight-card__icon { font-size: 2.2rem; display: block; margin-bottom: 0.8rem; }
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 0.55em; }
.highlight-card p  { font-size: 0.94rem; color: var(--text-mid); line-height: 1.72; margin: 0; }

/* ── 12. Polaroid Cards ────────────────────────────────────── */
.polaroid {
  display: inline-block;
  background: var(--white);
  padding: 10px 10px 30px;
  box-shadow: var(--shadow-card);
  line-height: 0;
  position: relative;
}
.polaroid img { width: 100%; border-radius: 6px; }
.polaroid__caption {
  display: block;
  line-height: 1.3;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-mid);
  text-align: center;
  padding-top: 8px;
  font-family: var(--font);
}
.polaroid--l { transform: rotate(-2.8deg); }
.polaroid--r { transform: rotate(1.9deg); }
.polaroid--sl { transform: rotate(-1.1deg); }

/* ── 13. Photo Split ───────────────────────────────────────── */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.photo-split--flip { direction: rtl; }
.photo-split--flip > * { direction: ltr; }

.photo-frame { position: relative; }
.photo-frame img {
  border-radius: var(--radius-photo);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  max-height: 480px;
}
.photo-frame--dotted::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius-photo) + 14px);
  border: 3px dotted var(--terracotta);
  opacity: 0.45;
  pointer-events: none;
}
.photo-frame--dot-brand::before { border-color: var(--brand-mid); opacity: 0.5; }

/* ── 14. Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(260px, 35vw, 420px);
  background: var(--text-dark);
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.65;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,24,16,0.58) 0%, rgba(42,24,16,0.1) 65%);
}
.page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}
.page-hero__content .container { width: 100%; }
.page-hero h1 {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.32);
  max-width: 16ch;
  margin-bottom: 0.5rem;
}
.page-hero__sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  max-width: 440px;
  line-height: 1.68;
  margin: 0;
}

/* ── 15. Full-Bleed Banner with Overlap Card ───────────────── */
.banner-photo {
  position: relative;
  height: clamp(280px, 38vw, 480px);
  overflow: hidden;
  margin-bottom: 80px;
}
.banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,24,16,0.52) 0%, rgba(42,24,16,0.08) 60%);
}
.banner-photo__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}
.banner-photo__title h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 14ch;
  text-shadow: 0 2px 18px rgba(0,0,0,0.38);
}
.banner-photo__card {
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 720px);
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-lift);
  border-left: 6px solid var(--terracotta);
}
.banner-after { padding-top: calc(64px + var(--section-pad)); }

/* ── 16. Programmes Grid ───────────────────────────────────── */
.programmes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.programme-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--cream-border);
  border-top: 5px solid var(--terracotta);
}
.programme-card:nth-child(even) {
  margin-top: 36px;
  border-top-color: var(--brand);
}
.programme-card__icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.programme-card h3 { font-size: 1.15rem; margin-bottom: 0.45em; }
.programme-card__blurb {
  font-weight: 600;
  color: var(--text-mid);
  font-size: 0.94rem;
  margin-bottom: 0.75em;
}
.programme-card__detail {
  font-size: 0.89rem;
  color: var(--text-warm);
  line-height: 1.72;
  margin: 0;
}

/* ── 17. Stamp Badge (inline section) ─────────────────────── */
.inline-stamp {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 3.5px dashed var(--brand);
  background: var(--brand-lt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  transform: rotate(-7deg);
  flex-shrink: 0;
}
.inline-stamp__main {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.inline-stamp__sub {
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

/* ── 18. Impact Row (mid-page) ─────────────────────────────── */
.impact-row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--brand-lt);
  border-radius: var(--radius-card);
  border: 2.5px dotted var(--brand-mid);
}
.impact-row .impact-stat__number { font-size: clamp(2rem, 4vw, 2.9rem); }
.impact-row .impact-stat + .impact-stat {
  border-left: 2px dotted var(--brand-mid);
}

/* ── 19. Trustees ──────────────────────────────────────────── */
.trustees-row {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trustee-card {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  min-width: 180px;
  flex: 1;
  max-width: 250px;
  border-bottom: 5px solid var(--terracotta);
}
.trustee-card__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-lt);
  border: 3px solid var(--brand-mid);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.trustee-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.2em;
  display: block;
}
.trustee-card__role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ── 20. Ways to Help ──────────────────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
}
.way-card:nth-child(1) { border-top: 5px solid var(--terracotta); }
.way-card:nth-child(2) { margin-top: 36px; border: 2.5px solid var(--brand-mid); border-top: 5px solid var(--brand); }
.way-card:nth-child(3) { margin-top: 14px; border-top: 5px solid var(--terracotta-lt); }
.way-card__icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.way-card h3   { font-size: 1.2rem; margin-bottom: 0.5em; }
.way-card p    { font-size: 0.95rem; color: var(--text-mid); line-height: 1.72; margin: 0; }

/* ── 21. Blog Grid ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none !important;
  display: block;
  color: inherit;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); text-decoration: none !important; }
.blog-card:nth-child(2) { margin-top: 40px; }
.blog-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.blog-card__body { padding: clamp(1.2rem, 2.5vw, 1.65rem); }
.blog-card__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.45em;
}
.blog-card h3 { font-size: 1.02rem; line-height: 1.32; margin-bottom: 0.4em; color: var(--text-dark); }
.blog-card__dek {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 0 1em;
}
.blog-card__more {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
}

/* ── 22. Article ───────────────────────────────────────────── */
.article-hero {
  height: clamp(260px, 38vw, 460px);
  overflow: hidden;
  position: relative;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(42,24,16,0.6) 100%);
}

.article-header {
  background: var(--cream);
  padding: clamp(1.75rem, 4vw, 3rem) 0;
  border-bottom: 2px solid var(--cream-border);
}
.article-header__tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.article-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.5em;
  max-width: 22ch;
}
.article-header__dek {
  font-size: clamp(0.975rem, 1.9vw, 1.18rem);
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.68;
  margin: 0;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter);
}
.article-body p {
  font-size: 1.04rem;
  line-height: 1.88;
  margin-bottom: 1.5em;
  color: var(--text-dark);
}
.article-body p:first-child {
  font-size: 1.15rem;
  color: var(--text-mid);
  font-weight: 500;
}

.article-image {
  border-radius: var(--radius-photo);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-card);
}

/* ── 23. Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lead { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border-radius: 14px;
  border-left: 4px solid var(--terracotta);
  box-shadow: var(--shadow-soft);
}
.contact-detail__icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1.4; }
.contact-detail__text { font-size: 0.9rem; line-height: 1.65; }
.contact-detail__text strong { display: block; font-weight: 800; margin-bottom: 0.2em; color: var(--text-dark); }
.contact-detail__text a { font-weight: 700; word-break: break-all; color: var(--brand); }
.contact-detail__text a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
  border-top: 5px solid var(--brand);
}
.contact-form-wrap h3 { margin-bottom: 1.25rem; font-size: 1.3rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.35em;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7em 1em;
  border: 2px solid var(--cream-border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.975rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.18s;
  outline: none;
  -webkit-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: 130px; resize: vertical; }

/* ── 24. CTA Band ──────────────────────────────────────────── */
.cta-band {
  background: var(--terracotta);
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='28' cy='28' r='26' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1.5'/%3E%3C/svg%3E") repeat;
  background-size: 56px 56px;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.55rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; position: relative; }
.cta-band p  { color: rgba(255,255,255,0.88); max-width: 500px; margin: 0 auto 2rem; font-size: 1.04rem; position: relative; }
.cta-band .btn { position: relative; }

/* ── 25. Dotted Box & Accent ───────────────────────────────── */
.dotted-box {
  border: 2.5px dotted var(--sand);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.dotted-box--brand { border-color: var(--brand-mid); background: var(--brand-lt); }

.accent-rule {
  width: 64px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

/* ── 26. Mission Block ─────────────────────────────────────── */
.mission-block {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  flex-wrap: wrap;
}
.mission-block__text { flex: 1 1 400px; }
.mission-block .inline-stamp { flex-shrink: 0; }

/* ── 27. Story section ─────────────────────────────────────── */
.story-body p {
  font-size: 1.0rem;
  line-height: 1.85;
  margin-bottom: 1.4em;
  color: var(--text-dark);
}
.story-body p:first-child { font-size: 1.1rem; color: var(--text-mid); font-weight: 500; }

/* ── 28. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: var(--cream-deep);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
}
.site-footer__inner { max-width: 1180px; margin: 0 auto; }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.75rem;
}
.footer-brand__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer-brand__logo     { height: 40px; width: auto; }
.footer-brand__wordmark {
  height: 30px;
  width: auto;
  filter: invert(1) brightness(2.2);
}
.footer-brand p { font-size: 0.875rem; color: rgba(240,229,208,0.7); line-height: 1.72; margin: 0; }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(240,229,208,0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(240,229,208,0.7);
  line-height: 1.8;
}
.footer-col address a { color: var(--brand-lt); word-break: break-all; }
.footer-col address a:hover { color: var(--white); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(240,229,208,0.42);
}

/* ── 29. Utility ───────────────────────────────────────────── */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── 30. Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }

  .photo-split { grid-template-columns: 1fr; gap: 2rem; }
  .photo-split--flip { direction: ltr; }

  .programmes-grid { grid-template-columns: 1fr; }
  .programme-card:nth-child(even) { margin-top: 0; }

  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2),
  .way-card:nth-child(3) { margin-top: 0; }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:nth-child(2) { margin-top: 0; }

  .contact-grid { grid-template-columns: 1fr; }

  .site-footer__top { grid-template-columns: 1fr 1fr; }

  .mission-block { flex-direction: column; }
}

@media (max-width: 700px) {
  .hero__overlap-card {
    position: static;
    transform: none;
    width: auto;
    margin: 0 var(--gutter);
    border-radius: var(--radius-card);
    grid-template-columns: 1fr;
    bottom: auto;
    left: auto;
  }
  .after-hero { padding-top: var(--section-pad); }
  .impact-stat + .impact-stat { border-left: none; border-top: 1.5px solid var(--cream-border); }

  .banner-photo__card {
    position: static;
    transform: none;
    width: auto;
    margin: 0 var(--gutter);
    border-radius: var(--radius-card);
  }
  .banner-after { padding-top: var(--section-pad); }
  .banner-photo { margin-bottom: 0; }

  .hero__stamp-wrap { display: none; }

  .trustees-row { flex-direction: column; align-items: center; }
  .trustee-card { max-width: 100%; }
  .impact-row { flex-direction: column; }
  .impact-row .impact-stat + .impact-stat { border-left: none; border-top: 2px dotted var(--brand-mid); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .site-nav__links {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .site-nav__links::-webkit-scrollbar { display: none; }
  .site-nav__inner { flex-wrap: wrap; height: auto; padding: 10px var(--gutter); gap: 0.5rem; }
  .site-nav__brand { order: 1; }
  .site-nav__cta   { display: none; }
  .site-nav__links { order: 3; width: 100%; padding-top: 4px; padding-bottom: 8px; }
  .site-footer__top { grid-template-columns: 1fr; }
}
