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

:root {
  --cream:       #FAF4E8;
  --cream-dark:  #F0E8D4;
  --cream-deep:  #E8DBBC;
  --terra:       #C4622D;
  --terra-light: #E07A45;
  --terra-pale:  #F5E0D0;
  --warm-tan:    #D4A96A;
  --brand:       #7B2D8B;
  --brand-light: #F0D9F5;
  --brand-mid:   #A855C0;
  --ink:         #2A1608;
  --ink-mid:     #5C3820;
  --ink-soft:    #8B6248;
  --white:       #FFFFFF;
  --shadow-warm: rgba(42,22,8,0.12);
  --shadow-card: 0 6px 28px rgba(42,22,8,0.15), 0 2px 8px rgba(42,22,8,0.08);
  --radius-img:  28px;
  --radius-card: 20px;
  --radius-btn:  50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  font-size: 18px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
a:hover { text-decoration: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem,5vw,3.6rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.6rem); }
h3 { font-size: clamp(1.15rem,2.5vw,1.55rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

p { max-width: 68ch; }
p + p { margin-top: 1.1em; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}
.container--wide { width: min(1320px, 94%); }

section { padding-block: 80px; }
@media (max-width: 700px) { section { padding-block: 52px; } }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196,98,45,0.35);
}
.btn-primary:hover { background: var(--terra-light); box-shadow: 0 6px 24px rgba(196,98,45,0.45); }
.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 2.5px solid var(--terra);
}
.btn-outline:hover { background: var(--terra); color: #fff; }
.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 18px rgba(123,45,139,0.35);
}
.btn-brand:hover { background: var(--brand-mid); }

/* ── NAV ────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-deep);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup .logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-lockup .wordmark {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-mid);
  padding: 7px 14px;
  border-radius: 50px;
  transition: background .15s, color .15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--brand-light);
  color: var(--brand);
}
.nav-links .nav-cta a {
  background: var(--terra);
  color: #fff;
  padding: 8px 20px;
}
.nav-links .nav-cta a:hover { background: var(--terra-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: .2s;
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 2px dotted var(--cream-deep);
    padding: 16px 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .site-nav { position: relative; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  overflow: visible;
  min-height: 620px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 200px;
}
.hero-content h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 52ch;
  margin-top: 1.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.hero-content .btn { margin-top: 2rem; }

/* Pulled-up card overlapping hero */
.hero-overlap-card {
  position: relative;
  z-index: 4;
  margin-top: -120px;
  margin-bottom: 0;
}
.hero-overlap-card .overlap-inner {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width: 700px) {
  .hero-content { padding-bottom: 160px; }
  .hero-overlap-card .overlap-inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .hero-overlap-card { margin-top: -80px; }
}

.stat-item { text-align: center; }
.stat-item .stat-number {
  font-size: clamp(2.2rem,5vw,3rem);
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--ink-mid);
  margin-top: 4px;
  font-weight: 600;
}

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

/* ── POLAROID CARDS ─────────────────────────────────────── */
.polaroid {
  background: var(--white);
  padding: 14px 14px 40px;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.polaroid img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.polaroid .polaroid-caption {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-mid);
  text-align: center;
  font-style: italic;
}
.polaroid-tilt-l { transform: rotate(-2.5deg); }
.polaroid-tilt-r { transform: rotate(2deg); }
.polaroid-tilt-ll { transform: rotate(-4deg); }
.polaroid-tilt-rr { transform: rotate(3.5deg); }

/* ── STAMP BADGE ────────────────────────────────────────── */
.stamp-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.7rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 3px dashed rgba(255,255,255,0.6);
  outline: 4px solid var(--terra);
  outline-offset: 4px;
  padding: 14px;
  box-shadow: 0 4px 18px rgba(196,98,45,0.35);
  flex-shrink: 0;
}
.stamp-badge strong { font-size: 1.4rem; line-height: 1; display: block; }

/* ── HIGHLIGHT CARDS ────────────────────────────────────── */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 860px) { .highlight-grid { grid-template-columns: 1fr; gap: 20px; } }
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 2px dotted var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--terra);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.highlight-card:nth-child(2)::before { background: var(--brand); }
.highlight-card:nth-child(3)::before { background: var(--warm-tan); }
.highlight-icon { font-size: 2.2rem; margin-bottom: 14px; }
.highlight-card h3 { color: var(--ink); margin-bottom: 10px; }
.highlight-card p { font-size: 0.97rem; color: var(--ink-mid); max-width: none; }

/* ── PHOTO BAND ─────────────────────────────────────────── */
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  height: 420px;
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 700px) {
  .photo-band { grid-template-columns: 1fr; height: auto; }
  .photo-band img { height: 220px; }
}

/* ── STAGGERED ROW ──────────────────────────────────────── */
.staggered-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.staggered-row.flip { direction: rtl; }
.staggered-row.flip > * { direction: ltr; }
@media (max-width: 780px) {
  .staggered-row,
  .staggered-row.flip { grid-template-columns: 1fr; direction: ltr; }
}

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-section { background: var(--cream-dark); }

/* ── MISSION BOX ────────────────────────────────────────── */
.mission-box {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.mission-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.mission-box h3 { color: #fff; margin-bottom: 16px; }
.mission-box p { color: rgba(255,255,255,0.9); max-width: none; font-size: 1.05rem; line-height: 1.8; }
@media (max-width: 600px) { .mission-box { padding: 32px 24px; } }

/* ── TRUSTEES ───────────────────────────────────────────── */
.trustees-row {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.trustee-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  border: 2px dotted var(--cream-deep);
  flex: 1;
  min-width: 200px;
  box-shadow: 0 3px 14px rgba(42,22,8,0.08);
}
.trustee-card .trustee-name { font-weight: 800; font-size: 1.1rem; }
.trustee-card .trustee-role { font-size: 0.9rem; color: var(--brand); font-weight: 700; margin-top: 4px; }

/* ── PROGRAMMES ─────────────────────────────────────────── */
.programme-list { display: grid; gap: 28px; margin-top: 48px; }
.programme-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  box-shadow: var(--shadow-card);
  border-left: 6px solid var(--terra);
  transition: transform .18s, box-shadow .18s;
}
.programme-card:nth-child(2) { border-left-color: var(--brand); }
.programme-card:nth-child(3) { border-left-color: var(--warm-tan); }
.programme-card:nth-child(4) { border-left-color: var(--terra-light); }
.programme-card:hover { transform: translateX(6px); box-shadow: 0 8px 32px rgba(42,22,8,0.18); }
.programme-icon { font-size: 2.4rem; line-height: 1; }
.programme-card h3 { margin-bottom: 8px; }
.programme-card .blurb { font-weight: 600; color: var(--ink-mid); margin-bottom: 10px; font-size: 1rem; }
.programme-card .detail { font-size: 0.95rem; color: var(--ink-soft); max-width: none; }
@media (max-width: 600px) {
  .programme-card { grid-template-columns: 1fr; gap: 12px; }
}

/* ── WAYS / GET INVOLVED ────────────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 860px) { .ways-grid { grid-template-columns: 1fr; } }
.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px dotted var(--cream-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.way-card .way-icon { font-size: 2.8rem; margin-bottom: 16px; }
.way-card h3 { margin-bottom: 12px; }
.way-card p { font-size: 0.97rem; color: var(--ink-mid); max-width: none; }
.way-card .btn { margin-top: auto; padding-top: 20px; }

/* ── BLOG ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(42,22,8,0.18); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
.blog-card-body .dek { font-size: 0.92rem; color: var(--ink-mid); flex: 1; line-height: 1.6; }
.blog-card-body .read-more {
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── ARTICLE ────────────────────────────────────────────── */
.article-hero {
  width: 100%;
  aspect-ratio: 21/7;
  object-fit: cover;
  border-radius: 0 0 var(--radius-img) var(--radius-img);
}
@media (max-width: 700px) { .article-hero { aspect-ratio: 16/9; } }
.article-content { padding: 60px 0 80px; }
.article-content .container { max-width: 800px; }
.article-title { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 14px; }
.article-dek { font-size: 1.2rem; color: var(--ink-mid); font-style: italic; margin-bottom: 32px; border-left: 4px solid var(--terra); padding-left: 18px; }
.article-body p { margin-bottom: 1.4em; max-width: none; color: var(--ink-mid); }
.article-body p:first-child { font-size: 1.08rem; color: var(--ink); font-weight: 600; }

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { font-size: 0.97rem; color: var(--ink-mid); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.95rem;
}
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: var(--brand); font-weight: 600; word-break: break-all; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 48px;
  box-shadow: var(--shadow-card);
  border: 2px dotted var(--cream-deep);
}
@media (max-width: 600px) { .contact-form { padding: 28px 20px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--cream-deep);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, background .15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--terra);
  color: #fff;
  text-align: center;
  padding: 72px 20px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; max-width: 18ch; margin-inline: auto; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 50ch; margin-inline: auto; margin-top: 14px; position: relative; z-index: 1; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; position: relative; z-index: 1; }
.cta-banner .btn-white {
  background: #fff;
  color: var(--terra);
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.cta-banner .btn-ghost {
  background: transparent;
  color: #fff;
  border: 2.5px solid rgba(255,255,255,0.7);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s;
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ── PHOTO COLLAGE ──────────────────────────────────────── */
.photo-collage {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 30px;
}
.photo-collage .pol-1 {
  width: 52%;
  max-width: 320px;
  transform: rotate(-3deg);
  z-index: 2;
}
.photo-collage .pol-2 {
  width: 46%;
  max-width: 280px;
  transform: rotate(2.5deg);
  margin-top: 40px;
  z-index: 1;
}

/* ── DOTTED SECTION BORDER ──────────────────────────────── */
.dotted-top { border-top: 3px dotted var(--cream-deep); }
.dotted-bottom { border-bottom: 3px dotted var(--cream-deep); }

/* ── FULL-BLEED PHOTO ───────────────────────────────────── */
.full-bleed-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) { .full-bleed-photo { height: 260px; } }

/* ── IMAGE ROUNDED ──────────────────────────────────────── */
.img-rounded {
  border-radius: var(--radius-img);
  overflow: hidden;
}
.img-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .wordmark-footer {
  height: 30px;
  filter: invert(1) brightness(10);
  opacity: 0.92;
  margin-bottom: 12px;
}
.footer-brand .logo-footer {
  width: 40px;
  height: 40px;
  filter: invert(1) brightness(10);
  opacity: 0.92;
  margin-bottom: 8px;
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 30ch;
  color: rgba(255,255,255,0.65);
}
.footer-col h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  color: var(--warm-tan);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color .15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-email {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  word-break: break-all;
  margin-bottom: 6px;
}
.footer-email a { color: var(--brand-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .scio-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.3;
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255,255,255,0.8); margin-inline: auto; margin-top: 12px; font-size: 1.1rem; }

/* ── WHAT WE DO TEXT BLOCK ──────────────────────────────── */
.wwd-text p { max-width: none; color: var(--ink-mid); }
.wwd-text p + p { margin-top: 1.3em; }

/* ── STORY SECTION ──────────────────────────────────────── */
.story-section { background: var(--cream-dark); }
.story-text p { max-width: none; color: var(--ink-mid); }

/* ── INTRO TEXT ─────────────────────────────────────────── */
.intro-text {
  font-size: 1.15rem;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 72ch;
}

/* ── SCRAPBOOK ACCENT ───────────────────────────────────── */
.scrap-accent {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 8px;
  padding: 2px 8px;
  font-weight: 700;
}

/* ── STAMP + ACCENT ROW ─────────────────────────────────── */
.stamp-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-block: 40px;
  flex-wrap: wrap;
}

/* ── BACKGROUND VARIANTS ────────────────────────────────── */
.bg-cream-dark { background: var(--cream-dark); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-brand-light { background: var(--brand-light); }
.bg-terra-pale { background: var(--terra-pale); }

/* ── UTIL ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }

/* ── SQUIGGLE FILL COLORS ───────────────────────────────── */
.squiggle-cream { fill: var(--cream); }
.squiggle-cream-dark { fill: var(--cream-dark); }
.squiggle-white { fill: var(--white); }
.squiggle-ink { fill: var(--ink); }
