/* ── Design Tokens & Base Configuration ──────────────── */
:root {
  --green:       #16a34a;
  --blue:        #2563eb;
  --navy:        #0f172a;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --muted:       #475569;
  --border:      #e2e8f0;
  
  --font-body:   'Inter', sans-serif;
  --font-head:   'Playfair Display', serif;
  
  --radius-sm:     0.5rem;
  --radius-subtle: 16px;
  --radius-pill:   9999px;
  
  --shadow-subtle: 0 4px 18px rgba(0,0,0,.08);
  --shadow-hover:  0 12px 40px rgba(0,0,0,.12);
  --transition:    all .28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--navy);
  line-height: 1.65;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ── Typography & Tags ─────────────────────────────── */
.text-green { color: var(--green); }
.text-blue  { color: var(--blue); }

.section-label { 
  display: block; 
  font-size: .75rem; 
  font-weight: 700; 
  letter-spacing: .12em; 
  text-transform: uppercase; 
  margin-bottom: .75rem; 
}
.section-label--green { color: var(--green); }
.section-label--blue  { color: var(--blue); }

.tag { 
  display: inline-block; 
  font-family: var(--font-body); 
  font-size: .7rem; 
  font-weight: 700; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  background: var(--bg); 
  color: var(--muted); 
  padding: .3rem .8rem; 
  border-radius: var(--radius-pill); 
}
.tag--green { background: #dcfce7; color: #15803d; }
.tag--blue  { background: #eff6ff; color: var(--blue); }

/* ── Buttons ───────────────────────────────────────── */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: .5rem; 
  padding: .85rem 2rem; 
  border-radius: var(--radius-pill); 
  font-family: var(--font-body); 
  font-size: .9rem; 
  font-weight: 700; 
  cursor: pointer; 
  border: none; 
  transition: var(--transition); 
  text-align: center; 
  white-space: nowrap; 
}
.btn--blue  { background: var(--blue); color: var(--white); box-shadow: 0 4px 16px rgba(37,99,235,.35); }
.btn--blue:hover  { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.4); }
.btn--green { background: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(22,163,74,.35); }
.btn--green:hover { background: #15803d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.4); }
.btn--white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-subtle); }
.btn--white:hover { background: #f1f5f9; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ── Standard Section ──────────────────────────────── */
.section { padding: 88px 0; }
.section--white { background: var(--white); }
.section--bg { background: var(--bg); }

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  transition: box-shadow .3s ease;
}
.nav.nav--scrolled { box-shadow: var(--shadow-subtle); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 1rem;
}
.nav__logo { display: flex; flex-direction: column; gap: .05rem; }
.nav__logo-main { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; color: var(--navy); line-height: 1; }
.nav__logo-main span { color: var(--green); }
.nav__logo-sub { font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  font-size: .875rem; font-weight: 500; color: var(--muted);
  position: relative; padding: .25rem 0;
  transition: color .2s; white-space: nowrap;
}
.nav__link:hover, .nav__link--active { color: var(--navy); font-weight: 600; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--green);
  transition: width .25s ease;
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__cta { margin-left: .5rem; }
.nav__burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 19px; cursor: pointer; border: none; background: none; padding: 0; outline: none;
}
.nav__burger:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.nav__burger span { display: block; width: 100%; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.nav__burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.nav__mobile {
  display: none; position: absolute; top: 80px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem 20px; z-index: 99; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.nav__mobile.open { display: block; }
.nav__mobile .nav__link {
  display: flex; align-items: center;
  height: 48px; font-size: 1.05rem; 
  border-bottom: 1px solid var(--border); margin: 0; width: 100%; padding: 0;
}
.nav__mobile .nav__link::after { display: none; }
.nav__mobile a:last-of-type { border-bottom: none; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100vh - 80px); width: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  padding: 60px 0; 
  background: linear-gradient(rgba(10,20,40,.62), rgba(10,20,40,.62)),
              url('https://images.unsplash.com/photo-1631026141651-961c7a00bcf6?q=80&w=2400&auto=format&fit=crop') center/cover no-repeat;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(transparent, var(--bg)); pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 860px; padding: 0 40px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); border-radius: var(--radius-pill); padding: .4rem 1.1rem;
  margin-bottom: 2rem; color: rgba(255,255,255,.9);
}
.hero__eyebrow .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.hero__h1 { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.12; margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero__sub { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300; color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto 2.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); pointer-events: none;
}
.hero__scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:.4; transform: translateY(0); } 50%{ opacity:.9; transform: translateY(4px); } }

/* ── About Grid ────────────────────────────────────── */
.about__grid { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }
.about__body { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.75; }
.about__card {
  background: var(--bg); border-left: 4px solid var(--green);
  border-radius: var(--radius-subtle); padding: 1.75rem; margin-bottom: 2rem;
}
.about__card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .5rem; }
.about__card h3 .star { color: var(--green); }
.about__card ul { display: flex; flex-direction: column; gap: .85rem; }
.about__card li { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.about__card li strong { color: var(--navy); }
.about__creds { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.about__cred {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.1rem;
  box-shadow: var(--shadow-subtle); transition: var(--transition);
}
.about__cred:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.about__cred-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .3rem; }
.about__cred p { font-size: .85rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin: 0; }
.about__img-wrap { position: relative; }
.about__img { border-radius: var(--radius-subtle); box-shadow: var(--shadow-hover); width: 100%; object-fit: cover; }
.about__img-accent {
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dcfce7);
  bottom: -2.5rem; right: -2.5rem; z-index: -1; opacity: .6;
}

/* ── Hopscotch Banner ──────────────────────────────── */
.hopscotch { padding: 2.5rem 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hopscotch__inner {
  background: linear-gradient(135deg, #fef3c7, #fff7ed);
  border: 2px dashed #f59e0b; border-radius: var(--radius-subtle);
  padding: 2.5rem; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 2rem;
}
.hopscotch__text { flex: 1; min-width: 260px; }
.hopscotch__label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #d97706; margin-bottom: .6rem; }
.hopscotch__h2 { font-family: var(--font-head); font-size: 1.9rem; color: var(--navy); margin-bottom: .65rem; line-height: 1.25; }
.hopscotch__body { font-size: .95rem; color: var(--muted); line-height: 1.65; margin: 0; }
.hopscotch__quote {
  background: var(--white); border-radius: var(--radius-subtle); padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-subtle); border: 1px solid #fde68a; max-width: 340px; flex-shrink: 0;
}
.hopscotch__quote p { font-size: .9rem; font-style: italic; color: var(--muted); line-height: 1.6; margin: 0; }
.hopscotch__quote cite { display: block; margin-top: .75rem; font-size: .78rem; font-weight: 700; color: var(--navy); font-style: normal; }

/* ── Materials Grid ────────────────────────────────── */
.mat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.mat-card { position: relative; border-radius: var(--radius-subtle); overflow: hidden; box-shadow: var(--shadow-subtle); background: var(--white); cursor: default; }
.mat-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .4s ease; }
.mat-card:hover img { transform: scale(1.05); }
.mat-card__overlay {
  position: absolute; inset: 0;
  background: rgba(22,163,74,.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center; color: var(--white);
  opacity: 0; transition: opacity .3s ease;
}
.mat-card:hover .mat-card__overlay { opacity: 1; }
.mat-card__overlay h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: .6rem; }
.mat-card__overlay p { font-size: .85rem; line-height: 1.55; margin: 0; }

/* ── Programs Grid ─────────────────────────────────── */
.prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; align-items: stretch; }
.prog-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-subtle); padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1.25rem; height: 100%;
  box-shadow: var(--shadow-subtle); transition: var(--transition);
}
.prog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.prog-card--featured {
  background: var(--white); border-color: var(--green);
  box-shadow: 0 0 0 2px #dcfce7, var(--shadow-subtle);
  position: relative;
}
.prog-card--featured:hover { box-shadow: 0 0 0 2px var(--green), var(--shadow-hover); }
.prog-card__featured-label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.prog-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.prog-card__icon--blue { background: #eff6ff; color: var(--blue); }
.prog-card__h3 { font-size: 1.35rem; color: var(--navy); }
.lightbulb { background: linear-gradient(135deg,#eff6ff,#dbeafe); border-left: 3px solid var(--green); border-radius: var(--radius-sm); padding: 1rem 1.1rem; }
.lightbulb__label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.lightbulb p { font-size: .875rem; font-style: italic; color: var(--navy); line-height: 1.55; margin: 0; }
.prog-card__video {
  background: var(--navy); border-radius: var(--radius-sm);
  aspect-ratio: 16/9; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  color: rgba(255,255,255,.3);
}
.play-icon { font-size: 2rem; }
.play-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.prog-card__quote { border-top: 1px solid var(--border); padding-top: 1rem; margin: 0;}
.prog-card__quote p { font-size: .875rem; font-style: italic; color: var(--muted); line-height: 1.6; margin: 0;}
.prog-card__quote cite { display: block; margin-top: .5rem; font-size: .75rem; font-weight: 700; color: var(--navy); font-style: normal; }
.prog-card__quotes { display: flex; flex-direction: column; gap: 1rem; }
.prog-card__quote--top { margin-top: 0; }
.prog-card .btn { margin-top: auto; } /* pushes button to absolute bottom */

/* ── Impact Grid ───────────────────────────────────── */
.impact__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: stretch; }
.impact__stats { background: var(--white); border-radius: var(--radius-subtle); padding: 3rem; border: 1px solid var(--border); box-shadow: var(--shadow-subtle); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat-box { background: #eff6ff; border-radius: var(--radius-sm); padding: 1.5rem 1rem; text-align: center; }
.stat-box__num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: .4rem; }
.stat-box__label { font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.impact__coverage { background: var(--navy); color: var(--white); border-radius: var(--radius-subtle); padding: 2.5rem; display: flex; flex-direction: column;}
.coverage-list { display: flex; flex-direction: column; gap: 1rem; }
.coverage-list li { display: flex; align-items: center; gap: .75rem; font-size: .9rem; font-weight: 500; }
.coverage-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.coverage-footer { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.coverage-link { font-size: .85rem; font-weight: 700; color: var(--green); transition: color .2s; }
.coverage-link:hover { color: var(--white); }

/* ── Grants Grid ───────────────────────────────────── */
.grants-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; text-align: left; }
.grant-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-subtle); padding: 2.15rem; transition: var(--transition); }
.grant-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.grant-card__icon { font-size: 1.75rem; margin-bottom: 1rem; }
.grant-card h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 1.1rem; color: var(--navy); }
.grant-list { display: flex; flex-direction: column; gap: .75rem; }
.grant-list li { font-size: .875rem; color: var(--muted); padding-left: 1.1rem; position: relative; line-height: 1.5; }
.grant-list li::before { content: '•'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ── Contact Form ──────────────────────────────────── */
.contact__wrap { max-width: 780px; margin: 0 auto; }
.contact-form { background: var(--white); border-radius: var(--radius-subtle); padding: 2.75rem; box-shadow: var(--shadow-hover); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.req { color: var(--green); }
.field input, .field select, .field textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem;
  color: var(--navy); background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-msg { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid transparent; }
.form-msg--success { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.form-msg--error   { background: #fef2f2; color: #dc2626; border-color: #fecaca; }

/* ── Footer ────────────────────────────────────────── */
.footer { background: var(--navy); color: var(--muted); padding: 4rem 0 2.5rem; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
.footer__logo { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--white); margin: 0; }
.footer__logo span { color: var(--green); }
.footer__tagline { font-size: .875rem; margin: 0; }
.footer__sub { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--green); margin: 0; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.75rem; }
.footer__nav a { font-size: .875rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.footer__nav a:hover { color: var(--white); }
.footer__copy { font-size: .78rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; width: 100%; text-align: center; line-height: 1.6; margin: 0; }
.footer__copy-mark { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); display: block; margin-top: .75rem; }
.footer__copy-source { font-size: .65rem; display: block; margin-top: .25rem; }
.footer__copy-dev { display: block; margin-top: 1rem; color: #cbd5e1; }
.footer__copy-dev a { color: var(--blue); font-weight: 600; }
.footer__copy-dev a:hover { text-decoration: underline; color: #eff6ff;}

/* ── Go To Top ─────────────────────────────────────── */
.go-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
  cursor: pointer; border: none;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s;
  outline: none;
}
.go-top:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.go-top.visible { opacity: 1; pointer-events: auto; }
.go-top:hover { background: #15803d; transform: translateY(-3px); }
.go-top svg { width: 20px; height: 20px; }

/* ── Admin Dashboard Basics ────────────────────────── */
.admin-wrap { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.admin-card { background: var(--white); border-radius: var(--radius-subtle); padding: 3rem; width: 100%; max-width: 460px; box-shadow: var(--shadow-hover); text-align: center; }
.admin-dash { background: var(--bg); min-height: 100vh; padding-bottom: 4rem; }
.admin-header { background: var(--white); padding: 1.5rem 0; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.admin-header .container { display: flex; align-items: center; justify-content: space-between; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-subtle); margin-top: 2rem; font-size: .85rem; }
.admin-table th { background: var(--navy); color: var(--white); padding: 1rem; text-align: left; font-weight: 600; }
.admin-table td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: top; max-width: 200px; }
.admin-table tr:hover { background: #f8fafc; }

/* ── Tablet ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mat-grid    { grid-template-columns: repeat(2,1fr); }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .impact__grid { grid-template-columns: 1fr; }
  .prog-grid   { gap: 1.25rem; }
}

/* ── Mobile ────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  
  h2 { font-size: 28px !important; }
  body { font-size: 15px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__h1 { font-size: 32px; }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__img-wrap { display: none; }
  
  .hopscotch__inner { flex-direction: column; padding: 1.5rem; text-align: center; }
  .hopscotch__quote { max-width: 100%; width: 100%; }

  .mat-grid { grid-template-columns: 1fr 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .prog-card { padding: 24px; }
  
  .impact__grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .impact__stats { padding: 1.5rem; }
  
  .grants-grid { grid-template-columns: 1fr; }
  .grant-card { padding: 24px; }

  .contact-form { padding: 24px; }
  .contact-form__row { grid-template-columns: 1fr; }
  
  .footer__inner { gap: 1.5rem; }
  .footer__nav { gap: .5rem 1.25rem; }
  .go-top { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 400px) {
  .mat-grid { grid-template-columns: 1fr; }
}
