/* ============================================================
   Vibrant Health Advocates – Solenne
   Design: Warm & Human Community · Scrapbook / Polaroid
   ============================================================ */

/* === TOKENS === */
:root {
  --cream:          #FDF6EC;
  --cream-alt:      #FEF9F2;
  --cream-section:  #FAF0E0;
  --sand:           #E8D5B7;
  --terracotta:     #C4622D;
  --terra-dark:     #9E4820;
  --terra-pale:     #FDF0E6;
  --brand:          #7B2D8B;
  --brand-dark:     #5A1D6A;
  --brand-light:    #F0D9F5;
  --brand-mid:      #BF8FD0;
  --brown-dark:     #2C1810;
  --brown-mid:      #6B4034;
  --brown-muted:    #9A7060;
  --white:          #FFFFFF;
  --footer-bg:      #3A1E14;

  --font:           system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --section-v:      clamp(64px, 9vw, 108px);
  --section-sm:     clamp(40px, 5vw, 64px);
  --container:      1160px;
  --pad-h:          clamp(20px, 5vw, 60px);
  --gap:            clamp(16px, 3vw, 32px);

  --r-photo:        28px;
  --r-card:         20px;
  --r-pill:         999px;

  --shadow-sm:      0 2px 12px rgba(44,24,16,.08);
  --shadow-md:      0 4px 24px rgba(44,24,16,.12);
  --shadow-lg:      0 8px 40px rgba(44,24,16,.16);
  --shadow-polar:   3px 8px 28px rgba(44,24,16,.18);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); }
a:hover { text-decoration: underline; }
ul { list-style: none; }
p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; }

/* === LAYOUT CONTAINERS === */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-h);
}
.section     { padding-block: var(--section-v); }
.section-sm  { padding-block: var(--section-sm); }
.section-alt       { background: var(--cream-alt); }
.section-lavender  { background: var(--brand-light); }
.section-terra     { background: var(--terra-pale); }
.section-dark      { background: var(--footer-bg); color: var(--cream); }
.section-cream     { background: var(--cream-section); }

/* === NAVIGATION === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2.5px solid var(--sand);
}
.nav-wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding: 10px var(--pad-h);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup .logo-icon  { height: 44px; width: auto; }
.brand-lockup .wordmark   { height: 27px; width: auto; max-width: 230px; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-list a {
  display: block;
  padding: 7px 13px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brown-mid);
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a.active {
  background: var(--brand-light);
  color: var(--brand);
}
.nav-cta-wrap { flex-shrink: 0; }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brown-dark);
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .18s;
  border: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn-primary       { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terra-dark); color: var(--white); }
.btn-brand         { background: var(--brand); color: var(--white); }
.btn-brand:hover   { background: var(--brand-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2.5px solid var(--terracotta);
  padding: 11px 28px;
}
.btn-outline:hover { background: var(--terra-pale); }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 2.5px solid rgba(253,246,236,.65);
  padding: 11px 28px;
}
.btn-outline-light:hover { background: rgba(253,246,236,.12); }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

/* === HERO (homepage) === */
.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(253,246,236,.95) 0%,
    rgba(253,246,236,.82) 40%,
    rgba(253,246,236,.40) 70%,
    transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding: clamp(110px, 16vh, 170px) var(--pad-h) clamp(160px, 22vh, 240px);
}
.hero-inner { max-width: 560px; position: relative; }
.hero h1 { color: var(--brown-dark); margin-bottom: 20px; }
.hero .hero-sub {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 490px;
}

/* === HERO STAMP (decorative, in hero) === */
.hero-stamp-wrap {
  position: absolute;
  top: -20px;
  right: -10px;
}

/* === HERO OVERLAP CARD === */
.hero-overlap-zone {
  position: relative;
  z-index: 20;
  margin-top: -110px;
  padding-inline: var(--pad-h);
  padding-bottom: 0;
}
.hero-overlap-card {
  max-width: 740px;
  margin-inline: auto;
  background: var(--cream);
  border-radius: var(--r-card);
  padding: 36px 42px;
  box-shadow: var(--shadow-lg);
  border: 2.5px dotted var(--brand-mid);
  display: flex;
  align-items: center;
  gap: 32px;
}
.overlap-text { flex: 1; }
.overlap-text .overlap-quote {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 800;
  font-style: italic;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.overlap-text .overlap-sub {
  font-size: .9rem;
  color: var(--brown-muted);
  margin-bottom: 0;
}

/* === STAMP === */
.stamp {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 3px dashed var(--terracotta);
  background: var(--terra-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-9deg);
  flex-shrink: 0;
  padding: 10px;
  gap: 2px;
}
.stamp-lg  { width: 130px; height: 130px; }
.stamp-brand { border-color: var(--brand); background: var(--brand-light); }
.stamp .s-top  { font-size: .58rem; font-weight: 900; color: var(--terracotta); letter-spacing: .12em; text-transform: uppercase; }
.stamp .s-main { font-size: 1.05rem; font-weight: 900; color: var(--brown-dark); line-height: 1.1; }
.stamp .s-foot { font-size: .58rem; font-weight: 800; color: var(--terracotta); letter-spacing: .1em; text-transform: uppercase; }
.stamp .s-star { font-size: .85rem; color: var(--terracotta); line-height: 1; }
.stamp-brand .s-top,
.stamp-brand .s-foot,
.stamp-brand .s-star  { color: var(--brand); }

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

/* === STATS ROW === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.stat-item {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--sand);
  transition: border-color .2s, box-shadow .2s;
}
.stat-item:hover { border-color: var(--terra-pale); box-shadow: var(--shadow-sm); }
.stat-num {
  display: block;
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: .9rem;
  color: var(--brown-muted);
  font-weight: 600;
  line-height: 1.4;
}

/* === HIGHLIGHT / STAGGERED CARDS === */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}
.highlights-grid .hl-card:nth-child(2) { margin-top: 52px; }

.hl-card {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .25s, box-shadow .25s;
}
.hl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.hl-card .card-img {
  overflow: hidden;
  border-radius: var(--r-photo) var(--r-photo) 0 0;
  aspect-ratio: 4/3;
}
.hl-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.hl-card:hover .card-img img { transform: scale(1.05); }
.hl-card .card-body { padding: 26px 28px 32px; }
.hl-card .card-icon { font-size: 1.9rem; margin-bottom: 12px; display: block; }
.hl-card h3 { margin-bottom: 10px; }
.hl-card p  { color: var(--brown-muted); font-size: .95rem; line-height: 1.65; margin-bottom: 0; }

/* === POLAROID CLUSTER === */
.polaroid-cluster {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 10px;
  flex-wrap: wrap;
}
.polaroid {
  background: var(--white);
  padding: 10px 10px 40px;
  box-shadow: var(--shadow-polar);
  border-radius: 3px;
  width: clamp(160px, 18vw, 210px);
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(1.8deg); margin-top: 24px; }
.polaroid:nth-child(3) { transform: rotate(-1.5deg); margin-top: 44px; }
.polaroid:hover        { transform: rotate(0) scale(1.06) !important; box-shadow: var(--shadow-lg); z-index: 5; }
.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.polaroid-caption {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  text-align: center;
  font-size: .7rem;
  color: var(--brown-muted);
  font-style: italic;
  line-height: 1.3;
  padding-inline: 8px;
}

/* === PHOTO BANNER (full-bleed within section) === */
.photo-banner { border-radius: var(--r-photo); overflow: hidden; }
.photo-banner img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(44,24,16,.78) 0%,
    rgba(44,24,16,.38) 55%,
    rgba(44,24,16,.08) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding: 80px var(--pad-h) 52px;
  width: 100%;
}
.page-hero-content h1    { color: var(--white); margin-bottom: 12px; }
.page-hero-content .lead { color: rgba(253,246,236,.88); max-width: 560px; font-size: 1.05rem; margin-bottom: 0; }
.page-hero-tag {
  display: inline-block;
  background: rgba(253,246,236,.18);
  border: 1.5px solid rgba(253,246,236,.4);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

/* === PROGRAMME CARDS === */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.prog-card {
  background: var(--cream);
  border-radius: var(--r-card);
  padding: 34px 38px;
  border: 2px solid var(--sand);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.prog-card:hover {
  border-color: var(--brand-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.prog-card .prog-icon { font-size: 2.1rem; margin-bottom: 14px; display: block; }
.prog-card h3 { margin-bottom: 10px; color: var(--brown-dark); }
.prog-card .prog-blurb {
  font-weight: 700;
  color: var(--brown-mid);
  margin-bottom: 14px;
  font-size: 1rem;
}
.prog-card .prog-detail {
  font-size: .92rem;
  color: var(--brown-muted);
  line-height: 1.72;
  margin-bottom: 0;
}

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card .card-img { aspect-ratio: 3/2; overflow: hidden; }
.blog-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-card:hover .card-img img { transform: scale(1.04); }
.blog-card .card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .card-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  width: fit-content;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--brown-dark); line-height: 1.35; }
.blog-card .dek {
  font-size: .9rem;
  color: var(--brown-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card .read-more {
  font-weight: 800;
  font-size: .88rem;
  color: var(--terracotta);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-card .read-more:hover { text-decoration: underline; }

/* === ARTICLE LAYOUT === */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  margin-bottom: 28px;
}
.article-back:hover { text-decoration: underline; }
.article-hero-img {
  border-radius: var(--r-photo);
  overflow: hidden;
  margin-bottom: 40px;
}
.article-hero-img img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.article-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.article-header h1 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.article-dek {
  font-size: 1.1rem;
  color: var(--brown-mid);
  font-style: italic;
  border-left: 5px solid var(--terracotta);
  padding-left: 18px;
  margin-bottom: 0;
  line-height: 1.65;
}
.article-body {
  max-width: 680px;
  margin-inline: auto;
  font-size: 1.04rem;
  line-height: 1.82;
  color: var(--brown-dark);
}
.article-body p { margin-bottom: 1.6em; }
.article-body p:last-child { margin-bottom: 0; }

/* === CONTACT FORM === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--brown-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream-alt);
  border: 2px solid var(--sand);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--brown-dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--brand-mid); box-shadow: 0 0 0 3px rgba(123,45,139,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--brown-mid); margin-bottom: 2px; }
.contact-item p { font-size: .9rem; color: var(--brown-muted); margin-bottom: 0; }
.contact-item a { color: var(--terracotta); word-break: break-word; }

/* === CTA BAND === */
.cta-band {
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
  padding: clamp(64px, 9vw, 104px) var(--pad-h);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(0,0,0,.07) 0%, transparent 55%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2  { color: var(--white); margin-bottom: 16px; }
.cta-band p   { color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 540px; margin-inline: auto; margin-bottom: 32px; font-size: 1.05rem; }
.cta-band .stamp { margin: 0 auto 28px; }

/* === MISSION BOX === */
.mission-box {
  background: var(--brand);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255,255,255,.07);
  line-height: 1;
  font-family: Georgia, serif;
}
.mission-box p {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.7;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

/* === TRUSTEES === */
.trustees-row {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
}
.trustee-card {
  background: var(--white);
  border: 2px solid var(--sand);
  border-radius: var(--r-card);
  padding: 28px 28px 32px;
  flex: 1;
  min-width: 180px;
  text-align: center;
  transition: border-color .2s;
}
.trustee-card:hover { border-color: var(--brand-mid); }
.trustee-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--brand-light);
  border: 3px solid var(--brand-mid);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.trustee-card h4 { margin-bottom: 4px; }
.trustee-role { font-size: .85rem; color: var(--brand); font-weight: 700; }

/* === WAYS (get involved) === */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}
.way-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--terracotta);
  transition: transform .25s, box-shadow .25s;
}
.way-card:nth-child(2) { border-top-color: var(--brand); margin-top: 36px; }
.way-card:nth-child(3) { border-top-color: var(--brand-mid); }
.way-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.way-icon { font-size: 2.3rem; margin-bottom: 14px; display: block; }
.way-card h3 { margin-bottom: 10px; }
.way-card p  { color: var(--brown-muted); font-size: .95rem; margin-bottom: 0; line-height: 1.68; }

/* === TWO COLUMN === */
.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.two-col-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* === ROUNDED IMAGES === */
.img-rounded   { border-radius: var(--r-photo); overflow: hidden; }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-aspect-tall   { aspect-ratio: 3/4; }
.img-aspect-wide   { aspect-ratio: 4/3; }
.img-aspect-square { aspect-ratio: 1/1; }
.img-offset { margin-top: 40px; }

/* === PULL QUOTE === */
.pull-quote {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 700;
  color: var(--brown-dark);
  border-left: 5px solid var(--terracotta);
  padding: 10px 0 10px 22px;
  line-height: 1.45;
  margin: 36px 0;
}

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  font-size: .77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.section-label-brand { color: var(--brand); }

/* === DOTTED BOX === */
.dotted-box {
  border: 2.5px dotted var(--brand-mid);
  border-radius: var(--r-card);
  padding: 28px 32px;
}

/* === PROSE (flowing text) === */
.prose p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--brown-mid);
  margin-bottom: 1.5em;
}
.prose p:last-child { margin-bottom: 0; }
.reading { max-width: 720px; }

/* === WHAT WE DO feature text === */
.feature-text {
  font-size: 1.08rem;
  line-height: 1.82;
  color: var(--brown-mid);
}
.feature-text p { margin-bottom: 1.5em; }

/* === INTRO LEAD === */
.lead-text {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.78;
  color: var(--brown-mid);
}

/* === FOOTER === */
.site-footer {
  background: var(--footer-bg);
  color: var(--cream);
  padding: 64px var(--pad-h) 32px;
}
.footer-inner { max-width: var(--container); margin-inline: auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(253,246,236,.14);
  margin-bottom: 28px;
}
.footer-brand .brand-lockup { margin-bottom: 16px; }
.footer-brand .brand-lockup .wordmark   { filter: brightness(0) invert(1); }
.footer-brand .brand-lockup .logo-icon  { filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; color: rgba(253,246,236,.65); line-height: 1.65; margin-bottom: 0; }

.footer-nav h4, .footer-contact h4 {
  color: var(--cream);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 16px;
}
.footer-nav ul li a {
  color: rgba(253,246,236,.72);
  text-decoration: none;
  font-size: .9rem;
  display: block;
  padding: 3px 0;
  transition: color .18s;
}
.footer-nav ul li a:hover { color: var(--cream); }
.footer-nav ul li + li { margin-top: 2px; }

.footer-contact p {
  font-size: .85rem;
  color: rgba(253,246,236,.7);
  margin-bottom: 10px;
  line-height: 1.5;
  word-break: break-word;
}
.footer-contact a { color: rgba(253,246,236,.88); text-decoration: none; }
.footer-contact a:hover { color: var(--cream); text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(253,246,236,.45); margin-bottom: 0; }

/* === SPACERS & UTILITIES === */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-muted  { color: var(--brown-muted); }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.inline-flex { display: inline-flex; align-items: center; gap: 8px; }

/* === DECORATIVE DOTS BG === */
.dot-bg {
  background-image: radial-gradient(circle, var(--sand) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid .hl-card:nth-child(2) { margin-top: 0; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .programmes-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-even { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlights-grid .hl-card:nth-child(2) { margin-top: 0; }
  .ways-grid { grid-template-columns: 1fr; }
  .ways-grid .way-card:nth-child(2) { margin-top: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trustees-row { flex-direction: column; }

  .hero { min-height: 72vh; }
  .hero-content { padding-top: 100px; padding-bottom: 160px; }
  .hero-overlap-zone { margin-top: -60px; }
  .hero-overlap-card { flex-direction: column; text-align: center; padding: 28px 24px; }

  .nav-list { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 2.5px solid var(--sand); padding: 12px var(--pad-h) 16px; z-index: 200; }
  .nav-list.nav-open { display: flex; }
  .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .nav-wrap { flex-wrap: wrap; }

  .polaroid-cluster { flex-direction: column; align-items: center; }
  .polaroid { transform: none !important; margin-top: 0 !important; width: 200px; }

  .img-offset { margin-top: 0; }
}

@media (max-width: 480px) {
  .hero-overlap-card { padding: 22px 18px; gap: 16px; }
  .prog-card { padding: 24px 20px; }
  .way-card  { padding: 28px 22px; }
  .mission-box { padding: 28px 22px; }
}
