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

:root {
  --cream:          #FDF6EC;
  --cream-deep:     #F5E8CC;
  --cream-border:   #E4CFA4;
  --terracotta:     #C4603A;
  --terra-hover:    #A84E2C;
  --terra-pale:     #F9EAE2;
  --purple:         #7B2D8B;
  --purple-light:   #F0D9F5;
  --purple-mid:     #B87EC8;
  --dark:           #231208;
  --ink:            #3D2010;
  --medium:         #5C3D2E;
  --muted:          #8A6A58;
  --white:          #FFFDF9;
  --shadow-warm:    rgba(35, 18, 8, 0.13);
  --shadow-strong:  rgba(35, 18, 8, 0.24);
  --r-img:  24px;
  --r-card: 18px;
  --r-pill: 100px;
  --font: system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.78;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
p   { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { font-weight: 900; line-height: 1.18; color: var(--dark); }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  background: var(--terra-pale);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.8rem;
}

.section-heading {
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.section-sub {
  font-size: 1.07rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 62ch;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.78rem 1.8rem;
  border-radius: var(--r-pill);
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow-strong); }

.btn-primary { background: var(--terracotta); color: var(--white) !important; }
.btn-primary:hover { background: var(--terra-hover); }

.btn-outline {
  background: transparent;
  color: var(--purple) !important;
  border: 2.5px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: var(--white) !important; }

.btn-white { background: var(--white); color: var(--dark) !important; }
.btn-white:hover { background: var(--cream-deep); }

.btn-purple { background: var(--purple); color: var(--white) !important; }
.btn-purple:hover { background: #63227A; }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 2px dashed var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 14px var(--shadow-warm);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.brand-lockup:hover { opacity: 0.85; }

.brand-icon     { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; }
.brand-wordmark { height: 30px; width: auto; object-fit: contain; }

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

.nav-links a {
  display: inline-block;
  padding: 0.38rem 0.85rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--medium);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover { background: var(--purple-light); color: var(--purple); }
.nav-links a.active { background: var(--purple-light); color: var(--purple); }

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.42rem 1.1rem !important;
}
.nav-cta:hover { background: var(--purple) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-border);
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  color: var(--dark);
  font-size: 1.25rem;
  line-height: 1;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--cream-deep);
  padding: 3.5rem 0 1.5rem;
}

.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.9rem; }

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none !important;
}

.footer-icon     { width: 38px; height: 38px; object-fit: contain; }
.footer-wordmark { height: 26px; width: auto; object-fit: contain; filter: invert(1) brightness(2.2); }

.footer-tagline  { font-style: italic; opacity: 0.75; font-size: 0.9rem; line-height: 1.55; }
.footer-scio     { font-size: 0.78rem; opacity: 0.5; }

.footer-heading  {
  font-weight: 800; font-size: 0.82rem; color: var(--cream);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.footer-links          { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a        { color: var(--cream-deep); font-size: 0.88rem; opacity: 0.78; transition: opacity 0.2s, color 0.2s; }
.footer-links a:hover  { opacity: 1; color: var(--purple-light); text-decoration: none; }

.footer-contact-emails { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-email-item     { font-size: 0.84rem; opacity: 0.82; line-height: 1.5; word-break: break-all; }
.footer-email-item a   { color: var(--purple-mid); }
.footer-email-item a:hover { color: var(--purple-light); }

.footer-divider {
  border: none;
  border-top: 1px dashed rgba(255,255,255,0.18);
  margin-bottom: 1.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ── Squiggle Dividers ───────────────────────────────────── */
.squiggle-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 0;
}
.squiggle-wrap svg { display: block; width: 100%; }

/* ── Polaroid Cards ──────────────────────────────────────── */
.polaroid {
  background: var(--white);
  padding: 0.7rem 0.7rem 2.2rem;
  border-radius: 3px;
  box-shadow: 5px 8px 28px var(--shadow-strong), 0 1px 0 var(--cream-border);
  border: 1px solid var(--cream-border);
}
.polaroid img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.polaroid-caption {
  margin-top: 0.55rem;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--medium);
  line-height: 1.4;
}

.rot-l  { transform: rotate(-2.8deg); }
.rot-r  { transform: rotate(2.5deg);  }
.rot-sl { transform: rotate(1.2deg);  }
.rot-sn { transform: rotate(-1.5deg); }

/* ── Stamp Badge ─────────────────────────────────────────── */
.stamp-badge {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 3px dashed var(--purple);
  background: var(--purple-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  transform: rotate(-10deg);
  flex-shrink: 0;
}
.stamp-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  display: block;
}
.stamp-text {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
  line-height: 1.3;
  display: block;
  margin-top: 3px;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--cream-deep);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 2px dashed var(--cream-border);
}
.page-title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; margin-bottom: 0.5rem; }
.page-dek   { font-size: 1.12rem; color: var(--medium); max-width: 60ch; line-height: 1.7; }

/* ── Homepage Hero ───────────────────────────────────────── */
.hero-section {
  position: relative;
  background: var(--dark);
  min-height: 640px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(35,18,8,0.62) 0%,
    rgba(35,18,8,0.22) 55%,
    rgba(35,18,8,0.48) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-tagline {
  font-size: clamp(2rem, 5.5vw, 3.7rem);
  font-weight: 900;
  color: var(--white);
  max-width: 18ch;
  line-height: 1.14;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,253,249,0.88);
  max-width: 50ch;
  line-height: 1.72;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* Pulled card overlaps bottom of hero */
.hero-pull-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -90px;
  padding: 0 1.5rem 0;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-pull-card {
  pointer-events: all;
  background: var(--white);
  border-radius: var(--r-card);
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 38px var(--shadow-strong);
  border: 2px dashed var(--cream-border);
  width: min(360px, 92%);
}

.hero-pull-card h3 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}

.pull-stats { display: flex; flex-direction: column; gap: 0.85rem; }

.pull-stat {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.pull-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
}

.pull-stat-label {
  font-size: 0.88rem;
  color: var(--medium);
  font-weight: 600;
  line-height: 1.4;
}

/* ── Intro section ───────────────────────────────────────── */
.intro-section { padding: 5rem 0 3.5rem; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.intro-text .section-heading { margin-bottom: 1rem; }

.intro-text p {
  font-size: 1.04rem;
  line-height: 1.88;
  color: var(--medium);
}

.intro-img-wrap { position: relative; }

.intro-img-main {
  width: 100%;
  border-radius: var(--r-img);
  box-shadow: 8px 10px 32px var(--shadow-warm);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.intro-stamp {
  position: absolute;
  bottom: -18px;
  left: -22px;
}

/* ── Highlights / Programmes strip ──────────────────────── */
.highlights-section {
  background: var(--cream-deep);
  padding: 5rem 0;
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.highlights-grid .hl-card:nth-child(2) { margin-top: 2.2rem; }

.hl-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2rem;
  box-shadow: 3px 5px 20px var(--shadow-warm);
  border-top: 5px solid var(--terracotta);
  transition: transform 0.24s, box-shadow 0.24s;
  position: relative;
}
.hl-card:nth-child(3) { border-top-color: var(--purple); }
.hl-card:hover { transform: translateY(-5px); box-shadow: 5px 12px 30px var(--shadow-strong); }

.hl-icon  { font-size: 2.3rem; margin-bottom: 0.8rem; display: block; }
.hl-title { font-size: 1.18rem; font-weight: 800; margin-bottom: 0.55rem; }
.hl-blurb { font-size: 0.95rem; color: var(--medium); line-height: 1.72; margin: 0; }

/* ── Impact Strip ────────────────────────────────────────── */
.impact-strip {
  background: var(--purple);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.impact-strip::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -180px; right: -120px;
}
.impact-strip::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -80px; left: 5%;
}

.impact-row {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.impact-item { text-align: center; }
.impact-stat  { display: block; font-size: clamp(3rem, 5vw, 4.2rem); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 0.4rem; }
.impact-label { font-size: 0.95rem; color: var(--purple-light); font-weight: 600; }

/* ── Scrapbook photo strip ───────────────────────────────── */
.scrapbook-section { padding: 4.5rem 0; overflow: visible; }

.scrapbook-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.scrapbook-row .polaroid { flex: 0 0 auto; width: clamp(190px, 22vw, 290px); }

/* ── CTA banner ──────────────────────────────────────────── */
.cta-section {
  background: var(--terracotta);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -140px; right: -60px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.55rem);
  font-weight: 900;
  color: var(--white);
  max-width: 32ch;
  line-height: 1.2;
}

/* ── About page ──────────────────────────────────────────── */
.about-section { padding: 4.5rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-body p { font-size: 1.04rem; line-height: 1.88; color: var(--medium); margin-bottom: 1.3rem; }
.about-body p:last-child { margin-bottom: 0; }

.mission-card {
  background: var(--purple-light);
  border-radius: var(--r-card);
  padding: 2rem;
  border-left: 5px solid var(--purple);
  margin-bottom: 1.5rem;
}
.mission-label  { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 0.7rem; display: block; }
.mission-card p { font-size: 0.96rem; line-height: 1.78; color: var(--dark); margin: 0; }

.dotted-box {
  border: 3px dotted var(--cream-border);
  border-radius: var(--r-card);
  padding: 1.75rem;
  background: var(--white);
  box-shadow: 2px 4px 14px var(--shadow-warm);
}
.dotted-box-label { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terracotta); margin-bottom: 0.8rem; display: block; }

/* ── Story section ───────────────────────────────────────── */
.story-section {
  background: var(--cream-deep);
  padding: 5rem 0;
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: center;
}

.story-img-wrap img { width: 100%; border-radius: var(--r-img); box-shadow: 8px 10px 36px var(--shadow-warm); }

.story-text .section-heading { margin-bottom: 1rem; }
.story-text p { font-size: 1.04rem; line-height: 1.88; color: var(--medium); margin-bottom: 1.1rem; }
.story-text p:last-child { margin-bottom: 0; }

/* ── Trustees ────────────────────────────────────────────── */
.trustees-section { padding: 4.5rem 0; }

.trustees-intro { max-width: 68ch; margin-bottom: 2.5rem; font-size: 1.04rem; line-height: 1.82; color: var(--medium); }

.trustees-row {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.trustee-card {
  background: var(--white);
  border-radius: var(--r-card);
  border: 2px dotted var(--cream-border);
  padding: 1.75rem;
  text-align: center;
  flex: 1 1 180px;
  max-width: 240px;
  box-shadow: 2px 4px 14px var(--shadow-warm);
}

.trustee-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--purple-light);
  border: 3px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--purple);
  margin: 0 auto 0.8rem;
}
.trustee-name { font-size: 1.04rem; font-weight: 800; margin-bottom: 0.2rem; }
.trustee-role { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* ── Our Work – photo banner ─────────────────────────────── */
.work-banner {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: var(--dark);
}
.work-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}
.work-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(35,18,8,0.72) 0%, rgba(35,18,8,0.1) 65%);
}
.work-banner-text {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 520px;
}
.work-banner-text h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.work-banner-text p {
  color: rgba(255,253,249,0.88);
  font-size: 1.06rem;
  line-height: 1.68;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* ── What we do ──────────────────────────────────────────── */
.what-we-do { padding: 5rem 0; }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.what-text p { font-size: 1.04rem; line-height: 1.88; color: var(--medium); margin-bottom: 1.15rem; }
.what-text p:last-child { margin-bottom: 0; }

.what-img img { width: 100%; border-radius: var(--r-img); box-shadow: 6px 8px 28px var(--shadow-warm); }

/* ── Programmes list ─────────────────────────────────────── */
.programmes-section {
  background: var(--cream-deep);
  padding: 5rem 0;
}

.programme-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }

.prog-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.25rem;
  box-shadow: 3px 5px 20px var(--shadow-warm);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.75rem;
  align-items: start;
  border-right: 5px solid var(--terracotta);
  transition: transform 0.2s;
}
.prog-card:nth-child(even) { border-right: none; border-left: 5px solid var(--purple); }
.prog-card:hover { transform: translateX(3px); }

.prog-icon {
  font-size: 2.2rem;
  background: var(--terra-pale);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prog-card:nth-child(even) .prog-icon { background: var(--purple-light); }

.prog-title  { font-size: 1.18rem; font-weight: 800; margin-bottom: 0.35rem; }
.prog-blurb  { font-size: 1rem; font-weight: 600; color: var(--medium); margin-bottom: 0.7rem; }
.prog-detail { font-size: 0.95rem; color: var(--muted); line-height: 1.78; margin: 0; }

/* ── Get Involved ────────────────────────────────────────── */
.gi-intro { padding: 5rem 0; }

.gi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.gi-text p { font-size: 1.04rem; line-height: 1.88; color: var(--medium); margin-bottom: 1.15rem; }
.gi-img img { width: 100%; border-radius: var(--r-img); box-shadow: 8px 10px 32px var(--shadow-warm); }

.ways-section {
  background: var(--cream-deep);
  padding: 5rem 0;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}
.ways-grid .way-card:nth-child(2) { margin-top: 2rem; }

.way-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2rem;
  text-align: center;
  box-shadow: 3px 5px 20px var(--shadow-warm);
  border-bottom: 5px solid var(--terracotta);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.24s;
}
.way-card:nth-child(2) { border-bottom-color: var(--purple); }
.way-card:hover { transform: translateY(-5px); }

.way-icon {
  font-size: 2.2rem;
  background: var(--terra-pale);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.way-card:nth-child(2) .way-icon { background: var(--purple-light); }

.way-title { font-size: 1.18rem; font-weight: 800; }
.way-blurb { font-size: 0.94rem; color: var(--medium); line-height: 1.72; margin: 0; }

/* ── Blog ────────────────────────────────────────────────── */
.blog-section { padding: 5rem 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.blog-grid .art-card:nth-child(2) { margin-top: 2.5rem; }

.art-card {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 4px 6px 22px var(--shadow-warm);
  transition: transform 0.24s, box-shadow 0.24s;
  border: 1px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
}
.art-card:hover { transform: translateY(-5px); box-shadow: 6px 14px 34px var(--shadow-strong); }

.art-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.art-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.art-card-title { font-size: 1.08rem; font-weight: 800; line-height: 1.28; margin-bottom: 0.5rem; color: var(--dark); }
.art-card-dek   { font-size: 0.9rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.art-card-link  { font-size: 0.88rem; font-weight: 700; color: var(--terracotta); }

/* ── Article pages ───────────────────────────────────────── */
.article-hdr {
  background: var(--cream-deep);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 2px dashed var(--cream-border);
}

.article-meta { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terracotta); margin-bottom: 0.7rem; }
.article-title { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 900; max-width: 28ch; line-height: 1.18; margin-bottom: 0.75rem; }
.article-dek   { font-size: 1.12rem; color: var(--medium); max-width: 55ch; line-height: 1.68; font-style: italic; }

.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.article-hero-img {
  width: 100%;
  border-radius: var(--r-img);
  box-shadow: 6px 8px 28px var(--shadow-warm);
  margin-bottom: 2.5rem;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-body p { font-size: 1.05rem; line-height: 1.92; color: var(--medium); margin-bottom: 1.5em; }
.article-body p:last-child { margin-bottom: 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--terracotta);
  font-size: 0.94rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-section { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info p { font-size: 1.04rem; line-height: 1.85; color: var(--medium); margin-bottom: 1rem; }

.contact-details {
  background: var(--cream-deep);
  border-radius: var(--r-card);
  padding: 1.6rem;
  border: 2px dashed var(--cream-border);
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-detail {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--medium);
  line-height: 1.6;
}
.contact-detail span:first-child { flex-shrink: 0; }
.contact-detail a { color: var(--purple); word-break: break-all; }

.form-box {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.5rem;
  box-shadow: 4px 6px 26px var(--shadow-warm);
  border: 2px dashed var(--cream-border);
}

.form-box h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 0.4rem; color: var(--dark); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-card);
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-light);
}
.form-textarea { min-height: 150px; resize: vertical; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 920px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 0.75rem 1rem 1.25rem; border-bottom: 2px dashed var(--cream-border); box-shadow: 0 8px 24px var(--shadow-warm); z-index: 300; }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: block; }

  .hero-pull-wrapper { justify-content: center; margin-top: -60px; }
  .hero-pull-card { width: 92%; }

  .intro-grid,
  .about-grid,
  .story-grid,
  .what-grid,
  .gi-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-grid > :first-child { order: 2; }
  .about-grid > :last-child  { order: 1; }

  .story-grid > :first-child { order: 2; }
  .story-grid > :last-child  { order: 1; }

  .highlights-grid,
  .ways-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid .hl-card:nth-child(2),
  .ways-grid .way-card:nth-child(2) { margin-top: 2rem; }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .art-card:nth-child(2) { margin-top: 0; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .form-row { grid-template-columns: 1fr; }

  .prog-card { grid-template-columns: 1fr; gap: 1rem; }
  .prog-icon { width: 52px; height: 52px; font-size: 1.8rem; }

  .impact-row { gap: 2.5rem; }
}

@media (max-width: 640px) {
  .section-pad { padding: 3.5rem 0; }
  .hero-section { min-height: 500px; }
  .hero-body { padding: 3rem 1.25rem 2.5rem; min-height: 440px; }
  .hero-tagline { font-size: 2rem; }
  .work-banner { height: 320px; }

  .highlights-grid,
  .ways-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .highlights-grid .hl-card:nth-child(2),
  .ways-grid .way-card:nth-child(2) { margin-top: 0; }

  .cta-inner { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trustees-row { flex-direction: column; align-items: center; }
  .trustee-card { max-width: 100%; }

  .intro-stamp { display: none; }
  .scrapbook-section { padding: 2.5rem 0; }
  .scrapbook-row .polaroid { width: clamp(160px, 44vw, 240px); }
}
