/* ============================================================
   VIBRANT HEALTH ADVOCATES - SABLE
   Warm & Human Community Design System
   ============================================================ */

:root {
  --cream:            #FAF5EE;
  --cream-mid:        #F2E8D9;
  --cream-border:     #E4D4BE;
  --terracotta:       #C4622D;
  --terracotta-light: #F5DDD0;
  --terracotta-pale:  #FBF0EA;
  --purple:           #7B2D8B;
  --purple-light:     #F0D9F5;
  --purple-pale:      #FAF2FF;
  --purple-mid:       #C08CD0;
  --dark:             #2C1810;
  --dark-mid:         #4A2E20;
  --warm-gray:        #8B7355;
  --white:            #FFFFFF;
  --r-sm:   16px;
  --r-md:   24px;
  --r-lg:   32px;
  --r-xl:   48px;
  --r-pill: 9999px;
  --shadow-soft:  0 4px 20px rgba(44,24,16,0.07);
  --shadow-card:  0 8px 36px rgba(44,24,16,0.13);
  --shadow-polar: 4px 10px 28px rgba(44,24,16,0.20);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p  { font-size: clamp(0.97rem, 1.4vw, 1.08rem); color: var(--dark-mid); line-height: 1.85; }

/* ── Utility ── */
.text-center  { text-align: center; }
.text-purple  { color: var(--purple); }
.text-terra   { color: var(--terracotta); }
.text-white   { color: white; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mt-8  { margin-top: 4rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-6  { margin-bottom: 3rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.6rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; }
.brand-lockup .logo-icon {
  height: 42px;
  width: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-lockup .wordmark {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}
.site-nav a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
.site-nav a:hover { background: var(--purple-light); color: var(--purple); text-decoration: none; }
.site-nav a.active { background: var(--purple-light); color: var(--purple); }
.site-nav .nav-cta {
  background: var(--purple);
  color: white !important;
  margin-left: 0.25rem;
}
.site-nav .nav-cta:hover { background: var(--dark) !important; color: white !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ============================================================
   HERO (Homepage)
   ============================================================ */

.hero {
  position: relative;
  overflow: visible;
  /* enough bottom space for pull-up card */
  padding-bottom: 4rem;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Gradient darkens the top so text is legible */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(44,24,16,0.72) 0%,
    rgba(44,24,16,0.35) 48%,
    rgba(44,24,16,0.08) 100%
  );
  display: flex;
  align-items: flex-start;
  padding: 3.5rem 1.5rem 0;
}
.hero-overlay-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 1rem;
}
.tagline-chip {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.35rem 1.1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
  border: 2px dotted var(--purple);
}
.hero-overlay-inner h1 {
  color: white;
  max-width: 680px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Pull-up card overlaps the BOTTOM of the hero image */
.hero-pullup {
  position: relative;
  max-width: 1200px;
  margin: -110px auto 0;
  padding: 0 1.5rem;
  z-index: 10;
}
.hero-pullup-inner {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--cream-border);
  max-width: 700px;
  position: relative;
}
.hero-pullup-inner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2.5rem;
  width: 60px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 2px;
}
.hero-pullup-inner p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.hero-pullup-inner .btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 0.97rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary  { background: var(--purple);     color: white;           border-color: var(--purple); }
.btn-primary:hover  { background: var(--dark); border-color: var(--dark); color: white; }

.btn-terra    { background: var(--terracotta); color: white;           border-color: var(--terracotta); }
.btn-terra:hover    { background: var(--dark); border-color: var(--dark); color: white; }

.btn-cream    { background: var(--cream);      color: var(--purple);   border-color: var(--cream-border); }
.btn-cream:hover    { background: white; color: var(--dark); }

.btn-outline  { background: transparent;       color: var(--purple);   border-color: var(--purple); }
.btn-outline:hover  { background: var(--purple); color: white; }

.btn-white    { background: white;             color: var(--purple);   border-color: white; }
.btn-white:hover    { background: var(--cream); color: var(--dark); }

/* ============================================================
   SECTION COMMON
   ============================================================ */

.section       { padding: 5rem 0; }
.section-sm    { padding: 3rem 0; }
.section-lg    { padding: 7rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 0.85rem;
}
.section-label::before {
  content: '';
  width: 26px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   SQUIGGLE DIVIDERS
   ============================================================ */

.squiggle-wrap {
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.squiggle-wrap svg { display: block; width: 100%; }

/* ============================================================
   IMPACT BAND
   ============================================================ */

.impact-band {
  background: var(--terracotta);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.impact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.impact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.impact-item {
  text-align: center;
  color: white;
  padding: 0 3.5rem;
  border-right: 2px dotted rgba(255,255,255,0.3);
}
.impact-item:last-of-type { border-right: none; }
.impact-stat {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1;
}
.impact-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin-top: 0.45rem;
}

/* Circular stamp badge */
.stamp-badge {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  transform: rotate(-10deg);
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 3rem;
}
.stamp-badge-inner {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.stamp-badge-star { font-size: 1.4rem; margin-bottom: 0.2rem; display: block; }

/* ============================================================
   HIGHLIGHTS CARDS
   ============================================================ */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.highlight-card:nth-child(2) { margin-top: 2.5rem; }
.highlight-card:nth-child(3) { margin-top: 1rem; }

.highlight-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
}
.highlight-icon {
  width: 56px;
  height: 56px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  border: 2px dotted var(--purple-mid);
}
.highlight-card h3 { margin-bottom: 0.7rem; }

/* ============================================================
   POLAROID IMAGE CARDS
   ============================================================ */

.polaroid-group {
  position: relative;
  height: 440px;
  flex-shrink: 0;
}

.polaroid {
  position: absolute;
  background: white;
  padding: 10px 10px 40px 10px;
  box-shadow: var(--shadow-polar);
  border-radius: 3px;
}
.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.polaroid-caption {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--warm-gray);
  margin-top: 0.5rem;
  font-style: italic;
}

.polaroid-a {
  width: 280px; height: 280px;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}
.polaroid-b {
  width: 240px; height: 240px;
  bottom: 0; right: 0;
  transform: rotate(2.5deg);
  z-index: 3;
}
.polaroid-c {
  width: 200px; height: 200px;
  top: 80px; right: 60px;
  transform: rotate(-1.5deg);
  z-index: 1;
}

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.programme-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
}
.programme-card-top {
  padding: 2rem 2rem 1.5rem;
}
.programme-card-icon {
  width: 52px; height: 52px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border: 3px dotted var(--purple-mid);
}
.programme-card h3 { margin-bottom: 0.6rem; }
.programme-card .blurb { font-size: 0.95rem; font-weight: 600; color: var(--warm-gray); }
.programme-card-detail {
  background: var(--terracotta-pale);
  padding: 1.5rem 2rem;
  border-top: 2px dotted var(--cream-border);
}
.programme-card-detail p { font-size: 0.93rem; }

/* ============================================================
   FULL-BLEED PHOTO BANNER
   ============================================================ */

.photo-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.photo-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,24,16,0.08) 0%, rgba(44,24,16,0.55) 100%);
}

.banner-overlap {
  position: relative;
  max-width: 1200px;
  margin: -100px auto 0;
  padding: 0 1.5rem;
  z-index: 10;
}
.banner-overlap-inner {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--cream-border);
  max-width: 700px;
}
.banner-overlap-inner .section-label { margin-bottom: 0.6rem; }
.banner-overlap-inner h1 { margin-bottom: 0.75rem; }
.banner-overlap-inner p { font-size: 1.05rem; line-height: 1.85; }

/* ============================================================
   STORY / QUOTE SECTION
   ============================================================ */

.story-section {
  background: var(--purple-pale);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem 3rem;
  border: 2px dotted var(--purple-mid);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '\201C';
  position: absolute;
  top: -30px; left: 1.5rem;
  font-size: 14rem;
  color: var(--purple-light);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  pointer-events: none;
}
.story-section > * { position: relative; z-index: 1; }
.story-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.story-section p:last-child { margin-bottom: 0; }

/* ============================================================
   MISSION BOX
   ============================================================ */

.mission-box {
  background: var(--terracotta);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.mission-box::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -30px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.mission-box > * { position: relative; z-index: 1; }
.mission-box h2 { color: white; margin-bottom: 1.25rem; }
.mission-box p  { color: rgba(255,255,255,0.92); font-size: 1.05rem; line-height: 1.9; }

/* ============================================================
   TRUSTEES
   ============================================================ */

.trustees-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trustee-chip {
  background: white;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-pill);
  padding: 0.7rem 1.5rem 0.7rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-soft);
}
.trustee-avatar {
  width: 40px; height: 40px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  color: var(--purple);
  font-size: 0.88rem;
  border: 2px dotted var(--purple);
  flex-shrink: 0;
}
.trustee-info strong { display: block; font-weight: 800; font-size: 0.95rem; color: var(--dark); }
.trustee-info span   { font-size: 0.8rem; color: var(--warm-gray); }

/* ============================================================
   GET INVOLVED WAYS
   ============================================================ */

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.way-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
}
.way-card.featured {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-14px);
  box-shadow: var(--shadow-card);
}
.way-card.featured h3,
.way-card.featured p { color: white; }
.way-card.featured p { color: rgba(255,255,255,0.88); }
.way-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}
.way-card h3 { margin-bottom: 0.75rem; }

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background: var(--purple);
  border-radius: var(--r-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2  { color: white; margin-bottom: 1rem; }
.cta-band p   { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 2rem; }

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.blog-card:nth-child(2) { margin-top: 2.5rem; }

.blog-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px) rotate(0.4deg);
  box-shadow: var(--shadow-card);
}
.blog-card-img {
  width: 100%; height: 210px;
  object-fit: cover;
}
.blog-card-body { padding: 1.5rem 1.5rem 2rem; }
.blog-card-date {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.55rem; line-height: 1.35; }
.blog-card-body .dek { font-size: 0.9rem; color: var(--warm-gray); margin-bottom: 1.25rem; line-height: 1.65; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--purple);
}
.read-more:hover { text-decoration: none; color: var(--dark); }
.read-more::after { content: '→'; }

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-sidebar h2 { margin-bottom: 1.25rem; }
.contact-sidebar p  { margin-bottom: 1.5rem; }

.contact-detail {
  background: var(--purple-pale);
  border-radius: var(--r-md);
  padding: 1.5rem;
  border: 2px dotted var(--purple-mid);
  margin-top: 2rem;
}
.contact-detail h4 { margin-bottom: 0.75rem; color: var(--purple); }
.contact-detail a  { display: block; font-size: 0.9rem; word-break: break-all; color: var(--purple); margin-bottom: 0.35rem; font-weight: 600; }
.contact-detail a:hover { color: var(--dark); }

.contact-form {
  background: white;
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--purple);
  background: white;
}
.form-field textarea { min-height: 145px; resize: vertical; }

/* ============================================================
   ARTICLE PAGES
   ============================================================ */

.article-page { padding-bottom: 5rem; }
.article-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.article-back::before { content: '←'; }
.article-back:hover { text-decoration: none; color: var(--dark); }
.article-header h1 { margin-bottom: 1rem; }
.article-header .dek {
  font-size: 1.18rem;
  color: var(--warm-gray);
  line-height: 1.72;
  font-style: italic;
}

.article-hero-img {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.article-hero-img img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article-body p {
  font-size: 1.07rem;
  line-height: 1.88;
  margin-bottom: 1.75rem;
  color: var(--dark-mid);
}
.article-body p:first-child::first-letter {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--terracotta);
  float: left;
  line-height: 0.8;
  margin-right: 0.12em;
  margin-top: 0.08em;
}

.article-cta {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}
.article-cta-inner {
  background: var(--purple-light);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 2px dotted var(--purple-mid);
  text-align: center;
}
.article-cta-inner h3 { margin-bottom: 0.75rem; color: var(--purple); }
.article-cta-inner p  { color: var(--dark-mid); margin-bottom: 1.5rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--terracotta-pale);
  border-bottom: 3px dotted var(--cream-border);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--terracotta-light);
  opacity: 0.4;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p.lead {
  font-size: 1.15rem;
  max-width: 650px;
  color: var(--dark-mid);
  line-height: 1.82;
}

/* ============================================================
   DOTTED ACCENT BOX
   ============================================================ */

.dotted-box {
  border: 3px dotted var(--terracotta);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  background: var(--terracotta-pale);
}

/* ============================================================
   SPLIT LAYOUTS
   ============================================================ */

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-content-first { order: -1; }

.split-img {
  position: relative;
}
.split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.split-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px; height: 100px;
  background: var(--terracotta);
  border-radius: 50%;
  border: 4px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   SCRAPBOOK / ABOUT IMAGE GROUP
   ============================================================ */

.scrapbook-group {
  position: relative;
  height: 460px;
}
.scrapbook-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 360px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.scrapbook-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%; height: 240px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-polar);
  border: 6px solid white;
  transform: rotate(2deg);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--dark);
  padding: 4.5rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Dark bg → invert wordmark to white */
.footer-brand .brand-lockup .wordmark { filter: invert(1); }
.footer-brand .brand-lockup .logo-icon { /* logo might have transparent bg – show as-is or brighten */ }

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 1.1rem;
  line-height: 1.8;
}
.footer-emails {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-emails a {
  color: var(--purple-light);
  font-size: 0.82rem;
  word-break: break-all;
  transition: color 0.18s;
}
.footer-emails a:hover { color: white; text-decoration: none; }

.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 800;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.18s;
}
.footer-col li a:hover { color: var(--purple-light); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .highlights-grid      { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }
  .programmes-grid      { grid-template-columns: 1fr; }
  .ways-grid            { grid-template-columns: 1fr; }
  .way-card.featured    { transform: none; }
  .contact-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-2              { grid-template-columns: 1fr; gap: 2.5rem; }
  .scrapbook-group      { height: 320px; }
  .scrapbook-main       { height: 280px; }
  .scrapbook-accent     { height: 180px; }
  .polaroid-group       { height: 360px; }
}

@media (max-width: 768px) {
  .nav-toggle        { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    border-top: 2px dotted var(--cream-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 300;
  }
  .site-nav.open     { display: flex; }
  .site-nav a        { padding: 0.75rem 1rem; width: 100%; border-radius: var(--r-md); }
  .site-nav .nav-cta { margin-left: 0; }
  .site-header       { position: relative; }

  .hero-img-wrap     { height: 420px; }
  .hero-overlay      { padding: 2rem 1.25rem 0; }
  .hero-pullup       { margin-top: -60px; }
  .hero-pullup-inner { padding: 1.75rem 1.5rem; border-radius: var(--r-lg); }
  .hero { padding-bottom: 2.5rem; }

  .photo-banner      { height: 340px; }
  .banner-overlap    { margin-top: -70px; }
  .banner-overlap-inner { padding: 1.75rem 1.5rem; border-radius: var(--r-lg); }

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

  .cta-band          { padding: 3rem 1.5rem; border-radius: var(--r-lg); }
  .story-section     { padding: 2rem 1.5rem; }
  .story-section::before { font-size: 9rem; }
  .mission-box       { padding: 2.5rem 1.5rem; border-radius: var(--r-lg); }

  .contact-form      { padding: 2rem 1.5rem; border-radius: var(--r-lg); }
  .form-grid         { grid-template-columns: 1fr; }

  .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; }

  .impact-grid       { gap: 0; }
  .impact-item       { padding: 1.25rem 2rem; border-right: none; border-bottom: 1px dotted rgba(255,255,255,0.3); width: 100%; }
  .impact-item:last-of-type { border-bottom: none; }
  .stamp-badge       { display: none; }

  .scrapbook-group   { height: 260px; }
  .scrapbook-accent  { display: none; }
  .scrapbook-main    { width: 100%; height: 100%; border-radius: var(--r-lg); }

  .polaroid-group    { height: 260px; }
  .polaroid-c        { display: none; }
  .polaroid-a        { width: 200px; height: 200px; }
  .polaroid-b        { width: 170px; height: 170px; }

  .split-img img     { height: 300px; }
  .split-img-badge   { width: 70px; height: 70px; font-size: 1.8rem; bottom: -10px; right: -10px; }

  .section           { padding: 3.5rem 0; }
  .article-hero-img img { height: 280px; border-radius: var(--r-lg); }
}

@media (max-width: 480px) {
  .hero-img-wrap       { height: 340px; }
  .hero-pullup         { margin-top: -40px; }
  .hero-overlay-inner h1 { font-size: 1.9rem; }
  .brand-lockup .wordmark { max-width: 130px; }
  .trustees-row        { flex-direction: column; }
}
