:root {
  --ink: #17264d;
  --ink-soft: #55617d;
  --forest: #1e3060;
  --forest-dark: #17264d;
  --forest-deep: #101b3a;
  --lime: #f26a21;
  --lime-soft: #fbe4d6;
  --cream: #f7f2eb;
  --paper: #fffdf9;
  --mist: #edf0f6;
  --line: rgba(30, 48, 96, 0.16);
  --white: #ffffff;
  --error: #9a2f2f;
  --success: #166742;
  --shadow: 0 28px 80px rgba(30, 48, 96, 0.14);
  --radius: 24px;
  --radius-small: 14px;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
}

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(82px, 10vw, 144px);
}

.enrollment-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--lime);
  color: var(--ink);
  padding: 8px 20px;
  font-size: 13px;
}

.enrollment-bar p {
  margin: 0;
}

.enrollment-bar a {
  flex: 0 0 auto;
  font-weight: 850;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: color-mix(in srgb, var(--forest-deep) 96%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 3px solid var(--lime);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px rgba(30, 48, 96, 0.08);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 132px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  width: 178px;
  height: auto;
  flex: 0 0 auto;
}

.brand-nonprofit {
  max-width: 9ch;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-nonprofit span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 27px);
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  transition: transform 160ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 15px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -5px;
}

.menu-icon::after {
  top: 5px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
  padding: 13px 23px;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--forest-dark);
  box-shadow: 0 12px 26px rgba(30, 48, 96, 0.18);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 13px;
}

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

.button-light {
  background: var(--lime);
  color: var(--ink);
}

.button-light:hover {
  background: #ff7d35;
}

.button.nav-cta {
  background: var(--lime);
  color: var(--forest-deep);
}

.button.nav-cta:hover {
  background: #ff7d35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  min-height: min(700px, calc(100svh - 174px));
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  padding-block: clamp(34px, 4vw, 58px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 4.8vw, 5rem);
  font-weight: 600;
}

h1 em {
  color: var(--forest);
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 5.15rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.hero-intro {
  max-width: 49ch;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
}

.hero-trust {
  max-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero-trust div {
  display: grid;
  gap: 3px;
}

.hero-trust div + div {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.hero-trust strong {
  font-size: 15px;
}

.hero-trust span {
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -24px;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
}

.hero-media img {
  width: 100%;
  height: clamp(420px, 50vw, 590px);
  border-radius: 190px 28px 28px 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  position: absolute;
  right: -14px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  min-width: 235px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(30, 48, 96, 0.16);
  padding: 18px 22px;
}

.hero-media figcaption span {
  color: var(--ink-soft);
  font-size: 12px;
}

.hero-media figcaption strong {
  font-size: 16px;
}

.mission-ribbon {
  background: var(--forest-deep);
  color: var(--white);
}

.ribbon-layout {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 32px;
}

.ribbon-layout p {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.2;
}

.ribbon-layout > span {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p,
.method-heading > p,
.about-copy > p,
.faq-heading > p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.program-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
}

.program-card-accent {
  background: var(--forest);
  color: var(--white);
}

.program-number {
  position: absolute;
  top: 16px;
  right: 24px;
  color: color-mix(in srgb, currentColor 10%, transparent);
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
}

.program-card-top {
  position: relative;
  z-index: 1;
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.program-label {
  max-width: 26ch;
  margin: 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.program-card-accent .program-label {
  color: var(--lime);
}

.age-pill {
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 800;
}

.program-card h3 {
  position: relative;
  margin-bottom: 17px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 600;
}

.program-description {
  max-width: 48ch;
  margin-bottom: 36px;
  color: var(--ink-soft);
}

.program-card-accent .program-description {
  color: rgba(255, 255, 255, 0.76);
}

.program-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 34px;
  border-block: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  padding-block: 22px;
}

.program-facts div {
  min-width: 0;
}

.program-facts dt {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-card-accent .program-facts dt {
  color: rgba(255, 255, 255, 0.64);
}

.program-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.location-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 20px 26px;
}

.location-card > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-card > div > div {
  display: grid;
  gap: 2px;
}

.location-card span,
.location-card p {
  color: var(--ink-soft);
  font-size: 13px;
}

.location-card p {
  margin: 0;
  text-align: right;
}

.location-pin {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--forest) !important;
  font-size: 21px !important;
  font-weight: 900;
}

.private-section {
  background: var(--cream);
}

.private-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(46px, 8vw, 120px);
}

.private-media {
  position: relative;
  margin: 0;
}

.private-media img {
  width: 100%;
  max-height: 680px;
  border-radius: 26px 140px 26px 26px;
  object-fit: cover;
}

.private-media figcaption {
  position: absolute;
  right: -30px;
  bottom: 30px;
  max-width: 240px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--ink);
  padding: 18px 21px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.private-copy h2 {
  max-width: 12ch;
}

.private-lead {
  max-width: 57ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 35px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 16px 20px 16px 26px;
  font-size: 14px;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--forest);
  font-weight: 900;
}

.method-section {
  background: var(--forest-deep);
  color: var(--white);
}

.method-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 72px;
}

.method-heading h2 {
  margin-bottom: 0;
}

.method-heading .section-kicker {
  color: var(--lime);
}

.method-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar {
  min-height: 280px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px 28px 0 0;
}

.pillar + .pillar {
  padding-left: 28px;
}

.pillar:last-child {
  border-right: 0;
}

.pillar > span {
  display: block;
  margin-bottom: 80px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.pillar p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.about-copy h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
}

.about-copy > p:not(.section-kicker) {
  max-width: 58ch;
}

.about-media {
  margin: 0;
}

.about-media img {
  width: 100%;
  min-height: 540px;
  border-radius: 26px 26px 160px 26px;
  object-fit: cover;
}

.founders-section {
  background: var(--mist);
}

.section-heading.compact {
  max-width: 860px;
  display: block;
}

.section-heading.compact h2 {
  margin-bottom: 15px;
}

.section-heading.compact > p:last-child {
  max-width: 55ch;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.founder-card {
  min-height: 282px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
}

.founder-card > img {
  width: 100%;
  height: 176px;
  object-fit: contain;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.founder-card-copy {
  padding: 18px 20px 20px;
}

.founder-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}

.founder-card p {
  margin: 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-note {
  max-width: 76ch;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.7rem);
}

.faq-heading a {
  color: var(--forest);
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 48px 24px 0;
  font-size: 1.05rem;
  font-weight: 800;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 66ch;
  margin: -4px 48px 24px 0;
  color: var(--ink-soft);
}

.support-section {
  background: var(--lime);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
}

.support-intro .section-kicker {
  color: var(--ink);
}

.support-intro h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
}

.support-options {
  display: grid;
  border-top: 1px solid rgba(30, 48, 96, 0.28);
}

.support-card {
  position: relative;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(30, 48, 96, 0.28);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 24px 58px 24px 0;
  text-align: left;
  text-decoration: none;
}

.support-card span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.support-card p {
  margin: 4px 0 0;
  color: rgba(30, 48, 96, 0.72);
}

.support-card strong {
  position: absolute;
  top: 33px;
  right: 8px;
  font-size: 1.4rem;
  transition: transform 160ms ease;
}

.support-card:hover strong {
  transform: translate(3px, -3px);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  min-width: 0;
}

.contact-copy {
  position: sticky;
  top: 130px;
  min-width: 0;
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 44px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.contact-details dt {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.callback-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
  min-width: 0;
}

.form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.form-heading span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.form-heading p {
  max-width: 24ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: right;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  font-size: 12px;
  font-weight: 850;
}

.form-grid small {
  color: var(--ink-soft);
  font-weight: 500;
}

.form-full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.18);
}

.field-invalid {
  border-color: var(--error);
}

.form-note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0;
  font-size: 13px;
  font-weight: 800;
}

.form-status.is-error {
  color: var(--error);
}

.form-status.is-success {
  color: var(--success);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  background: var(--forest-deep);
  color: var(--white);
}

.footer-top {
  min-height: 250px;
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  align-items: center;
  gap: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-block: 50px;
}

.footer-brand .brand-logo {
  width: 154px;
}

.footer-top > p {
  max-width: 47ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  text-decoration: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: min(390px, calc(100% - 40px));
  transform: translateY(130%);
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 750;
  transition: transform 220ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    top: 118px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    padding: 14px 12px;
    font-size: 15px;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

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

  .pillar:nth-child(2) {
    border-right: 0;
  }

  .pillar:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 28px;
  }

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

  .founder-card {
    min-height: 176px;
    display: grid;
    grid-template-columns: 150px 1fr;
  }

  .founder-card > img {
    width: 150px;
    height: 150px;
    align-self: center;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .founder-card-copy {
    align-self: center;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 100px;
  }

  .enrollment-bar {
    justify-content: space-between;
  }

  .enrollment-bar p {
    line-height: 1.3;
  }

  .nav-shell {
    min-height: 104px;
    grid-template-columns: 1fr auto;
  }

  .nav-cta {
    display: none;
  }

  .primary-nav {
    top: 102px;
  }

  .hero,
  .private-layout,
  .about-section,
  .faq-section,
  .support-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 54px;
    padding-top: 60px;
  }

  .hero-media {
    width: min(100%, 620px);
    justify-self: center;
  }

  .hero-media img {
    height: min(600px, 105vw);
  }

  .section-heading,
  .method-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .private-media {
    max-width: 560px;
  }

  .private-media figcaption {
    right: -8px;
  }

  .faq-heading,
  .contact-copy {
    position: static;
  }

  .support-layout {
    gap: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 60px;
  }

  .footer-top .button {
    justify-self: start;
  }
}

@media (max-width: 590px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding-block: 76px;
  }

  .enrollment-bar {
    min-height: 54px;
    gap: 12px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .enrollment-bar strong {
    display: block;
  }

  .brand-logo {
    width: 124px;
  }

  .brand-nonprofit {
    font-size: 9px;
  }

  .menu-label {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }

  .primary-nav {
    top: 122px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 3.9rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-trust {
    margin-top: 42px;
  }

  .hero-trust div + div {
    padding-left: 14px;
  }

  .hero-media img {
    border-radius: 110px 20px 20px 20px;
  }

  .hero-media figcaption {
    right: 10px;
    bottom: 12px;
    min-width: 200px;
  }

  .ribbon-layout {
    min-height: 180px;
  }

  .ribbon-layout > span {
    display: none;
  }

  .program-card {
    padding: 25px 20px;
  }

  .program-card-top {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .program-facts {
    grid-template-columns: 1fr;
  }

  .program-facts div + div {
    border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent);
    padding-top: 12px;
  }

  .program-card .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .location-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-card p {
    text-align: left;
  }

  .private-media figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -24px 14px 0;
  }

  .check-list,
  .pillar-grid,
  .founder-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    min-height: 230px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 0 0 !important;
  }

  .pillar > span {
    margin-bottom: 52px;
  }

  .about-media img {
    min-height: 390px;
    border-radius: 20px 20px 100px 20px;
  }

  .founder-card {
    min-height: 144px;
    grid-template-columns: 120px 1fr;
  }

  .founder-card > img {
    width: 120px;
    height: 120px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-heading p {
    text-align: left;
  }

  .contact-details div {
    grid-template-columns: 85px 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 26px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
