:root {
  --green-950: #102d1d;
  --green-900: #153b25;
  --green-800: #1a4e2d;
  --green-700: #1f6b3a;
  --green-600: #2f7d46;
  --green-100: #e6f1e9;
  --green-50: #f2f7f3;
  --orange-700: #b84f12;
  --orange-100: #fff0e5;
  --ink: #182019;
  --muted: #526057;
  --line: #d7dfd8;
  --paper: #ffffff;
  --page: #f8faf7;
  --shadow: 0 18px 50px rgba(16, 45, 29, 0.10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green-700);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.09em;
}

a:hover {
  color: var(--green-950);
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f3a35c;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green-950);
  line-height: 1.15;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.container--narrow {
  max-width: 840px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--green-950);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 300px;
}

.section-nav {
  margin-left: auto;
}

.section-nav__header {
  display: none;
}

.section-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.section-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

.section-nav a:hover {
  text-decoration: underline;
}

.menu-toggle,
.menu-close,
.menu-overlay {
  display: none;
}

.hero {
  padding: clamp(3.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 171, 84, 0.20), transparent 30rem),
    linear-gradient(145deg, #f7fbf7 0%, #edf5ef 100%);
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--orange-700);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 770px;
  margin-bottom: 1.75rem;
  color: #304137;
  font-size: clamp(1.15rem, 2.1vw, 1.42rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button--primary {
  background: var(--green-700);
  color: #fff;
}

.button--primary:hover {
  background: var(--green-950);
  color: #fff;
}

.button--secondary {
  border-color: var(--green-700);
  background: #fff;
  color: var(--green-800);
}

.button--secondary:hover {
  background: var(--green-100);
  color: var(--green-950);
}

.updated {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.status-card {
  padding: clamp(1.5rem, 4vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: var(--green-950);
  box-shadow: var(--shadow);
  color: #edf7ef;
}

.status-card__label {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 750;
}

.status-list span {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.05rem;
  flex: 0 0 1.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  line-height: 1;
}

.status-card p:last-child {
  margin-bottom: 0;
  color: #cfe0d3;
  font-size: 0.95rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--tint {
  background: var(--green-50);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(16, 45, 29, 0.05);
}

.stat strong {
  color: var(--green-800);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
}

.stat span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-weight: 700;
}

.prose-card,
.legacy-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.prose-card p {
  max-width: 860px;
}

.signature {
  margin-top: 2rem;
  margin-bottom: 0;
  color: var(--green-900);
}

.signature span {
  color: var(--muted);
  font-size: 0.94rem;
}

.schools {
  background: var(--paper);
}

.schools-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 5vw, 3.25rem);
  border: 1px solid #c9ddce;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 171, 84, 0.22), transparent 19rem),
    linear-gradient(145deg, #f7fbf7 0%, #e9f4ec 100%);
  box-shadow: var(--shadow);
}

.schools-card::before {
  content: "1%";
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  color: rgba(31, 107, 58, 0.08);
  font-size: clamp(6rem, 16vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.schools-card > * {
  position: relative;
  z-index: 1;
}

.schools-card__lead {
  color: #304137;
  font-size: clamp(1.12rem, 2vw, 1.3rem);
  line-height: 1.58;
}

.schools-card p:not(.eyebrow) {
  max-width: 700px;
}

.schools-card .button {
  margin-top: 0.5rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.resource-card p {
  color: var(--muted);
}

.resource-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  font-weight: 800;
}

.data-note {
  margin-top: 1.2rem;
  padding: 1.35rem 1.5rem;
  border-left: 5px solid var(--orange-700);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--orange-100);
}

.data-note p {
  margin-bottom: 0;
}

.photos {
  background: var(--paper);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1.2rem;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(16, 45, 29, 0.07);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: #eef1ee;
}

.photo-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.media-card {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: 1.75rem;
  margin-top: 1.4rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.media-card img {
  width: 100%;
}

.media-card p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  color: var(--green-950);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 1rem 1.1rem;
  color: var(--muted);
}

.legacy {
  background: var(--paper);
}

.legacy-card {
  text-align: center;
}

.legacy-card p:not(.eyebrow) {
  max-width: 640px;
  margin-inline: auto;
  color: var(--muted);
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--green-950);
  color: #d7e6da;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header__inner {
    min-height: 76px;
    padding-block: 0.75rem;
    gap: 1rem;
  }

  .brand img {
    width: min(300px, 58vw);
  }

  .js .menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 48px;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    color: var(--green-950);
    cursor: pointer;
  }

  .menu-toggle__line {
    width: 24px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .js .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: block;
    visibility: hidden;
    border: 0;
    background: rgba(10, 27, 17, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, visibility 0s linear 240ms;
  }

  .js .section-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: min(88vw, 390px);
    margin: 0;
    padding: 0 1.2rem 1.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    box-shadow: -20px 0 55px rgba(16, 45, 29, 0.22);
    visibility: hidden;
    transform: translateX(105%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 280ms;
  }

  .js .section-nav__header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--green-950);
    font-size: 1.1rem;
    font-weight: 850;
  }

  .js .menu-close {
    position: relative;
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--green-50);
    color: var(--green-950);
    cursor: pointer;
  }

  .menu-close span {
    position: absolute;
    width: 23px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .menu-close span:first-child {
    transform: rotate(45deg);
  }

  .menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .js .section-nav__links {
    display: grid;
    gap: 0;
    padding-top: 0.65rem;
  }

  .js .section-nav a {
    min-height: 60px;
    justify-content: space-between;
    gap: 0.75rem;
    border-bottom: 1px solid var(--line);
    color: var(--green-950);
    font-size: 1.08rem;
  }

  .js .section-nav a::after {
    content: "→";
    margin-left: auto;
    color: var(--orange-700);
    font-size: 1.2rem;
  }

  .js .section-nav a:hover {
    color: var(--green-700);
    text-decoration: none;
  }

  .menu-open .menu-overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .menu-open .section-nav {
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .no-js .site-header__inner {
    flex-wrap: wrap;
  }

  .no-js .section-nav {
    width: 100%;
    margin: 0;
  }

  .no-js .section-nav__links {
    justify-content: flex-start;
  }

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

  .stats,
  .resource-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .resource-card:last-child,
  .photo-card:last-child {
    grid-column: 1 / -1;
  }

  .photo-card:last-child img {
    aspect-ratio: 16 / 9;
    object-position: center 18%;
  }
}

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

  .site-header__inner {
    min-height: 70px;
  }

  .brand img {
    width: min(230px, 64vw);
  }

  .js .section-nav__header {
    min-height: 70px;
  }

  .no-js .section-nav__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero {
    padding-block: 3.4rem;
  }

  .photos {
    padding-block: 3.5rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats,
  .resource-grid,
  .photo-grid,
  .media-card {
    grid-template-columns: 1fr;
  }

  .resource-card:last-child,
  .photo-card:last-child {
    grid-column: auto;
  }

  .photo-card:last-child img,
  .photo-card img {
    aspect-ratio: 4 / 5;
    object-position: center top;
  }

  .media-card img {
    width: min(280px, 100%);
  }

  .site-footer__inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
