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

:root {
  --navy:    #1C3557;
  --blue:    #2D6A9F;
  --sky:     #E8F4FD;
  --gold:    #C8873A;
  --gold-lt: #FDF3E7;
  --green:   #2D6E4E;
  --cream:   #FDFAF5;
  --warm:    #F7F2EA;
  --text:    #1A1A2E;
  --muted:   #6B7280;
  --white:   #FFFFFF;
  --shadow:  0 4px 32px rgba(28,53,87,0.10);
  --shadow-lg: 0 12px 48px rgba(28,53,87,0.15);
  --radius:  16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
em { font-style: italic; color: var(--gold); }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-lt);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-label.light {
  color: var(--gold);
  background: rgba(200,135,58,0.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 3rem;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-text {
  background: none;
  color: var(--navy);
  padding: 0;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-text:hover { color: var(--gold); }
.btn-donate {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  font-size: 1rem;
  justify-content: center;
  padding: 1rem;
}
.btn-donate:hover { background: #b5752d; transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(28,53,87,0.08);
  padding: 0.85rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}
.nav.scrolled .nav-logo { color: var(--navy); }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.footer .logo-mark { width: 32px; height: 32px; font-size: 1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.nav.scrolled .nav-link { color: var(--text); }
.nav-link:hover { background: rgba(255,255,255,0.1); color: white; }
.nav.scrolled .nav-link:hover { background: var(--sky); color: var(--navy); }
.nav-cta {
  text-decoration: none;
  padding: 0.55rem 1.35rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--gold);
  color: white;
  transition: var(--transition);
  margin-left: 0.5rem;
}
.nav-cta:hover { background: #b5752d; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 50%, #2D6A9F 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: #5AA8D8; bottom: -100px; left: -100px; animation-delay: -3s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--green); top: 50%; left: 40%; animation-delay: -6s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: white;
  animation: slide 2s ease infinite;
}
@keyframes slide { to { left: 100%; } }

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

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.about-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.about-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.about-card-main { border-color: var(--navy); }
.about-card-alt { border-color: var(--gold); margin-left: 2rem; }
.about-card-accent { border-color: var(--green); }
.card-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.about-card p { font-size: 0.9rem; color: var(--muted); }
.about-text { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }

/* ── MISSION ── */
.mission {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
  position: relative;
  overflow: hidden;
}
.mission-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.9);
  font-style: italic;
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0 4rem;
  max-width: 860px;
  line-height: 1.6;
  background: rgba(255,255,255,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.pillar {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.pillar:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pillar h3 { color: white; font-size: 1.05rem; margin-bottom: 0.75rem; }
.pillar p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.mission-need {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 3rem;
}
.need-stat { text-align: center; }
.need-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.need-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── PROGRAMS ── */
.programs { background: var(--warm); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(28,53,87,0.06);
  transition: var(--transition);
  border: 1px solid rgba(28,53,87,0.06);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-featured {
  grid-column: span 2;
  background: var(--navy);
  color: white;
}
.program-featured h3 { color: white; }
.program-featured p { color: rgba(255,255,255,0.75); }
.program-icon { font-size: 2rem; margin-bottom: 1rem; }
.program-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.program-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.program-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.program-list li {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  padding-left: 1.25rem;
  position: relative;
}
.program-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.programs-partners {
  margin-top: 3rem;
  text-align: center;
}
.partners-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.partners-list span {
  background: white;
  border: 1px solid rgba(28,53,87,0.1);
  color: var(--navy);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── BOARD ── */
.board { background: var(--white); }
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.board-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(28,53,87,0.07);
  transition: var(--transition);
}
.board-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.board-card-ed {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
}
.board-card-ed h3 { color: white; }
.board-card-ed p { color: rgba(255,255,255,0.75); }
.board-card-ed .board-role { background: rgba(255,255,255,0.15); color: white; }
.board-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.board-card-ed .board-avatar { background: rgba(255,255,255,0.2); }
.board-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.board-role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-lt);
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.board-info p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── DONATE ── */
.donate { background: var(--warm); }
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.donate-text { color: var(--muted); margin-bottom: 1rem; }
.donate-ways { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.donate-way {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.way-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.donate-way h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.donate-way p { font-size: 0.88rem; color: var(--muted); }
.donate-form-wrap { position: sticky; top: 6rem; }
.donate-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(28,53,87,0.06);
}
.donate-form h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.amount-btn {
  padding: 0.65rem;
  border: 2px solid rgba(28,53,87,0.12);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--gold);
  background: var(--gold-lt);
  color: var(--gold);
}
.custom-amount-wrap { margin-bottom: 1rem; }
.hidden { display: none; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(28,53,87,0.1);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,106,159,0.1); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-text { color: var(--muted); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact-item span { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.contact-form-wrap { }
.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(28,53,87,0.07);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer-ein { font-size: 0.78rem; opacity: 0.5; }
.footer-links h4 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-mission h4 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.crisis-box {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.crisis-box p { font-size: 0.83rem; line-height: 1.5; }
.crisis-box strong { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-disclaimer { font-size: 0.75rem !important; }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mission-pillars { grid-template-columns: repeat(2,1fr); }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .program-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy); z-index: 99;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 0.75rem 1rem; color: white !important; }
  .nav-cta { font-size: 1.1rem; margin-left: 0; margin-top: 1rem; text-align: center; }
  .nav-toggle { display: flex; z-index: 100; }
  .about-grid, .donate-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card-alt { margin-left: 0; }
  .board-grid { grid-template-columns: 1fr; }
  .board-card-ed { grid-column: span 1; }
  .mission-pillars, .mission-need { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-featured { grid-column: span 1; }
  .hero-stats { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .donate-form-wrap { position: static; }
  .section { padding: 4rem 0; }
}
