/* Vibrant Health Advocates - Helix | Warm & Human Community */

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

:root {
  --cream: #FBF5EC;
  --cream-warm: #F5EBDA;
  --cream-border: #E8D5BC;
  --terra: #C4623A;
  --terra-light: #D97B52;
  --terra-dark: #9B4B2A;
  --brand: #7B2D8B;
  --brand-light: #F0D9F5;
  --brand-mid: #9B4DAB;
  --ink: #2C1A0E;
  --ink-mid: #5C3D28;
  --ink-light: #9C7A5E;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(44,26,14,.10);
  --shadow-card: 0 8px 40px rgba(44,26,14,.13);
  --shadow-lift: 0 16px 56px rgba(44,26,14,.18);
  --r-img: 24px;
  --r-card: 20px;
  --r-pill: 100px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img.nav-logo { height: 42px; width: auto; }
.nav-brand img.nav-wordmark { height: 28px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-mid);
  text-decoration: none;
  transition: background .2s, color .2s;
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--brand-light); color: var(--brand); }
.nav-links a.nav-cta { background: var(--terra); color: var(--white); padding: 0.45rem 1.3rem; }
.nav-links a.nav-cta:hover { background: var(--terra-dark); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 1rem;
  padding: .8rem 2rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .18s;
  letter-spacing: .01em;
}
.btn:hover { text-decoration: none; }
.btn-terra { background: var(--terra); color: var(--white); }
.btn-terra:hover { background: var(--terra-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,98,58,.35); }
.btn-brand { background: var(--brand); color: var(--white); }
.btn-brand:hover { background: #5a1f6a; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(123,45,139,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2.5px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-outline-terra { background: transparent; color: var(--terra); border: 2.5px solid var(--terra); }
.btn-outline-terra:hover { background: var(--terra); color: var(--white); }
.btn-outline-brand { background: transparent; color: var(--brand); border: 2.5px solid var(--brand); }
.btn-outline-brand:hover { background: var(--brand); color: var(--white); }

/* ── HERO (homepage) ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(251,245,236,.60) 0%, rgba(44,26,14,.08) 45%, rgba(44,26,14,.62) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 2rem 2rem;
  max-width: 680px;
  margin-left: 8%;
}
.hero-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.2rem;
  border: 2px dotted var(--brand);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(44,26,14,.45);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: var(--cream);
  max-width: 520px;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(44,26,14,.35);
}
.hero-cta { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-spacer { flex: 1; min-height: 2rem; }

/* Pull-up card: sits at very bottom of hero, overlaps next section */
.hero-pullup-wrap {
  position: relative;
  z-index: 3;
  padding: 0 2rem;
  pointer-events: none;
}
.hero-pullup-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.hero-pullup-card {
  pointer-events: all;
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 1.8rem 2.2rem;
  max-width: 400px;
  width: 100%;
  margin-bottom: -80px;
  border: 2.5px solid var(--cream-border);
  position: relative;
}
.hero-pullup-card::before {
  content: '';
  position: absolute;
  top: -2.5px; left: -2.5px; right: -2.5px;
  height: 6px;
  background: var(--terra);
  border-radius: var(--r-card) var(--r-card) 0 0;
}
.hero-pullup-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
.hero-pullup-card p { font-size: .9rem; color: var(--ink-mid); line-height: 1.6; margin-bottom: .75rem; }
.hero-pullup-stats { display: flex; gap: 1.5rem; margin-top: .75rem; }
.pullup-stat-num { font-size: 1.7rem; font-weight: 900; color: var(--terra); line-height: 1; }
.pullup-stat-lbl { font-size: .75rem; color: var(--ink-light); font-weight: 600; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,.78) 0%, rgba(44,26,14,.12) 55%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.page-hero-content .hero-sub-sm {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin-top: .6rem;
  max-width: 560px;
  line-height: 1.6;
}

/* ── SECTION WRAPPER ─────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .6rem;
}
.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.02em;
}
.section h2 em { font-style: normal; color: var(--brand); }
.body-text { font-size: 1.05rem; line-height: 1.85; color: var(--ink-mid); }
.body-text + .body-text { margin-top: 1.25rem; }
.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.7;
  border-left: 4px solid var(--terra);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

/* ── IMPACT BAND ─────────────────────────────────────────── */
.impact-band {
  background: var(--terra);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.impact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.impact-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.impact-stat { padding: 1rem; }
.impact-number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .4rem;
}
.impact-label { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.82); line-height: 1.4; }

/* ── HIGHLIGHTS CARDS ────────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
  transition: box-shadow .25s, transform .25s;
}
.highlight-card:nth-child(2) { margin-top: 2.5rem; border-color: var(--brand-light); }
.highlight-card:nth-child(3) { margin-top: 1.2rem; }
.highlight-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.highlight-icon { font-size: 2.4rem; margin-bottom: 1rem; line-height: 1; }
.highlight-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: .6rem; }
.highlight-card p { font-size: .96rem; color: var(--ink-mid); line-height: 1.72; }

/* ── POLAROID CARDS ──────────────────────────────────────── */
.polaroid {
  background: var(--white);
  padding: 12px 12px 52px;
  box-shadow: var(--shadow-card);
  border-radius: 6px;
  position: relative;
  display: inline-block;
}
.polaroid img { border-radius: 4px; display: block; width: 100%; height: 260px; object-fit: cover; }
.polaroid-caption {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink-light);
  text-align: center;
  font-style: italic;
}
.polaroid--left  { transform: rotate(-3deg); }
.polaroid--right { transform: rotate(2.5deg); }
.polaroid--slight{ transform: rotate(-1.2deg); }

.polaroid-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 1.5rem 0 3.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.polaroid-row::-webkit-scrollbar { display: none; }
.polaroid-row .polaroid { flex-shrink: 0; width: 280px; }

/* ── STAMP BADGE ─────────────────────────────────────────── */
.stamp-wrap { display: flex; justify-content: center; margin: 1.5rem 0; }
.stamp { width: 160px; height: 160px; }

/* ── SPLIT LAYOUT ────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.split-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 1.2rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.split-text .body-text { margin-bottom: 1rem; }
.split-text .btn { margin-top: .5rem; }

/* ── INTRO (cream-on-white) ──────────────────────────────── */
.intro-section {
  background: var(--white);
  padding-top: 7rem;
}

/* ── PROGRAMMES ──────────────────────────────────────────── */
.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.programme-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.programme-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.programme-card:nth-child(even) { margin-top: 1.8rem; }
.programme-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.programme-card:hover::after { transform: scaleX(1); }
.programme-icon { font-size: 2.4rem; margin-bottom: .9rem; }
.programme-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
.programme-card .blurb { font-size: .97rem; color: var(--ink-mid); font-weight: 600; margin-bottom: 1rem; line-height: 1.6; }
.programme-card .detail { font-size: .91rem; color: var(--ink-light); line-height: 1.78; }

/* ── WHAT-WE-DO BOX ──────────────────────────────────────── */
.what-box {
  background: var(--cream-warm);
  border-radius: var(--r-card);
  padding: 3rem;
  border: 2px dotted var(--cream-border);
}
.what-box p { font-size: 1.05rem; line-height: 1.85; color: var(--ink-mid); margin-bottom: 1.4rem; }
.what-box p:last-child { margin-bottom: 0; }

/* ── MISSION BOX ─────────────────────────────────────────── */
.mission-box {
  background: var(--brand);
  border-radius: var(--r-card);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}
.mission-box::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.mission-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1rem;
  display: block;
  position: relative;
  z-index: 1;
}
.mission-box p { font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,.9); position: relative; z-index: 1; }

/* ── STORY BOX ───────────────────────────────────────────── */
.story-box {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
}
.story-box p { font-size: 1.05rem; line-height: 1.85; color: var(--ink-mid); margin-bottom: 1.4rem; }
.story-box p:last-child { margin-bottom: 0; }

/* ── TRUSTEES ────────────────────────────────────────────── */
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trustee-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 2px dotted var(--cream-border);
}
.trustee-initials {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px dotted var(--brand);
}
.trustee-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.trustee-card .role { font-size: .85rem; color: var(--terra); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }

/* ── WAYS (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-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--terra);
  transition: box-shadow .25s, transform .25s;
}
.way-card:nth-child(2) { border-top-color: var(--brand); margin-top: 2rem; }
.way-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.way-icon { font-size: 2.6rem; margin-bottom: 1rem; }
.way-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: .7rem; }
.way-card p { color: var(--ink-mid); font-size: .97rem; line-height: 1.75; }

/* ── BLOG CARDS ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-border);
  transition: box-shadow .25s, transform .25s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:nth-child(2) { margin-top: 2rem; }
.blog-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); text-decoration: none; }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; }
.blog-card-body { padding: 1.5rem; }
.blog-card-body h2 { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: .55rem; line-height: 1.38; letter-spacing: -.01em; }
.blog-card-body .dek { font-size: .9rem; color: var(--ink-mid); line-height: 1.6; }
.blog-read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: .83rem;
  font-weight: 800;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── ARTICLE ─────────────────────────────────────────────── */
.article-header {
  background: var(--cream-warm);
  padding: 4.5rem 2rem 3rem;
  border-bottom: 2px dotted var(--cream-border);
}
.article-header-inner { max-width: 780px; margin: 0 auto; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--terra);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.article-back:hover { border-color: var(--terra); text-decoration: none; }
.article-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.article-dek {
  font-size: 1.1rem;
  color: var(--ink-mid);
  font-weight: 500;
  line-height: 1.6;
  border-left: 4px solid var(--terra);
  padding-left: 1.2rem;
}
.article-img-band { padding: 3rem 2rem 0; background: var(--cream-warm); }
.article-img-band img {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  border-radius: var(--r-img);
  box-shadow: var(--shadow-card);
  height: 420px;
  object-fit: cover;
}
.article-body { max-width: 720px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.article-body p { margin-bottom: 1.5rem; font-size: 1.05rem; color: var(--ink); line-height: 1.88; }
.article-body p:first-child { font-size: 1.12rem; font-weight: 500; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 900; color: var(--ink); margin-bottom: 1rem; letter-spacing: -.02em; }
.contact-info .body-text { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .9rem;
  padding: .8rem 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 2px dotted var(--cream-border);
}
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.5; }
.contact-detail a, .contact-detail span {
  font-size: .86rem;
  font-weight: 600;
  color: var(--brand);
  word-break: break-all;
  line-height: 1.55;
}
.contact-detail span { color: var(--ink-mid); }
.contact-detail a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--cream-border);
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--cream-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-light);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; font-size: 1.05rem; margin-top: .5rem; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--brand);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .9rem;
  letter-spacing: -.02em;
  position: relative; z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── DOTTED BOX ──────────────────────────────────────────── */
.dotted-box {
  border: 2.5px dotted var(--terra);
  border-radius: var(--r-card);
  padding: 2rem 2.5rem;
  background: var(--cream);
}

/* ── BRAND BAND ──────────────────────────────────────────── */
.brand-band {
  background: var(--brand-light);
  border-top: 2px dotted var(--brand);
  border-bottom: 2px dotted var(--brand);
  padding: 3rem 2rem;
  text-align: center;
}

/* ── SQUIGGLE ────────────────────────────────────────────── */
.squiggle-wrap { overflow: hidden; line-height: 0; padding: .5rem 0; text-align: center; }
.squiggle-wrap svg { display: block; width: 100%; }

/* ── PAGE TITLE SECTION ──────────────────────────────────── */
.page-title-section {
  background: var(--cream-warm);
  padding: 4rem 2rem 3rem;
  border-bottom: 2px dotted var(--cream-border);
}
.page-title-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
  max-width: 1100px;
  margin: 0 auto;
}
.page-title-section p { max-width: 1100px; margin: .75rem auto 0; color: var(--ink-mid); font-size: 1.1rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
  text-decoration: none;
}
.footer-brand-mark:hover { text-decoration: none; }
.footer-logo { height: 40px; width: auto; }
.footer-wordmark { height: 26px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .tagline { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.58); }
.footer-scio { font-size: .76rem; color: rgba(255,255,255,.38); margin-top: 1rem; font-style: italic; }
.footer-col h4 { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: .92rem; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--terra-light); text-decoration: none; }
.footer-email { display: block; color: rgba(255,255,255,.7) !important; font-size: .82rem; word-break: break-all; margin-bottom: .6rem; transition: color .2s; }
.footer-email:hover { color: var(--terra-light) !important; text-decoration: none; }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.38); }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-terra { color: var(--terra); }
.text-brand { color: var(--brand); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-warm  { background: var(--cream-warm); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--rev { direction: ltr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2), .highlight-card:nth-child(3) { margin-top: 0; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme-card:nth-child(even) { margin-top: 0; }
  .trustees-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:nth-child(2) { margin-top: 0; }
  .ways-grid { grid-template-columns: 1fr 1fr; }
  .way-card:nth-child(2) { margin-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    padding: 1rem 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
    border-bottom: 2px dotted var(--cream-border);
    box-shadow: 0 8px 32px rgba(44,26,14,.1);
    z-index: 300;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: .6rem 1rem; }
  .site-nav { position: relative; }

  .hero-pullup-card { max-width: 100%; margin-bottom: -50px; }
  .intro-section { padding-top: 6rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2) { margin-top: 0; }
  .impact-grid { grid-template-columns: 1fr; gap: .75rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 3rem 1.25rem; }
  .hero-content { padding: 3.5rem 1.25rem 2rem; margin-left: 0; }
  .hero { min-height: 78vh; }
  .hero-pullup-wrap { padding: 0 1.25rem; }
  .hero-pullup-card { margin-bottom: -40px; }
  .intro-section { padding-top: 5.5rem; }
  .trustees-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .polaroid-row { flex-direction: column; align-items: center; overflow-x: visible; }
  .polaroid-row .polaroid { width: 100%; max-width: 300px; }
  .what-box, .story-box, .mission-box { padding: 2rem 1.5rem; }
  .page-hero { height: 280px; }
  .article-img-band img { height: 240px; }
  .contact-form-wrap { padding: 1.5rem; }
  .programme-card { padding: 2rem 1.5rem; }
  .impact-number { font-size: 2.8rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .article-header { padding: 3rem 1.25rem 2rem; }
  .article-body { padding: 2rem 1.25rem 4rem; }
  .page-title-section { padding: 3rem 1.25rem 2rem; }
}
