@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Public+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --text: #13212d;
  --muted: #5c6975;
  --line: #dbe3ea;
  --brand: #0d5b8f;
  --brand-deep: #083c60;
  --brand-soft: #e8f1f8;
  --accent: #f1b24a;
  --accent-deep: #c98b28;
  --success: #1f6e43;
  --shadow: 0 18px 48px rgba(15, 38, 58, 0.08);
  --radius: 20px;
  --content-width: 1140px;
  --reading-width: 920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(13, 91, 143, 0.08), transparent 20%),
    linear-gradient(180deg, #f7fafc 0%, #f3f6f8 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.container {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
}

.brand img {
  width: 170px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 220px;
}

.brand-title {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--brand-deep);
  letter-spacing: 0.01em;
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-deep);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 38, 58, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #2a6f9d;
  color: #ffffff;
  border: 1px solid rgba(8, 60, 96, 0.08);
  box-shadow: 0 10px 22px rgba(42, 111, 157, 0.18);
}

.nav-cta:hover {
  background: #215b81;
  color: #ffffff;
}

.site-nav a.nav-cta,
.site-nav a.nav-cta[aria-current="page"] {
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
  color: #ffffff;
}

.hero::before {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 56px 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: start;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.14), transparent 20%),
    linear-gradient(135deg, rgba(11, 67, 106, 0.98), rgba(27, 99, 147, 0.92));
  box-shadow: 0 22px 60px rgba(10, 52, 83, 0.16);
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #dcecf8;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0 0;
  max-width: 8.6ch;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.55rem, 4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-meta {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-link.primary {
  background: var(--accent);
  color: #182634;
}

.button-link.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-panel {
  padding: 28px 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 42px rgba(6, 30, 48, 0.14);
}

.hero-panel h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  font-size: 0.98rem;
}

.hero-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 0.97rem;
}

.page {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 72px;
}

.subhero {
  margin-top: 28px;
  padding: 40px;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(8, 60, 96, 0.96), rgba(13, 91, 143, 0.9));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.subhero .section-label {
  color: rgba(255, 255, 255, 0.74);
}

.subhero h1 {
  margin: 12px 0 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.subhero p {
  margin: 16px 0 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-value {
  margin: 10px 0 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--brand-deep);
}

.stat-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section {
  padding-top: 46px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.pair-grid,
.three-grid,
.footer-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

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

.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: 1.2fr 0.75fr 0.85fr;
}

.card,
.highlight-card,
.contact-card,
.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.highlight-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.feature-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.card h3,
.highlight-card h3,
.contact-card h3,
.feature-card h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.card p,
.highlight-card p,
.contact-card p,
.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.plain-list,
.section ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.plain-list li,
.section ul li {
  margin-top: 8px;
}

.quote-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.quote-link:hover {
  color: var(--brand-deep);
}

.banner {
  margin-top: 28px;
  padding: 34px;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(8, 60, 96, 0.96), rgba(13, 91, 143, 0.9));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.banner h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  letter-spacing: -0.02em;
}

.banner p {
  margin: 14px 0 0;
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
}

.banner .quote-link {
  color: #ffffff;
}

.banner .quote-link:hover {
  color: #f3d18f;
}

.initiative-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 320px;
  gap: 22px;
  align-items: stretch;
}

.initiative-side-card {
  padding: 28px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 241, 248, 0.9));
  border: 1px solid rgba(219, 227, 234, 0.9);
  box-shadow: var(--shadow);
}

.initiative-side-card .section-label {
  margin-bottom: 12px;
}

.initiative-side-card h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--brand-deep);
}

.initiative-side-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(13, 91, 143, 0.08);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.curriculum-card {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.curriculum-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand) 0%, #7fb1d4 100%);
}

.curriculum-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.curriculum-card h3 {
  margin-top: 0;
}

.section-intro-text {
  max-width: 62ch;
  margin-top: 14px;
}

.initiative-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 22px;
  margin-top: 26px;
}

.initiative-feature {
  padding: 34px;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(11, 67, 106, 0.98), rgba(27, 99, 147, 0.92));
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(10, 52, 83, 0.16);
}

.initiative-feature .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.initiative-feature h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.initiative-feature p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
}

.initiative-feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.8;
}

.initiative-feature-list li {
  color: rgba(255, 255, 255, 0.96);
}

.initiative-note {
  padding: 28px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.initiative-note h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--brand-deep);
}

.initiative-note p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.initiative-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: calc(var(--radius) + 4px);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.initiative-cta-copy h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.initiative-cta-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.initiative-cta .quote-link {
  margin-top: 0;
  white-space: nowrap;
}

.trustee-name {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.trustee-role {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

.small-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.note-box {
  padding: 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: #fff8ee;
  color: var(--muted);
  line-height: 1.8;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #102435;
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-grid {
  margin-top: 0;
}

.footer-brand {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-column {
  min-width: 0;
}

.footer-brand-column {
  max-width: 420px;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
}

.footer-text,
.footer-links a {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-heading {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-text a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-text a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-contact:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(42, 111, 157, 0.22);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px 22px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    max-width: 10ch;
  }
}

@media (max-width: 940px) {
  .hero-inner,
  .pair-grid,
  .three-grid,
  .contact-grid,
  .footer-grid,
  .initiative-hero,
  .initiative-feature-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 44px 28px 52px;
  }

  .stats-row {
    margin-top: 24px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand img {
    width: 150px;
  }

  .page {
    padding: 24px 0 60px;
  }

  .subhero,
  .banner,
  .initiative-feature,
  .initiative-side-card,
  .initiative-note,
  .initiative-cta,
  .card,
  .highlight-card,
  .feature-card,
  .contact-card,
  .stat-card {
    padding: 24px;
  }

  .footer-inner {
    padding: 36px 0;
  }

  .initiative-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .page,
  .hero-inner,
  .footer-inner {
    width: min(var(--content-width), calc(100% - 24px));
  }

  .site-header {
    position: static;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
    margin-top: 12px;
    padding: 14px 18px 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(219, 227, 234, 0.9);
    border-radius: 30px;
    box-shadow: 0 16px 34px rgba(15, 38, 58, 0.07);
  }

  .brand {
    grid-column: 1 / 2;
  }

  .brand img {
    width: 118px;
  }

  .brand-copy {
    max-width: none;
  }

  .brand-title {
    font-size: 0.84rem;
  }

  .brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2 / 3;
    justify-self: end;
    margin-top: 6px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
  }

  .site-nav a[aria-current="page"]:not(.nav-cta) {
    background: var(--brand-soft);
    border-color: rgba(13, 91, 143, 0.16);
  }

  .nav-cta {
    width: 100%;
    min-height: 44px;
  }

  .site-nav a.nav-cta,
  .site-nav a.nav-cta[aria-current="page"] {
    background: #2a6f9d;
    border-color: rgba(8, 60, 96, 0.08);
    color: #ffffff;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-inner {
    padding: 28px 20px 32px;
    gap: 22px;
    border-radius: 26px;
  }

  .hero-mark {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(1.95rem, 10.6vw, 2.8rem);
    line-height: 0.98;
  }

  .hero-lead,
  .hero-panel p,
  .subhero p,
  .banner p,
  .section p,
  .card p,
  .highlight-card p,
  .feature-card p,
  .contact-card p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 10px;
  }

  .button-link {
    width: 100%;
    min-height: 46px;
    font-size: 0.94rem;
  }

  .hero-panel {
    padding: 20px 18px;
  }

  .subhero {
    margin-top: 20px;
    padding: 28px 22px;
  }

  .subhero h1,
  .section h2,
  .banner h2,
  .initiative-feature h3 {
    line-height: 1.12;
  }

  .section {
    padding-top: 34px;
  }

  .stats-row {
    gap: 14px;
  }

  .stat-value {
    font-size: 1.28rem;
  }

  .curriculum-card {
    padding-top: 70px;
  }

  .initiative-feature-grid {
    gap: 18px;
  }

  .initiative-cta .quote-link {
    white-space: normal;
  }

  .footer-grid {
    gap: 26px;
  }

  .site-footer {
    margin-top: 8px;
    border-radius: 30px;
    overflow: hidden;
  }

  .footer-inner {
    padding: 34px 0 28px;
  }

  .footer-contact {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    font-size: 0.84rem;
  }
}
