/*
Theme Name: HTWC Bespoke
Theme URI: https://helpthewoman.org
Author: Help The Woman Campaign
Description: A bespoke, editorial-grade theme for Help The Woman Campaign — cervical cancer awareness NGO.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: htwc
*/

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --black:      #1A1A1A;
  --ivory:      #F7F2EA;
  --ivory-dark: #EDE7DB;
  --terra:      #C45C3A;
  --green:      #2D6A4F;
  --amber:      #E8943A;
  --white:      #FFFFFF;
  --grey:       #6B6B6B;
  --grey-light: #D4CFC8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.35s var(--ease);
}

/* ─────────────────────────────────────────
   RESET + BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   TYPOGRAPHY SCALE
───────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.t-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.t-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}
.t-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  font-weight: 400;
}
.t-body { font-size: 1rem; line-height: 1.7; }
.t-small { font-size: 0.875rem; line-height: 1.5; }
.t-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 2 * clamp(1rem, 4vw, 3rem));
  margin-inline: auto;
}
.container--narrow { width: min(780px, 100% - 2 * clamp(1rem, 4vw, 3rem)); margin-inline: auto; }
.container--wide   { width: min(1440px, 100% - 2 * clamp(1rem, 4vw, 2rem)); margin-inline: auto; }

.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section--sm { padding-block: clamp(2rem, 5vw, 4rem); }
.section--lg { padding-block: clamp(6rem, 12vw, 12rem); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ─────────────────────────────────────────
   COLOUR UTILITIES
───────────────────────────────────────── */
.bg-ivory    { background: var(--ivory); }
.bg-dark     { background: var(--black); color: var(--ivory); }
.bg-terra    { background: var(--terra); color: var(--white); }
.bg-green    { background: var(--green); color: var(--white); }
.bg-white    { background: var(--white); }
.text-terra  { color: var(--terra); }
.text-green  { color: var(--green); }
.text-amber  { color: var(--amber); }
.text-grey   { color: var(--grey); }
.text-ivory  { color: var(--ivory); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terra);
  color: var(--white);
}
.btn--primary:hover {
  background: #b04e30;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,92,58,0.35);
}
.btn--secondary {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn--secondary:hover {
  background: var(--terra);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: #235a40;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.35);
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.8rem; }

.btn svg, .btn .arrow {
  transition: transform 0.25s var(--ease);
}
.btn:hover svg, .btn:hover .arrow {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  padding-block: 1.25rem;
}
.site-header.scrolled {
  background: rgba(247, 242, 234, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--grey-light);
}
.site-header.hero-dark {
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  max-width: 140px;
}
.site-header.hero-dark .logo-text { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  color: var(--black);
  transition: var(--transition);
}
.site-header.hero-dark .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover { background: rgba(0,0,0,0.06); color: var(--terra); }
.site-header.hero-dark .nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.site-header.hero-dark .hamburger span { background: var(--white); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--ivory);
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--terra); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.1); }
.mobile-nav-footer {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  right: 3rem;
}

/* ─────────────────────────────────────────
   HERO — EDITORIAL SPLIT
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__image-col {
  position: relative;
  overflow: hidden;
}
.hero__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero__image-col img.loaded { transform: scale(1); }
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.3) 0%, transparent 100%);
}

.hero__content-col {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  position: relative;
}
.hero__content-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: 2px;
  background: var(--terra);
}

.hero__eyebrow {
  color: var(--terra);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--terra);
}
.hero__subtitle {
  color: rgba(247, 242, 234, 0.7);
  max-width: 44ch;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.hero__stat-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.hero__stat-item .stat-label {
  font-size: 0.75rem;
  color: rgba(247,242,234,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(247,242,234,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll svg { width: 20px; height: 20px; opacity: 0.5; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────
   MISSION STRIP
───────────────────────────────────────── */
.mission-strip {
  background: var(--terra);
  padding-block: 1.5rem;
  overflow: hidden;
}
.mission-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.mission-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.mission-strip__item svg { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.8; }
.mission-strip__item span { font-size: 0.875rem; font-weight: 500; }
.mission-strip__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

/* ─────────────────────────────────────────
   ABOUT SECTION — EDITORIAL
───────────────────────────────────────── */
.about-section {
  background: var(--white);
}
.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.about-section__image-stack {
  position: relative;
  height: clamp(400px, 60vw, 600px);
}
.about-section__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-section__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 5px solid var(--white);
}
.about-section__badge {
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: var(--terra);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(196,92,58,0.4);
  z-index: 2;
}
.about-section__badge .badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-section__badge .badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.about-section__content .eyebrow { margin-bottom: 1rem; }
.about-section__content .t-h2 { margin-bottom: 1.5rem; }
.about-section__content .t-lead { color: var(--grey); margin-bottom: 1.5rem; }
.about-section__content p { color: var(--grey); margin-bottom: 2rem; }

.approach-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.approach-item__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.approach-item__icon svg { width: 10px; height: 10px; color: var(--white); }
.approach-item span { font-size: 0.875rem; font-weight: 500; color: var(--black); }

/* ─────────────────────────────────────────
   IMPACT NUMBERS
───────────────────────────────────────── */
.impact-section {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.impact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.impact-card {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.impact-card:last-child { border-right: none; }
.impact-card:hover { background: rgba(255,255,255,0.05); }
.impact-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-card__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.impact-card__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   WHAT WE DO / PROGRAMS
───────────────────────────────────────── */
.programs-section { background: var(--ivory); }
.programs-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.programs-header .eyebrow { margin-bottom: 1rem; }
.programs-header .t-h2 { margin-bottom: 1rem; }
.programs-header p { color: var(--grey); max-width: 55ch; margin-inline: auto; }

.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.program-card--full { grid-column: span 2; grid-template-columns: 1fr 1.2fr; }
.program-card__image {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.program-card:hover .program-card__image img { transform: scale(1.05); }
.program-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--terra);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}
.program-card__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.program-card__body .t-h3 { margin-bottom: 0.75rem; }
.program-card__body p { color: var(--grey); font-size: 0.9rem; margin-bottom: 1.25rem; flex: 1; }
.program-card__body .btn { align-self: flex-start; margin-top: auto; }

/* ─────────────────────────────────────────
   STORY / QUOTE SECTION
───────────────────────────────────────── */
.story-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.story-section__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.story-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.story-quote {
  border-left: 3px solid var(--terra);
  padding-left: 2.5rem;
}
.story-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 2rem;
  font-style: italic;
}
.story-quote blockquote::before { content: '\201C'; color: var(--terra); }
.story-quote blockquote::after  { content: '\201D'; color: var(--terra); }
.quote-attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote-attribution img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--terra);
}
.quote-attribution .attr-name {
  font-weight: 700;
  color: var(--ivory);
  font-size: 0.9rem;
}
.quote-attribution .attr-role {
  font-size: 0.78rem;
  color: rgba(247,242,234,0.5);
}

.story-content .eyebrow { margin-bottom: 1.25rem; }
.story-content .t-h2 { color: var(--ivory); margin-bottom: 1.5rem; }
.story-content p { color: rgba(247,242,234,0.65); margin-bottom: 1rem; line-height: 1.8; }
.story-content .btn { margin-top: 1.5rem; }

/* ─────────────────────────────────────────
   VOLUNTEER SECTION
───────────────────────────────────────── */
.volunteer-section { background: var(--ivory-dark); }
.volunteer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.volunteer-steps { counter-reset: step; }
.step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--grey-light);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--terra);
  flex-shrink: 0;
  transition: var(--transition);
}
.step-item:hover .step-num {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.step-body .step-title {
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}
.step-body p { font-size: 0.875rem; color: var(--grey); line-height: 1.6; }

.volunteer-cta-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.volunteer-cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.volunteer-cta-card .t-h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.volunteer-cta-card p { opacity: 0.75; margin-bottom: 2rem; position: relative; }
.volunteer-cta-card .btn { position: relative; }

.volunteer-image {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.volunteer-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  gap: 2rem;
}
.testimonials-header .t-h2 { max-width: 30ch; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.testimonial-card--featured {
  background: var(--terra);
  color: var(--white);
}
.testimonial-card__stars { color: var(--amber); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card--featured .testimonial-card__stars { color: var(--ivory); }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
}
.testimonial-card--featured blockquote { color: var(--white); }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-card--featured .testimonial-card__author { border-color: rgba(255,255,255,0.2); }
.testimonial-card__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.875rem; }
.author-role { font-size: 0.75rem; color: var(--grey); }
.testimonial-card--featured .author-role { color: rgba(255,255,255,0.65); }

/* ─────────────────────────────────────────
   DONATE SECTION
───────────────────────────────────────── */
.donate-section {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}
.donate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.donate-content .eyebrow { margin-bottom: 1rem; }
.donate-content .t-h2 { margin-bottom: 1.5rem; }
.donate-content p { color: var(--grey); margin-bottom: 1.25rem; line-height: 1.8; }

.donate-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.donate-feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.donate-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196,92,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.donate-feature__icon svg { width: 16px; height: 16px; color: var(--terra); }
.donate-feature span { font-size: 0.875rem; color: var(--black); font-weight: 500; }

.donate-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}
.donate-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}
.donate-card .subtitle {
  color: rgba(247,242,234,0.5);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.donate-tabs {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 1.5rem;
}
.donate-tab {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.donate-tab.active {
  background: var(--terra);
  color: var(--white);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.amount-btn {
  padding: 0.875rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--ivory);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}
.amount-btn.custom { grid-column: span 3; background: rgba(255,255,255,0.04); }

.donate-input-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}
.donate-input-wrap label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.donate-input-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: var(--ivory);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}
.donate-input-wrap input:focus { border-color: var(--terra); background: rgba(255,255,255,0.08); }
.donate-card .btn { width: 100%; justify-content: center; }

.donate-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.donate-secure svg { width: 14px; height: 14px; }

/* ─────────────────────────────────────────
   PARTNERS
───────────────────────────────────────── */
.partners-section { background: var(--ivory-dark); }
.partners-header { text-align: center; margin-bottom: 3rem; }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.partner-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  font-weight: 700;
  color: var(--grey);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  min-width: 140px;
  text-align: center;
}
.partner-item:hover { color: var(--terra); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* ─────────────────────────────────────────
   NEWS / BLOG
───────────────────────────────────────── */
.news-section { background: var(--white); }
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  gap: 2rem;
}
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.news-card--featured { grid-row: span 2; display: flex; flex-direction: column; }
.news-card__image {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.news-card--featured .news-card__image { flex: 1; aspect-ratio: unset; min-height: 260px; }
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card__image img { transform: scale(1.05); }
.news-card__body { padding: 1.5rem; }
.news-card--featured .news-card__body { padding: 2rem; }
.news-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}
.news-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.news-card--featured .news-card__title { font-size: 1.4rem; }
.news-card__title a { color: var(--black); transition: color 0.2s; }
.news-card__title a:hover { color: var(--terra); }
.news-card__excerpt { font-size: 0.875rem; color: var(--grey); line-height: 1.65; margin-bottom: 1rem; }
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--grey);
}
.news-card__date { display: flex; align-items: center; gap: 0.35rem; }

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--terra);
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner .t-h1 { color: var(--white); margin-bottom: 1.25rem; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 55ch; margin-inline: auto; margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-banner .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(247,242,234,0.6);
  padding-top: clamp(4rem, 7vw, 7rem);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--ivory); font-size: 1.1rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.875rem; line-height: 1.7; max-width: 32ch; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,242,234,0.5);
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-link:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }
.footer-col h4 {
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(247,242,234,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--terra); }

.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(247,242,234,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--terra); }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
}
.contact-info .t-h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--grey); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(196,92,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 20px; height: 20px; color: var(--terra); }
.contact-detail__label { font-size: 0.75rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-detail__value { font-weight: 600; font-size: 0.95rem; }

.contact-form {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-form .subtitle { color: var(--grey); font-size: 0.875rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: span 2; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--black); letter-spacing: 0.02em; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--black);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196,92,58,0.1);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 1.25rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  padding-top: calc(80px + clamp(3rem, 6vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 6rem);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(247,242,234,0.4);
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: rgba(247,242,234,0.4); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--terra); }
.page-hero .breadcrumb span { color: var(--terra); }
.page-hero .t-h1 { color: var(--ivory); max-width: 18ch; }
.page-hero p { color: rgba(247,242,234,0.6); max-width: 55ch; margin-top: 1.25rem; font-size: 1.05rem; }

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image-col { height: 55vw; min-height: 320px; }
  .hero__content-col { padding: 3rem 2rem; }
  .hero__content-col::before { display: none; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .impact-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card--full { grid-column: span 1; }
  .program-card { grid-template-columns: 1fr; }
  .program-card__image { min-height: 220px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: span 2; flex-direction: row; }
  .news-card--featured .news-card__image { width: 45%; flex: unset; aspect-ratio: unset; min-height: 200px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-section__inner { grid-template-columns: 1fr; }
  .about-section__image-stack { height: 400px; }
  .story-inner { grid-template-columns: 1fr; }
  .volunteer-inner { grid-template-columns: 1fr; }
  .donate-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; align-items: flex-start; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .approach-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
}

@media (max-width: 640px) {
  .hero__stat-row { gap: 1.5rem; flex-wrap: wrap; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-card { border: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { flex-direction: column; grid-column: span 1; }
  .news-card--featured .news-card__image { width: 100%; min-height: 200px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .amount-btn.custom { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
