:root {
  --navy: #082b4c;
  --navy-2: #0d3b66;
  --blue: #1d5f97;
  --gold: #e2ad45;
  --gold-light: #f3cf79;
  --cream: #f6f3ed;
  --white: #ffffff;
  --ink: #132433;
  --muted: #64717d;
  --line: #dce2e6;
  --shadow: 0 22px 55px rgba(4, 31, 55, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -60px; left: 20px; background: var(--gold); color: var(--navy); padding: 10px 16px; z-index: 1000; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8,43,76,.08);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--navy); font-size: 23px; font-weight: 950;
  box-shadow: 0 8px 22px rgba(226,173,69,.25);
}
.brand-copy { display: grid; line-height: 1; letter-spacing: .06em; color: var(--navy); }
.brand-copy strong { font-size: 18px; }
.brand-copy small { margin-top: 5px; font-size: 9px; letter-spacing: .32em; font-weight: 800; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { font-size: 14px; font-weight: 700; text-decoration: none; color: #314a5f; }
.site-nav a:hover { color: var(--blue); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px; background: var(--navy); }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  text-decoration: none; font-weight: 850; letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px !important; }
.button-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy) !important; box-shadow: 0 12px 28px rgba(226,173,69,.2); }
.button-ghost { border: 1px solid rgba(255,255,255,.5); color: var(--white); background: rgba(255,255,255,.05); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(29,95,151,.36), transparent 34%),
    linear-gradient(135deg, #061f37 0%, var(--navy) 58%, #0b3e68 100%);
  color: var(--white);
  padding: 100px 0 94px;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0; height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .8;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.55fr .8fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .22em; font-weight: 850; font-size: 12px; color: var(--gold-light); }
.eyebrow.dark { color: var(--blue); }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(50px, 7vw, 84px); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { color: var(--gold-light); }
.hero-lead { max-width: 680px; margin: 28px 0 34px; font-size: 19px; line-height: 1.75; color: #d8e5ef; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 22px; color: #aac1d4; font-size: 13px; font-weight: 750; }
.hero-proof span::before { content: "•"; color: var(--gold); margin-right: 9px; }
.impact-card {
  padding: 36px; border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.card-kicker { margin: 0 0 16px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-weight: 850; font-size: 11px; }
.impact-card blockquote { margin: 0; font-family: Georgia, serif; font-size: 28px; line-height: 1.35; }
.impact-card p { color: #c6d7e4; }
.impact-rule { width: 58px; height: 3px; margin: 26px 0; background: var(--gold); }
.impact-card a { color: var(--gold-light); text-decoration: none; font-weight: 800; }

.intro-section { padding: 100px 0 72px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
h2 { margin: 0; color: var(--navy); font-size: clamp(36px, 5vw, 54px); line-height: 1.08; letter-spacing: -.045em; }
.intro-copy p { margin-top: 0; font-size: 18px; color: #4e5f6d; }
.intro-copy p + p { margin-top: 20px; }

.mission-vision { padding: 0 0 100px; }
.mission-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 45px rgba(8,43,76,.07); }
.mission-grid article { padding: 44px; background: var(--white); }
.mission-grid article + article { border-left: 1px solid var(--line); background: var(--cream); }
.section-number { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .15em; }
.mission-grid h3 { margin: 10px 0 14px; color: var(--navy); font-size: 28px; }
.mission-grid p { margin: 0; color: #53626d; }

.focus-section { padding: 100px 0; background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.section-heading > p { margin: 0; color: #596a77; font-size: 17px; }
.section-heading.light h2 { color: var(--white); }
.section-heading.light > p { color: #c2d2df; }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.focus-card { min-height: 360px; padding: 32px; border-radius: 20px; background: var(--white); border: 1px solid #e8e4dc; transition: transform .25s ease, box-shadow .25s ease; }
.focus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.focus-card.featured { background: var(--navy); color: var(--white); }
.focus-card.callout { background: linear-gradient(145deg, #c98b22, var(--gold)); color: var(--navy); }
.focus-card.callout .card-kicker { color: var(--navy); opacity: .7; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #eaf1f6; color: var(--blue); font-size: 23px; font-weight: 900; }
.featured .icon { background: rgba(255,255,255,.12); color: var(--gold-light); }
.focus-card h3 { margin: 24px 0 12px; color: var(--navy); font-size: 23px; line-height: 1.2; }
.featured h3 { color: var(--white); }
.focus-card p { color: #5f6d77; }
.featured p { color: #c4d3df; }
.focus-card ul { padding: 0; margin: 24px 0 0; list-style: none; }
.focus-card li { position: relative; padding-left: 18px; margin: 9px 0; font-size: 14px; font-weight: 650; }
.focus-card li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

.approach-section { padding: 100px 0; background: var(--navy); color: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.steps article { padding: 34px 28px; background: rgba(5,33,57,.95); }
.steps span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 900; }
.steps h3 { margin: 24px 0 10px; font-size: 20px; }
.steps p { margin: 0; color: #b9cbd9; font-size: 14px; }

.partners-section { padding: 100px 0; }
.partner-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.partner-grid > div:first-child > p:last-child { color: #5d6d79; font-size: 17px; }
.partner-types { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-types span { padding: 14px 17px; background: var(--cream); border: 1px solid #e5e1d8; border-radius: 999px; color: var(--navy); font-size: 13px; font-weight: 800; }

.get-involved { padding: 80px 0; background: linear-gradient(135deg, #0c4776, var(--navy)); color: var(--white); }
.get-involved-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: center; }
.get-involved h2 { color: var(--white); }
.get-involved p { color: #c5d6e3; font-size: 17px; }
.involvement-actions { display: flex; flex-direction: column; gap: 12px; }

.contact-section { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: center; }
.contact-grid > div:first-child > p:last-child { color: #5e6c77; font-size: 17px; }
.contact-card { padding: 38px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); border-top: 5px solid var(--gold); }
.contact-label { margin-top: 0; color: var(--blue); text-transform: uppercase; font-size: 11px; letter-spacing: .15em; font-weight: 900; }
.contact-card a { display: inline-block; margin: 8px 0 14px; color: var(--navy); font-size: clamp(20px,3vw,29px); font-weight: 900; text-decoration: none; }
.contact-card p:last-child { color: #687680; }

footer { padding: 40px 0; background: #04192b; color: #98adbd; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; font-size: 12px; }
.footer-brand .brand-copy { color: var(--white); }
.footer-grid p:nth-child(2) { text-align: center; }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .22; }
.hero-orb-one { width: 420px; height: 420px; right: -160px; top: -130px; border: 1px solid #fff; }
.hero-orb-two { width: 260px; height: 260px; left: -120px; bottom: -130px; border: 1px solid var(--gold); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 20px;
    background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(8,43,76,.12);
    flex-direction: column; align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .hero-grid, .split, .section-heading, .partner-grid, .get-involved-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding: 72px 0 70px; }
  .hero h1 { font-size: 47px; }
  .hero-lead { font-size: 17px; }
  .button { width: 100%; }
  .hero-proof { display: grid; gap: 8px; }
  .mission-grid, .focus-grid, .steps { grid-template-columns: 1fr; }
  .mission-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .mission-grid article, .focus-card, .impact-card { padding: 28px; }
  .intro-section, .focus-section, .approach-section, .partners-section, .contact-section { padding: 72px 0; }
  .section-heading { gap: 22px; }
}
