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

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

/* TOKENS */
:root {
  --cream:           #FDF6EC;
  --cream-mid:       #F5E6CC;
  --cream-dark:      #E8D0A8;
  --terracotta:      #C4603A;
  --terracotta-lt:   #E08060;
  --terracotta-pale: #FAE8DE;
  --brand:           #7B2D8B;
  --brand-lt:        #F0D9F5;
  --brand-pale:      #FAF3FC;
  --warm-900:        #2C1810;
  --warm-700:        #5C3520;
  --warm-500:        #8B6040;
  --warm-200:        #E8D5BE;
  --white:           #FFFFFF;

  --r-sm:  12px;
  --r-md:  24px;
  --r-lg:  36px;
  --r-xl:  56px;

  --sh-sm: 0 2px 10px  rgba(44,24,16,.08);
  --sh-md: 0 5px 24px  rgba(44,24,16,.13);
  --sh-lg: 0 10px 48px rgba(44,24,16,.18);
  --sh-xl: 0 16px 64px rgba(44,24,16,.22);

  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* BASE */
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--warm-900);
  line-height: 1.85;
  font-size: 1.05rem;
}
img { max-width: 100%; display: block; }
a  { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* TYPE */
h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); font-weight: 900; line-height: 1.12; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.7rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 700; }

/* LAYOUT */
.container        { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow{ max-width: 760px;  margin: 0 auto; padding: 0 1.5rem; }

/* =====================================================
   HEADER & NAV
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-dark);
  box-shadow: 0 2px 12px rgba(44,24,16,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup .logo-icon { height: 46px; width: auto; }
.brand-lockup .wordmark  { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
}
.nav-links a {
  padding: .4rem .8rem;
  border-radius: 24px;
  color: var(--warm-700);
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--terracotta-pale);
  color: var(--terracotta);
  text-decoration: none;
}
.nav-links .nav-cta {
  background: var(--brand);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 24px;
}
.nav-links .nav-cta:hover {
  background: var(--terracotta) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--warm-700);
  border-radius: 2px;
  margin: 5px 0;
  transition: .25s;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--warm-900);
  color: var(--warm-200);
  padding: 4.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-lockup .logo-icon { filter: brightness(0) invert(1); }
.footer-brand .brand-lockup .wordmark  { filter: brightness(0) invert(1); }
.footer-tagline {
  margin-top: 1rem;
  font-size: .88rem;
  color: var(--warm-200);
  line-height: 1.6;
}
.footer-emails { margin-top: 1.1rem; }
.footer-emails p { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--warm-500); margin-bottom: .5rem; font-weight: 700; }
.footer-emails a {
  display: block;
  color: var(--brand-lt);
  font-size: .82rem;
  word-break: break-all;
  margin-bottom: .4rem;
  line-height: 1.5;
  text-decoration: none;
}
.footer-emails a:hover { color: var(--white); text-decoration: underline; }
.footer-col h4 {
  color: var(--terracotta-lt);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a { color: var(--warm-200); font-size: .9rem; text-decoration: none; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; }
.footer-bottom {
  max-width: 1180px;
  margin: 1.8rem auto 0;
  font-size: .78rem;
  color: var(--warm-500);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .5rem;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  border: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); text-decoration: none; }
.btn-primary  { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: #a84e2e; color: var(--white); }
.btn-secondary{ background: var(--brand);      color: var(--white); }
.btn-secondary:hover { background: #652476; color: var(--white); }
.btn-outline   { background: transparent; color: var(--white); border: 2.5px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }

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

/* =====================================================
   STAMP BADGE
   ===================================================== */
.stamp-badge {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 3.5px dashed var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--brand);
  background: var(--brand-lt);
  padding: 16px;
  line-height: 1.4;
  flex-shrink: 0;
  rotate: -8deg;
}
.stamp-badge .stamp-num {
  font-size: 2.1rem;
  line-height: 1;
  display: block;
  letter-spacing: 0;
}
.stamp-badge .stamp-sub {
  font-size: .6rem;
  opacity: .8;
}

/* =====================================================
   POLAROID CARDS
   ===================================================== */
.polaroid {
  background: var(--white);
  padding: 12px 12px 52px;
  box-shadow: var(--sh-lg);
  display: inline-block;
  position: relative;
  border-radius: 4px;
}
.polaroid img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.polaroid .pol-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-style: italic;
  color: var(--warm-500);
  padding: 0 10px;
  text-align: center;
}
.tilt-l    { transform: rotate(-3.8deg); }
.tilt-r    { transform: rotate( 3.2deg); }
.tilt-sm-l { transform: rotate(-1.8deg); }
.tilt-sm-r { transform: rotate( 1.5deg); }

/* =====================================================
   DOTTED-BORDER CARD
   ===================================================== */
.dotted-card {
  border: 2.5px dotted var(--terracotta);
  border-radius: var(--r-md);
  padding: 2rem 2.25rem;
  background: var(--cream);
}
.dotted-card-brand {
  border: 2.5px dotted var(--brand);
  border-radius: var(--r-md);
  padding: 2rem 2.25rem;
  background: var(--brand-pale);
}

/* =====================================================
   SECTION WRAPPERS
   ===================================================== */
.section           { padding: 5.5rem 1.5rem; }
.section--alt      { background: var(--terracotta-pale); }
.section--brand    { background: var(--brand-pale); }
.section--mid      { background: var(--cream-mid); }
.section--dark     { background: var(--warm-900); color: var(--warm-200); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terracotta);
  margin-bottom: .75rem;
}
.section-label--brand { color: var(--brand); }
.section-title { margin-bottom: 1.25rem; }
.section-lead  {
  font-size: 1.12rem;
  color: var(--warm-700);
  line-height: 1.8;
  max-width: 680px;
}

/* =====================================================
   HOMEPAGE HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(44,24,16,.38) 0%,
    rgba(44,24,16,.22) 45%,
    rgba(44,24,16,.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 148px 1.5rem 240px;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: var(--brand-lt);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .35rem 1rem;
  border-radius: 24px;
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.28);
  max-width: 700px;
}
.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: 1.12rem;
  margin-top: 1.25rem;
  max-width: 560px;
  line-height: 1.75;
}

/* Pulled-up overlap card */
.hero-overlap-outer {
  position: relative;
  z-index: 5;
  margin-top: -160px;
  padding: 0 1.5rem 5rem;
}
.pulled-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 2.75rem 3rem;
  box-shadow: var(--sh-xl);
  max-width: 1060px;
  margin: 0 auto;
}
.pulled-card-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.impact-bar {
  display: flex;
  gap: 0;
  flex: 1;
  flex-wrap: wrap;
}
.impact-stat {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 0 1.5rem;
  border-right: 2px dotted var(--cream-dark);
}
.impact-stat:last-child { border-right: none; }
.impact-stat .stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}
.impact-stat .stat-lbl {
  font-size: .88rem;
  color: var(--warm-700);
  margin-top: .45rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

/* =====================================================
   HIGHLIGHTS (staggered 3-up)
   ===================================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--sh-md);
  border: 2.5px dotted var(--cream-dark);
  position: relative;
}
.highlight-card:nth-child(2) { margin-top: 2.5rem; }
.highlight-card .hi-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  display: block;
}
.highlight-card h3 { color: var(--warm-900); margin-bottom: .75rem; }
.highlight-card p  { color: var(--warm-700); font-size: .98rem; line-height: 1.8; }
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 20px;
  width: 60px; height: 6px;
  background: var(--terracotta);
  border-radius: 3px 3px 0 0;
  opacity: .5;
}
.highlight-card:nth-child(2)::after { background: var(--brand); }

/* =====================================================
   INTRO SPLIT
   ===================================================== */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.intro-split p { color: var(--warm-700); margin-bottom: 1.25rem; line-height: 1.9; }

/* =====================================================
   FULL-BLEED BANNER
   ===================================================== */
.full-banner-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 500px;
  margin: 0 1.5rem;
  box-shadow: var(--sh-lg);
}
.full-banner-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.full-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,24,16,.72) 0%, rgba(44,24,16,.1) 65%);
  display: flex;
  align-items: center;
  padding: 3.5rem 4rem;
}
.banner-content { color: var(--white); max-width: 460px; }
.banner-content h2 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.banner-content p  { color: rgba(255,255,255,.88); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* =====================================================
   PAGE HERO (non-home)
   ===================================================== */
.page-hero {
  background: var(--terracotta-pale);
  padding: 5rem 1.5rem 4rem;
  border-bottom: 2px dotted var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 30px solid rgba(196,96,58,.08);
  top: -80px; right: 10%;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.page-hero-text .section-label { font-size: .78rem; }
.page-hero-text h1 { margin-bottom: 1.25rem; }
.page-hero-text p  { color: var(--warm-700); font-size: 1.1rem; max-width: 600px; line-height: 1.8; }

/* Photo cluster for page heroes */
.photo-cluster {
  position: relative;
  width: 320px;
  height: 300px;
  flex-shrink: 0;
}
.photo-cluster .pol-a {
  position: absolute;
  width: 200px;
  top: 0; left: 0;
}
.photo-cluster .pol-b {
  position: absolute;
  width: 165px;
  bottom: 0; right: 0;
  z-index: 2;
}

/* =====================================================
   MISSION BLOCK
   ===================================================== */
.mission-block {
  background: var(--brand);
  border-radius: var(--r-lg);
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '\201C';
  position: absolute;
  top: -30px; left: 20px;
  font-size: 18rem;
  color: rgba(255,255,255,.06);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  pointer-events: none;
}
.mission-block p {
  font-size: 1.18rem;
  line-height: 1.8;
  color: rgba(255,255,255,.94);
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.mission-attribution {
  margin-top: 1.5rem;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-lt);
  position: relative;
  z-index: 1;
}

/* =====================================================
   TRUSTEES
   ===================================================== */
.trustees-flex {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trustee-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--sh-sm);
  border: 2px dotted var(--brand-lt);
  min-width: 190px;
}
.trustee-name { font-weight: 800; font-size: 1.08rem; margin-bottom: .25rem; }
.trustee-role { color: var(--brand); font-size: .85rem; font-weight: 600; }

/* =====================================================
   PROGRAMMES (Our Work)
   ===================================================== */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}
.programme-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--sh-md);
  border-top: 5px solid var(--terracotta);
  position: relative;
  overflow: hidden;
}
.programme-card:nth-child(3),
.programme-card:nth-child(4) { border-top-color: var(--brand); }
.programme-card:nth-child(even) { margin-top: 2rem; }
.prog-icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.programme-card h3 { margin-bottom: .6rem; }
.programme-card .blurb {
  color: var(--warm-700);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.programme-card .detail {
  color: var(--warm-500);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* =====================================================
   GET INVOLVED
   ===================================================== */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.way-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2.75rem 2rem;
  box-shadow: var(--sh-md);
  text-align: center;
}
.way-card:nth-child(2) { margin-top: 2.5rem; }
.way-icon { font-size: 3rem; margin-bottom: 1.1rem; display: block; }
.way-card h3 { margin-bottom: .75rem; }
.way-card p { color: var(--warm-700); font-size: .97rem; line-height: 1.8; }

/* =====================================================
   BLOG
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.article-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
}
.article-card:nth-child(2) { margin-top: 2.5rem; }
.article-card .card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.article-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.article-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terracotta);
  margin-bottom: .6rem;
}
.article-card h3 {
  font-size: 1.1rem;
  margin-bottom: .65rem;
  line-height: 1.35;
}
.article-card .dek {
  font-size: .9rem;
  color: var(--warm-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.read-more {
  display: inline-block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--terracotta);
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
  text-decoration: none;
  align-self: flex-start;
}
.read-more:hover { color: var(--brand); text-decoration: none; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .info-block { margin-bottom: 2.25rem; }
.contact-info .info-block h4 {
  color: var(--terracotta);
  margin-bottom: .5rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-info .info-block p,
.contact-info .info-block a {
  color: var(--warm-700);
  font-size: .95rem;
  line-height: 1.7;
  word-break: break-word;
  text-decoration: none;
}
.contact-info .info-block a:hover { color: var(--brand); text-decoration: underline; }
.contact-form {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2.75rem;
  box-shadow: var(--sh-md);
  border: 2px dotted var(--cream-dark);
}
.contact-form h3 { margin-bottom: 1.75rem; color: var(--warm-900); }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: .4rem;
  font-size: .9rem;
  color: var(--warm-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--r-sm);
  background: var(--cream);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--warm-900);
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
}
.form-group textarea { min-height: 148px; resize: vertical; }
.form-note {
  font-size: .8rem;
  color: var(--warm-500);
  margin-top: 1.2rem;
  line-height: 1.65;
  border-top: 1px dotted var(--cream-dark);
  padding-top: 1rem;
}

/* =====================================================
   ARTICLE PAGE
   ===================================================== */
.article-hero-wrap {
  height: 440px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 2rem 1.5rem;
  box-shadow: var(--sh-lg);
}
.article-hero-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--terracotta);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 2rem;
  text-decoration: none;
}
.back-link:hover { color: var(--brand); text-decoration: none; }
.article-label-sm {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--terracotta);
  margin-bottom: .75rem;
  display: block;
}
.article-body h1 { margin-bottom: 1.1rem; }
.article-dek-lede {
  font-size: 1.18rem;
  color: var(--warm-700);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 2.5px dotted var(--cream-dark);
}
.article-body p { color: var(--warm-700); line-height: 1.95; margin-bottom: 1.5rem; font-size: 1.03rem; }
.article-related {
  background: var(--terracotta-pale);
  border-radius: var(--r-md);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  border: 2px dotted var(--cream-dark);
}
.article-related h4 { color: var(--terracotta); margin-bottom: 1rem; }
.article-related a { color: var(--warm-900); font-weight: 600; display: block; margin-bottom: .5rem; }
.article-related a:hover { color: var(--brand); }

/* =====================================================
   CTA BANNER SECTION
   ===================================================== */
.cta-section {
  background: var(--terracotta);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-section::before { width: 500px; height: 500px; top: -180px; right: -80px; }
.cta-section::after  { width: 320px; height: 320px; bottom: -120px; left: -60px; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p  {
  color: rgba(255,255,255,.9);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.cta-section .btn { position: relative; z-index: 1; }

/* =====================================================
   DECORATIVE DETAILS
   ===================================================== */
.dot-pattern-bg {
  background-image: radial-gradient(circle, var(--cream-dark) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.accent-line {
  width: 72px;
  height: 5px;
  background: var(--terracotta);
  border-radius: 3px;
  margin: 1rem 0 1.75rem;
}
.accent-line--brand { background: var(--brand); }
.accent-line--center { margin: 1rem auto 1.75rem; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  .highlights-grid        { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2) { margin-top: 0; }
  .intro-split            { grid-template-columns: 1fr; gap: 2.5rem; }
  .programmes-grid        { grid-template-columns: 1fr; }
  .programme-card:nth-child(even) { margin-top: 0; }
  .ways-grid              { grid-template-columns: 1fr; }
  .way-card:nth-child(2)  { margin-top: 0; }
  .blog-grid              { grid-template-columns: 1fr 1fr; }
  .article-card:nth-child(2) { margin-top: 0; }
  .contact-grid           { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner           { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-inner        { grid-template-columns: 1fr; }
  .photo-cluster          { display: none; }
  .full-banner-wrap       { margin: 0; border-radius: 0; height: 420px; }
  .pulled-card-inner      { flex-direction: column; gap: 1.5rem; }
  .stamp-badge            { display: none; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { font-size: 1.3rem; padding: .6rem 1.5rem; }
  .nav-links.open .nav-cta { padding: .6rem 2rem !important; }
  .nav-toggle    { display: flex; }
  .hero-content  { padding: 110px 1.5rem 210px; }
  .hero-overlap-outer { margin-top: -120px; padding-bottom: 3rem; }
  .pulled-card   { padding: 1.75rem 1.5rem; }
  .impact-bar    { gap: 0; }
  .impact-stat   { padding: .75rem 1rem; border-right: none; border-bottom: 1px dotted var(--cream-dark); }
  .impact-stat:last-child { border-bottom: none; }
  .mission-block { padding: 2.5rem 2rem; }
  .mission-block::before { font-size: 10rem; }
  .section       { padding: 4rem 1.5rem; }
  .article-hero-wrap { height: 260px; margin: 1rem 0; border-radius: 0; }
  .full-banner-wrap  { height: 360px; }
  .full-banner-overlay { padding: 2rem; }
  .cta-section { padding: 4.5rem 1.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
}
