/* ================================================================
   VIBRANT HEALTH ADVOCATES - EPSILON
   Warm & Human Community Design System
   ================================================================ */

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

/* ---- Custom Properties ---- */
:root {
  --cream:          #FAF6EF;
  --cream-warm:     #F5ECD8;
  --cream-border:   #EDE0C8;
  --cream-card:     #FDF9F4;
  --terra:          #C4622D;
  --terra-pale:     #F2D8C6;
  --terra-deep:     #8C3B18;
  --purple:         #7B2D8B;
  --purple-light:   #F0D9F5;
  --purple-mid:     #C49AD1;
  --text:           #2A1508;
  --text-mid:       #5E3828;
  --text-light:     #8C6048;
  --white:          #FFFFFF;
  --radius-photo:   26px;
  --radius-card:    20px;
  --shadow-warm:    0 4px 24px rgba(42,21,8,0.10);
  --shadow-deep:    0 10px 48px rgba(42,21,8,0.18);
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* ---- Base ---- */
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.78;
  font-size: 1.05rem;
}
h1, h2, h3, h4 { font-weight: 900; line-height: 1.18; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { max-width: 72ch; }

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}

/* ---- Section helpers ---- */
.section        { padding: 5.5rem 0; }
.section--tight { padding: 3rem 0; }
.section--warm  { background: var(--cream-warm); }
.section--purple{ background: var(--purple-light); }
.section--terra { background: var(--terra-pale); }

/* ---- Navigation ---- */
.site-nav {
  background: var(--cream);
  border-bottom: 2px solid var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.7rem 0;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-lockup .logo-icon  { height: 46px; width: auto; }
.brand-lockup .wordmark   { height: 30px; width: auto; }
.nav-links {
  display: flex;
  gap: 0.15rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--terra-pale);
  color: var(--terra-deep);
}
.nav-cta-link {
  background: var(--terra) !important;
  color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(196,98,45,0.3);
}
.nav-cta-link:hover { opacity: 0.88; }
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-border);
  border-radius: 10px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1;
}

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

/* ---- Stamp Badge ---- */
.stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 3px dashed var(--purple);
  text-align: center;
  padding: 0.6rem;
  transform: rotate(-8deg);
  font-weight: 900;
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--purple-light);
  flex-shrink: 0;
}
.stamp--footer {
  border-color: rgba(240,217,245,0.6);
  color: var(--purple-light);
  background: rgba(240,217,245,0.08);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 600px;
  background: var(--text);
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.52;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(42,21,8,0.30) 0%,
    rgba(196,98,45,0.18) 45%,
    rgba(42,21,8,0.72) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 110px clamp(1.25rem, 5vw, 3.5rem) 175px;
  width: 100%;
}
.hero__label {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 0.32rem 1rem;
  margin-bottom: 1.25rem;
}
.hero__title {
  color: var(--white);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  max-width: 820px;
  margin-bottom: 1.25rem;
  text-shadow: 0 3px 20px rgba(0,0,0,0.35);
  line-height: 1.1;
  font-weight: 900;
}
.hero__sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 580px;
  line-height: 1.72;
  margin-bottom: 2.25rem;
}
.hero__cta {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2.1rem;
  border-radius: 99px;
  box-shadow: 0 5px 20px rgba(196,98,45,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(196,98,45,0.45);
  color: var(--white);
}

/* ---- Hero Overlap ---- */
.hero-overlap {
  position: relative;
  z-index: 10;
  margin-top: -130px;
  padding-bottom: 0;
}
.overlap-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-deep);
  padding: 2.25rem 2.75rem;
  display: flex;
  gap: 0;
  align-items: stretch;
  border-top: 5px solid var(--terra);
}
.impact-stat {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1.25rem;
}
.impact-stat + .impact-stat {
  border-left: 2px dotted var(--cream-border);
}
.impact-stat__num {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
  display: block;
}
.impact-stat__label {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 700;
  margin-top: 0.4rem;
  letter-spacing: 0.01em;
  display: block;
}

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.sec-header { margin-bottom: 3rem; }
.sec-header--center { text-align: center; }
.sec-header--center p { margin-left: auto; margin-right: auto; }
.overline {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.55rem;
}
.sec-header h2 { color: var(--text); margin-bottom: 0.75rem; }
.sec-header p { color: var(--text-mid); font-size: 1.08rem; line-height: 1.72; }

/* ================================================================
   HIGHLIGHT CARDS (homepage)
   ================================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: start;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: var(--shadow-warm);
  border: 2px solid var(--cream-border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:nth-child(2) { transform: translateY(18px); }
.highlight-card:nth-child(3) { transform: translateY(-10px); }
.highlight-card:hover        { box-shadow: var(--shadow-deep); }
.highlight-card::after {
  content: '';
  position: absolute;
  top: -7px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px dotted var(--terra-pale);
  background: var(--cream);
}
.highlight-card__icon { font-size: 2.4rem; margin-bottom: 0.9rem; display: block; }
.highlight-card h3    { color: var(--terra-deep); margin-bottom: 0.6rem; font-size: 1.22rem; }
.highlight-card p     { color: var(--text-mid); font-size: 0.95rem; line-height: 1.72; }

/* ================================================================
   POLAROID GALLERY
   ================================================================ */
.polaroid-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem 0 2rem;
}
.polaroid {
  background: var(--white);
  padding: 10px 10px 46px;
  border: 2px solid var(--cream-border);
  box-shadow: 5px 10px 32px rgba(42,21,8,0.15);
  border-radius: 3px;
  flex: 0 0 auto;
  width: clamp(190px, 26vw, 300px);
  transition: transform 0.32s, box-shadow 0.32s;
  cursor: pointer;
}
.polaroid:nth-child(1) { transform: rotate(-3.2deg); }
.polaroid:nth-child(2) { transform: rotate(2.1deg) translateY(22px); }
.polaroid:nth-child(3) { transform: rotate(-1.4deg) translateY(-12px); }
.polaroid:hover {
  transform: rotate(0) scale(1.04) translateY(-8px) !important;
  box-shadow: 8px 18px 48px rgba(42,21,8,0.22);
  z-index: 5;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
}
.polaroid__caption {
  padding-top: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  text-align: center;
  font-style: italic;
}

/* ================================================================
   SPLIT LAYOUT
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split--reverse .split__img { order: -1; }
.split__img img {
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-deep);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split__text h2 { color: var(--text); margin-bottom: 1rem; }
.split__text p  { color: var(--text-mid); margin-bottom: 1.1rem; max-width: 58ch; }
.split__text p:last-child { margin-bottom: 0; }

/* ================================================================
   PHOTO BANNER (inner pages)
   ================================================================ */
.photo-banner {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.photo-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42,21,8,0.08) 0%, rgba(42,21,8,0.62) 100%);
}
.photo-banner__text {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.25rem, 5vw, 3.5rem);
  right: clamp(1.25rem, 5vw, 3.5rem);
  color: var(--white);
  max-width: 680px;
}
.photo-banner__text h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  margin-bottom: 0.5rem;
}
.photo-banner__text p { font-size: 1.05rem; opacity: 0.9; max-width: 52ch; }

/* ---- Photo banner overlap card ---- */
.banner-overlap {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding-bottom: 0;
}
.banner-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-deep);
  padding: 2rem 2.5rem;
  border-left: 6px solid var(--purple);
  max-width: 760px;
}
.banner-card h3 { color: var(--text); margin-bottom: 0.6rem; }
.banner-card p  { color: var(--text-mid); font-size: 0.97rem; line-height: 1.72; max-width: 62ch; }

/* ================================================================
   PROGRAMME CARDS
   ================================================================ */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.prog-card {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 2.1rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-warm);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.prog-card:nth-child(even) { background: var(--white); }
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); }
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terra), var(--purple));
}
.prog-card__icon { font-size: 2.3rem; margin-bottom: 0.85rem; display: block; }
.prog-card h3 { color: var(--terra-deep); margin-bottom: 0.55rem; font-size: 1.18rem; }
.prog-card .blurb {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}
.prog-card .detail {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.75;
  padding-top: 0.75rem;
  border-top: 1px dotted var(--cream-border);
}

/* ================================================================
   TEAM / TRUSTEES
   ================================================================ */
.trustees-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
}
.trustee-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem 2.25rem;
  border: 2px dotted var(--purple-mid);
  text-align: center;
  box-shadow: var(--shadow-warm);
  min-width: 190px;
}
.trustee-card__name { font-weight: 900; font-size: 1.05rem; color: var(--text); margin-bottom: 0.28rem; }
.trustee-card__role {
  font-size: 0.78rem;
  color: var(--purple);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ================================================================
   WAYS TO HELP
   ================================================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-warm);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.way-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.way-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--terra), var(--purple));
}
.way-card__icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.way-card h3 { color: var(--text); margin-bottom: 0.7rem; font-size: 1.25rem; }
.way-card p  { color: var(--text-mid); font-size: 0.96rem; line-height: 1.72; }

/* ================================================================
   BLOG CARDS
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 2px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); }
.blog-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__title {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.3;
  display: block;
}
.blog-card__dek {
  color: var(--text-mid);
  font-size: 0.9rem;
  flex: 1;
  line-height: 1.68;
  margin-bottom: 1.1rem;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--terra);
  border-bottom: 2px solid var(--terra-pale);
  padding-bottom: 0.15rem;
  transition: border-color 0.18s, gap 0.18s;
}
.blog-card__link:hover { border-color: var(--terra); gap: 0.65rem; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--terra-deep) 0%, var(--terra) 55%, #D4752A 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-bottom: 1.1rem; }
.cta-banner p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 55ch; margin: 0 auto 2.25rem; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--terra {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(196,98,45,0.38);
}
.btn--terra:hover { box-shadow: 0 8px 28px rgba(196,98,45,0.42); color: var(--white); }
.btn--purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(123,45,139,0.35);
}
.btn--purple:hover { box-shadow: 0 8px 28px rgba(123,45,139,0.40); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mid); margin-bottom: 1.75rem; font-size: 1rem; }
.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}
.contact-detail .ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.08rem; }
.contact-detail div { font-size: 0.92rem; color: var(--text-mid); line-height: 1.55; }
.contact-detail strong { display: block; color: var(--text); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-detail a { color: var(--terra); font-weight: 700; word-break: break-all; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-warm);
  border: 2px solid var(--cream-border);
}
.contact-form-box h3 { margin-bottom: 1.75rem; color: var(--text); }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 2px solid var(--cream-border);
  border-radius: 14px;
  padding: 0.78rem 1.1rem;
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 138px;
  line-height: 1.65;
}

/* ================================================================
   PAGE HEADER (inner pages)
   ================================================================ */
.page-header {
  background: var(--cream-warm);
  padding: 4rem 0 3.5rem;
  border-bottom: 3px solid var(--cream-border);
  text-align: center;
}
.page-header h1 { color: var(--text); margin-bottom: 0.75rem; }
.page-header p  { color: var(--text-mid); font-size: 1.08rem; max-width: 60ch; margin: 0 auto; }

/* ================================================================
   ARTICLE
   ================================================================ */
.article-header {
  background: var(--cream-warm);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  border-bottom: 3px solid var(--cream-border);
}
.article-header h1 { max-width: 820px; margin: 0 auto 1rem; }
.article-header .article-dek {
  font-size: 1.18rem;
  color: var(--text-mid);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.7;
}
.article-img-wrap {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}
.article-img-wrap img {
  width: 100%;
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-deep);
  aspect-ratio: 16/7;
  object-fit: cover;
}
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.25rem, 5vw, 3.5rem) 5.5rem;
}
.article-body p {
  max-width: 100%;
  margin-bottom: 1.6rem;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
}
.article-body p:last-child { margin-bottom: 0; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--terra);
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--terra-pale);
  padding-bottom: 0.15rem;
  transition: border-color 0.18s;
}
.article-back:hover { border-color: var(--terra); }

/* ---- Pull quote ---- */
.pullquote {
  border-left: 5px solid var(--terra);
  padding: 1.1rem 1.6rem;
  margin: 2.25rem 0;
  background: var(--terra-pale);
  border-radius: 0 14px 14px 0;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--terra-deep);
  font-weight: 700;
  line-height: 1.6;
}

/* ---- Dotted box ---- */
.dotted-box {
  border: 2px dotted var(--terra);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  background: var(--white);
}
.dotted-box p { max-width: 100%; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--terra-deep);
  color: var(--cream-warm);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-lockup { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.footer-lockup .logo-icon  { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-lockup .wordmark   { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; opacity: 0.78; line-height: 1.68; max-width: 34ch; }
.footer-col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-pale);
  margin-bottom: 1rem;
  font-weight: 800;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a { font-size: 0.9rem; opacity: 0.78; transition: opacity 0.18s; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-col > p { font-size: 0.85rem; opacity: 0.72; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-email {
  display: block;
  font-size: 0.82rem;
  word-break: break-all;
  opacity: 0.85;
  margin-bottom: 0.4rem;
  color: var(--purple-light);
  transition: opacity 0.18s;
}
.footer-email:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(245,236,216,0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.62;
}

/* ================================================================
   MISC UTILITIES
   ================================================================ */
.text-terra  { color: var(--terra); }
.text-purple { color: var(--purple); }
.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; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

/* ---- Inline with stamp ---- */
.stamp-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stamp-row p { flex: 1; min-width: 240px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__img { order: 0; }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 2px solid var(--cream-border);
    padding: 0.75rem;
    box-shadow: 0 10px 32px rgba(0,0,0,0.12);
    z-index: 200;
    gap: 0.15rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero__content { padding-bottom: 220px; }
  .hero-overlap  { margin-top: -170px; }
  .overlap-card  {
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
  }
  .impact-stat + .impact-stat {
    border-left: none;
    border-top: 2px dotted var(--cream-border);
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .photo-banner { height: 300px; }
  .banner-overlap { margin-top: -50px; }

  .polaroid-row { flex-direction: column; align-items: center; }
  .polaroid {
    width: min(88vw, 340px);
  }
  .polaroid:nth-child(1),
  .polaroid:nth-child(2),
  .polaroid:nth-child(3) { transform: rotate(-1.5deg); }
  .polaroid:nth-child(2) { transform: rotate(1.5deg); }

  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { transform: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .blog-grid { grid-template-columns: 1fr; }
}
