/* ============================================================
   VIBRANT HEALTH ADVOCATES – AUREON  |  Warm & Human Community
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --cream:        #FBF6EE;
  --cream-2:      #F5ECD8;
  --cream-3:      #EDE0C4;
  --terra:        #C0562A;
  --terra-light:  #F0DDD0;
  --terra-mid:    #D4734E;
  --brand:        #7B2D8B;
  --brand-light:  #F0D9F5;
  --brand-mid:    #9B4DAB;
  --ink:          #2E1A0E;
  --ink-mid:      #6B4530;
  --ink-light:    #A07858;
  --white:        #FFFFFF;

  --radius-card:  28px;
  --radius-img:   24px;
  --shadow-soft:  0 4px 28px rgba(46,26,14,0.11);
  --shadow-card:  0 8px 36px rgba(46,26,14,0.15);
  --shadow-lift:  0 16px 48px rgba(46,26,14,0.18);

  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-lh: 1.78;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: var(--font-lh);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* --- Typography Scale --- */
h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6em;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-3);
  box-shadow: 0 2px 16px rgba(46,26,14,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; opacity: 0.88; }
.brand-logo {
  height: 48px;
  width: auto;
}
.brand-wordmark {
  height: 34px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-mid);
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--brand-light);
  color: var(--brand);
  text-decoration: none;
}
.nav-cta {
  background: var(--brand) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 40px !important;
  font-weight: 800 !important;
}
.nav-cta:hover { background: var(--brand-mid) !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); text-decoration: none; }
.btn--primary {
  background: var(--brand);
  color: var(--white);
}
.btn--primary:hover { background: var(--brand-mid); }
.btn--terra {
  background: var(--terra);
  color: var(--white);
}
.btn--terra:hover { background: var(--terra-mid); }
.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 2.5px solid var(--brand);
}
.btn--outline:hover { background: var(--brand-light); }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }

/* ============================================================
   SQUIGGLE DIVIDERS
   ============================================================ */
.squiggle {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.squiggle svg {
  display: block;
  width: 100%;
}
.squiggle--terra path { stroke: var(--terra); }
.squiggle--brand path { stroke: var(--brand-mid); }
.squiggle--cream path { stroke: var(--cream-3); }

/* ============================================================
   STAMP BADGE
   ============================================================ */
.stamp-badge {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px dashed var(--terra);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  flex-shrink: 0;
}
.stamp-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed var(--terra-mid);
  pointer-events: none;
}
.stamp-badge__line1 {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  line-height: 1.1;
}
.stamp-badge__year {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
  margin: 3px 0;
}
.stamp-badge__line3 {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 1.2;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 140px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  border-radius: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(46,26,14,0.70) 0%,
    rgba(46,26,14,0.45) 55%,
    rgba(46,26,14,0.15) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.hero__badge-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__tag {
  background: var(--terra);
  color: var(--white);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  max-width: 680px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
.hero__sub {
  color: rgba(255,255,255,0.90);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.68;
  font-weight: 500;
  margin: 0;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Pull-up card over hero bottom */
.hero-pull {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: -80px auto 0;
  padding: 0 40px;
}
.hero-pull__card {
  background: var(--cream);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  padding: 36px 44px;
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  border: 2px solid var(--cream-3);
}
.hero-pull__img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 5px solid var(--cream-2);
  box-shadow: var(--shadow-soft);
}
.hero-pull__text h3 { margin-bottom: 8px; color: var(--terra); }
.hero-pull__text p { font-size: 0.96rem; color: var(--ink-mid); margin: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 96px 0;
}
.section--cream2 { background: var(--cream-2); }
.section--terra { background: var(--terra-light); }
.section--brand { background: var(--brand-light); }
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--cream); }

/* ============================================================
   POLAROID IMAGE CARDS
   ============================================================ */
.polaroid-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}
.polaroid {
  background: var(--white);
  border-radius: 6px;
  padding: 10px 10px 36px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.polaroid:hover {
  box-shadow: var(--shadow-lift);
  z-index: 2;
}
.polaroid:nth-child(1) { transform: rotate(-2.8deg); }
.polaroid:nth-child(1):hover { transform: rotate(-1deg) translateY(-8px); }
.polaroid:nth-child(2) { transform: rotate(1.5deg); }
.polaroid:nth-child(2):hover { transform: rotate(0.5deg) translateY(-8px); }
.polaroid:nth-child(3) { transform: rotate(-1.2deg); }
.polaroid:nth-child(3):hover { transform: rotate(-0.5deg) translateY(-8px); }
.polaroid:nth-child(4) { transform: rotate(2.5deg); }
.polaroid:nth-child(4):hover { transform: rotate(1deg) translateY(-8px); }
.polaroid__img {
  width: 240px;
  height: 190px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.polaroid__caption {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-top: 10px;
  font-style: italic;
}

/* ============================================================
   HIGHLIGHT / FEATURE CARDS
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-3);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.highlight-card:nth-child(2) { margin-top: 36px; }
.highlight-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.highlight-card h3 { margin-bottom: 12px; color: var(--brand); }
.highlight-card p { font-size: 0.96rem; color: var(--ink-mid); margin: 0; }

/* Dotted border variant */
.card--dotted {
  border: 2.5px dotted var(--terra-mid);
}

/* ============================================================
   IMPACT STATS STRIP
   ============================================================ */
.impact-strip {
  background: var(--brand);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.impact-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.impact-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.impact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.impact-stat {
  text-align: center;
  padding: 20px 56px;
  position: relative;
}
.impact-stat + .impact-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.22);
}
.impact-stat__number {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.impact-stat__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================================
   IMAGE + TEXT SPLIT SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }
.split__img {
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  position: relative;
}
.split__img-wrap {
  position: relative;
}
.split__img-wrap .stamp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  box-shadow: var(--shadow-soft);
}
.split__text .eyebrow { margin-bottom: 10px; }
.split__text h2 { margin-bottom: 20px; }
.split__text p { color: var(--ink-mid); }
.split__text .btn { margin-top: 24px; }

/* ============================================================
   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(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--terra);
  transition: transform 0.2s, box-shadow 0.2s;
}
.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.programme-card:nth-child(even) {
  border-left-color: var(--brand);
  margin-top: 28px;
}
.programme-card__icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.programme-card h3 { margin-bottom: 12px; }
.programme-card .blurb { font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.programme-card .detail { font-size: 0.93rem; color: var(--ink-mid); }

/* ============================================================
   TEAM / TRUSTEES
   ============================================================ */
.trustees-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.trustee-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 36px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2.5px dotted var(--brand-mid);
  min-width: 200px;
  flex: 1;
  max-width: 260px;
}
.trustee-card__initial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.trustee-card h4 { color: var(--ink); margin-bottom: 4px; }
.trustee-card__role { font-size: 0.86rem; font-weight: 700; color: var(--terra); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   WAYS TO GET INVOLVED
   ============================================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid var(--cream-3);
  position: relative;
  overflow: hidden;
}
.way-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--terra);
}
.way-card:nth-child(2)::before { background: var(--brand); }
.way-card:nth-child(3)::before { background: var(--terra-mid); }
.way-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.way-card:nth-child(2) { margin-top: 32px; }
.way-card__icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.way-card h3 { margin-bottom: 12px; }
.way-card p { font-size: 0.95rem; color: var(--ink-mid); margin: 0; }

/* ============================================================
   BLOG / ARTICLE CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid var(--cream-3);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  border-radius: 0;
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.blog-card .dek {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card__read {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-card__read:hover { text-decoration: underline; }
.blog-card__read::after { content: '→'; }

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  border-radius: 0;
}
.article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,26,14,0.72) 0%, transparent 60%);
}
.article-hero__text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.article-hero__text .eyebrow { color: var(--terra-light); }
.article-hero__text h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 720px; }
.article-hero__text .dek {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 600px;
  margin-top: 12px;
  margin-bottom: 0;
}
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 72px 40px;
}
.article-body p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 1.4em;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 40px;
  text-decoration: none;
}
.article-back:hover { text-decoration: underline; }
.article-back::before { content: '←'; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--ink-mid); margin-bottom: 20px; font-size: 0.97rem; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.contact-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.contact-detail__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-detail a { color: var(--brand); word-break: break-all; }
.contact-detail a:hover { text-decoration: underline; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 48px 44px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-3);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--cream-2);
  padding: 80px 0 70px;
  border-bottom: 2px solid var(--cream-3);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--terra-light);
  opacity: 0.4;
}
.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.page-hero__text { flex: 1; }
.page-hero__text .eyebrow { margin-bottom: 10px; }
.page-hero__text h1 { max-width: 680px; margin-bottom: 20px; }
.page-hero__text p {
  font-size: 1.1rem;
  color: var(--ink-mid);
  max-width: 600px;
  margin: 0;
}
.page-hero__img {
  width: 340px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.mission-box {
  background: var(--brand);
  border-radius: var(--radius-card);
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.mission-box .eyebrow { color: var(--brand-light); }
.mission-box h2 { color: var(--white); margin-bottom: 20px; }
.mission-box p { color: rgba(255,255,255,0.88); font-size: 1.04rem; margin: 0; }

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.story-text p { color: var(--ink-mid); font-size: 0.97rem; }
.story-polaroids {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--terra);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.08rem; max-width: 520px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; background: var(--white); color: var(--terra); font-weight: 900; }
.cta-banner .btn:hover { background: var(--cream-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 72px 0 36px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .brand-lockup { margin-bottom: 18px; }
.footer-brand .brand-wordmark { filter: invert(1) brightness(2); }
.footer-brand .brand-logo { height: 44px; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.72);
  font-size: 0.91rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-col ul a:hover { color: var(--white); text-decoration: none; }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact a {
  color: var(--brand-light);
  font-size: 0.88rem;
  word-break: break-all;
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}
.footer-legal strong { color: rgba(255,255,255,0.62); }

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.text-terra { color: var(--terra); }
.text-brand { color: var(--brand); }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-40 { margin-bottom: 40px; }
.bold-intro {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.72;
  max-width: 780px;
}

/* Inline squiggle decoration */
.text-squiggle {
  position: relative;
  display: inline;
}
.text-squiggle::after {
  content: '';
  display: block;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8'%3E%3Cpath d='M0,4 Q10,1 20,4 Q30,7 40,4 Q50,1 60,4 Q70,7 80,4 Q90,1 100,4 Q110,7 120,4' fill='none' stroke='%23C0562A' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center;
  background-size: 120px 8px;
  margin-top: 2px;
}

/* dotted separator */
.dotted-line {
  border: none;
  border-top: 2.5px dotted var(--cream-3);
  margin: 48px 0;
}

/* Section heading layout */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 16px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-mid); font-size: 1.04rem; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container, .footer-inner { padding: 0 28px; }
  .container--narrow { padding: 0 28px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid .highlight-card:nth-child(2) { margin-top: 0; }
  .ways-grid { grid-template-columns: 1fr 1fr; }
  .ways-grid .way-card:nth-child(2) { margin-top: 0; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { gap: 48px; }
  .story-section { gap: 48px; }
  .hero-pull { padding: 0 28px; }
  .hero__inner { padding: 0 28px; }
  .page-hero__inner { padding: 0 28px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); border-top: 2px solid var(--cream-3); padding: 16px 24px 20px; flex-direction: column; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: 70vh; padding-top: 56px; padding-bottom: 60px; }
  .hero__inner { padding: 0 20px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero-pull { margin-top: -40px; padding: 0 20px; }
  .hero-pull__card { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .hero-pull__img { width: 80px; height: 80px; }
  .container, .container--narrow, .footer-inner { padding: 0 20px; }
  .section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--flip { direction: ltr; }
  .split__img-wrap .stamp-badge { right: 10px; bottom: 10px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlights-grid .highlight-card:nth-child(2) { margin-top: 0; }
  .programmes-grid { grid-template-columns: 1fr; }
  .programme-card:nth-child(even) { 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; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .polaroid__img { width: 180px; height: 145px; }
  .trustees-row { flex-direction: column; align-items: center; }
  .trustee-card { max-width: 100%; width: 100%; }
  .story-section { grid-template-columns: 1fr; }
  .impact-row { flex-direction: column; gap: 0; }
  .impact-stat + .impact-stat::before { display: none; }
  .impact-stat { padding: 16px 28px; }
  .page-hero { padding: 56px 0 48px; }
  .page-hero__inner { flex-direction: column; gap: 28px; }
  .page-hero__img { width: 100%; height: 220px; }
  .article-hero { height: 300px; }
  .article-hero__text { padding: 28px 20px; }
  .article-body { padding: 48px 20px; }
  .mission-box { padding: 36px 28px; }
  .cta-banner { padding: 56px 0; }
  .nav-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-pull__card { max-width: 100%; }
  .btn--lg { padding: 14px 28px; font-size: 1rem; }
  .polaroid-grid { flex-direction: column; align-items: center; }
  .polaroid { transform: none !important; }
}
