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

/* 1. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: #FAF6F0;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(196,102,58,0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(123,45,139,0.04) 0%, transparent 55%);
  color: #2C1810;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #7B2D8B; text-decoration: none; transition: color 0.2s; }
a:hover { color: #5C1F6A; }
ul, ol { list-style: none; }

/* 2. CSS VARIABLES */
:root {
  --cream:           #FAF6F0;
  --cream-card:      #F7F1E8;
  --cream-border:    #EDE3D5;
  --terracotta:      #C4663A;
  --terracotta-light:#F5DDD0;
  --terracotta-mid:  #E0966A;
  --purple:          #7B2D8B;
  --purple-light:    #F0D9F5;
  --purple-mid:      #B87EC5;
  --brown:           #2C1810;
  --brown-mid:       #7A5C4E;
  --brown-light:     #B89880;
  --green:           #3D6B4F;
  --white:           #FFFFFF;
  --r-sm:  12px;
  --r-md:  24px;
  --r-lg:  32px;
  --r-xl:  48px;
  --r-pill:9999px;
  --sh-sm: 0 2px 12px rgba(44,24,16,.08);
  --sh-md: 0 6px 28px rgba(44,24,16,.13);
  --sh-lg: 0 14px 52px rgba(44,24,16,.18);
  --sh-card: 5px 10px 32px rgba(44,24,16,.14);
}

/* 3. TYPOGRAPHY */
h1,h2,h3,h4,h5 {
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--brown);
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.85; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--brown-mid);
}

/* 4. LAYOUT */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow{ max-width: 800px;  margin: 0 auto; padding: 0 32px; }
section           { padding: 88px 0; }

/* 5. NAVIGATION */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-border);
  padding: 0 32px;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo      { height: 44px; width: auto; }
.nav__wordmark  { height: 30px; width: auto; max-width: 220px; }
.nav__links     { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
  padding: 8px 13px;
  border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active  { background: var(--purple-light); color: var(--purple); }
.nav__links a.nav__cta{
  background: var(--purple);
  color: #fff;
  padding: 8px 18px;
  margin-left: 6px;
}
.nav__links a.nav__cta:hover { background: #5C1F6A; color: #fff; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--cream-border);
}
.nav__mobile.open   { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  padding: 11px 16px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.15s;
}
.nav__mobile a:hover { background: var(--purple-light); color: var(--purple); }

/* 6. HERO */
.hero { position: relative; }

.hero__image-wrap {
  position: relative;
  height: 700px;
  overflow: hidden;
}
.hero__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(44,24,16,0.18) 0%,
    rgba(44,24,16,0.38) 40%,
    rgba(44,24,16,0.72) 100%
  );
}
.hero__content {
  position: absolute;
  top: 72px;
  left: 0; right: 0;
  padding: 0 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-mid);
  margin-bottom: 18px;
  display: block;
}
.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
  max-width: 820px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  max-width: 660px;
}

/* Hero pulled-up impact card */
.hero__card-outer {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 1200px;
  margin: -110px auto 0;
}
.hero__impact-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 38px 52px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  border: 3px solid var(--cream-border);
  position: relative;
}
.hero__impact-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--r-xl) + 4px);
  border: 2px dashed var(--cream-border);
  pointer-events: none;
}
.impact-divider {
  width: 1px;
  height: 80px;
  background: var(--cream-border);
  flex-shrink: 0;
}

/* 7. STAMP / IMPACT STAT */
.stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stamp__circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
}
.stamp__circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px dashed currentColor;
  opacity: 0.6;
}
.stamp__circle::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.2;
}
.stamp--terracotta .stamp__circle { background: var(--terracotta-light); color: var(--terracotta); }
.stamp--purple     .stamp__circle { background: var(--purple-light);    color: var(--purple); }
.stamp--green      .stamp__circle { background: #E3EFE8; color: var(--green); }
.stamp__num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.stamp__unit {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.stamp__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-mid);
  text-align: center;
  max-width: 110px;
}

/* 8. SQUIGGLE DIVIDER */
.squiggle-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 8px 0;
}
.squiggle-wrap svg { width: 100%; height: 52px; display: block; }

/* 9. SECTION HEADINGS */
.section-heading {
  margin-bottom: 56px;
}
.section-heading--center { text-align: center; }
.section-heading--center p { max-width: 620px; margin: 12px auto 0; }
.section-heading p { margin-top: 12px; color: var(--brown-mid); font-size: 1.05rem; }

/* 10. HIGHLIGHT CARDS (staggered, warm) */
.highlights {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  align-items: start;
}
.highlight-card {
  border-radius: var(--r-md);
  padding: 34px 28px;
  border: 3px solid var(--cream-border);
  box-shadow: var(--sh-card);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.highlight-card:nth-child(1) { background: var(--cream-card); }
.highlight-card:nth-child(2) { background: var(--purple-light); border-color: var(--purple-mid); margin-top: 36px; }
.highlight-card:nth-child(3) { background: var(--terracotta-light); border-color: var(--terracotta-mid); margin-top: -12px; }
.highlight-card__icon  { font-size: 2.8rem; display: block; margin-bottom: 18px; }
.highlight-card__title { font-size: 1.25rem; font-weight: 900; margin-bottom: 12px; }
.highlight-card__blurb { color: var(--brown-mid); font-size: 0.95rem; line-height: 1.85; }

/* 11. POLAROID PHOTO CARDS */
.polaroid {
  background: #fff;
  padding: 14px 14px 44px;
  border-radius: 6px;
  box-shadow: var(--sh-md);
  border: 2px solid #F0E8DC;
  transform: rotate(-2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: inline-block;
}
.polaroid:nth-child(2n)  { transform: rotate(1.8deg); }
.polaroid:nth-child(3n)  { transform: rotate(-1.2deg); }
.polaroid:nth-child(4n)  { transform: rotate(2.2deg); }
.polaroid:hover          { transform: rotate(0deg) scale(1.03); box-shadow: var(--sh-lg); }
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.polaroid__caption {
  margin-top: 10px;
  font-size: 0.82rem;
  text-align: center;
  color: var(--brown-mid);
  font-style: italic;
}

/* 12. SPLIT LAYOUT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__img {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 4px solid #fff;
  outline: 2px dashed var(--cream-border);
  outline-offset: 6px;
}
.split__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.split__body h2  { margin-bottom: 20px; }
.split__body .eyebrow { margin-bottom: 8px; }
.split__body p   { margin-bottom: 16px; color: var(--brown-mid); }
.split__body p:last-child { margin-bottom: 0; }

/* 13. PAGE BANNER (inner pages) */
.page-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(44,24,16,0.7) 0%,
    rgba(44,24,16,0.3) 60%,
    rgba(44,24,16,0.1) 100%
  );
}
.page-banner__content {
  position: absolute;
  bottom: 52px;
  left: 56px;
  color: #fff;
  max-width: 580px;
}
.page-banner__content .eyebrow { color: var(--terracotta-mid); margin-bottom: 10px; }
.page-banner__content h1 { color: #fff; margin-bottom: 10px; }
.page-banner__content p  { color: rgba(255,255,255,.88); font-size: 1.05rem; line-height: 1.7; }

/* 14. PROGRAMME CARDS */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}
.programme-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 36px 32px;
  border: 2px solid var(--cream-border);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.programme-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--terracotta);
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.programme-card:nth-child(2)::before { background: var(--purple); }
.programme-card:nth-child(3)::before { background: var(--green); }
.programme-card:nth-child(4)::before { background: var(--terracotta-mid); }
.programme-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.programme-card__icon  { font-size: 2.6rem; margin-bottom: 18px; }
.programme-card__title { font-size: 1.2rem; font-weight: 900; margin-bottom: 12px; }
.programme-card__blurb { color: var(--brown-mid); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.8; }
.programme-card__detail {
  font-size: 0.88rem;
  color: var(--brown-mid);
  border-top: 2px dashed var(--cream-border);
  padding-top: 18px;
  line-height: 1.85;
}

/* 15. WAYS CARDS (get involved) */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  align-items: start;
}
.way-card {
  background: var(--cream-card);
  border-radius: var(--r-md);
  padding: 40px 28px 36px;
  text-align: center;
  border: 3px dotted var(--cream-border);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.way-card:nth-child(1) { transform: rotate(-0.8deg); }
.way-card:nth-child(2) { transform: rotate(0.6deg) translateY(20px); background: var(--purple-light); border-color: var(--purple-mid); }
.way-card:nth-child(3) { transform: rotate(-0.4deg); background: var(--terracotta-light); border-color: var(--terracotta-mid); }
.way-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--sh-md);
}
.way-card__icon  { font-size: 3rem; margin-bottom: 20px; display: block; }
.way-card__title { font-size: 1.3rem; font-weight: 900; margin-bottom: 14px; }
.way-card__blurb { color: var(--brown-mid); font-size: 0.95rem; line-height: 1.85; }

/* 16. CTA BANNER */
.cta-banner {
  background: var(--purple);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  margin: 0 32px 96px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2   { color: #fff; margin-bottom: 16px; }
.cta-banner p    { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

/* Decorative dashed ring around cta-banner */
.cta-banner-wrap {
  position: relative;
  margin: 0 16px 96px;
}
.cta-banner-wrap .cta-banner { margin: 0; }

/* 17. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123,45,139,.4);
}
.btn--primary:hover { background: #5C1F6A; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,45,139,.45); }
.btn--secondary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,102,58,.35);
}
.btn--secondary:hover { background: #A84E28; color: #fff; transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 2.5px solid var(--purple);
}
.btn--outline:hover { background: var(--purple-light); color: var(--purple); }
.btn--white {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn--white:hover { background: var(--purple-light); color: var(--purple); transform: translateY(-2px); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* 18. BLOG CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  align-items: start;
}
.blog-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 2px solid var(--cream-border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:nth-child(1) { transform: rotate(-0.6deg); }
.blog-card:nth-child(2) { transform: rotate(0.5deg); margin-top: 20px; }
.blog-card:nth-child(3) { transform: rotate(-0.3deg); }
.blog-card:hover        { transform: rotate(0deg) translateY(-7px) !important; box-shadow: var(--sh-lg); }
.blog-card__img { overflow: hidden; aspect-ratio: 16/9; }
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body    { padding: 26px 24px 30px; }
.blog-card__cat     { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.blog-card__title   { font-size: 1.08rem; font-weight: 900; margin-bottom: 10px; line-height: 1.35; color: var(--brown); }
.blog-card__dek     { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.8; margin-bottom: 18px; }
.blog-card__link    { font-size: 0.85rem; font-weight: 800; color: var(--purple); display: inline-flex; align-items: center; gap: 4px; }
.blog-card__link:hover { color: #5C1F6A; }

/* 19. ARTICLE PAGE */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 64px 32px 96px; }
.article-back { margin-bottom: 36px; }
.article-back a { font-size: 0.88rem; font-weight: 700; color: var(--brown-mid); display: inline-flex; align-items: center; gap: 6px; }
.article-back a:hover { color: var(--purple); }
.article__cat   { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.article__title { font-size: clamp(1.7rem, 3.5vw, 2.8rem); margin-bottom: 18px; line-height: 1.2; }
.article__dek   {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--brown-mid);
  font-style: italic;
  border-left: 5px solid var(--terracotta);
  padding-left: 22px;
  margin-bottom: 36px;
}
.article__hero-img {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--sh-md);
  border: 4px solid #fff;
  outline: 2px dashed var(--cream-border);
  outline-offset: 6px;
}
.article__hero-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.article__body p {
  margin-bottom: 24px;
  color: var(--brown-mid);
  font-size: 1.05rem;
  line-height: 1.9;
}
.article__body p:first-child { font-size: 1.12rem; font-weight: 500; color: var(--brown); }
.article__body p:last-child { margin-bottom: 0; }

/* 20. TRUSTEE CARDS */
.trustees-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.trustee-card {
  background: var(--cream-card);
  border-radius: var(--r-md);
  padding: 30px 24px;
  text-align: center;
  border: 2px solid var(--cream-border);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s;
}
.trustee-card:nth-child(2) { transform: translateY(12px); }
.trustee-card:hover { transform: translateY(-4px); }
.trustee-card:nth-child(2):hover { transform: translateY(8px) scale(1.02); }
.trustee-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--purple-light);
  border: 3px dashed var(--purple-mid);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
}
.trustee-card__name { font-weight: 900; font-size: 1.05rem; margin-bottom: 4px; }
.trustee-card__role { font-size: 0.85rem; color: var(--purple); font-weight: 700; }

/* 21. CONTACT FORM */
.contact-form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 52px 44px;
  box-shadow: var(--sh-md);
  border: 2px solid var(--cream-border);
}
.contact-form h2 { margin-bottom: 32px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--brown);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  line-height: 1.5;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123,45,139,0.1);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* 22. CONTACT INFO PANEL */
.contact-info {
  background: var(--cream-card);
  border-radius: var(--r-md);
  padding: 40px 36px;
  border: 3px dotted var(--cream-border);
  height: 100%;
}
.contact-info h3   { margin-bottom: 24px; }
.contact-info__item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info__icon  { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-info__label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 4px; }
.contact-info__val   { font-size: 0.9rem; line-height: 1.65; color: var(--brown-mid); }
.contact-info__val a { color: var(--purple); word-break: break-all; font-weight: 600; }
.contact-info__val a:hover { color: #5C1F6A; }

/* 23. MISSION BLOCK */
.mission-block {
  background: var(--terracotta-light);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  border: 3px solid var(--terracotta-mid);
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-size: 12rem;
  font-weight: 900;
  color: var(--terracotta);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
}
.mission-block .eyebrow { margin-bottom: 16px; }
.mission-block p { font-size: 1.08rem; line-height: 1.9; color: var(--brown-mid); position: relative; z-index: 1; }

/* 24. HOME INTRO SECTION */
.home-intro { background: var(--cream); }
.home-intro__text { max-width: 760px; }
.home-intro__text .lead { margin-bottom: 28px; }

/* 25. STORY SECTION */
.story-block { column-count: 2; column-gap: 48px; }
.story-block p { margin-bottom: 20px; break-inside: avoid; color: var(--brown-mid); line-height: 1.9; font-size: 1.01rem; }

/* 26. PULL QUOTE */
.pullquote {
  border-left: 5px solid var(--purple);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--purple-light);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.pullquote p { font-size: 1.1rem; font-style: italic; color: var(--brown); line-height: 1.75; }
.pullquote cite { font-size: 0.85rem; font-weight: 800; color: var(--purple); display: block; margin-top: 10px; }

/* 27. ABOUT TEASER (homepage) */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 2px solid var(--cream-border);
}
.about-teaser__img { height: 100%; min-height: 420px; }
.about-teaser__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-teaser__body { padding: 52px 48px; }
.about-teaser__body h2 { margin-bottom: 18px; }
.about-teaser__body p  { margin-bottom: 18px; color: var(--brown-mid); }

/* 28. FOOTER */
.footer {
  background: var(--brown);
  color: #fff;
  padding: 72px 0 36px;
  margin-top: 0;
}
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.footer__logo     { height: 42px; width: auto; }
.footer__wordmark { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-mid);
  margin-bottom: 18px;
}
.footer__col p { font-size: 0.9rem; color: rgba(255,255,255,.65); line-height: 1.9; margin-bottom: 0; }
.footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  line-height: 2.1;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
  word-break: break-all;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,.45); }

/* 29. DECORATIVE ELEMENTS */
.dotted-rule {
  border: none;
  border-top: 3px dotted var(--cream-border);
  margin: 48px 0;
}
.badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.tag--purple  { background: var(--purple-light); color: var(--purple); }
.tag--terra   { background: var(--terracotta-light); color: var(--terracotta); }
.tag--green   { background: #E3EFE8; color: var(--green); }

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

/* 30. RESPONSIVE: TABLET */
@media (max-width: 960px) {
  section { padding: 68px 0; }
  .hero__image-wrap { height: 580px; }
  .hero__content    { padding: 0 32px; }
  .hero__card-outer { padding: 0 20px; margin-top: -80px; }
  .hero__impact-card{ padding: 28px 24px; flex-wrap: wrap; justify-content: center; gap: 24px; }
  .impact-divider   { display: none; }
  .highlights       { grid-template-columns: 1fr 1fr; }
  .highlight-card:nth-child(2) { margin-top: 0; }
  .highlight-card:nth-child(3) { margin-top: 0; grid-column: span 2; max-width: 480px; margin-left: auto; margin-right: auto; }
  .split            { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse   { direction: ltr; }
  .programme-grid   { grid-template-columns: 1fr; }
  .ways-grid        { grid-template-columns: 1fr 1fr; }
  .way-card         { transform: none !important; }
  .ways-grid .way-card:nth-child(3) { grid-column: span 2; max-width: 440px; margin: 0 auto; }
  .blog-grid        { grid-template-columns: 1fr 1fr; }
  .blog-card:nth-child(3) { grid-column: span 2; max-width: 480px; margin: 0 auto; }
  .footer__grid     { grid-template-columns: 1fr 1fr; }
  .trustees-grid    { grid-template-columns: 1fr 1fr; }
  .trustee-card:nth-child(3) { grid-column: span 2; max-width: 300px; margin: 0 auto; }
  .about-teaser-grid { grid-template-columns: 1fr; }
  .about-teaser__img { min-height: 300px; max-height: 340px; }
  .story-block      { column-count: 1; }
  .cta-banner       { padding: 52px 36px; margin: 0 16px 72px; }
  .page-banner      { height: 300px; }
  .page-banner__content { left: 32px; bottom: 36px; }
}

/* 31. RESPONSIVE: MOBILE */
@media (max-width: 600px) {
  .container, .container--narrow { padding: 0 20px; }
  section { padding: 56px 0; }

  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }
  .nav__wordmark  { max-width: 140px; height: 24px; }
  .nav__logo      { height: 36px; }

  .hero__image-wrap { height: 520px; }
  .hero__content    { top: 48px; padding: 0 22px; }
  .hero__title      { font-size: 1.9rem; }
  .hero__sub        { font-size: 0.95rem; }
  .hero__card-outer { margin-top: 0; padding: 0 16px; }
  .hero__impact-card {
    padding: 24px 16px;
    border-radius: var(--r-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .stamp { flex-direction: row; align-items: center; gap: 16px; }
  .stamp__circle { width: 72px; height: 72px; flex-shrink: 0; }
  .stamp__num    { font-size: 1.4rem; }
  .stamp__label  { text-align: left; max-width: none; font-size: 0.78rem; }

  .highlights   { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; grid-column: auto; max-width: none; }

  .ways-grid { grid-template-columns: 1fr; }
  .ways-grid .way-card:nth-child(3) { grid-column: auto; max-width: none; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card  { transform: none !important; }
  .blog-card:nth-child(3) { grid-column: auto; max-width: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .trustees-grid { grid-template-columns: 1fr; }
  .trustee-card:nth-child(2) { transform: none; }
  .trustee-card:nth-child(3) { grid-column: auto; max-width: none; }

  .page-banner { height: 240px; }
  .page-banner__content { left: 22px; bottom: 24px; }
  .page-banner__content h1 { font-size: 1.7rem; }

  .cta-banner   { padding: 40px 24px; margin: 0 12px 56px; border-radius: var(--r-lg); }
  .mission-block { padding: 36px 28px; }
  .contact-form  { padding: 30px 22px; }
  .contact-info  { padding: 30px 22px; }
  .about-teaser__body { padding: 32px 24px; }
  .article-wrap  { padding: 40px 20px 72px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .story-block   { column-count: 1; }
  .section-heading { margin-bottom: 40px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
