:root {
  --ink: #1b1f3b;
  --ink-soft: #4a4f6e;
  --bg: #f5f7f4;
  --panel: #ecefea;
  --white: #ffffff;
  --gold: #e8a33d;
  --gold-dark: #bd7620;
  --teal: #2f8f82;
  --teal-dark: #226d63;
  --line: #d9ded7;
  --danger: #9f3e3e;

  --display: "Fraunces", Georgia, serif;
  --body: "Public Sans", Arial, sans-serif;

  --max-width: 1160px;
  --radius: 8px;
  --header-height: 82px;

  --shadow: 0 14px 35px rgba(27, 31, 59, 0.1);
  --shadow-small: 0 5px 18px rgba(27, 31, 59, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 3px;
}

::selection {
  color: var(--ink);
  background: rgba(232, 163, 61, 0.45);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.wrap {
  width: min(100% - 56px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(245, 247, 244, 0.93);
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 247, 244, 0.98);
  box-shadow: var(--shadow-small);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.1;
}

.brand:hover {
  color: var(--teal-dark);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-dark);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.primary-nav a:hover {
  color: var(--teal-dark);
  text-decoration: none;
}

.primary-nav .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.primary-nav .nav-cta:hover {
  color: var(--white);
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-icon {
  display: grid;
  width: 20px;
  gap: 4px;
  margin-inline: auto;
}

.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  font-weight: 500;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

p {
  margin-top: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a8e0d6;
}

.lede {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.section-space {
  padding: 104px 0;
}

.section-panel {
  padding: 88px 0 104px;
  background: var(--panel);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  max-width: 15ch;
}

.section-intro {
  max-width: 62ch;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(196, 131, 42, 0.18);
}

.btn-primary:hover {
  color: var(--ink);
  background: var(--gold-dark);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.btn-teal {
  color: var(--white);
  background: var(--teal);
}

.btn-teal:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.btn-light-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-light-outline:hover {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  padding: 96px 0 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(232, 163, 61, 0.14), transparent 26%),
    var(--bg);
}

.hero-grid {
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.88fr);
  align-items: center;
  gap: 70px;
}

.hero h1 {
  max-width: 12ch;
}

.hero h1 span,
.page-hero h1 span,
.featured-content h2 span {
  color: var(--teal-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.hero-card {
  position: absolute;
  z-index: 2;
  top: 19%;
  right: 9%;
  width: min(400px, 84%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 25px 55px rgba(27, 31, 59, 0.16);
  transform: rotate(3deg);
  backdrop-filter: blur(12px);
}

.hero-card-top,
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card-status {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.sound-wave {
  display: flex;
  height: 150px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.sound-wave span {
  display: block;
  width: 7px;
  min-height: 18px;
  border-radius: 99px;
  background: var(--teal);
  transform: scaleY(var(--wave, 1));
}

.sound-wave span:nth-child(1) { --wave: 0.35; }
.sound-wave span:nth-child(2) { --wave: 0.6; }
.sound-wave span:nth-child(3) { --wave: 0.9; }
.sound-wave span:nth-child(4) { --wave: 0.5; }
.sound-wave span:nth-child(5) { --wave: 1.5; }
.sound-wave span:nth-child(6) { --wave: 2.1; }
.sound-wave span:nth-child(7) { --wave: 1.2; }
.sound-wave span:nth-child(8) { --wave: 1.8; }
.sound-wave span:nth-child(9) { --wave: 0.7; }
.sound-wave span:nth-child(10) { --wave: 1.45; }
.sound-wave span:nth-child(11) { --wave: 0.6; }
.sound-wave span:nth-child(12) { --wave: 0.35; }

.hero-card-footer {
  color: var(--ink-soft);
  font-family: var(--display);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(47, 143, 130, 0.25);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.hero-orbit-one {
  top: 2%;
  right: 3%;
  width: 90%;
  height: 75%;
}

.hero-orbit-two {
  right: -1%;
  bottom: 2%;
  width: 78%;
  height: 62%;
  border-color: rgba(232, 163, 61, 0.35);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  box-shadow: var(--shadow-small);
  font-size: 0.8rem;
  font-weight: 700;
}

.floating-note-one {
  top: 10%;
  left: 0;
}

.floating-note-two {
  right: 0;
  bottom: 8%;
}

.note-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--teal-dark);
  border-radius: 50%;
  background: rgba(47, 143, 130, 0.14);
}

.wave-divider {
  height: 86px;
  margin-top: 22px;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.program-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.program-card:hover {
  border-color: rgba(47, 143, 130, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.program-card-number {
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: 0.95rem;
}

.program-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--teal-dark);
  border-radius: 50%;
  background: rgba(47, 143, 130, 0.13);
  font-family: var(--display);
  font-size: 1.45rem;
}

.program-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.card-link {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.card-link:hover {
  text-decoration: none;
}

.card-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 80px;
}

.why-list {
  display: grid;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.why-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.why-marker {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-dark);
  border: 1px solid rgba(47, 143, 130, 0.34);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.8rem;
}

.why-list h3 {
  margin-bottom: 5px;
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
}

.why-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.stat-card {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.featured-program {
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.featured-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(47, 143, 130, 0.8), rgba(27, 31, 59, 0.96)),
    var(--teal-dark);
}

.featured-visual::before,
.featured-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.featured-visual::before {
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
}

.featured-visual::after {
  top: 30%;
  left: 30%;
  width: 40%;
  height: 40%;
}

.featured-symbol {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 8rem;
}

.featured-content p {
  max-width: 60ch;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--teal);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 700;
}

.involved-strip {
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(47, 143, 130, 0.44), transparent 27%),
    var(--ink);
}

.involved-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.involved-strip h2 {
  margin-bottom: 8px;
  color: var(--white);
}

.involved-strip p:not(.eyebrow) {
  margin-bottom: 0;
  color: #c7cce0;
}

.strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at 92% 20%, rgba(47, 143, 130, 0.14), transparent 27%),
    var(--panel);
}

.page-hero-content {
  max-width: 760px;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero p {
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.breadcrumbs a {
  color: var(--teal-dark);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 70px;
}

.content-column p,
.content-column li {
  color: var(--ink-soft);
}

.content-column h2 {
  margin-top: 38px;
  font-size: 2rem;
}

.content-column h2:first-child {
  margin-top: 0;
}

.content-column h3 {
  margin-top: 28px;
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.side-card {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.side-card h3 {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.side-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.side-card + .side-card {
  margin-top: 18px;
}

.program-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.detail-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-card h3 {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.detail-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.step-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  counter-reset: step;
}

.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 17px;
  counter-increment: step;
}

.step-list li::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-dark);
  border: 1px solid rgba(47, 143, 130, 0.4);
  border-radius: 50%;
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 0.78rem;
}

.step-list h3 {
  margin-bottom: 5px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.step-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.action-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.action-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.action-card .btn {
  width: fit-content;
  margin-top: auto;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.resource-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.resource-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.resource-card .resource-type {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.contact-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
}

.contact-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--teal-dark);
  border-radius: 50%;
  background: rgba(47, 143, 130, 0.14);
}

.contact-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.contact-list span,
.contact-list a {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--bg);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(47, 143, 130, 0.18);
}

.form-note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.alert-note {
  padding: 18px;
  border-left: 4px solid var(--gold-dark);
  background: rgba(232, 163, 61, 0.15);
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.site-footer {
  padding: 68px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand p {
  max-width: 32ch;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-family: var(--body);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column a {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-column a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  padding-top: 25px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

@media (max-width: 1000px) {
  .hero-grid,
  .featured-grid,
  .content-grid,
  .form-layout {
    gap: 46px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .wrap {
    width: min(100% - 40px, var(--max-width));
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 13px 14px;
  }

  .primary-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .featured-grid,
  .content-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 380px;
  }

  .featured-visual {
    min-height: 300px;
  }

  .program-detail-grid,
  .action-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .involved-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 16px;
  }

  .brand {
    max-width: 225px;
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-actions,
  .hero-actions .btn,
  .strip-actions,
  .strip-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 315px;
  }

  .hero-card {
    top: 18%;
    right: 2%;
    width: 88%;
    padding: 22px;
  }

  .floating-note {
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .floating-note-one {
    top: 4%;
  }

  .floating-note-two {
    right: -2%;
    bottom: 5%;
  }

  .program-grid,
  .program-detail-grid,
  .action-grid,
  .resource-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .form-card {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}