@font-face {
  font-family: "DM Sans";
  src: url("/assets/dm-sans.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #20201d;
  --forest: #17352d;
  --forest-deep: #10261f;
  --bone: #f4f0e6;
  --sage: #cad6c8;
  --sage-light: #e3eae1;
  --coral: #e5674f;
  --white: #ffffff;
  --muted: #686c65;
  --line: rgba(32, 32, 29, 0.18);
  --max: 1500px;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--bone);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-140%);
}

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

.section-pad,
.site-header,
.site-footer {
  padding-inline: max(5vw, calc((100vw - var(--max)) / 2));
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 36px;
  align-items: center;
  color: var(--ink);
  background: rgba(244, 240, 230, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  width: fit-content;
  display: inline-flex;
  gap: 13px;
  align-items: center;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 100%;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  right: 0;
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 720;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 80px 0 0;
  padding: 38px 7vw;
  color: var(--white);
  background: var(--forest-deep);
}

.mobile-menu nav {
  display: grid;
  gap: 0;
}

.mobile-menu a {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: clamp(28px, 9vw, 48px);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  padding-top: 100px;
  padding-bottom: 110px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: var(--coral);
}

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

h1 {
  max-width: 830px;
  margin-bottom: 34px;
  font-size: clamp(60px, 7.2vw, 118px);
  line-height: 0.88;
  font-weight: 560;
  letter-spacing: -0.075em;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 40px;
  color: #4f534e;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.5;
}

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

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  font-weight: 740;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--forest);
}

.button--primary:hover {
  background: var(--forest-deep);
}

.button--quiet {
  background: transparent;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 36px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 14px;
}

.hero-facts li {
  position: relative;
  padding-left: 18px;
}

.hero-facts li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--coral);
}

.day-plan {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.6vw, 58px);
  color: var(--white);
  background: var(--forest);
  box-shadow: 28px 28px 0 var(--sage);
}

.day-plan__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.day-plan ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-plan li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.day-plan time {
  padding-top: 3px;
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.day-plan li span {
  display: grid;
  gap: 4px;
}

.day-plan li strong {
  font-size: 16px;
  font-weight: 700;
}

.day-plan li small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.day-plan__result {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-top: 32px;
}

.day-plan__result span {
  padding: 7px 10px;
  color: var(--forest);
  background: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.day-plan__result strong {
  max-width: 240px;
  text-align: right;
  font-size: 20px;
  line-height: 1.15;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--ink);
}

.signal-bar p {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.19);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.signal-bar p:last-child {
  border-right: 0;
}

.path {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-head {
  max-width: 900px;
  margin-bottom: 70px;
}

.section-head h2,
.outcomes-copy h2,
.literacy h2,
.contact h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 0.95;
  font-weight: 560;
  letter-spacing: -0.065em;
}

.section-head > p:last-child,
.section-head--light > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.tier {
  min-height: 390px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 210px;
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
  padding: 48px 0 54px;
  border-bottom: 1px solid var(--line);
}

.tier-index {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
}

.tier-label {
  margin-bottom: 15px;
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tier h3 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.98;
  font-weight: 560;
  letter-spacing: -0.055em;
}

.tier-main > p:not(.tier-label) {
  max-width: 770px;
  color: #4f534e;
  font-size: 18px;
  line-height: 1.55;
}

.tier ul {
  display: grid;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tier li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

.tier li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--sage);
}

.tier-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 44px;
  text-align: right;
}

.tier-price span,
.tier-price small {
  color: var(--muted);
  font-size: 12px;
}

.tier-price strong {
  margin: 7px 0 3px;
  font-size: clamp(33px, 3vw, 48px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.tier--accent {
  position: relative;
}

.tier--accent::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -5vw;
  width: 8px;
  content: "";
  background: var(--coral);
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(390px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(70px, 10vw, 170px);
  padding-top: 130px;
  padding-bottom: 140px;
  background: var(--white);
}

.outcomes-photo {
  position: relative;
  min-height: 730px;
}

.outcomes-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.photo-caption {
  position: absolute;
  right: -34px;
  bottom: 34px;
  max-width: 320px;
  display: grid;
  gap: 8px;
  padding: 22px 26px;
  color: var(--white);
  background: var(--forest);
}

.photo-caption span {
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-caption strong {
  font-size: 21px;
  line-height: 1.15;
}

.outcomes-copy {
  align-self: center;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-grid article > strong {
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.outcome-grid h3 {
  margin: 30px 0 10px;
  font-size: 25px;
}

.outcome-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.control {
  padding-top: 130px;
  padding-bottom: 130px;
  color: var(--white);
  background: var(--forest-deep);
}

.section-head--light > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.control-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.control-flow article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.control-flow article > span {
  margin-bottom: auto;
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.control-flow strong {
  margin-bottom: 10px;
  font-size: 23px;
}

.control-flow p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.5;
}

.control-flow__human {
  color: var(--forest-deep);
  background: var(--coral);
}

.control-flow__human > span,
.control-flow__human p {
  color: var(--forest-deep) !important;
}

.control-note {
  max-width: 800px;
  margin: 0;
  text-align: right;
  font-size: clamp(27px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.control-aftercare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
  margin-top: 48px;
}

.control-aftercare > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.6;
}

.control-aftercare > p:last-child strong {
  color: var(--sage);
  font-size: 17px;
}

.literacy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: clamp(70px, 11vw, 180px);
  padding-top: 130px;
  padding-bottom: 130px;
  background: var(--sage-light);
}

.literacy h2 {
  margin-bottom: 0;
}

.literacy > div:last-child {
  align-self: end;
}

.literacy > div:last-child p {
  color: #4d544e;
  font-size: 18px;
  line-height: 1.6;
}

.text-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 750;
}

.fit {
  padding-top: 120px;
  padding-bottom: 125px;
  background: var(--white);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fit-grid article {
  min-height: 280px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-grid h3 {
  margin-bottom: 70px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.fit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.faq {
  padding-top: 120px;
  padding-bottom: 130px;
}

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

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

.faq summary {
  position: relative;
  padding: 27px 60px 27px 0;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 620;
  letter-spacing: -0.035em;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 23px;
  right: 0;
  content: "+";
  color: var(--coral);
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

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

.faq details p {
  max-width: 850px;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(70px, 10vw, 160px);
  padding-top: 130px;
  padding-bottom: 130px;
  color: var(--white);
  background: var(--forest);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.contact-meta {
  display: grid;
  gap: 7px;
  margin-top: 45px;
}

.contact-meta span {
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-meta a {
  width: fit-content;
  font-size: 19px;
  font-weight: 700;
}

.contact-form {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
  padding: clamp(28px, 4vw, 55px);
  color: var(--ink);
  background: var(--bone);
}

.contact-form label:not(.consent):not(.honeypot) {
  display: grid;
  gap: 9px;
  font-size: 13px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(32, 32, 29, 0.45);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  padding: 13px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 2px 0 var(--coral);
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  min-height: auto;
  height: 17px;
  margin-top: 2px;
}

.consent a {
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 50px;
  padding-top: 62px;
  padding-bottom: 65px;
  color: var(--white);
  background: var(--ink);
}

.brand--footer strong,
.brand--footer small {
  color: var(--white);
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.site-footer > div:not(.footer-brand),
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.site-footer > div > strong,
.site-footer nav > strong {
  margin-bottom: 8px;
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding-top: 100px;
  padding-bottom: 75px;
  color: var(--white);
  background: var(--forest);
}

.legal-hero h1 {
  max-width: 1000px;
  margin-bottom: 0;
  font-size: clamp(58px, 8vw, 122px);
}

.legal-content {
  max-width: 1040px;
  padding-top: 85px;
  padding-bottom: 110px;
}

.legal-content .legal-intro {
  margin-bottom: 55px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.legal-content section {
  margin-bottom: 48px;
}

.legal-content h2 {
  margin-bottom: 15px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: #555a55;
  line-height: 1.7;
}

.legal-content a {
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    min-height: 82px;
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

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

  .day-plan {
    min-height: 650px;
  }

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

  .outcomes-photo {
    min-height: 620px;
  }

  .outcomes-copy {
    max-width: 950px;
  }

  .control-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .literacy,
  .contact {
    grid-template-columns: 1fr;
  }

  .control-aftercare {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: 850px;
  }
}

@media (max-width: 760px) {
  .section-pad,
  .site-header,
  .site-footer {
    padding-inline: 22px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 18px;
  }

  .hero {
    min-height: 0;
    gap: 64px;
    padding-top: 72px;
    padding-bottom: 90px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    gap: 10px;
  }

  .day-plan {
    min-height: 620px;
    padding: 27px 22px;
    box-shadow: 12px 12px 0 var(--sage);
  }

  .day-plan li {
    grid-template-columns: 62px 1fr;
    gap: 12px;
  }

  .signal-bar {
    grid-template-columns: 1fr;
  }

  .signal-bar p {
    min-height: 60px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  }

  .path,
  .outcomes,
  .control,
  .literacy,
  .fit,
  .faq,
  .contact {
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .section-head h2,
  .outcomes-copy h2,
  .literacy h2,
  .contact h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .tier {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 20px 12px;
  }

  .tier-main {
    grid-column: 2;
  }

  .tier-price {
    grid-column: 2;
    align-items: flex-start;
    padding-top: 8px;
    text-align: left;
  }

  .tier--accent::before {
    left: -22px;
    width: 6px;
  }

  .outcomes-photo {
    min-height: 520px;
  }

  .photo-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .outcome-grid,
  .fit-grid,
  .control-flow {
    grid-template-columns: 1fr;
  }

  .outcome-grid article,
  .fit-grid article,
  .control-flow article {
    min-height: 220px;
  }

  .control-note {
    text-align: left;
  }

  .literacy {
    gap: 45px;
  }

  .fit-grid h3 {
    margin-bottom: 38px;
  }

  .contact {
    gap: 52px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .contact-form label,
  .contact-form__wide {
    grid-column: 1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

  .legal-hero {
    padding-top: 75px;
    padding-bottom: 58px;
  }

  .legal-content {
    padding-top: 65px;
    padding-bottom: 80px;
  }
}

@media (max-width: 460px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: 1;
  }
}

@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-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

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