/* === VIBRANT HEALTH ADVOCATES — WARM & HUMAN COMMUNITY === */

:root {
  --cream:           #fdf8f0;
  --cream-mid:       #f7ede0;
  --cream-dark:      #eedad0;
  --terracotta:      #c4603a;
  --terracotta-lt:   #e8845d;
  --terracotta-pale: #f9e0d4;
  --brand:           #1c3d2f;
  --brand-mid:       #2d5c47;
  --brand-light:     #f0f3f1;
  --brand-pale:      #e4ede8;
  --gold:            #c08020;
  --gold-lt:         #e8a830;
  --text:            #2a1e14;
  --text-mid:        #5c4232;
  --text-light:      #8a6e5e;
  --white:           #ffffff;
  --shadow-sm:       0 2px 10px rgba(42,30,20,.10);
  --shadow:          0 4px 20px rgba(42,30,20,.13);
  --shadow-card:     4px 8px 28px rgba(42,30,20,.16);
  --shadow-lift:     0 14px 48px rgba(42,30,20,.22);
  --r-sm:  12px;
  --r:     24px;
  --r-lg:  36px;
  --r-xl:  52px;
  --font:  system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.78;
  font-size: 1.0625rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: underline; }
a:hover { color: var(--brand); }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.0625rem; }

p { margin-bottom: 1.25rem; line-height: 1.82; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--mid   { max-width: 900px;  margin: 0 auto; padding: 0 28px; }
.container--narrow{ max-width: 740px;  margin: 0 auto; padding: 0 28px; }

.section       { padding: 88px 0; }
.section--tight{ padding: 56px 0; }
.section--cream{ background: var(--cream); }
.section--warm { background: var(--cream-mid); }
.section--pale { background: var(--brand-pale); }
.section--brand{ background: var(--brand); color: var(--white); }
.section--brand h1, .section--brand h2,
.section--brand h3, .section--brand p { color: var(--white); }

.text-center { text-align: center; }

/* ── CHIP LABELS ────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.label--white { background: rgba(255,255,255,.15); color: rgba(255,255,255,.92); }
.label--brand { background: var(--brand-pale); color: var(--brand); }

.section-hd { margin-bottom: 56px; }
.section-hd p { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; margin-top: 10px; }
.section-hd.centered { text-align: center; }
.section-hd.centered p { margin-left: auto; margin-right: auto; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-header {
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  position: relative; /* overridden by sticky below for capable browsers */
  position: sticky;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 13px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup .logo-icon     { height: 44px; width: auto; }
.brand-lockup .logo-wordmark { height: 28px; width: auto; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-list a {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 24px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.nav-list a:hover        { background: var(--terracotta-pale); color: var(--terracotta); }
.nav-list a.is-active    { background: var(--brand); color: var(--white); }
.nav-list .nav-cta-link  { background: var(--terracotta); color: var(--white); }
.nav-list .nav-cta-link:hover { background: var(--brand); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--terracotta);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  letter-spacing: .02em;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.20); }
.btn--primary { background: var(--terracotta); color: var(--white); }
.btn--primary:hover { background: var(--brand); color: var(--white); }
.btn--dark    { background: var(--brand); color: var(--white); }
.btn--dark:hover  { background: var(--brand-mid); color: var(--white); }
.btn--ghost   { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn--outline { background: transparent; color: var(--terracotta); border: 2px solid var(--terracotta); }
.btn--outline:hover { background: var(--terracotta); color: var(--white); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 700px;
  overflow: visible;
  background: var(--brand);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    145deg,
    rgba(28,61,47,.80) 0%,
    rgba(28,61,47,.58) 55%,
    rgba(196,96,58,.22) 100%
  );
  z-index: 1;
}
.hero__deco-a, .hero__deco-b {
  position: absolute; border-radius: 50%; z-index: 1; pointer-events: none;
}
.hero__deco-a { width: 420px; height: 420px; border: 48px solid rgba(255,255,255,.04); top: -100px; right: -80px; }
.hero__deco-b { width: 240px; height: 240px; border: 28px solid rgba(196,96,58,.12); bottom: 40px; left: -60px; }

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1160px;
  margin: 0 auto;
  /* generous bottom padding creates breathing room above the overlap card */
  padding: 110px 28px 260px;
}
.hero__tag {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 24px;
  margin-bottom: 26px;
}
.hero__title {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 22px;
  text-shadow: 0 2px 14px rgba(0,0,0,.22);
}
.hero__sub {
  color: rgba(255,255,255,.88);
  max-width: 560px;
  font-size: 1.125rem;
  line-height: 1.72;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── OVERLAP CARD  (pulled up into hero from section below) ─ */
.overlap-wrap {
  position: relative;
  z-index: 10;
  /* negative margin lifts this section into the hero photo */
  margin-top: -180px;
}
.overlap-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 52px 52px 48px;
  box-shadow: var(--shadow-lift);
  border: 3px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}
/* colourful gradient top stripe */
.overlap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--gold-lt) 50%, var(--brand-mid) 100%);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.overlap-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}
.overlap-divider { background: var(--cream-dark); min-height: 80px; margin: 0 24px; }
.overlap-item { padding: 4px 12px; }
.overlap-item .oi-icon { font-size: 2.1rem; margin-bottom: 10px; display: block; }
.overlap-item h3 { color: var(--brand); margin-bottom: 6px; font-size: 1.1rem; }
.overlap-item p  { color: var(--text-mid); font-size: .9rem; line-height: 1.65; margin: 0; }

/* ── SQUIGGLES ───────────────────────────────────────────── */
.squiggle-row {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.squiggle-sep {
  text-align: center;
  padding: 8px 0 0;
  overflow: hidden;
}

/* ── INTRO / BODY COPY ──────────────────────────────────── */
.intro-text {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.85;
  color: var(--text-mid);
}

/* ── HIGHLIGHT CARDS (staggered 3-col) ────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 40px 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 2.5px solid var(--cream-dark);
}
.highlight-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.highlight-card:nth-child(2) { margin-top: 52px; }
.highlight-card:nth-child(3) { margin-top: 26px; }
/* animated bottom bar */
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 5px;
  background: var(--terracotta);
  border-radius: 0 0 var(--r) var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.highlight-card:hover::after { transform: scaleX(1); }

.highlight-icon {
  width: 68px; height: 68px;
  background: var(--terracotta-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 22px;
}
.highlight-card h3 { color: var(--brand); margin-bottom: 10px; }
.highlight-card p  { color: var(--text-mid); font-size: .9375rem; }

/* ── POLAROID COLLAGE ────────────────────────────────────── */
.polaroid-scene {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
  padding: 24px 0 72px;
}
.polaroid {
  background: var(--cream-mid);
  border: 9px solid var(--cream-mid);
  border-bottom-width: 62px;
  border-radius: 3px;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  max-width: 290px;
  position: relative;
  transition: transform .35s, box-shadow .35s;
}
.polaroid:hover { box-shadow: var(--shadow-lift); }

.polaroid img {
  width: 270px; height: 240px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.polaroid__caption {
  position: absolute;
  bottom: -54px; left: 0; right: 0;
  text-align: center;
  font-size: .79rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: .03em;
  padding: 0 8px;
  line-height: 1.3;
}
.polaroid:nth-child(1) { transform: rotate(-3.5deg) translateY(20px); z-index: 1; }
.polaroid:nth-child(2) { transform: rotate(1.8deg);  z-index: 3; }
.polaroid:nth-child(3) { transform: rotate(-1.2deg) translateY(14px); z-index: 2; }
.polaroid:hover { transform: scale(1.04) !important; z-index: 10; }

/* ── STAMP BADGE ──────────────────────────────────────────── */
.stamp-wrap { display: flex; align-items: center; justify-content: center; }
.stamp { width: 148px; height: 148px; position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stamp__inner { text-align: center; z-index: 2; position: relative; }
.stamp__sup  { font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); display: block; }
.stamp__year { font-size: 2.4rem; font-weight: 800; color: var(--brand); display: block; line-height: 1.1; }
.stamp__sub  { font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); display: block; margin-top: 2px; }

/* ── IMPACT BAND ──────────────────────────────────────────── */
.impact-band {
  background: var(--brand);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.impact-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border: 52px solid rgba(255,255,255,.04);
  border-radius: 50%;
}
.impact-band::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  border: 36px solid rgba(196,96,58,.12);
  border-radius: 50%;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.impact-stat {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--r);
  border: 2px solid rgba(255,255,255,.08);
}
.impact-stat__number {
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: var(--terracotta-lt);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.impact-stat__label {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  line-height: 1.45;
}

/* ── PROGRAMME CARDS ──────────────────────────────────────── */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: start;
}
.programme-card {
  background: var(--cream);
  border-radius: var(--r);
  padding: 42px 38px;
  border: 2.5px solid var(--cream-dark);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.programme-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.programme-card:nth-child(2) { margin-top: 44px; }
.programme-card:nth-child(4) { margin-top: -24px; }
.programme-icon {
  width: 72px; height: 72px;
  background: var(--terracotta-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.programme-card h3 { color: var(--brand); margin-bottom: 10px; }
.programme-card .blurb { color: var(--text-mid); font-size: .9375rem; margin-bottom: 18px; }
.programme-detail {
  border-top: 2px dotted var(--cream-dark);
  padding-top: 18px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── SPLIT GRID (image + text) ───────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-grid--flip > :first-child { order: 2; }
.split-grid--flip > :last-child  { order: 1; }

.split-img-wrap { position: relative; }
.split-img {
  border-radius: var(--r-xl);
  width: 100%; height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.split-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--cream);
  border-radius: var(--r);
  padding: 20px 26px;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--cream-dark);
  text-align: center;
  min-width: 130px;
}
.split-badge .badge-num { font-size: 2rem; font-weight: 800; color: var(--terracotta); display: block; line-height: 1; }
.split-badge .badge-lbl { font-size: .72rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: .08em; line-height: 1.35; display: block; margin-top: 5px; }

/* ── WAYS CARDS (Get Involved) ───────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
.way-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 44px 32px;
  box-shadow: var(--shadow);
  border: 3px solid var(--cream-dark);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.way-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.way-card:nth-child(2) { margin-top: 44px; border-color: var(--terracotta); background: var(--terracotta-pale); }
.way-card:nth-child(2) .way-icon { background: var(--white); }
.way-icon {
  width: 80px; height: 80px;
  background: var(--cream-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 26px;
}
.way-card h3 { color: var(--brand); margin-bottom: 12px; }
.way-card p  { color: var(--text-mid); font-size: .9375rem; }

/* ── TRUSTEES ─────────────────────────────────────────────── */
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trustee-card {
  background: var(--cream);
  border: 3px solid var(--cream-dark);
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s;
}
.trustee-card:hover { transform: translateY(-4px); }
.trustee-card:nth-child(2) { margin-top: 36px; background: var(--brand-pale); border-color: var(--brand-pale); }
.trustee-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  border: 5px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
}
.trustee-card h4 { color: var(--brand); margin-bottom: 6px; font-size: 1.0625rem; }
.trustee-role { font-size: .75rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: var(--terracotta); }

/* ── MISSION BOX ──────────────────────────────────────────── */
.mission-box {
  background: var(--brand);
  border-radius: var(--r-lg);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '\201C';
  position: absolute;
  top: -30px; left: 20px;
  font-size: 14rem;
  color: rgba(255,255,255,.055);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.mission-box h2 { color: rgba(255,255,255,.9); position: relative; z-index: 1; margin-bottom: 20px; }
.mission-box p  { color: rgba(255,255,255,.88); font-size: 1.1rem; line-height: 1.84; position: relative; z-index: 1; }

/* ── DOTTED BOX ───────────────────────────────────────────── */
.dotted-box {
  border: 3px dotted var(--terracotta);
  border-radius: var(--r);
  padding: 48px 44px;
}

/* ── BLOG CARDS ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 2.5px solid var(--cream-dark);
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); color: inherit; }
.blog-card:nth-child(2) { margin-top: 52px; }
.blog-card__img { width: 100%; height: 210px; object-fit: cover; display: block; }
.blog-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  font-size: .69rem; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--terracotta); background: var(--terracotta-pale);
  padding: 4px 11px; border-radius: 20px;
  margin-bottom: 12px;
}
.blog-card h3 { color: var(--text); margin-bottom: 10px; font-size: 1.15rem; line-height: 1.32; }
.blog-card p  { color: var(--text-mid); font-size: .9rem; line-height: 1.68; flex: 1; margin-bottom: 20px; }
.blog-card__read { font-size: .875rem; font-weight: 700; color: var(--terracotta); display: inline-flex; align-items: center; gap: 5px; text-decoration: none; }
.blog-card__read:hover { color: var(--brand); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--brand);
  padding: 80px 0 92px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
  z-index: 0;
}
.page-hero__deco-a, .page-hero__deco-b {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.page-hero__deco-a { width: 380px; height: 380px; border: 44px solid rgba(255,255,255,.04); top: -100px; right: -80px; z-index: 0; }
.page-hero__deco-b { width: 200px; height: 200px; border: 24px solid rgba(196,96,58,.10); bottom: -60px; left: -40px; z-index: 0; }
.page-hero__content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 28px; }
.page-hero h1   { color: var(--white); margin-bottom: 16px; }
.page-hero .lead{ color: rgba(255,255,255,.84); font-size: 1.125rem; line-height: 1.72; margin: 0; }

/* ── ARTICLE PAGES ───────────────────────────────────────── */
.article-hero {
  background: var(--brand);
  padding: 88px 0 140px;
  position: relative;
  overflow: hidden;
}
.article-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .28;
  z-index: 0;
}
.article-hero__content {
  position: relative; z-index: 2;
  max-width: 740px; margin: 0 auto; padding: 0 28px;
}
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 700;
  color: rgba(255,255,255,.80);
  text-decoration: none;
  margin-bottom: 32px;
}
.article-back:hover { color: var(--white); }
.article-hero h1  { color: var(--white); margin-bottom: 18px; }
.article-hero .dek{ color: rgba(255,255,255,.88); font-size: 1.15rem; line-height: 1.68; }

.article-body {
  max-width: 720px;
  margin: -72px auto 88px;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 60px 64px;
  box-shadow: var(--shadow-lift);
  position: relative;
  z-index: 10;
}
.article-body p  { color: var(--text); font-size: 1.0625rem; line-height: 1.90; margin-bottom: 1.5rem; }
.article-body h2 { color: var(--brand); margin: 2rem 0 1rem; }
.article-img { width: 100%; border-radius: var(--r); margin: 36px 0; box-shadow: var(--shadow-card); }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .8125rem; font-weight: 700; color: var(--text); letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--text);
  width: 100%;
  line-height: 1.5;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-pale);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--cream-mid);
  border-radius: var(--r);
  padding: 22px 26px;
  border: 2px solid var(--cream-dark);
}
.contact-detail__icon { font-size: 1.7rem; flex-shrink: 0; margin-top: 1px; }
.contact-detail h4 { color: var(--brand); margin-bottom: 4px; font-size: .9375rem; }
.contact-detail p, .contact-detail a { font-size: .9375rem; color: var(--text-mid); margin: 0; }
.contact-detail a { color: var(--terracotta); text-decoration: underline; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(140deg, var(--terracotta) 0%, var(--brand) 100%);
  padding: 92px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(196,96,58,.12);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p  { color: rgba(255,255,255,.84); max-width: 520px; margin: 0 auto 36px; font-size: 1.0625rem; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--brand);
  padding: 68px 0 36px;
  color: rgba(255,255,255,.78);
}
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.3fr;
  gap: 52px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-lockup { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-lockup .logo-icon     { height: 42px; width: auto; }
.footer-lockup .logo-wordmark { height: 28px; width: auto; filter: invert(1) brightness(10); }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.65); margin: 0; }
.footer-col h5 {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terracotta-lt); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.70); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.fc-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.fc-item:last-child { margin-bottom: 0; }
.fc-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .10em; color: var(--terracotta-lt); }
.fc-val   { font-size: .875rem; color: rgba(255,255,255,.78); }
.fc-item a { font-size: .875rem; color: rgba(255,255,255,.78); text-decoration: none; }
.fc-item a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); margin: 0; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1020px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split-grid { gap: 48px; }
}

@media (max-width: 860px) {
  .highlights-grid, .ways-grid, .trustees-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .highlight-card:nth-child(2), .highlight-card:nth-child(3),
  .way-card:nth-child(2), .trustee-card:nth-child(2),
  .blog-card:nth-child(2) { margin-top: 0; }

  .programmes-grid, .split-grid { grid-template-columns: 1fr; }
  .split-grid--flip > :first-child { order: 0; }
  .split-grid--flip > :last-child  { order: 0; }
  .programme-card:nth-child(2), .programme-card:nth-child(4) { margin-top: 0; }

  .impact-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }

  .overlap-grid { grid-template-columns: 1fr; }
  .overlap-divider { display: none; }
  .overlap-item { padding: 16px 4px; border-bottom: 2px solid var(--cream-dark); }
  .overlap-item:last-child { border-bottom: 0; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero__content { padding: 88px 24px 240px; }
  .overlap-wrap  { margin-top: -140px; }
  .overlap-card  { padding: 36px 28px; }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; align-items: stretch;
    padding: 16px 24px;
    border-bottom: 2px solid var(--cream-dark);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    gap: 4px;
    z-index: 300;
  }
  .nav-list.is-open { display: flex; }
  .nav-list a { padding: 10px 16px; }
  .nav-toggle { display: block; }

  .polaroid-scene { flex-direction: column; align-items: center; gap: 56px; }
  .polaroid:nth-child(1), .polaroid:nth-child(2), .polaroid:nth-child(3) { transform: none; }

  .mission-box { padding: 40px 28px; }
  .article-body { padding: 36px 24px; margin: -40px 16px 60px; }
  .article-hero { padding: 68px 0 120px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .split-img { height: 280px; }
  .split-badge { bottom: 12px; right: 12px; }
}

@media (max-width: 480px) {
  .hero__content { padding: 72px 20px 220px; }
  .overlap-wrap  { margin-top: -120px; }
  .overlap-card  { padding: 28px 20px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .article-body  { margin: -30px 12px 52px; padding: 30px 20px; }
}
