/* ===================================================
   ENMI — World-Class Design System
   Inspired by: charity:water, Gates Foundation, ONE.org
   Fonts: DM Serif Display (headings) + Outfit (body)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* --- Core Brand Palette --- */
  --forest:       #0D3B2E;
  --forest-dark:  #061F18;
  --forest-mid:   #174D3A;
  --leaf:         #2A6A50;
  --leaf-light:   #3B8265;

  /* --- Accent --- */
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-pale:    rgba(201, 168, 76, 0.12);

  /* --- Clay / Warm --- */
  --clay:         #A0522D;

  /* --- Neutral Surfaces --- */
  --cream:        #F7F5F0;
  --surface:      #FAFAF8;
  --white:        #FFFFFF;

  /* --- Ink & Text --- */
  --ink:          #151C18;
  --ink-80:       rgba(21, 28, 24, 0.80);
  --ink-60:       rgba(21, 28, 24, 0.60);
  --muted:        #58685F;
  --subtle:       #8A9A90;

  /* --- Lines & Borders --- */
  --line:         #E2E8E4;
  --line-soft:    rgba(226, 232, 228, 0.6);

  /* --- Shadows (layered) --- */
  --shadow-sm:    0 2px 8px rgba(6, 31, 24, 0.06), 0 1px 2px rgba(6, 31, 24, 0.04);
  --shadow-md:    0 8px 24px rgba(6, 31, 24, 0.08), 0 2px 6px rgba(6, 31, 24, 0.04);
  --shadow-lg:    0 24px 64px rgba(6, 31, 24, 0.12), 0 8px 20px rgba(6, 31, 24, 0.06);
  --shadow-xl:    0 40px 100px rgba(6, 31, 24, 0.16), 0 16px 40px rgba(6, 31, 24, 0.08);

  /* --- Layout --- */
  --max:          1220px;
  --container-px: clamp(20px, 4vw, 60px);

  /* --- Radius --- */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 999px;

  /* --- Transitions --- */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast:     180ms;
  --t-base:     280ms;
  --t-slow:     420ms;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--forest-dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus { top: 16px; }

html {
  scroll-padding-top: 96px;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background var(--t-slow) var(--ease-out),
    border-color var(--t-slow) var(--ease-out),
    box-shadow var(--t-slow) var(--ease-out);
}

/* Scrolled: rich dark glass */
.site-header.scrolled {
  background: rgba(8, 28, 20, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

/* Inner-page nav (no full-screen hero photo underneath) */
.site-header.nav-solid {
  background: rgba(8, 28, 20, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(var(--max), calc(100% - var(--container-px) * 2));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  flex: 0 1 auto;
  transition: opacity var(--t-fast) var(--ease-out);
}
.brand:hover { opacity: 0.82; }

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.80);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1.5px;
  background: var(--gold);
  border-radius: var(--r-pill);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link[aria-current="page"] {
  color: var(--gold-light);
}

.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  backdrop-filter: blur(8px);
  transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: var(--r-pill);
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-base) var(--ease-out);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    border-color var(--t-fast) var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold);
  color: #1A1000;
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.30);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.40);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: 0 4px 14px rgba(13, 59, 46, 0.22);
}
.btn-forest:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  box-shadow: 0 8px 24px rgba(13, 59, 46, 0.30);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.70);
}

.btn-light {
  background: var(--white);
  color: var(--forest);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  border-color: var(--leaf-light);
  box-shadow: var(--shadow-md);
}

/* ===================================================
   TYPOGRAPHY SYSTEM
   =================================================== */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--forest-dark);
}

p {
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.kicker {
  display: inline-block;
  color: var(--clay);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 12px;
}

/* ===================================================
   LAYOUT PRIMITIVES
   =================================================== */
.container {
  width: min(var(--max), calc(100% - var(--container-px) * 2));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-tight {
  padding: clamp(48px, 6vw, 80px) 0;
}

.section-alt {
  background: var(--surface);
}

.section-forest {
  background: var(--forest-dark);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--forest-dark);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.section-forest .section-heading h2 { color: var(--white); }
.section-forest .section-heading p  { color: rgba(255, 255, 255, 0.72); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.split-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--forest-dark);
}

.split-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.split-media {
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
}

.split-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.split-media:hover img {
  transform: scale(1.02);
}

/* ===================================================
   CARDS & SURFACES
   =================================================== */
.card,
.impact-card,
.program-card,
.value-card,
.project-card,
.contact-card,
.event-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out);
}

.card:hover,
.impact-card:hover,
.value-card:hover,
.project-card:hover,
.contact-card:hover,
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 59, 46, 0.12);
}

.card,
.value-card,
.contact-card,
.event-card {
  padding: 28px;
}

.card h3,
.value-card h3,
.impact-card h3,
.program-card h3,
.project-card h3,
.contact-card h3,
.event-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  color: var(--forest-dark);
}

.card p,
.value-card p,
.impact-card p,
.program-card p,
.project-card p,
.contact-card p,
.event-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.accent-line {
  width: 40px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: var(--r-pill);
  background: var(--gold);
}

/* ===================================================
   GRID UTILITIES
   =================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===================================================
   CHECKLISTS
   =================================================== */
.check-list,
.plain-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 26px;
  color: #2E3F38;
  font-size: 0.97rem;
  line-height: 1.6;
}

.section-forest .check-list li,
.section-forest .plain-list li {
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before,
.plain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===================================================
   HERO — HOMEPAGE (FULL SCREEN SLIDESHOW)
   =================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Cinematic overlay — strong left shadow + gentle bottom vignette */
.hero::after,
.page-hero::after,
.visual-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 31, 24, 0.82) 0%, rgba(6, 31, 24, 0.42) 52%, rgba(6, 31, 24, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 31, 24, 0.36) 0%, transparent 55%);
}

.hero-content,
.page-hero-content,
.visual-band-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - var(--container-px) * 2));
  margin: 0 auto;
}

.hero-copy {
  max-width: 720px;
  padding: 120px 0 140px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--gold-light);
  font-style: italic;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.hero-text-link::after {
  content: '';
  width: 30px;
  height: 1.5px;
  background: currentColor;
  transform-origin: left;
  transition: width var(--t-base) var(--ease-out);
  flex-shrink: 0;
}

.hero-text-link:hover::after { width: 48px; }

/* --- Hero Metrics Bar --- */
.hero-metrics {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: min(var(--max), calc(100% - var(--container-px) * 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transform: translateX(-50%);
}

.metric-tile {
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  background: rgba(6, 31, 24, 0.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}

.metric-tile:hover {
  background: rgba(6, 31, 24, 0.72);
  border-color: rgba(201, 168, 76, 0.30);
}

.metric-tile strong {
  display: block;
  color: var(--gold-light);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-tile span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* --- Slideshow Controls --- */
.hero-live {
  min-height: calc(100vh - 80px);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slides {
  display: flex;
  z-index: 0;
  overflow: hidden;
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  inset: auto;
  flex: 0 0 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 3600ms ease;
}

.hero-slide.is-active {
  transform: scale(1.06);
}

.hero-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 72px;
  align-items: center;
  min-width: 0;
}

.hero-copy,
.mission-board {
  min-width: 0;
}

/* --- Mission Board (glassmorphism card) --- */
.mission-board {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255,255,255,0.06) inset;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.mission-board > * {
  position: relative;
  z-index: 1;
}

.board-topline {
  display: grid;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.board-topline span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.board-topline strong {
  color: var(--white);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
}

.board-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2.2s ease-in-out infinite;
}

.board-summary {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out), width var(--t-base) var(--ease-out);
}

.hero-dots button.is-active {
  width: 44px;
  background: var(--gold);
}

.hero-arrows {
  display: none;
}

.hero-arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  background: rgba(6, 31, 24, 0.36);
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}

.hero-arrows button:hover {
  transform: scale(1.08);
  background: rgba(6, 31, 24, 0.60);
  border-color: rgba(255, 255, 255, 0.48);
}

/* ===================================================
   MISSION RUNWAY — "Where equipped churches..."
   =================================================== */
.mission-runway {
  position: relative;
  overflow: hidden;
  background: var(--forest-dark);
  color: var(--white);
}

/* Ambient mesh gradient */
.mission-runway::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 0% 50%, rgba(23, 77, 58, 0.55), transparent),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(201, 168, 76, 0.08), transparent);
  pointer-events: none;
}

/* Subtle grid texture */
.mission-runway::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.mission-runway .container {
  position: relative;
  z-index: 1;
}

.mission-runway .section-heading h2,
.mission-runway .section-heading p {
  color: var(--white);
}

.mission-runway .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.mission-runway .kicker {
  color: var(--gold-light);
}

/* --- Pathway Cards --- */
.pathway-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Animated connector line */
.pathway-grid::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 52px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--leaf-light), transparent);
  background-size: 200% 100%;
  animation: routeFlow 3s linear infinite;
  z-index: 0;
}

.pathway-card {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
}

.pathway-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(201, 168, 76, 0.50);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.pathway-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #1A1000;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.pathway-card h3,
.pathway-card p {
  color: var(--white);
}

.pathway-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pathway-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===================================================
   IMPACT CARDS ROW
   =================================================== */
.impact-row {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1fr;
  gap: 20px;
}

.impact-card {
  overflow: hidden;
}

.impact-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.impact-card:hover img {
  transform: scale(1.04);
}

.impact-card-body {
  padding: 24px;
}

.impact-card.featured {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: var(--forest);
  color: var(--white);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.impact-card.featured::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
}

.impact-card.featured h3,
.impact-card.featured p {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.impact-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.big-number {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* ===================================================
   CTA BAND
   =================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 60px 56px;
  border-radius: var(--r-xl);
  background: var(--forest);
  color: var(--white);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201, 168, 76, 0.12), transparent),
    radial-gradient(ellipse 40% 60% at 0% 0%, rgba(23, 77, 58, 0.60), transparent);
  pointer-events: none;
}

.cta-band h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.cta-band p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ===================================================
   PAGE HERO (Inner Pages)
   =================================================== */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}

.page-hero-content {
  padding: 160px 0 80px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 0;
}

/* ===================================================
   TRUST BAR
   =================================================== */
.trust-bar {
  background: var(--forest-dark);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-item {
  min-height: 120px;
  padding: 24px;
  background: var(--forest-dark);
  transition: background var(--t-fast) var(--ease-out);
}

.trust-item:hover {
  background: var(--forest-mid);
}

.trust-item strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* ===================================================
   VALUES GRID (About Page)
   =================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--leaf-light));
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  transition: transform var(--t-base) var(--ease-out);
}

.value-card:hover::after {
  transform: scaleX(1);
}

/* ===================================================
   LEADER PANEL (About Page)
   =================================================== */
.leader-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}

.leader-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: 32px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(0deg, rgba(6, 31, 24, 0.94) 0%, rgba(6, 31, 24, 0.20) 60%, transparent),
    url('profile-image4.jpeg') center / cover;
  color: var(--white);
  overflow: hidden;
}

.leader-card h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 2rem;
}

.leader-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.credential {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}

.credential:hover {
  border-color: var(--leaf-light);
  box-shadow: var(--shadow-md);
}

.credential strong {
  display: block;
  color: var(--forest-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.credential span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ===================================================
   PROGRAM TABS (Programs Page)
   =================================================== */
.program-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tab-button,
.filter-button {
  min-height: 42px;
  padding: 10px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--forest);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
}

.tab-button:hover,
.filter-button:hover {
  border-color: var(--leaf);
  background: rgba(13, 59, 46, 0.04);
}

.tab-button[aria-selected="true"],
.filter-button.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(13, 59, 46, 0.20);
}

.tab-panel {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tab-panel[hidden] { display: none; }

.program-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  min-height: 380px;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.program-card:hover img {
  transform: scale(1.03);
}

.program-card-body {
  padding: 40px;
}

.program-card .check-list {
  margin-top: 20px;
}

/* ===================================================
   BENEFICIARY STRIP
   =================================================== */
.beneficiary-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.beneficiary {
  min-height: 140px;
  padding: 24px;
  border-radius: var(--r-lg);
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}

.beneficiary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.beneficiary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-dark);
  font-weight: 600;
}

.beneficiary span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===================================================
   PROJECT CARDS
   =================================================== */
.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card-body {
  padding: 28px;
}

/* ===================================================
   PHASE MAP (Projects Page)
   =================================================== */
.phase-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: phase;
}

.phase {
  position: relative;
  min-height: 200px;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--forest-dark);
  color: var(--white);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}

.phase::before {
  counter-increment: phase;
  content: counter(phase);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #1A1000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.phase::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.phase:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.phase h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.phase p  { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; margin-bottom: 0; }

/* ===================================================
   VISUAL BAND (Full-bleed quote/highlight section)
   =================================================== */
.visual-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.visual-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gentleZoom 14s ease-in-out infinite alternate;
}

.visual-band-content {
  max-width: 740px;
  padding: 80px 0;
}

.visual-band h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
}

.visual-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

/* ===================================================
   CONTACT LAYOUT (Partner Page)
   =================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-line {
  display: block;
  margin-top: 8px;
  color: var(--leaf);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color var(--t-fast) var(--ease-out);
}

.contact-line:hover {
  color: var(--forest);
}

/* ===================================================
   FORM (Partner Page)
   =================================================== */
.form-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--forest-dark);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  color: var(--ink);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(42, 106, 80, 0.12);
  outline: none;
  background: var(--white);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===================================================
   GALLERY (Gallery Page)
   =================================================== */
.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  grid-column: span 6;
  position: relative;
  min-height: 320px;
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--forest-dark);
  color: var(--white);
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-item.small {
  grid-column: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 72px 22px 22px;
  text-align: left;
  background: linear-gradient(0deg, rgba(6, 31, 24, 0.92), transparent);
  transform: translateY(8px);
  opacity: 0.88;
  transition: opacity var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.gallery-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  margin-top: 4px;
}

.gallery-item.is-hidden {
  display: none;
}

/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 20, 16, 0.90);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  width: min(1000px, 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #0a1612;
}

.lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  color: var(--forest-dark);
}

.lightbox-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--forest-dark);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--t-fast) var(--ease-out);
}

.lightbox-close:hover {
  background: var(--cream);
}

/* ===================================================
   PHOTO RIBBON (Homepage scroller)
   =================================================== */
.photo-ribbon {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: var(--forest-dark);
  color: var(--white);
}

.ribbon-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 36px 0;
  animation: ribbonMove 44s linear infinite;
}

.ribbon-track:hover {
  animation-play-state: paused;
}

.ribbon-track img {
  width: 440px;
  height: 290px;
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  transition: transform var(--t-base) var(--ease-out);
}

.ribbon-label {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: min(var(--max), calc(100% - var(--container-px) * 2));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  background: rgba(6, 31, 24, 0.78);
  backdrop-filter: blur(16px);
}

.ribbon-label strong {
  flex: 1;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.ribbon-label a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease-out);
}

.ribbon-label a:hover {
  color: var(--white);
}

/* ===================================================
   REVEAL ANIMATION
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for sibling reveals */
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #050F0C;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(130px, 0.55fr));
  gap: 32px;
  padding: 64px 0 40px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.93rem;
  line-height: 1.7;
}

.footer-col h2 {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color var(--t-fast) var(--ease-out);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ===================================================
   ANIMATIONS (Keyframes)
   =================================================== */
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.60); }
  70%  { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

@keyframes routeFlow {
  from { background-position: 200% 0; }
  to   { background-position: 0 0; }
}

@keyframes gentleZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@keyframes ribbonMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   RESPONSIVE — TABLET (≤980px)
   =================================================== */
@media (max-width: 980px) {
  .nav-shell { min-height: 72px; }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    background: rgba(8, 28, 20, 0.97);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    padding: 14px 12px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hero-copy {
    padding: 88px 0 220px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
  }

  .hero-metrics,
  .section-heading,
  .split,
  .split.reverse,
  .impact-row,
  .leader-panel,
  .program-card,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .values-grid,
  .beneficiary-strip,
  .phase-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-card img {
    height: 260px;
  }

  .gallery-item,
  .gallery-item.small {
    grid-column: span 6;
  }

  .hero-live {
    min-height: auto;
  }

  .hero-content-grid,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .pathway-grid::before {
    left: 44px;
    right: auto;
    top: 10%;
    bottom: 10%;
    width: 1.5px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--gold), var(--leaf-light), transparent);
  }

  .mission-board {
    max-width: 580px;
    margin-bottom: 180px;
  }

  .split-media img {
    height: 380px;
  }

  .cta-band {
    padding: 44px 40px;
  }

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

/* ===================================================
   RESPONSIVE — MOBILE (≤680px)
   =================================================== */
@media (max-width: 680px) {
  .nav-shell,
  .container,
  .hero-content,
  .page-hero-content,
  .visual-band-content,
  .hero-metrics {
    width: calc(100% - 40px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-live {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(6, 31, 24, 0.90) 0%, rgba(6, 31, 24, 0.42) 55%, rgba(6, 31, 24, 0.08) 100%),
      linear-gradient(90deg, rgba(6, 31, 24, 0.24), transparent);
  }

  .hero-slides {
    height: 70vh;
    min-height: 540px;
  }

  .hero-content-grid {
    display: block;
    padding-top: 0;
  }

  .hero-copy {
    max-width: 100%;
    padding: 52vh 0 44px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
    line-height: 1.06;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-text-link,
  .mission-board {
    display: none;
  }

  .hero-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 12px;
    transform: none;
    background: var(--forest-dark);
    gap: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-metrics::-webkit-scrollbar { display: none; }

  .metric-tile {
    flex: 0 0 80%;
    min-height: auto;
    padding: 18px;
    border: 0;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: none;
    scroll-snap-align: start;
  }

  .metric-tile strong {
    font-size: 1.6rem;
  }

  .hero-arrows {
    bottom: 18px;
    width: calc(100% - 40px);
    transform: translateX(-50%);
  }

  .hero-arrows button {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .page-hero {
    min-height: 380px;
  }

  .page-hero-content {
    padding: 72px 0 56px;
  }

  .section { padding: 64px 0; }

  .section-heading h2,
  .split-copy h2,
  .cta-band h2,
  .visual-band h2 {
    font-size: 1.9rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .grid-2,
  .grid-3,
  .values-grid,
  .beneficiary-strip,
  .phase-map,
  .trust-grid,
  .credential-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 32px 28px;
  }

  .program-card-body {
    padding: 24px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.small,
  .gallery-item.tall {
    grid-column: auto;
    min-height: 300px;
  }

  .ribbon-track img {
    width: 300px;
    height: 210px;
  }

  .ribbon-label {
    width: calc(100% - 40px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .pathway-grid::before {
    display: none;
  }
}

/* ===================================================
   PREFERS-REDUCED-MOTION
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
