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

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  --navy:    #1e3a6e;
  --navy-mid:#2a4a8a;
  --gold:    #c8963e;
  --gold-lt: #f0c164;
  --cream:   #ffffff;
  --warm:    #f4f0e8;
  --text:    #1a1a2e;
  --muted:   #475569;
  --white:   #ffffff;
  --radius:  6px;
  --shadow:  0 4px 28px rgba(30,58,110,.13);
  --trans:   .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #ffffff; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.6rem,5vw,4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem,2.5vw,1.75rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1.05rem; color: #475569; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.btn {
  display: inline-block; padding: .8rem 2rem;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500; letter-spacing: .05em;
  border-radius: var(--radius); transition: var(--trans); cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #b07e2e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,62,.35); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.label {
  display: inline-block; font-family: 'DM Sans',sans-serif; font-size: .75rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.tag-line { color: var(--muted); font-size: 1.1rem; max-width: 600px; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--gold); height: 34px;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 2rem; padding: 0 2rem;
  font-size: .76rem; color: var(--navy);
}
.nav-topbar a { color: var(--navy); font-weight: 600; transition: var(--trans); }
.nav-topbar a:hover { opacity: .75; }

.nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  background: rgba(26,39,68,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,150,62,.2);
  transition: var(--trans);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; max-width: 1160px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text strong { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; color: var(--white); font-weight: 600; }
.nav-logo-text span { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lt); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 400; transition: var(--trans); position: relative; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition:var(--trans); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 16px); left: 0;
  background: var(--navy); border: 1px solid rgba(200,150,62,.2); border-radius: var(--radius);
  min-width: 180px; box-shadow: var(--shadow); overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: .75rem 1.25rem; color: rgba(255,255,255,.8); font-size: .875rem; transition: var(--trans); }
.nav-dropdown-menu a:hover { background: rgba(200,150,62,.15); color: var(--gold-lt); }
.nav-dropdown-menu a::after { display: none !important; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--trans); border-radius: 2px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1e3a6e 0%, #2a4a8a 55%, #1a5296 100%);
  position: relative; overflow: hidden; padding-top: 100px;
}
.hero::before {
  content:''; 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='%23c8963e' fill-opacity='0.04'%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");
  pointer-events: none;
}
.hero-bg-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,62,.12) 0%, transparent 70%);
}
.hero-bg-circle-1 { width: 800px; height: 800px; top: -200px; right: -200px; }
.hero-bg-circle-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1160px; margin: 0 auto; padding: 2rem; width: 100%; }
.hero-text { }
.hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.hero-eyebrow span { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-lt); font-family: 'DM Sans',sans-serif; font-weight: 500; }
.hero-eyebrow::before { content:''; display:block; width:32px; height:1px; background:var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold-lt); font-style: italic; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 2.2rem; color: var(--gold-lt); font-weight: 700; line-height: 1; }
.hero-stat span { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .05em; }
.hero-visual { position: relative; }
.hero-img-frame {
  border-radius: 16px; overflow: hidden; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  border: 2px solid rgba(200,150,62,.3);
}
.hero-img-frame img { width: 100%; height: 480px; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--gold); color: var(--navy); padding: 1.25rem 1.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow); font-family: 'Cormorant Garamond',serif;
}
.hero-badge strong { display: block; font-size: 1.6rem; font-weight: 700; line-height: 1; }
.hero-badge span { font-size: .78rem; font-family: 'DM Sans',sans-serif; font-weight: 600; letter-spacing: .05em; }

/* ── PILLARS ─────────────────────────────────────────────── */
.pillars { background: #f8f9ff; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.pillar-card {
  padding: 2.5rem 2rem; border-radius: 12px; border: 1px solid rgba(26,39,68,.08);
  position: relative; overflow: hidden; transition: var(--trans); background: #f8faff;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.pillar-num {
  font-family: 'Cormorant Garamond',serif; font-size: 4rem; font-weight: 700;
  color: rgba(26,39,68,.07); position: absolute; top: .5rem; right: 1rem; line-height: 1;
}
.pillar-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.pillar-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.pillar-card h3 { margin-bottom: .75rem; }
.pillar-card p { font-size: .95rem; }

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-strip { background: var(--navy); color: var(--white); }
.about-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-strip img { border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,.4); height: 480px; object-fit: cover; width: 100%; }
.about-strip h2 { color: var(--white); margin-bottom: 1.25rem; }
.about-strip p { color: rgba(255,255,255,.72); margin-bottom: 1.5rem; }
.about-pillars { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.about-item { display: flex; align-items: flex-start; gap: 1rem; }
.about-item-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: .55rem; flex-shrink: 0; }
.about-item p { color: rgba(255,255,255,.8); margin: 0; font-size: .95rem; }
.about-item strong { color: var(--white); }

/* ── OUTCOMES ─────────────────────────────────────────────── */
.outcomes { background: var(--cream); }
.outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.outcome-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(30,58,110,.08); border: 1px solid rgba(30,58,110,.06); transition: var(--trans); }
.outcome-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.outcome-card img { width: 100%; height: 200px; object-fit: cover; }
.outcome-card-body { padding: 1.75rem; }
.outcome-card h4 { margin-bottom: .5rem; color: var(--navy); }
.outcome-card p { font-size: .9rem; }

/* ── SCRIPTURE ────────────────────────────────────────────── */
.scripture {
  background: linear-gradient(135deg, #d4a44a, #e8b86d); padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.scripture::before {
  content: '\201C'; font-family: 'Cormorant Garamond',serif; font-size: 20rem;
  color: rgba(26,39,68,.08); position: absolute; top: -4rem; left: 2rem; line-height: 1;
  pointer-events: none;
}
.scripture blockquote { position: relative; z-index: 1; }
.scripture blockquote p { font-family: 'Cormorant Garamond',serif; font-size: clamp(1.4rem,2.5vw,2rem); color: var(--navy); font-style: italic; max-width: 750px; margin: 0 auto 1rem; font-weight: 300; line-height: 1.5; }
.scripture cite { font-family: 'DM Sans',sans-serif; font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); opacity: .7; font-style: normal; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1e3a6e 0%, #2a5298 100%);
  padding: 5rem 2rem; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 2rem; }
.cta-banner-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1e3a6e 0%, #2a5298 100%);
  padding: 5rem 2rem 4rem; text-align: center; padding-top: 8rem;
  margin-top: 100px;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 580px; margin: 0 auto; font-size: 1.1rem; }

/* ── ADMISSIONS ───────────────────────────────────────────── */
.steps-timeline { margin-top: 4rem; display: flex; flex-direction: column; gap: 2.5rem; position: relative; }
.steps-timeline::before { content:''; position:absolute; left: 2.25rem; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), transparent); }
.step-item { display: flex; gap: 2rem; }
.step-num {
  width: 4.5rem; height: 4.5rem; border-radius: 50%; background: var(--navy); color: var(--gold-lt);
  display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif;
  font-size: 1.5rem; font-weight: 700; flex-shrink: 0; border: 2px solid var(--gold); position: relative; z-index: 1;
}
.step-content { padding-top: .75rem; }
.step-content h3 { margin-bottom: .5rem; }
.step-content p { font-size: .95rem; }

/* ── ACADEMICS GRID ────────────────────────────────────────── */
.academics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.academic-card {
  border-radius: 12px; overflow: hidden; background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: var(--trans); display: flex; flex-direction: column;
}
.academic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.academic-card-top { background: var(--navy); padding: 2rem; }
.academic-card-top h3 { color: var(--white); }
.academic-card-top p { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: .5rem; }
.grade-tag { display: inline-block; background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 20px; margin-bottom: .75rem; }
.academic-card-body { padding: 2rem; flex: 1; }
.academic-card-body ul { display: flex; flex-direction: column; gap: .6rem; }
.academic-card-body li { display: flex; align-items: center; gap: .65rem; font-size: .9rem; color: var(--muted); }
.academic-card-body li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.academic-card a { display: block; text-align: center; padding: 1rem; border-top: 1px solid rgba(0,0,0,.07); color: var(--gold); font-size: .875rem; font-weight: 600; letter-spacing: .03em; transition: var(--trans); }
.academic-card a:hover { background: var(--gold); color: var(--white); }

/* ── PARENTS ──────────────────────────────────────────────── */
.resources-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3.5rem; }
.resource-card {
  background: var(--white); border-radius: 12px; padding: 2rem;
  border: 1px solid rgba(26,39,68,.08); display: flex; align-items: flex-start;
  gap: 1.25rem; transition: var(--trans); cursor: pointer; text-decoration: none;
}
.resource-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.resource-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.resource-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.resource-card h4 { color: var(--navy); margin-bottom: .25rem; }
.resource-card p { font-size: .875rem; }
.resource-card .resource-link { font-size: .82rem; color: var(--gold); font-weight: 600; margin-top: .5rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-item h4 { color: var(--navy); margin-bottom: .25rem; font-size: 1rem; }
.contact-item p, .contact-item a { font-size: .95rem; color: var(--muted); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .75rem; margin-top: .5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--muted); padding: .2rem 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.hours-row span:first-child { font-weight: 500; color: var(--text); }

/* ── FORM ─────────────────────────────────────────────────── */
.form-card { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid rgba(26,39,68,.15);
  border-radius: var(--radius); font-family: 'DM Sans',sans-serif; font-size: .95rem;
  color: var(--text); background: var(--cream); transition: var(--trans); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(200,150,62,.12); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[type="file"] { padding: .65rem 1rem; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .35rem; }
.form-success { display:none; text-align:center; padding:2rem; }
.form-success svg { width:52px; height:52px; stroke:var(--gold); fill:none; stroke-width:1.5; margin:0 auto 1rem; }
.form-success h3 { margin-bottom:.5rem; }

/* ── DONATE ───────────────────────────────────────────────── */
.donate-amounts { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.amount-btn { padding: .7rem 1.5rem; border: 2px solid rgba(26,39,68,.2); border-radius: 30px; font-family: 'DM Sans',sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; background: var(--white); transition: var(--trans); }
.amount-btn:hover, .amount-btn.selected { border-color: var(--gold); background: var(--gold); color: var(--white); }
.donate-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.donate-impact { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.impact-item { display: flex; gap: 1rem; background: var(--white); padding: 1.25rem; border-radius: 10px; border: 1px solid rgba(26,39,68,.08); }
.impact-item-icon { font-family: 'Cormorant Garamond',serif; font-size: 2rem; color: var(--gold); font-weight: 700; min-width: 3rem; text-align: center; line-height: 1; }
.impact-item p { font-size: .9rem; margin: 0; }
.impact-item strong { display: block; color: var(--navy); margin-bottom: .2rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: #152545; color: var(--white); }
.footer-main { padding: 4rem 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-brand img { height: 44px; }
.footer-social { display: flex; gap: .75rem; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.social-link:hover { background: var(--gold); }
.social-link svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; }
.footer-col h5 { font-family: 'DM Sans',sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col li a { color: rgba(255,255,255,.55); font-size: .875rem; transition: var(--trans); }
.footer-col li a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-disclaimer { background: rgba(255,255,255,.04); margin: 0 -0px; padding: 1.25rem 2rem; border-top: 1px solid rgba(255,255,255,.06); }
.footer-disclaimer p { font-size: .75rem; color: rgba(255,255,255,.35); max-width: 900px; }

/* ── MAP EMBED ────────────────────────────────────────────── */
.map-embed { border-radius: 12px; overflow: hidden; margin-top: 2.5rem; }
.map-embed iframe { width: 100%; height: 280px; border: none; }

/* ── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; background: var(--navy);
  color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius);
  font-size: .9rem; box-shadow: var(--shadow); transform: translateY(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1); z-index: 9999;
  border-left: 4px solid var(--gold);
}
.toast.show { transform: translateY(0); }

/* ── MOBILE NAV — always hidden until .open ───────────────── */
.nav-mobile {
  display: none;
  position: fixed; top: 100px; left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 1.5rem 2rem; overflow-y: auto; z-index: 998;
}
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; color: rgba(255,255,255,.85); font-size: 1.05rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08); text-decoration: none; }
.nav-mobile a:hover { color: var(--gold-lt); }
.nav-mobile .btn { margin-top: 1.25rem; width: 100%; text-align: center; display: block; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .pillars-grid, .outcomes-grid, .academics-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip img { display: none; }
  .contact-layout, .donate-layout { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.animate { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
