/* ============================================================
   VIBRANT HEALTH ADVOCATES - ETA
   Design: Warm & Human Community archetype
   ============================================================ */

:root {
  --purple:        #7B2D8B;
  --purple-light:  #F0D9F5;
  --purple-mid:    #B87CC8;
  --purple-dark:   #5A1F68;
  --cream:         #FAF4EE;
  --cream-deep:    #EFE3D2;
  --cream-card:    #FDF9F4;
  --terracotta:    #C4724A;
  --terracotta-lt: #EAB896;
  --terracotta-pl: #FAE8DA;
  --rust:          #9E4825;
  --ink:           #2C1810;
  --ink-mid:       #5C3828;
  --ink-soft:      #8B6650;
  --shadow-warm:   0 8px 32px rgba(44,26,16,0.13);
  --shadow-card:   0 4px 20px rgba(44,26,16,0.09);
  --shadow-heavy:  0 16px 48px rgba(44,26,16,0.18);
  --radius-xl:     32px;
  --radius-lg:     24px;
  --radius-md:     16px;
  --radius-sm:     12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.8;
  font-size: 1.0625rem;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--purple); }
a:hover { color: var(--purple-dark); }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }

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

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.9;
  color: var(--ink-mid);
}

/* ─── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }

/* ─── NAVIGATION ──────────────────────────────────── */
.site-nav {
  background: var(--cream);
  border-bottom: 2px dotted var(--terracotta-lt);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(44,26,16,0.06);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

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

.nav-check { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  order: 3;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  color: var(--ink-mid);
  font-weight: 700;
  font-size: 0.91rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--purple);
  background: var(--purple-light);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,26,16,0.70) 0%,
    rgba(44,26,16,0.35) 55%,
    rgba(44,26,16,0.10) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4.5rem 1.5rem 14rem 1.5rem;
  margin: 0;
}
.hero__content-outer {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero__eyebrow {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(44,26,16,0.4);
  margin-bottom: 1.25rem;
}
.hero__sub {
  color: rgba(255,255,255,0.91);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__cta {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(196,114,74,0.38);
}
.hero__cta:hover { background: var(--rust); color: #fff; transform: translateY(-2px); }

/* ─── OVERLAP CARD ────────────────────────────────── */
.hero-overlap-wrap {
  position: relative;
  z-index: 10;
  margin-top: -110px;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}
.hero-overlap-card {
  background: var(--cream-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-heavy);
  padding: 2.25rem 3rem;
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: stretch;
  border: 3px solid #fff;
  max-width: 860px;
  width: 100%;
}
.impact-stat {
  flex: 1;
  text-align: center;
  padding: 0.5rem 2rem;
}
.impact-stat + .impact-stat {
  border-left: 2px dotted var(--terracotta-lt);
}
.impact-stat__num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.impact-stat__label {
  font-size: 0.88rem;
  color: var(--ink-mid);
  font-weight: 600;
}

/* ─── SQUIGGLE DIVIDER ────────────────────────────── */
.squiggle-wrap {
  text-align: center;
  padding: 0.5rem 0;
  overflow: hidden;
}
.squiggle-wrap svg { max-width: 100%; }

/* ─── INTRO GRID ──────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ─── POLAROID ────────────────────────────────────── */
.polaroid {
  background: #fff;
  padding: 14px 14px 52px;
  box-shadow: var(--shadow-warm);
  border-radius: 3px;
  display: inline-block;
  position: relative;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.polaroid--tilt-l  { transform: rotate(-2.8deg); }
.polaroid--tilt-r  { transform: rotate(2.2deg); }
.polaroid--tilt-sl { transform: rotate(-1.3deg); }
.polaroid--tilt-sr { transform: rotate(1.6deg); }
.polaroid__caption {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  text-align: center;
  font-size: 0.77rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ─── POLAROID CLUSTER ────────────────────────────── */
.polaroid-cluster {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.polaroid-cluster .polaroid { position: absolute; }
.polaroid-cluster .polaroid:nth-child(1) {
  width: 270px; top: 0; left: 10px;
  transform: rotate(-3.2deg); z-index: 1;
}
.polaroid-cluster .polaroid:nth-child(2) {
  width: 250px; top: 80px; right: 0;
  transform: rotate(2.5deg); z-index: 2;
}

/* ─── HIGHLIGHTS / STAGGER ────────────────────────── */
.highlights-section { background: var(--cream-deep); padding: 5rem 0; }

.cards-stagger {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}
.feature-card {
  flex: 1;
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 2px solid #fff;
}
.feature-card:nth-child(2) { margin-top: 2.5rem; }
.feature-card:nth-child(3) { margin-top: 1rem; }

.feature-card__icon  { font-size: 2.3rem; margin-bottom: 0.7rem; }
.feature-card__title {
  font-size: 1.1rem; font-weight: 800;
  color: var(--ink); margin-bottom: 0.55rem;
}
.feature-card__blurb {
  font-size: 0.93rem; color: var(--ink-mid); line-height: 1.75;
}

/* ─── SECTION LABEL ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.65rem;
}

/* ─── STAMP BADGE ─────────────────────────────────── */
.stamp-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 4px dashed var(--purple);
  background: var(--purple-light);
  color: var(--purple-dark);
  font-weight: 800;
  font-size: 0.67rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 1rem;
  flex-shrink: 0;
}
.stamp-badge__main {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 0.25rem;
}

/* ─── PHOTO BANNER ────────────────────────────────── */
.photo-banner {
  position: relative;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 1.5rem;
}
.photo-banner img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(44,26,16,0.65) 0%, rgba(44,26,16,0.1) 100%);
}
.photo-banner__text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem; max-width: 520px;
}
.photo-banner__text h2 { color: #fff; margin-bottom: 0.75rem; }
.photo-banner__text p  { color: rgba(255,255,255,0.88); font-size: 1.05rem; }

/* ─── CTA STRIP ───────────────────────────────────── */
.cta-strip {
  background: var(--terracotta);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-strip::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-strip h2 { color: #fff; margin-bottom: 0.9rem; position: relative; z-index: 1; }
.cta-strip p {
  color: rgba(255,255,255,0.88); font-size: 1.08rem;
  max-width: 540px; margin: 0 auto 2rem; position: relative; z-index: 1;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 700; font-size: 0.97rem;
  padding: 0.82rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer; border: none;
  position: relative; z-index: 1;
}
.btn--cream {
  background: var(--cream-card); color: var(--purple-dark);
  box-shadow: 0 4px 16px rgba(44,26,16,0.15);
}
.btn--cream:hover  { background: #fff; color: var(--purple); transform: translateY(-2px); }
.btn--purple {
  background: var(--purple); color: #fff;
  box-shadow: 0 4px 16px rgba(123,45,139,0.35);
}
.btn--purple:hover { background: var(--purple-dark); color: #fff; transform: translateY(-2px); }
.btn--terracotta {
  background: var(--terracotta); color: #fff;
  box-shadow: 0 4px 16px rgba(196,114,74,0.35);
}
.btn--terracotta:hover { background: var(--rust); color: #fff; transform: translateY(-2px); }

/* ─── PAGE HEADER ─────────────────────────────────── */
.page-header {
  background: var(--cream-deep);
  padding: 4rem 0 3rem;
  border-bottom: 2px dotted var(--terracotta-lt);
}
.page-header h1 { margin-bottom: 0.8rem; }
.page-header .lead { max-width: 640px; }

.page-header--photo {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.ph-bg { position: absolute; inset: 0; z-index: 0; }
.ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.ph-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(44,26,16,0.75) 0%, rgba(44,26,16,0.15) 70%);
}
.ph-content {
  position: relative; z-index: 2;
  padding: 2.5rem 1.5rem 3rem;
  width: 100%; max-width: 1160px; margin: 0 auto;
}
.page-header--photo h1,
.page-header--photo .lead { color: #fff; text-shadow: 0 2px 8px rgba(44,26,16,0.4); }

/* ─── ABOUT PAGE ──────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.mission-box {
  background: var(--purple-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  border: 2px dotted var(--purple-mid);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.mission-box__text h3  { color: var(--purple-dark); margin-bottom: 0.9rem; }
.mission-box__text p   { color: var(--ink-mid); line-height: 1.85; }

.story-section { background: var(--terracotta-pl); padding: 5rem 0; }

.trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.trustee-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-deep);
}
.trustee-card__name { font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.25rem; }
.trustee-card__role {
  font-size: 0.82rem; color: var(--purple); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ─── OUR WORK PAGE ───────────────────────────────── */
.programmes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.programme-card {
  background: var(--cream-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
}
.programme-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  border-radius: 0;
  background: var(--terracotta);
}
.programme-card:nth-child(even)::after { background: var(--purple); }
.programme-card__icon  { font-size: 2.4rem; margin-bottom: 1rem; }
.programme-card__title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.programme-card__blurb {
  color: var(--terracotta); font-weight: 600; font-size: 0.94rem;
  margin-bottom: 1rem; font-style: italic;
}
.programme-card:nth-child(even) .programme-card__blurb { color: var(--purple); }
.programme-card__detail {
  font-size: 0.93rem; color: var(--ink-mid); line-height: 1.8;
}

.what-we-do-text {
  background: var(--cream-deep);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-top: 3rem;
  border: 2px dotted var(--terracotta-lt);
}
.what-we-do-text p {
  font-size: 1rem; color: var(--ink-mid); line-height: 1.9; margin-bottom: 1.4em;
}

/* ─── GET INVOLVED PAGE ───────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.way-card {
  background: var(--cream-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 2px dotted var(--terracotta-lt);
}
.way-card__icon  { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.way-card__title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.7rem; }
.way-card__blurb { font-size: 0.93rem; color: var(--ink-mid); line-height: 1.8; margin-bottom: 1.5rem; }

/* ─── BLOG ────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 3rem;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-warm); }
.blog-card__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  background: var(--purple-light); color: var(--purple-dark);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.75rem;
  border-radius: 100px; margin-bottom: 0.75rem;
}
.blog-card__title { font-size: 1.02rem; font-weight: 800; color: var(--ink); margin-bottom: 0.55rem; line-height: 1.35; }
.blog-card__dek   { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.72; margin-bottom: 1.25rem; flex: 1; }
.blog-card__link {
  font-size: 0.87rem; font-weight: 700; color: var(--purple);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.blog-card__link:hover { gap: 0.6rem; color: var(--purple-dark); }

/* ─── CONTACT ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.86rem;
  margin-bottom: 0.4rem; color: var(--ink-mid); letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.72rem 1rem;
  border: 2px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem;
  color: var(--ink); background: var(--cream);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--purple-mid); background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }

.contact-details { padding: 0.5rem 0; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem; padding: 1.2rem;
  background: var(--cream-card); border-radius: var(--radius-md);
  border: 2px dotted var(--terracotta-lt);
}
.contact-detail-item__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail-item__text { font-size: 0.93rem; color: var(--ink-mid); }
.contact-detail-item__text strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 0.2rem; }
.contact-detail-item__text a { color: var(--purple); word-break: break-all; }

/* ─── ARTICLE ─────────────────────────────────────── */
.article-hero { position: relative; height: 420px; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,26,16,0.78) 0%, rgba(44,26,16,0.12) 65%);
}
.article-hero__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem;
  max-width: 1160px; margin: 0 auto;
}
.article-tag {
  display: inline-block; background: var(--purple-light); color: var(--purple-dark);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.85rem; border-radius: 100px; margin-bottom: 0.75rem;
}
.article-hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(44,26,16,0.5); margin-bottom: 0; font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
.article-body { max-width: 740px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.article-dek {
  font-size: 1.15rem; color: var(--ink-mid); line-height: 1.85;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 2px dotted var(--terracotta-lt);
}
.article-text p { margin-bottom: 1.5em; font-size: 1.03rem; line-height: 1.92; }

.article-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--purple); text-decoration: none; font-weight: 700; font-size: 0.9rem;
  margin-bottom: 2rem;
}
.article-back:hover { color: var(--purple-dark); }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 4rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.1rem; }
.footer-brand .logo-icon { height: 38px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .wordmark  { height: 25px; width: auto; filter: invert(1) brightness(2); }
.footer-about { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.58); margin-bottom: 1rem; }
.footer-emails a {
  display: block; color: var(--purple-light); text-decoration: none;
  font-size: 0.82rem; margin-bottom: 0.3rem; word-break: break-all;
  transition: color 0.2s;
}
.footer-emails a:hover { color: #fff; }
.footer-heading {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--terracotta-lt); margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta-lt); }
.footer-contact-item { font-size: 0.86rem; color: rgba(255,255,255,0.58); margin-bottom: 0.5rem; word-break: break-all; }
.footer-contact-item a { color: var(--purple-light); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.38); margin: 0; }

/* ─── UTILITIES ───────────────────────────────────── */
.dotted-rule { border: none; border-top: 2px dotted var(--terracotta-lt); margin: 2rem 0; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .intro-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .programmes-grid,
  .ways-grid,
  .blog-grid,
  .trustees-grid { grid-template-columns: 1fr; }
  .cards-stagger { flex-direction: column; }
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) { margin-top: 0; }
  .hero-overlap-card { flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .impact-stat + .impact-stat {
    border-left: none; border-top: 2px dotted var(--terracotta-lt);
    padding-left: 0; padding-top: 1.25rem;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .photo-banner { margin: 0; border-radius: 0; }
  .mission-box { flex-direction: column; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 2px dotted var(--terracotta-lt);
    box-shadow: 0 8px 24px rgba(44,26,16,0.1);
    gap: 0.2rem;
  }
  .nav-check:checked ~ .nav-links { display: flex; }
}

@media (max-width: 640px) {
  .hero { min-height: 600px; }
  .hero__content { padding-bottom: 10rem; }
  .hero-overlap-wrap { margin-top: -80px; }
  .article-hero { height: 300px; }
  .programmes-grid { grid-template-columns: 1fr; }
  .polaroid-cluster { height: 340px; }
  .polaroid-cluster .polaroid:nth-child(1) { width: 210px; }
  .polaroid-cluster .polaroid:nth-child(2) { width: 200px; top: 100px; }
}
