/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #faf8f5;
  color: #1a1a1a;
  overflow-x: hidden;
}
em { font-family: 'Cormorant Garamond', serif; font-style: italic; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }
a { cursor: pointer; text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

/* ─── CSS VARIABLES ─── */
:root {
  --saffron: #e8642a;
  --saffron-light: #f9a96a;
  --teal: #1d7a6c;
  --teal-light: #e6f3f1;
  --cream: #faf8f5;
  --charcoal: #1a1a1a;
  --muted: #6b6860;
  --white: #ffffff;
  --gold: #c9973b;
  --nav-h: 72px;
}

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

/* ─── PAGE SYSTEM ─── */
.page { display: none; animation: fadeIn 0.5s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700;
  color: #fff;
}
.logo-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; line-height: 1; color: var(--charcoal); }
.logo-sub { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--saffron); background: rgba(232,100,42,0.07); }
.donate-btn {
  padding: 0.6rem 1.4rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--saffron), #d04a10);
  color: #fff; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(232,100,42,0.35);
}
.donate-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,100,42,0.4); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--charcoal); }

/* ─── HERO SLIDER ─── */
.hero {
  position: relative; height: 100vh; overflow: hidden;
  margin-top: var(--nav-h);
}
.slides-wrapper { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); width: 300%; }
.slide { position: relative; width: calc(100% / 3); height: 100%; overflow: hidden; flex-shrink: 0; }
.slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 8s ease; }
.slide.active-slide .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.2) 100%);
}
.slide-content {
  position: absolute; z-index: 2;
  bottom: 15%; left: 8%; max-width: 580px;
  animation: slideUp 1s ease both;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.slide-tag {
  display: inline-block; padding: 0.3rem 1rem; margin-bottom: 1.2rem;
  background: rgba(232,100,42,0.9); color: #fff;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  border-radius: 50px;
}
.slide-content h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); color: #fff; line-height: 1.1; margin-bottom: 1.2rem; }
.slide-content h1 em { color: var(--saffron-light); }
.slide-content p { font-size: 1.05rem; color: rgba(255,255,255,0.82); margin-bottom: 2rem; line-height: 1.7; max-width: 460px; }
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.slider-controls {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 1rem;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 1.1rem; cursor: pointer;
  backdrop-filter: blur(6px); transition: all 0.3s;
}
.slider-btn:hover { background: var(--saffron); border-color: var(--saffron); }
.slider-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
}
.dot.active { background: var(--saffron); width: 24px; border-radius: 4px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block; padding: 0.8rem 2rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--saffron), #d04a10);
  color: #fff; font-size: 0.9rem; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 6px 20px rgba(232,100,42,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,100,42,0.45); }
.btn-ghost {
  display: inline-block; padding: 0.8rem 2rem; border-radius: 50px;
  background: transparent; color: #fff; font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.6); cursor: pointer; transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-ghost-dark {
  display: inline-block; padding: 0.8rem 2rem; border-radius: 50px;
  background: transparent; color: var(--saffron); font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid var(--saffron); cursor: pointer; transition: all 0.3s;
}
.btn-ghost-dark:hover { background: rgba(232,100,42,0.08); }
.section-label {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 0.75rem;
}

/* ─── IMPACT SECTION ─── */
.impact {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d1b00 100%);
  padding: 3.5rem 2rem;
}
.impact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.impact-card {}
.impact-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--saffron-light); }
.impact-num::after { content: '+'; font-size: 2rem; }
.impact-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; letter-spacing: 0.05em; }

/* ─── MISSION STRIP ─── */
.mission-strip { padding: 6rem 2rem; background: var(--cream); }
.ms-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ms-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); margin-bottom: 1.2rem; }
.ms-text p { color: var(--muted); line-height: 1.8; font-size: 1rem; margin-bottom: 2rem; }
.ms-image { position: relative; }
.ms-image img { border-radius: 12px; height: 420px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.ms-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(232,100,42,0.4);
}

/* ─── PROGRAMS PREVIEW ─── */
.programs-preview { padding: 6rem 2rem; background: #fff; }
.programs-preview h2, .about-story h2, .values-section h2, .team-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); margin-bottom: 3rem;
}
.prog-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.prog-card {
  border-radius: 16px; overflow: hidden; background: var(--cream);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07); transition: all 0.35s;
  position: relative;
}
.prog-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.prog-card img { height: 220px; transition: transform 0.5s; }
.prog-card:hover img { transform: scale(1.05); }
.prog-icon {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.prog-body { padding: 1.5rem; }
.prog-body h3 { font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--charcoal); }
.prog-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.read-more { color: var(--saffron); font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: gap 0.2s; }
.read-more:hover { letter-spacing: 0.03em; }
.prog-card.featured { border: 2px solid var(--saffron); }
.prog-card.featured .prog-body h3 { color: var(--saffron); }

/* ─── TESTIMONIALS ─── */
.testimonial-section { padding: 6rem 2rem; background: linear-gradient(135deg, #fff8f4, var(--cream)); }
.testimonial-section h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); margin-bottom: 3rem; }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testi-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-left: 4px solid var(--saffron); transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card > p { font-size: 0.97rem; line-height: 1.8; color: var(--charcoal); font-style: italic; margin-bottom: 1.5rem; }
.testi-card > p::before { content: '\201C'; font-size: 3rem; color: var(--saffron-light); font-family: serif; line-height: 0; vertical-align: -0.6rem; margin-right: 0.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.875rem; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--charcoal); }
.testi-author span { font-size: 0.78rem; color: var(--muted); }

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative; height: 50vh; min-height: 320px;
  display: flex; align-items: flex-end;
  margin-top: var(--nav-h); overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
}
.page-hero-content { position: relative; z-index: 1; padding: 3rem 4rem; }
.page-hero-content h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; }
.page-hero-content h1 em { color: var(--saffron-light); }

/* ─── ABOUT ─── */
.about-story { padding: 6rem 2rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.2rem; color: var(--charcoal); }
.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 1.2rem; }
.about-img-main { border-radius: 12px; height: 380px; box-shadow: 0 16px 50px rgba(0,0,0,0.15); }
.about-img-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
.astat { text-align: center; padding: 1rem; background: var(--cream); border-radius: 10px; }
.astat span { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--saffron); font-weight: 700; }
.astat p { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }

.values-section { padding: 5rem 2rem; background: linear-gradient(135deg, var(--teal), #155c50); }
.values-section h2, .values-section .section-label { color: #fff; }
.values-section .section-label { opacity: 0.7; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.value-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; }
.value-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.val-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

.team-section { padding: 6rem 2rem; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.team-card { background: var(--cream); border-radius: 16px; overflow: hidden; text-align: center; transition: transform 0.3s; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.team-card:hover { transform: translateY(-6px); }
.team-card img { height: 260px; object-position: top; }
.team-card h3 { font-size: 1.3rem; color: var(--charcoal); margin: 1.2rem 1rem 0.25rem; }
.team-card span { display: block; font-size: 0.8rem; color: var(--saffron); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0 1rem; }
.team-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; padding: 0.75rem 1.2rem 1.5rem; }

/* ─── PROGRAMS PAGE ─── */
.prog-section { padding: 6rem 2rem; }
.prog-section-alt { background: linear-gradient(135deg, #f0f9f7, var(--cream)); }
.prog-detail-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.prog-detail-grid.reverse { direction: rtl; }
.prog-detail-grid.reverse > * { direction: ltr; }
.prog-detail-img { position: relative; border-radius: 16px; overflow: hidden; }
.prog-detail-img img { height: 480px; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.prog-overlay-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; backdrop-filter: blur(8px);
}
.women-badge { background: rgba(232,100,42,0.9); color: #fff; }
.medical-badge { background: rgba(29,122,108,0.9); color: #fff; }
.digital-badge { background: rgba(26,26,26,0.85); color: #fff; }
.prog-detail-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); margin-bottom: 1.2rem; }
.prog-detail-text p { color: var(--muted); line-height: 1.85; margin-bottom: 1.5rem; }
.prog-list { list-style: none; margin-bottom: 2rem; }
.prog-list li { padding: 0.5rem 0; color: var(--charcoal); font-size: 0.93rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.prog-stat-row { display: flex; gap: 2rem; }
.ps span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--saffron); font-weight: 700; }
.ps p { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.cta-band { padding: 5rem 2rem; background: linear-gradient(135deg, var(--charcoal), #2d1b00); text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 0.75rem; }
.cta-band h2 em { color: var(--saffron-light); }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1.5rem; justify-content: center; }

/* ─── GALLERY ─── */
.gallery-section { padding: 5rem 2rem; }
.gallery-section h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--charcoal); margin-bottom: 2rem; }
.gallery-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.4rem; border-radius: 50px; border: 1.5px solid rgba(0,0,0,0.12);
  background: transparent; font-size: 0.875rem; font-weight: 500; cursor: pointer;
  transition: all 0.25s; color: var(--muted);
}
.filter-btn.active, .filter-btn:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gal-item {
  position: relative; border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: all 0.3s;
}
.gal-item.large { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: #fff; padding: 1rem 1.2rem; font-size: 0.875rem; font-weight: 600; }
.gal-item.hidden { display: none; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; flex-direction: column;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 8px; object-fit: contain; }
#lbCaption { color: rgba(255,255,255,0.7); margin-top: 1rem; font-size: 0.95rem; }
.lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer;
  z-index: 10;
}

/* ─── CONTACT ─── */
.contact-section { padding: 6rem 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--charcoal); margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.3rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.social-links { display: flex; gap: 0.75rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--charcoal);
  transition: all 0.3s;
}
.social-btn:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

.contact-form-wrap {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.12);
}
.form-tabs { display: flex; border-bottom: 1px solid rgba(0,0,0,0.08); }
.form-tab {
  flex: 1; padding: 1.1rem; background: none; border: none; cursor: pointer;
  font-size: 0.875rem; font-weight: 600; color: var(--muted); transition: all 0.25s;
  border-bottom: 2px solid transparent;
}
.form-tab.active { color: var(--saffron); border-bottom-color: var(--saffron); }
.tab-form { display: none; padding: 2rem; }
.tab-form.active { display: block; }
.tab-form h3 { font-size: 1.5rem; color: var(--charcoal); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-input {
  width: 100%; padding: 0.85rem 1rem; border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.1); background: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--charcoal);
  transition: border-color 0.25s; outline: none;
}
.form-input:focus { border-color: var(--saffron); background: #fff; }
.full-width { width: 100%; justify-content: center; border-radius: 10px; }
.donate-amounts { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; margin-bottom: 1.2rem; }
.amt-btn {
  padding: 0.65rem; border-radius: 8px; border: 1.5px solid rgba(0,0,0,0.12);
  background: transparent; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s; color: var(--charcoal);
}
.amt-btn.active, .amt-btn:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.tax-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 0.75rem; }
.success-msg { display: none; padding: 3rem 2rem; text-align: center; }
.success-msg.show { display: block; }
.success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #0f5c51);
  color: #fff; font-size: 2rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-msg h3 { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 0.75rem; }
.success-msg p { color: var(--muted); line-height: 1.7; }

.map-section { height: 300px; }
.map-placeholder { position: relative; width: 100%; height: 100%; background: #d4e9e6; overflow: hidden; }
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center;
}
.map-pin-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--saffron); margin: 0 auto 0.5rem;
  box-shadow: 0 0 0 8px rgba(232,100,42,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 8px rgba(232,100,42,0.25); } 50% { box-shadow: 0 0 0 16px rgba(232,100,42,0.1); } }
.map-pin-label {
  background: #fff; padding: 0.5rem 1rem; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600; color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  white-space: nowrap;
}

/* ─── FOOTER ─── */
footer {
  background: #111; padding: 4rem 2rem 0;
  color: rgba(255,255,255,0.65);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; margin-bottom: 1.2rem; }
.footer-links a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--saffron-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .impact-inner { grid-template-columns: repeat(2,1fr); }
  .ms-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid, .testimonials { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .prog-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .prog-detail-grid.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; padding: 1rem 2rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .donate-btn { display: none; }
  .prog-cards, .testimonials, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gal-item.large { grid-column: span 1; }
  .prog-stat-row { flex-wrap: wrap; }
  .donate-amounts { grid-template-columns: repeat(2,1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .page-hero-content { padding: 2rem; }
  .slide-content { bottom: 10%; left: 5%; right: 5%; }
}
