:root {
  --navy: #0B2340;
  --navy-deep: #06182C;
  --gold: #F4C542;
  --gold-dark: #D8A91E;
  --white: #FFFFFF;
  --charcoal: #2E2E2E;
  --soft: #F5F4EF;
  --line: #DDE2E8;
  --max: 1180px;
  --shadow: 0 24px 65px rgba(11, 35, 64, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--charcoal);
  line-height: 1.65;
  background: var(--white);
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: 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: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  border-radius: 8px;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11,35,64,.10);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-brand {
  flex: 0 0 auto;
  width: 190px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-brand img {
  width: auto;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .94rem;
  font-weight: 750;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-donate)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 3px;
  background: var(--gold);
  transition: right .2s ease;
}

.site-nav a:hover::after { right: 0; }

.nav-donate {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 850;
}

.nav-donate:hover { background: var(--gold-dark); }

.menu-button {
  margin-left: auto;
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  padding: 84px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 15%, rgba(244,197,66,.23), transparent 34%),
    linear-gradient(140deg, #FFFFFF 0%, #F8F7F2 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: .80rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.kicker-gold { color: var(--gold); }

h1, h2, h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: "League Spartan", "Inter", sans-serif;
  line-height: 1.03;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.4vw, 6.8rem);
  letter-spacing: -.052em;
}

h1 span {
  -webkit-text-stroke: 2px var(--gold);
  paint-order: stroke fill;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 4.05rem);
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 680px;
  margin: 0 0 30px;
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button-gold {
  color: var(--navy);
  background: var(--gold);
}

.button-gold:hover { background: var(--gold-dark); }

.button-outline {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.button-large { padding: 16px 30px; }

.hero-visual { position: relative; }

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 11px solid var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid var(--gold);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 43%;
}

.portrait-label {
  position: relative;
  width: 86%;
  margin: -31px auto 0;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--navy);
  border-bottom: 6px solid var(--gold);
  box-shadow: 0 14px 36px rgba(11,35,64,.18);
}

.portrait-label strong { font-size: 1.08rem; }

.portrait-label span {
  font-size: .91rem;
  opacity: .78;
}

.school-path {
  border-top: 7px solid var(--gold);
  color: var(--white);
  background: var(--navy);
}

.school-path-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.school-path span {
  padding: 23px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .84rem;
  font-weight: 750;
  border-right: 1px solid rgba(255,255,255,.16);
}

.school-path span:last-child { border-right: 0; }

.section { padding: 94px 0; }

.section-split,
.statement-grid,
.community-grid,
.donate-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 72px;
  align-items: start;
}

.prose {
  font-size: 1.04rem;
}

.prose p:first-child { margin-top: 0; }

.statement {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11,35,64,.97), rgba(6,24,44,.99)),
    var(--navy);
}

.statement h2 { color: var(--white); }

.statement blockquote {
  margin: 0;
  color: var(--white);
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 2.8rem);
  line-height: 1.2;
}

.priorities-section { background: var(--soft); }

.section-heading {
  max-width: 770px;
  margin-bottom: 45px;
}

.section-heading > p:last-child { max-width: 690px; }

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.priority-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--gold);
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease;
}

.priority-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(11,35,64,.10);
}

.card-number {
  display: inline-flex;
  min-width: 42px;
  height: 30px;
  margin-bottom: 42px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
}

.community-section { background: var(--white); }

.community-lead { font-size: 1.12rem; }

.community-points {
  display: grid;
  gap: 18px;
}

.community-points div {
  padding: 24px;
  border-left: 7px solid var(--gold);
  background: var(--soft);
}

.community-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-family: "League Spartan", sans-serif;
  font-size: 1.3rem;
}

.community-points span { display: block; }

.donate-section {
  padding: 66px 0;
  color: var(--white);
  background: var(--navy);
}

.donate-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.donate-section h2 {
  margin-bottom: 13px;
  color: var(--white);
}

.donate-section p:last-child {
  max-width: 750px;
  margin-bottom: 0;
}

.site-footer {
  padding: 58px 0 20px;
  color: var(--white);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: auto;
  height: 150px;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  padding: 8px;
  background: var(--white);
}

.site-footer h3 {
  color: var(--gold);
  font-size: .98rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255,255,255,.82);
}

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

.disclaimer {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.66);
  font-size: .80rem;
}


.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact-lead {
  max-width: 560px;
  font-size: 1.08rem;
}

.contact-details {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 7px solid var(--gold);
  background: var(--white);
}

.contact-details strong,
.contact-details a {
  display: block;
}

.contact-details strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
}

.contact-details a {
  color: var(--navy);
  font-weight: 750;
}

.contact-form {
  padding: 30px;
  border-top: 8px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #C8D0DA;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(244,197,66,.35);
  border-color: var(--gold);
}

.form-status {
  margin: 18px 0 0;
  color: var(--navy);
  font-weight: 750;
}

@media (max-width: 980px) {
  .menu-button { display: block; }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 11px 8px; }

  .site-nav a:not(.nav-donate)::after { display: none; }

  .nav-donate { text-align: center; }

  .hero-grid,
  .section-split,
  .statement-grid,
  .community-grid,
  .donate-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-visual { max-width: 560px; }

  .priority-grid { grid-template-columns: repeat(2, 1fr); }

  .school-path-grid { grid-template-columns: 1fr; }

  .school-path span {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .school-path span:last-child { border-bottom: 0; }
}

@media (max-width: 660px) {
  .container { width: min(calc(100% - 28px), var(--max)); }

  .header-inner { min-height: 72px; }

  .header-brand {
    width: 190px;
    height: 58px;
  }

  .site-nav { top: 72px; }

  .hero { padding: 56px 0 52px; }

  h1 { font-size: 3.45rem; }

  .section { padding: 70px 0; }

  .priority-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .button { width: 100%; }

  .portrait-label { width: 92%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
