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

:root {
  --navy:        #3D5A7A;
  --navy-dark:   #1C2B3A;
  --amber:       #C97000;
  --amber-light: #E08800;
  --cream:       #F5F0E5;
  --teal:        #1A9DA5;
  --teal-dark:   #157E85;
  --white:       #FFFFFF;
  --text:        #2D3748;
  --text-light:  #64748B;
  --section-pad: 100px;
}

/* ============================================================
   COLOR VIBRATION
   ============================================================ */
@keyframes color-vibrate {
  0%   { filter: hue-rotate(0deg)   saturate(1);   }
  15%  { filter: hue-rotate(18deg)  saturate(1.15); }
  30%  { filter: hue-rotate(-12deg) saturate(1.2);  }
  50%  { filter: hue-rotate(25deg)  saturate(1.1);  }
  65%  { filter: hue-rotate(-8deg)  saturate(1.25); }
  80%  { filter: hue-rotate(15deg)  saturate(1.15); }
  100% { filter: hue-rotate(0deg)   saturate(1);    }
}

@keyframes stat-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25); }
  70%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  animation: color-vibrate 7s ease-in-out infinite;
}

.stat-num--done {
  display: inline-block;
  animation: stat-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(42px, 6vw, 82px); font-weight: 900; }
h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }

p { font-size: 17px; line-height: 1.75; color: var(--text-light); }
p.light { color: rgba(255,255,255,0.82); }
h2.light, h3.light { color: var(--white); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.section-label.light { color: rgba(255,255,255,0.6); }

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  background: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-teal  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

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

.btn-white { background: var(--white); color: var(--navy-dark); border-color: var(--white); }
.btn-white:hover { background: rgba(255,255,255,0.9); }

.btn-lg   { font-size: 16px; padding: 18px 36px; }
.btn-full { width: 100%; text-align: center; font-size: 16px; padding: 18px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

/* Hero entrance */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.75s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Section fade-up on scroll */
.section-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-fade.visible { opacity: 1; transform: translateY(0); }

/* Slide-in for split images */
.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.section-fade.visible .slide-in-right,
.section-fade.visible .slide-in-left { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger-child {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-fade.visible .stagger-child:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.section-fade.visible .stagger-child:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.22s; }
.section-fade.visible .stagger-child:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.34s; }
.section-fade.visible .stagger-child:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.46s; }
.section-fade.visible .stagger-child:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.58s; }
.section-fade.visible .stagger-child:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.7s; }

/* Stat bar fill animation */
.stat-bar-fill { width: 0 !important; transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1); }
.stats-animated .stat-bar-fill { width: var(--pct) !important; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.site-nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  padding: 14px 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.logo-dot {
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a, .nav-links button {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover, .nav-links button:hover { color: var(--white); }
.nav-links .btn { padding: 10px 22px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link--teal { color: var(--teal); font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 110%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.75);
  transform: translateY(0);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(28,43,58,0.93) 0%,
    rgba(61,90,122,0.78) 55%,
    rgba(28,43,58,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-top: 100px;
}
.hero-inner h1 { color: var(--white); margin-bottom: 28px; }
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 580px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  background: var(--cream);
  padding: var(--section-pad) 0;
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text h2 { margin-bottom: 24px; color: var(--navy-dark); }
.mission-text p  { margin-bottom: 20px; }
.mission-text .btn { margin-top: 12px; }
.mission-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.mission-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 28px 72px rgba(0,0,0,0.2);
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
  background: var(--navy-dark);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.programs::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,157,165,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.programs::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,112,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.programs h2 { color: var(--white); margin-bottom: 60px; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.program-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  cursor: default;
}
.program-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.program-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.program-card h3 { color: var(--white); margin-bottom: 12px; }
.program-card p  { color: rgba(255,255,255,0.72); font-size: 15px; }

/* ============================================================
   PROGRAM DETAILS
   ============================================================ */
.program-detail { background: var(--cream); padding: var(--section-pad) 0; }
.program-detail--dark { background: var(--navy); }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout--reverse { direction: rtl; }
.split-layout--reverse > * { direction: ltr; }

.split-text h2 { color: var(--navy-dark); margin-bottom: 16px; }
.split-text .subhead {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.program-detail--dark .split-text h2 { color: var(--white); }
.split-text p { margin-bottom: 16px; }

.split-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-image img:hover { transform: scale(1.02); }

/* ============================================================
   HEALTH
   ============================================================ */
.health-section { background: var(--cream); padding: var(--section-pad) 0; }
.health-section h2 { color: var(--navy-dark); margin-bottom: 48px; }

.health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.health-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 28px;
  border-top: 4px solid var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.health-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,157,165,0.04) 0%, transparent 60%);
}
.health-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.health-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(26,157,165,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.health-card h3 { color: var(--navy-dark); margin-bottom: 12px; }
.health-image img {
  border-radius: 12px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}
.health-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.health-photos img {
  border-radius: 12px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  transition: transform 0.5s ease;
}
.health-photos img:hover { transform: scale(1.03) translateY(-4px); }

/* ============================================================
   ENTREPRENEURSHIP
   ============================================================ */
.entrepreneurship {
  background: var(--navy-dark);
  padding: var(--section-pad) 0 0;
  overflow: hidden;
}
.entre-text {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.entre-text h2 { color: var(--white); margin-bottom: 20px; }
.entre-text p  { font-size: 18px; }
.entre-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--navy-dark);
}
.entre-mosaic img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.92);
}
.entre-mosaic img:hover {
  transform: scale(1.02);
  filter: saturate(1.1);
}

/* ============================================================
   IMPACT STATS
   ============================================================ */
.impact {
  background: var(--navy);
  padding: var(--section-pad) 0;
  text-align: center;
}
.impact .section-label { color: rgba(255,255,255,0.55); }
.impact h2 { color: var(--white); margin-bottom: 64px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.stat-card {
  background: var(--navy);
  padding: 52px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s;
}
.stat-card:hover { background: var(--navy-dark); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber-light);
  align-self: flex-start;
  margin-top: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.5px;
}
.stat-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber-light));
  border-radius: 2px;
  width: 0;
}

/* ============================================================
   STORIES
   ============================================================ */
.stories { background: var(--cream); padding: var(--section-pad) 0; }
.stories h2 { color: var(--navy-dark); margin-bottom: 16px; }
.stories > .container > p { margin-bottom: 48px; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.story-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,0,0,0.13); }

.story-img-wrap { height: 200px; overflow: hidden; }
.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.story-card:hover .story-img-wrap img { transform: scale(1.07); }

.story-body { padding: 24px 24px 28px; }
.story-body h3 { color: var(--navy-dark); margin-bottom: 10px; font-size: 18px; }
.story-body p  { font-size: 14px; line-height: 1.6; }

/* ============================================================
   SPLIT CTA (DONATE + VOLUNTEER)
   ============================================================ */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; }

.split-cta-half {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-cta-half::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.split-cta-half:hover::before { opacity: 1; }

.split-cta-half--navy { background: var(--navy-dark); }
.split-cta-half--amber { background: var(--amber); }

.split-cta-half h2 { color: var(--white); margin-bottom: 20px; }
.split-cta-half p  { margin-bottom: 36px; max-width: 360px; }
.split-cta-half .section-label { margin-bottom: 12px; }

/* ============================================================
   VOLUNTEER FORM
   ============================================================ */
.volunteer-section { background: var(--white); padding: var(--section-pad) 0; }

.volunteer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.volunteer-text h2 { color: var(--navy-dark); margin-bottom: 20px; }
.volunteer-text p  { margin-bottom: 28px; }

.volunteer-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.volunteer-perks li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.volunteer-form-wrap {
  background: var(--cream);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.volunteer-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,157,165,0.15);
}

.form-success { text-align: center; padding: 40px 20px; }
.success-icon {
  width: 56px; height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popIn 0.4s cubic-bezier(0.22,1,0.36,1);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.form-success h3 { color: var(--navy-dark); margin-bottom: 12px; }
.form-success p  { font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); padding: 80px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; max-width: 380px; }
.footer-partner { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-partner a { color: var(--teal); font-weight: 500; transition: color 0.2s; }
.footer-partner a:hover { color: var(--white); }

.footer-social-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.social-icons { display: flex; gap: 16px; }
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom { padding: 24px 40px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ============================================================
   DONATION MODAL
   ============================================================ */
.donate-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 18, 28, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.donate-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.donate-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px 44px 36px;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}
.donate-overlay.open .donate-modal {
  transform: translateY(0) scale(1);
}

.donate-close {
  position: absolute;
  top: 16px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.07);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.donate-close:hover { background: rgba(0,0,0,0.14); transform: rotate(90deg); }

.donate-modal-header { margin-bottom: 28px; }
.donate-modal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 14px;
  opacity: 0.65;
}
.donate-modal-header h2 {
  font-size: 28px;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.donate-modal-header p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Frequency tabs */
.freq-tabs {
  display: flex;
  gap: 0;
  background: #f1f3f5;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}
.freq-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.freq-tab.active {
  background: var(--white);
  color: var(--navy-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Amount grid */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.amount-btn {
  padding: 12px 8px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.amount-btn:hover { border-color: var(--teal); transform: translateY(-2px); }
.amount-btn.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

/* Custom amount */
.custom-amount-wrap { margin-bottom: 20px; }
.custom-amount-wrap label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  display: block;
  margin-bottom: 8px;
}
.custom-input-row {
  display: flex;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.custom-input-row:focus-within { border-color: var(--teal); }
.dollar-sign {
  padding: 14px 12px 14px 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  background: #f8f9fa;
  border-right: 2px solid #e2e8f0;
}
.custom-input-row input {
  border: none;
  outline: none;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  width: 100%;
  background: var(--white);
}

/* Donate fields */
.donate-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.optional { font-weight: 400; color: var(--text-light); font-size: 12px; }

/* Stripe placeholder */
.stripe-placeholder { margin-bottom: 20px; }
.stripe-card-mock {
  border: 2px dashed #e2e8f0;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 14px;
}
.stripe-icon { font-size: 20px; }

/* Submit button */
.donate-submit { margin-bottom: 16px; font-size: 17px; }

/* Fine print */
.donate-fine {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.donate-fine svg { flex-shrink: 0; opacity: 0.7; }

/* Success state */
.donate-success-inner {
  text-align: center;
  padding: 20px 0;
}
.donate-success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.22,1,0.36,1);
}
.donate-success-inner h2 { color: var(--navy-dark); margin-bottom: 12px; font-size: 32px; }
.donate-success-inner p  { margin-bottom: 32px; font-size: 16px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.about-section h2 { margin-bottom: 48px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.about-text p { margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--navy-dark); font-weight: 700; }

.about-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pillar-icon { font-size: 28px; flex-shrink: 0; }
.pillar-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.pillar-item p { font-size: 14px; margin: 0; line-height: 1.5; }

.about-reach {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--navy-dark);
  border-radius: 20px;
  padding: 40px 48px;
}
.reach-stat { text-align: center; }
.reach-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.reach-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

/* ============================================================
   PROGRAM LIST
   ============================================================ */
.program-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-list li {
  font-size: 15px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.program-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.program-list--light li { color: rgba(255,255,255,0.75); }
.program-list--light li::before { color: var(--teal); }

/* ============================================================
   FUNDING GOALS
   ============================================================ */
.funding-goal {
  margin-top: 32px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.funding-goal--light {
  background: rgba(255,255,255,0.12);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.2);
}
.funding-goal--centered { max-width: 680px; margin: 40px auto 0; }

.funding-goal-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.funding-goal-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
}
.funding-goal--light .funding-goal-label { color: rgba(255,255,255,0.7); }
.funding-goal-amounts {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}
.funding-goal--light .funding-goal-amounts { color: rgba(255,255,255,0.8); }
.funding-goal-amounts strong { color: var(--navy-dark); font-weight: 700; }
.funding-goal--light .funding-goal-amounts strong { color: var(--white); }
.raised-amt { color: var(--teal); font-weight: 700; }

.goal-bar {
  height: 10px;
  background: #e9ecef;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 14px;
}
.funding-goal--light .goal-bar { background: rgba(255,255,255,0.2); }
.goal-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.funding-goal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.goal-pct {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}
.funding-goal--light .goal-pct { color: rgba(255,255,255,0.7); }

/* ============================================================
   HEALTH EXTRAS
   ============================================================ */
.health-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
.health-stats-row {
  display: flex;
  gap: 32px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}
.health-stat {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy-dark);
}
.health-stat span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   ENTREPRENEURSHIP EXTRAS
   ============================================================ */
.entre-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin: 20px 0 28px;
}
.entre-impact-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.entre-impact-stat {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}
.entre-impact-stat span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ============================================================
   PROGRAM SELECTOR (MODAL)
   ============================================================ */
.program-selector { margin-bottom: 20px; }
.program-selector-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.program-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.program-tab {
  padding: 8px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 99px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.program-tab:hover { border-color: var(--teal); color: var(--teal); }
.program-tab.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split-cta-half { padding: 80px 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-reach { grid-template-columns: repeat(2, 1fr); padding: 32px; }
  .entre-list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav { padding: 16px 24px; }
  .site-nav.scrolled { padding: 12px 24px; }

  .hero-inner { padding-top: 80px; }

  .mission-inner,
  .split-layout,
  .volunteer-inner { grid-template-columns: 1fr; gap: 40px; }

  .split-layout--reverse { direction: ltr; }
  .split-layout--reverse .split-image { order: -1; }

  .programs-grid { grid-template-columns: 1fr 1fr; }
  .health-grid   { grid-template-columns: 1fr; }
  .health-photos { grid-template-columns: 1fr; }
  .entre-mosaic  { grid-template-columns: 1fr; }
  .entre-mosaic img { height: 280px; }
  .stories-grid  { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .split-cta     { grid-template-columns: 1fr; }
  .split-cta-half { padding: 64px 32px; }

  .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { padding: 24px; }

  .donate-modal  { padding: 32px 24px 28px; }
  .amount-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .programs-grid { grid-template-columns: 1fr; }
  .stories-grid  { grid-template-columns: 1fr; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .volunteer-form-wrap { padding: 32px 24px; }
  .amount-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-reach   { grid-template-columns: 1fr 1fr; padding: 24px; gap: 20px; }
  .funding-goal-header { flex-direction: column; align-items: flex-start; }
  .funding-goal-footer { flex-direction: column; align-items: flex-start; }
  .health-stats-row, .entre-impact-row { gap: 20px; }
}
