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

:root {
  --purple: #2D1B5E;
  --purple-mid: #4B2E83;
  --purple-light: #7C5CBF;
  --gold: #C9973A;
  --gold-light: #E8C06A;
  --cream: #FAF6EF;
  --off-white: #F2EDE4;
  --text-dark: #1A1025;
  --text-mid: #4A3F5C;
  --text-light: #8B7FA0;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(45, 27, 94, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 151, 58, 0.2);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--white);
  font-weight: 400;
  font-size: 0.75rem;
  display: block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--purple);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--purple);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--purple);
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124, 92, 191, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 151, 58, 0.15) 0%, transparent 60%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--purple);
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-quote-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 151, 58, 0.3);
  border-radius: 4px;
  padding: 2.5rem;
  max-width: 400px;
  position: relative;
}

.hero-quote-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}

.hero-quote-card p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-quote-card .pillars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.pillar-chip::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* ── SECTIONS ── */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── MISSION BAND ── */
.mission-band {
  background: var(--purple);
  padding: 5rem 3rem;
  text-align: center;
}

.mission-band-inner {
  max-width: 820px;
  margin: 0 auto;
}

.mission-band p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.mission-band .tagline {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── THREE PILLARS PREVIEW ── */
.pillars-preview {
  background: var(--off-white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(45, 27, 94, 0.12);
  z-index: 2;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}

.pillar-card:hover::before { transform: scaleY(1); }

.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.pillar-card:hover .pillar-number { color: rgba(201, 151, 58, 0.15); }

.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── ABOUT PREVIEW ── */
.about-preview {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-text .pull-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--purple);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

.about-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-block {
  background: var(--purple);
  padding: 2rem 2.5rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px;
  height: 60px;
  background: rgba(201, 151, 58, 0.1);
  border-radius: 50% 0 0 0;
}

.stat-block .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-block .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  line-height: 1.5;
}

/* ── CALLOUT BAND ── */
.callout-band {
  background: var(--gold);
  padding: 4rem 3rem;
  text-align: center;
}

.callout-band p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--purple);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
}

.callout-band .btn-dark {
  background: var(--purple);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.2s;
}

.callout-band .btn-dark:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
}

/* ── FOUNDER SECTION ── */
.founder-section {
  background: var(--purple);
  overflow: hidden;
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.founder-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.founder-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.founder-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.founder-inner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.founder-inner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.founder-inner .founder-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
  font-style: italic;
}

.founder-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3rem;
}

.founder-aside-card {
  border: 1px solid rgba(201, 151, 58, 0.25);
  padding: 1.75rem;
  border-radius: 2px;
}

.founder-aside-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.founder-aside-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── PROGRAM PAGE ── */
.program-hero {
  background: var(--purple);
  padding: 10rem 3rem 6rem;
  position: relative;
  overflow: hidden;
}

.program-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.program-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.program-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.program-hero h1 em { color: var(--gold-light); font-style: italic; }

.program-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.pillars-full {
  background: var(--cream);
}

.pillars-full-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.pillar-full-card {
  background: var(--white);
  padding: 2.5rem 1.75rem;
  text-align: center;
  border-top: 3px solid transparent;
  transition: all 0.3s;
}

.pillar-full-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(45,27,94,0.1);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold-light);
}

.pillar-full-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.pillar-full-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.program-details {
  background: var(--off-white);
}

.program-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--purple);
  margin-bottom: 1rem;
}

.detail-block p, .detail-block li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.detail-block ul {
  list-style: none;
  padding: 0;
}

.detail-block ul li {
  padding-left: 1.25rem;
  position: relative;
}

.detail-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── DONATE ── */
.donate-hero {
  background: var(--purple);
  padding: 10rem 3rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.donate-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.donate-hero h1 em { color: var(--gold-light); font-style: italic; }

.donate-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.donate-options {
  background: var(--cream);
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.donate-card {
  background: var(--white);
  border: 1px solid rgba(45,27,94,0.1);
  padding: 2.5rem;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s;
}

.donate-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(45,27,94,0.1);
}

.donate-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.donate-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.donate-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── GET INVOLVED ── */
.involve-hero {
  background: var(--purple);
  padding: 10rem 3rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.involve-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.involve-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.involve-hero h1 em { color: var(--gold-light); font-style: italic; }

.involve-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.involve-ways {
  background: var(--cream);
}

.involve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.involve-card {
  background: var(--white);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
  transition: all 0.3s;
}

.involve-card:hover {
  box-shadow: 0 12px 40px rgba(45,27,94,0.1);
  transform: translateY(-2px);
}

.involve-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.involve-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ── CONTACT BAND ── */
.contact-band {
  background: var(--off-white);
  border-top: 1px solid rgba(45,27,94,0.1);
}

.contact-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-info a {
  color: var(--purple-mid);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold-light);
}

.footer-logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

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

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--purple);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-mobile-toggle { display: flex; z-index: 101; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .hero-visual { display: none; }
  .section-inner { padding: 4rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-full-grid { grid-template-columns: 1fr 1fr; }
  .program-details-grid { grid-template-columns: 1fr; gap: 2rem; }
  .donate-grid { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .contact-band-inner { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .mission-band, .callout-band { padding: 3rem 1.5rem; }
  .program-hero, .donate-hero, .involve-hero { padding: 8rem 1.5rem 5rem; }
}

@media (max-width: 560px) {
  .pillars-full-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
