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

:root {
  --cream:           #FAF6F0;
  --cream-mid:       #F2E8D8;
  --cream-border:    #DEC9A8;
  --terracotta:      #C4603A;
  --terracotta-pale: #FAECE5;
  --purple:          #7B2D8B;
  --purple-light:    #F0D9F5;
  --purple-mid:      #B87AC4;
  --text:            #2C1A10;
  --text-mid:        #5C3D22;
  --text-light:      #8B6040;
  --white:           #FFFCF8;
  --shadow-sm:  0 4px 14px rgba(44,26,16,.08);
  --shadow-md:  0 10px 32px rgba(44,26,16,.13);
  --shadow-lg:  0 24px 64px rgba(44,26,16,.20);
  --r-sm:  14px;
  --r-md:  24px;
  --r-lg:  36px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Typography ── */
h1 { font-size: clamp(2.1rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 700; }

/* ── Layout ── */
.container       { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.section         { padding: 80px 0; }
.section--lg     { padding: 108px 0; }
.section--sm     { padding: 48px 0; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-border);
  box-shadow: 0 2px 16px rgba(44,26,16,.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }

.brand-icon     { height: 44px; width: auto; }
.brand-wordmark { height: 30px; width: auto; max-width: 220px; }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 7px 15px;
  border-radius: 40px;
  transition: background .15s, color .15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover  { background: var(--purple-light); color: var(--purple); text-decoration: none; }
.nav-links a.active { background: var(--purple-light); color: var(--purple); }

.nav-links a.nav-cta {
  background: var(--purple);
  color: var(--white);
  margin-left: 6px;
}
.nav-links a.nav-cta:hover { background: #5f2070; }

.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--terracotta);
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--terracotta);
  line-height: 1;
}

/* ── Hero (Homepage) ── */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(44,26,16,.05) 0%,
    rgba(44,26,16,.22) 45%,
    rgba(44,26,16,.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 130px 28px 240px;
}

.hero-tag {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
  max-width: 800px;
  margin-bottom: 22px;
}

.hero-sub {
  color: rgba(255,255,255,.90);
  font-size: 1.125rem;
  max-width: 640px;
  line-height: 1.68;
}

/* ── Pulled Card ── */
.pulled-section {
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}

.pulled-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow-lg);
  margin-top: -180px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid var(--cream-border);
  position: relative;
}

.pulled-card::before {
  content: '';
  position: absolute;
  top: -5px; left: 44px;
  width: 64px; height: 5px;
  background: var(--terracotta);
  border-radius: 3px 3px 0 0;
}

.pulled-card p { color: var(--text-mid); line-height: 1.82; }

/* ── Squiggle Divider ── */
.squiggle {
  display: block;
  width: 100%;
  height: 52px;
  overflow: visible;
}

/* ── Labels ── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-label--purple { color: var(--purple); }

/* ── Highlights (staggered) ── */
.highlights-grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-top: 52px;
}

.highlight-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 2px dotted var(--cream-border);
}

.highlight-card:nth-child(2) { margin-top: 48px; }
.highlight-card:nth-child(3) { margin-top: 92px; }

.highlight-icon { font-size: 2.4rem; display: block; margin-bottom: 18px; }
.highlight-card h3 { color: var(--purple); margin-bottom: 12px; }
.highlight-card p  { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.72; margin-bottom: 0; }

/* ── Impact Strip ── */
.impact-strip {
  background: var(--terracotta);
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
}

.impact-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.impact-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.impact-item { text-align: center; flex: 1; }

.impact-stat {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.impact-label { color: rgba(255,255,255,.85); font-size: 1rem; font-weight: 600; }

.impact-divider {
  width: 1px; height: 80px;
  background: rgba(255,255,255,.28);
  flex-shrink: 0;
}

/* ── Polaroid Cards ── */
.polaroid-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 52px;
}

.polaroid {
  background: var(--white);
  padding: 13px 13px 56px;
  border-radius: 3px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  position: relative;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.polaroid:nth-child(1) { transform: rotate(-2.2deg); margin-top: 28px; }
.polaroid:nth-child(2) { transform: rotate(1.4deg); }
.polaroid:nth-child(3) { transform: rotate(-1.0deg); margin-top: 44px; }
.polaroid:hover { box-shadow: var(--shadow-lg); transform: rotate(0deg) translateY(-6px) !important; }

.polaroid img {
  width: 100%; height: 210px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.polaroid-caption {
  position: absolute;
  bottom: 14px; left: 13px; right: 13px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.4;
}

/* ── Page Hero (non-homepage text) ── */
.page-hero {
  background: var(--cream-mid);
  padding: 80px 28px 88px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--cream-border);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: var(--purple-light);
  opacity: .35;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.page-hero h1 { color: var(--text); }
.page-hero .dek {
  font-size: 1.175rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-top: 18px;
  line-height: 1.65;
}

/* ── Photo Hero (image + text overlay, non-homepage) ── */
.photo-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.photo-hero > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.photo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,16,.05), rgba(44,26,16,.60));
  display: flex;
  align-items: flex-end;
}

.photo-hero-content {
  padding: 0 28px 52px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.photo-hero-content h1 { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,.45); }
.photo-hero-content .dek {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-top: 14px;
  max-width: 600px;
  line-height: 1.65;
}

/* ── Stamp Badge ── */
.stamp-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0 32px;
}
.stamp-badge { width: 160px; height: 160px; }

/* ── Split Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
.split--reverse > *:last-child  { order: 1; }

.split-img-wrap { position: relative; }

.polaroid-single {
  background: var(--white);
  padding: 13px 13px 52px;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
  display: block;
}
.polaroid-single img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.img-deco {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--purple-light);
  border: 4px dotted var(--purple-mid);
  z-index: -1;
}
.img-deco--terra {
  background: var(--terracotta-pale);
  border-color: var(--terracotta);
  bottom: -18px; left: -18px; right: auto;
}

/* ── Programme Cards ── */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.programme-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-border);
  transition: transform .2s, box-shadow .2s;
}
.programme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.programme-card-top {
  background: var(--purple-light);
  padding: 32px 30px 24px;
}
.programme-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.programme-card-top h3 { color: var(--purple); margin-bottom: 8px; }
.programme-card-top .blurb { font-size: 0.9375rem; color: var(--text-mid); font-style: italic; margin-bottom: 0; }

.programme-card-body {
  padding: 24px 30px 32px;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.programme-card-body p { margin-bottom: 0; }

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--cream-border);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); text-decoration: none; }

.blog-card-img { height: 230px; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
  padding: 26px 26px 30px;
  flex: 1; display: flex; flex-direction: column;
}

.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); line-height: 1.35; }
.blog-card .dek { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 0; }
.blog-card .read-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.9375rem;
}

/* ── Trustees ── */
.trustees-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trustee-card {
  background: var(--white);
  border: 2px dotted var(--purple-mid);
  border-radius: var(--r-md);
  padding: 30px 28px;
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.trustee-initial {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--purple-light);
  border: 3px solid var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--purple);
  margin: 0 auto 16px;
}

.trustee-name { font-weight: 800; color: var(--text); font-size: 1.05rem; }
.trustee-role { font-size: 0.875rem; color: var(--text-light); margin-top: 4px; margin-bottom: 0; }

/* ── Ways (Get Involved) ── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.way-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--terracotta);
  transition: transform .2s;
}
.way-card:hover { transform: translateY(-4px); }

.way-icon { font-size: 2.4rem; display: block; margin-bottom: 20px; }
.way-card h3 { color: var(--terracotta); margin-bottom: 12px; }
.way-card p  { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--purple);
  padding: 88px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2   { color: var(--white); margin-bottom: 36px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); text-decoration: none; }

.btn-primary  { background: var(--terracotta); color: var(--white); }
.btn-white    { background: var(--white);       color: var(--purple); }
.btn-outline  { background: transparent; color: var(--white); border: 3px solid var(--white); padding: 13px 37px; }
.btn-purple   { background: var(--purple);      color: var(--white); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--cream-border);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 8px;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-submit {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1.0625rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, transform .15s;
  width: 100%;
}
.form-submit:hover { background: #5f2070; transform: translateY(-2px); }

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px dotted var(--cream-border);
}
.contact-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 3px; }

.contact-detail-label {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.contact-detail-value {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.contact-detail-value a { color: var(--purple); word-break: break-all; }

/* ── Article ── */
.article-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}

.article-body {
  max-width: 780px;
  margin: 64px auto;
  padding: 0 28px;
}

.article-meta {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 14px;
}

.article-title { margin-bottom: 22px; color: var(--text); }

.article-dek {
  font-size: 1.225rem;
  color: var(--text-mid);
  line-height: 1.65;
  border-left: 4px solid var(--terracotta);
  padding-left: 22px;
  margin-bottom: 52px;
  font-style: italic;
}

.article-content p {
  margin-bottom: 1.6em;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 44px;
  text-decoration: none;
  font-size: 0.9375rem;
}
.article-back:hover { text-decoration: underline; }

.pull-quote {
  background: var(--purple-light);
  border-radius: var(--r-md);
  padding: 32px 36px;
  border-left: 5px solid var(--purple);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.6;
  font-style: italic;
  margin: 40px 0;
}

.article-related {
  background: var(--cream-mid);
  border-radius: var(--r-md);
  padding: 32px 36px;
  border: 2px dotted var(--cream-border);
  margin-top: 56px;
}

.article-related h4 { color: var(--terracotta); margin-bottom: 18px; }
.article-related ul { list-style: none; }
.article-related li { margin-bottom: 12px; }
.article-related a { color: var(--purple); font-weight: 600; }

/* ── Mission Box ── */
.mission-box {
  background: var(--cream-mid);
  border-radius: var(--r-lg);
  padding: 52px 56px;
  border: 3px dotted var(--cream-border);
  position: relative;
}

.mission-box p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.82; margin-bottom: 0; }

/* ── Story Section ── */
.story-section {
  background: var(--terracotta-pale);
  border-top: 3px solid var(--cream-border);
  border-bottom: 3px solid var(--cream-border);
}

/* ── Footer ── */
.footer {
  background: #1A0C06;
  color: rgba(255,255,255,.78);
  padding: 68px 28px 44px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo     { height: 40px; width: auto; }
.footer-wordmark { height: 28px; width: auto; max-width: 200px; filter: brightness(0) invert(1); }

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 22px;
  opacity: .78;
}

.footer-email {
  font-size: 0.8125rem;
  color: var(--purple-light);
  display: block;
  margin-bottom: 10px;
  word-break: break-all;
  text-decoration: none;
}
.footer-email:hover { color: var(--white); text-decoration: underline; }

.footer-heading {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.44);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1160px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.36);
}

/* ── Misc Decorative ── */
.terracotta-rule {
  border: none;
  height: 3px;
  background: linear-gradient(to right, var(--terracotta), transparent);
  border-radius: 3px;
  margin: 44px 0;
}

.section-bg-purple { background: var(--purple-light); }
.section-bg-cream  { background: var(--cream-mid); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-grid         { grid-template-columns: repeat(2, 1fr); }
  .programmes-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse > *:first-child { order: unset; }
  .split--reverse > *:last-child  { order: unset; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    border-bottom: 2px solid var(--cream-border);
    box-shadow: var(--shadow-md);
    z-index: 200;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; border-radius: 10px; padding: 10px 16px; }

  .hamburger { display: block; }

  /* Hero mobile */
  .hero { min-height: 66vh; }
  .hero-content { padding: 80px 20px 72px; }
  .pulled-card {
    margin-top: 0;
    border-radius: var(--r-md);
    padding: 32px 24px;
    margin: 0 16px;
  }

  /* Staggering off on mobile */
  .highlights-grid { flex-direction: column; gap: 18px; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }

  /* Polaroid grid off on mobile */
  .polaroid-grid { flex-direction: column; align-items: center; }
  .polaroid { transform: none !important; max-width: 100%; min-width: unset; }

  /* Impact */
  .impact-grid { flex-direction: column; gap: 40px; }
  .impact-divider { display: none; }

  /* Photo heroes */
  .photo-hero { height: 340px; }
  .article-hero { height: 280px; }

  /* Programmes */
  .programmes-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Ways */
  .ways-grid { grid-template-columns: 1fr; }

  /* Trustees */
  .trustees-row { flex-direction: column; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

  .polaroid-single { transform: none; }
  .polaroid-single img { height: 280px; }

  .mission-box { padding: 36px 28px; }

  .contact-form { padding: 30px 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .container--narrow { padding: 0 18px; }
  .section { padding: 56px 0; }
  .pulled-card { margin: 0 10px; padding: 28px 20px; }
  .page-hero { padding: 56px 18px 64px; }
  h1 { font-size: clamp(1.8rem, 9vw, 2.2rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 1.85rem); }
  .blog-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .article-body { margin: 44px auto; }
  .cta-banner { padding: 64px 18px; }
}
