/* ═══════════════════════════════════════════════
   VIBRANT HEALTH ADVOCATES – SOLACE
   Warm & Human Community design system
   ═══════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────── */
:root {
  --cream:        #FDF8F0;
  --cream-mid:    #F5EDD8;
  --cream-dark:   #ECD9B8;
  --sand:         #E0C99A;
  --terracotta:   #C85C3F;
  --terra-lt:     #E8906F;
  --terra-pale:   #FAE8E1;
  --brown:        #6B4226;
  --brown-dark:   #3D2210;
  --text:         #2C1A0E;
  --text-mid:     #5A3E2B;
  --text-lt:      #7A5C42;
  --purple:       #7B2D8B;
  --purple-lt:    #F0D9F5;
  --purple-mid:   #C9A0D8;
  --purple-dark:  #5A1E68;
  --white:        #FFFFFF;
  --r-card:       24px;
  --r-img:        28px;
  --r-lg:         40px;
  --sh-soft:      0 4px 20px rgba(108,66,38,0.10);
  --sh-card:      0 8px 36px rgba(108,66,38,0.16);
  --sh-lift:      0 16px 48px rgba(108,66,38,0.22);
  --font: system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ── BASE ─────────────────────────────────────── */
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.78;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ───────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-weight: 900;
  line-height: 1.18;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.55rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1.15em; }
p:last-child { margin-bottom: 0; }

.label-tag {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}
.label-tag-purple { color: var(--purple); }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.82em 2.1em;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9375rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1.3;
}
.btn:hover  { transform: translateY(-3px); box-shadow: var(--sh-lift); }
.btn-terra  { background: var(--terracotta); color: #fff; }
.btn-purple { background: var(--purple); color: #fff; }
.btn-outline {
  background: transparent;
  border: 2.5px solid var(--terracotta);
  color: var(--terracotta);
}
.btn-outline:hover { background: var(--terra-pale); }
.btn-cream  { background: var(--cream); color: var(--purple); }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 2px dotted var(--sand);
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand .logo-icon {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}
.nav-brand .wordmark {
  height: 26px;
  width: auto;
  flex-shrink: 0;
  /* dark artwork on transparent bg — show as-is on cream */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: nowrap;
}
.nav-links li a {
  display: block;
  padding: 0.42em 0.85em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: var(--purple-lt);
  color: var(--purple);
}

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.site-footer {
  background: var(--brown-dark);
  color: var(--cream-mid);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-icon  { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .wordmark   { height: 24px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; opacity: 0.78; line-height: 1.7; }

.footer-links h4,
.footer-contact h4 {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.1rem;
}
.footer-links ul li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.footer-links a:hover { opacity: 1; }

.footer-contact a {
  display: block;
  font-size: 0.82rem;
  opacity: 0.75;
  margin-bottom: 0.6rem;
  word-break: break-all;
  line-height: 1.5;
  transition: opacity 0.15s;
}
.footer-contact a:hover { opacity: 1; }
.footer-contact .addr {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  opacity: 0.55;
  font-style: italic;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.55;
}

/* ════════════════════════════════════════════════
   HERO  (index.html full-bleed)
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(44, 26, 14, 0.72) 0%,
    rgba(44, 26, 14, 0.48) 55%,
    rgba(44, 26, 14, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6.5rem 2rem 3rem;
  max-width: 740px;
  margin-left: clamp(1rem, 6vw, 8rem);
  flex-shrink: 0;
}
.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  margin-bottom: 1.3rem;
}
.hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: 1.125rem;
  line-height: 1.72;
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.28);
  max-width: 580px;
}
.hero-spacer { flex: 1; min-height: 160px; }

/* stamp badge in hero */
.stamp-badge {
  width: 92px;
  height: 92px;
  margin-bottom: 1.6rem;
}
.stamp-badge svg { width: 100%; height: 100%; }

/* ── pull-up impact bar ────────────────────────── */
.pull-up-zone {
  position: relative;
  z-index: 10;
  margin-top: -88px;
  padding: 0 2rem;
}
.impact-bar {
  background: var(--terracotta);
  border-radius: var(--r-card);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: var(--sh-lift);
  max-width: 960px;
  margin: 0 auto;
}
.impact-stat { text-align: center; }
.impact-stat .number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.impact-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  margin-top: 0.4rem;
  display: block;
}

/* ════════════════════════════════════════════════
   SQUIGGLE DIVIDERS
   ════════════════════════════════════════════════ */
.squiggle {
  overflow: hidden;
  line-height: 0;
  margin: 0.5rem 0;
  opacity: 0.45;
}
.squiggle svg { width: 100%; display: block; }
.squiggle-terra { opacity: 0.4; }
.squiggle-purple { opacity: 0.35; }

/* ════════════════════════════════════════════════
   LAYOUT HELPERS
   ════════════════════════════════════════════════ */
.section      { padding: 5.5rem 2rem; }
.section-mid  { padding: 4rem 2rem; }
.section-sm   { padding: 3rem 2rem; }

.section-cream     { background: var(--cream); }
.section-cream-mid { background: var(--cream-mid); }
.section-terra     { background: var(--terra-pale); }
.section-purple    { background: var(--purple-lt); }

.container        { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 820px;  margin: 0 auto; }
.container-mid    { max-width: 1040px; margin: 0 auto; }

.text-center { text-align: center; }
.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; }

/* ════════════════════════════════════════════════
   HOME INTRO
   ════════════════════════════════════════════════ */
.home-intro {
  padding: 6rem 2rem 4rem;
  text-align: center;
}
.home-intro h2 { margin-bottom: 1.5rem; }
.home-intro p {
  max-width: 760px;
  margin: 0 auto 1.2em;
  color: var(--text-mid);
  font-size: 1.0625rem;
}

/* ════════════════════════════════════════════════
   HIGHLIGHT CARDS  (staggered polaroid row)
   ════════════════════════════════════════════════ */
.highlights-section {
  padding: 3rem 2rem 6rem;
  background: var(--cream-mid);
}
.highlights-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.highlights-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--sh-card);
  border: 2.5px dotted var(--sand);
  position: relative;
}
.highlight-card::after {
  content: '';
  position: absolute;
  top: -4px; right: -4px; bottom: -4px; left: -4px;
  border-radius: calc(var(--r-card) + 4px);
  border: 1px solid rgba(200, 92, 63, 0.12);
  pointer-events: none;
}
.highlight-card:nth-child(1) { margin-top: 0; }
.highlight-card:nth-child(2) { margin-top: 3rem; }
.highlight-card:nth-child(3) { margin-top: -1.5rem; }

.hi-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.highlight-card h3 {
  color: var(--brown);
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}
.highlight-card p { font-size: 0.9375rem; color: var(--text-mid); }

/* ════════════════════════════════════════════════
   POLAROID / SCRAPBOOK IMAGES
   ════════════════════════════════════════════════ */
.polaroid {
  background: var(--white);
  padding: 10px 10px 44px;
  box-shadow: var(--sh-card);
  display: inline-block;
  max-width: 100%;
}
.polaroid img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.polaroid-cap {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-lt);
  font-style: italic;
  margin-top: 8px;
  padding: 0 4px;
}
.tilt-l1  { transform: rotate(-3deg); }
.tilt-l2  { transform: rotate(-1.5deg); }
.tilt-r1  { transform: rotate(2.5deg); }
.tilt-r2  { transform: rotate(1.2deg); }
.tilt-tiny { transform: rotate(-0.6deg); }

.img-rounded { border-radius: var(--r-img); }
.img-big     { border-radius: 36px; }
.img-full    { width: 100%; border-radius: var(--r-img); object-fit: cover; }

/* ════════════════════════════════════════════════
   HOME STORY TEASER (two-col)
   ════════════════════════════════════════════════ */
.home-story {
  padding: 5rem 2rem;
  background: var(--cream);
}
.two-col {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-text h2 { margin-bottom: 1.5rem; }
.two-col-text p  { color: var(--text-mid); }

/* ════════════════════════════════════════════════
   BLOG PREVIEW (index & blog page)
   ════════════════════════════════════════════════ */
.blog-preview {
  padding: 5rem 2rem 6rem;
  background: var(--cream-mid);
}
.blog-preview-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  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(--sh-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lift);
}
.blog-card:nth-child(2) { margin-top: 2.5rem; }
.blog-card:nth-child(3) { margin-top: -1rem; }

.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.blog-card-body {
  padding: 1.5rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-dek {
  font-size: 0.875rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.1rem;
  line-height: 1.62;
}
.blog-read {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--terracotta);
}
.blog-read::after { content: " →"; }

/* ════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════ */
.cta-band {
  background: var(--purple);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}
.cta-band h2  { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-band p   { color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 2.2rem; position: relative; }
.cta-band .btn-cream { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }

/* ════════════════════════════════════════════════
   PAGE HEADER (inner pages)
   ════════════════════════════════════════════════ */
.page-header {
  position: relative;
  height: clamp(280px, 40vh, 400px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-header-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 26, 14, 0.80) 0%,
    rgba(44, 26, 14, 0.35) 55%,
    rgba(44, 26, 14, 0.08) 100%
  );
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  color: #fff;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.page-header-content .label-tag { color: rgba(255,255,255,0.7); }
.page-header-content h1 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  margin-bottom: 0.6rem;
}
.page-header-content p {
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* no-photo page header */
.page-header-plain {
  background: var(--cream-mid);
  padding: 4rem 2rem 3rem;
  border-bottom: 2px dotted var(--sand);
}
.page-header-plain h1 { margin-bottom: 0.6rem; }
.page-header-plain p  { color: var(--text-mid); max-width: 680px; }

/* ════════════════════════════════════════════════
   ABOUT  PAGE
   ════════════════════════════════════════════════ */
.about-intro {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-paras p { color: var(--text-mid); margin-bottom: 1.4em; }

.story-section {
  background: var(--cream-mid);
  padding: 5.5rem 2rem;
}
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.story-text p { color: var(--text-mid); }

.mission-block {
  background: var(--purple-lt);
  border: 2.5px dotted var(--purple-mid);
  border-radius: var(--r-card);
  padding: 3.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.mission-block .label-tag { color: var(--purple); }
.mission-block h2 { color: var(--purple-dark); margin-bottom: 1.25rem; }
.mission-block p  { color: var(--text-mid); font-size: 1.0625rem; line-height: 1.82; }

/* trustees */
.trustees-wrap {
  padding: 5rem 2rem;
  text-align: center;
}
.trustees-header { margin-bottom: 2.5rem; }
.trustees-header p { max-width: 680px; margin: 0.75rem auto 0; color: var(--text-mid); }
.trustees-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trustee-card {
  background: var(--white);
  border-radius: 50%;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--sh-soft);
  border: 3px dotted var(--sand);
  padding: 1rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.3;
}
.trustee-card .role {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-top: 0.45rem;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════
   OUR WORK PAGE
   ════════════════════════════════════════════════ */
.what-we-do {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.what-text p { color: var(--text-mid); margin-bottom: 1.3em; }
.what-text p:first-child { font-size: 1.1rem; font-weight: 600; color: var(--brown); }

.prog-section {
  background: var(--cream-mid);
  padding: 5rem 2rem;
}
.prog-inner {
  max-width: 960px;
  margin: 0 auto;
}
.prog-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.2rem 2.5rem;
  box-shadow: var(--sh-soft);
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  border-left: 6px solid var(--terracotta);
  margin-bottom: 1.8rem;
  transition: transform 0.2s;
}
.prog-card:nth-child(even) { border-left-color: var(--purple); }
.prog-card:hover { transform: translateX(5px); }
.prog-icon { font-size: 2.6rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.prog-body h3 { margin-bottom: 0.3rem; }
.prog-blurb {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 0.9375rem;
  margin-bottom: 0.8rem;
}
.prog-card:nth-child(even) .prog-blurb { color: var(--purple); }
.prog-detail { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.72; }

/* ════════════════════════════════════════════════
   GET INVOLVED
   ════════════════════════════════════════════════ */
.gi-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.gi-intro p { color: var(--text-mid); font-size: 1.0625rem; }

.ways-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.way-card {
  border-radius: var(--r-card);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--sh-soft);
  border: 2.5px dotted var(--sand);
  background: var(--white);
}
.way-card:nth-child(1) { background: var(--white); }
.way-card:nth-child(2) {
  background: var(--purple-lt);
  border-color: var(--purple-mid);
  margin-top: 2.5rem;
}
.way-card:nth-child(3) { background: var(--terra-pale); border-color: var(--terra-lt); }

.way-icon { font-size: 2.6rem; margin-bottom: 1rem; line-height: 1; }
.way-card h3 { margin-bottom: 0.8rem; color: var(--brown); }
.way-card p  { font-size: 0.9375rem; color: var(--text-mid); }

/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p  { color: var(--text-mid); margin-bottom: 1.2em; }
.contact-detail {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px dotted var(--sand);
}
.contact-detail h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
  font-weight: 800;
}
.contact-detail a {
  display: block;
  font-size: 0.875rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
  word-break: break-all;
  font-weight: 600;
}
.contact-detail a:hover { text-decoration: underline; }
.contact-detail p { font-size: 0.875rem; color: var(--text-mid); margin-top: 0.3rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 3rem;
  box-shadow: var(--sh-card);
  border: 2px dotted var(--sand);
}
.contact-form-wrap h3 { margin-bottom: 1.6rem; color: var(--brown); }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--brown);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8em 1.15em;
  border: 2px solid var(--sand);
  border-radius: 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; line-height: 1.65; }

/* ════════════════════════════════════════════════
   ARTICLE PAGES
   ════════════════════════════════════════════════ */
.article-header {
  position: relative;
  height: clamp(300px, 45vh, 460px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.article-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.85) 0%, rgba(44,26,14,0.3) 60%, transparent 100%);
}
.article-header-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.article-header-content .label-tag { color: rgba(255,255,255,0.75); }
.article-header-content h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 0.7rem;
}
.article-dek {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 4.5rem 2rem 5rem;
}
.article-body p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 1.6em;
}

.article-nav {
  background: var(--cream-mid);
  border-top: 2px dotted var(--sand);
  padding: 2.5rem 2rem;
  text-align: center;
}
.article-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--terracotta);
  font-size: 0.9375rem;
}
.article-nav a::before { content: "← "; }
.article-nav a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════
   DECORATIVE BITS
   ════════════════════════════════════════════════ */
/* dotted section edge */
.dotted-top    { border-top:    2px dotted var(--sand); }
.dotted-bottom { border-bottom: 2px dotted var(--sand); }

/* coloured rule */
.rule-terra {
  border: none;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  opacity: 0.35;
  margin: 2rem 0;
}
.rule-purple {
  border: none;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
  opacity: 0.2;
  margin: 2rem 0;
}

/* circular accent behind cards etc */
.blob-deco {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,217,245,0.5) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .highlights-grid { grid-template-columns: 1fr; max-width: 480px; margin: 2rem auto 0; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }

  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin: 2rem auto 0; }
  .blog-card:nth-child(2),
  .blog-card:nth-child(3) { margin-top: 0; }

  .ways-grid { grid-template-columns: 1fr; max-width: 520px; }
  .way-card:nth-child(2) { margin-top: 0; }

  .two-col        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro    { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .what-we-do     { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 680px) {
  .site-nav { padding: 0.75rem 1rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 300; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 2px dotted var(--sand);
    padding: 0.75rem 1rem 1rem;
    gap: 0.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links li a { padding: 0.6em 1em; }
  .nav-toggle   { display: flex; }
  .nav-cta      { display: none; }

  .hero-content { padding: 5rem 1.25rem 3rem; margin-left: 0; }
  .hero-sub     { font-size: 1rem; }
  .pull-up-zone { margin-top: -48px; padding: 0 1rem; }
  .impact-bar   { padding: 2rem 1.25rem; gap: 1.5rem; }
  .impact-stat .number { font-size: 2rem; }

  .section   { padding: 3.5rem 1.25rem; }
  .section-mid { padding: 3rem 1.25rem; }

  .prog-card { flex-direction: column; gap: 0.6rem; }
  .mission-block { padding: 2.5rem 1.5rem; }
  .contact-form-wrap { padding: 2rem 1.25rem; }

  .page-header { height: clamp(220px, 35vh, 320px); }
  .article-header { height: clamp(250px, 38vh, 360px); }

  .footer-inner { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .trustee-card { width: 140px; height: 140px; font-size: 0.875rem; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .stamp-badge { width: 72px; height: 72px; }
}
