:root {
  --ink: #1a1916;
  --ink-soft: #34322d;
  --paper: #f3eee8;
  --paper-bright: #fbf8f3;
  --moss: #30483a;
  --moss-deep: #203228;
  --sage: #dbe2d7;
  --gold: #8a6a30;
  --clay: #a85f43;
  --muted: #6b675f;
  --line: rgba(26, 25, 22, 0.17);
  --light-line: rgba(255, 255, 255, 0.18);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --section: min(100% - 40px, 1240px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 4.75rem;
  line-height: 0.96;
}

h2 {
  font-size: 4rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

p,
li,
dd,
input,
textarea {
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-shell {
  width: var(--section);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lead {
  font-size: 1.22rem;
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 72px;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(26, 25, 22, 0.1);
  background: rgba(243, 238, 232, 0.9);
  backdrop-filter: blur(18px);
}

.wordmark,
.footer-wordmark {
  display: inline-block;
  padding-right: 0.12em;
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.footer-main a {
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover,
.footer-main a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-grid;
  min-height: 40px;
  place-items: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.header-cta:hover {
  color: var(--paper-bright);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: calc(100svh - 116px);
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  background: #d8dfdd;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - 40px, 1240px);
  height: 100%;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding-bottom: 18px;
}

.hero-copy .eyebrow {
  color: var(--moss);
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 760;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms ease, color 300ms ease;
}

.button:active,
.header-cta:active {
  transform: translateY(1px) scale(0.98);
}

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

.button-dark:hover {
  background: var(--moss-deep);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  color: var(--paper-bright);
  background: var(--ink);
}

.button-gold {
  color: var(--paper-bright);
  background: var(--gold);
}

.button-gold:hover {
  background: #715421;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

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

.text-link:hover span {
  transform: translate(3px, -2px);
}

.hero-location {
  position: absolute;
  right: 28px;
  bottom: 20px;
  z-index: 2;
  margin: 0;
  color: rgba(26, 25, 22, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 126px;
  padding: 0 clamp(20px, 4vw, 58px);
  color: var(--paper-bright);
  background: var(--ink);
}

.proof-strip > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 30px;
  border-left: 1px solid var(--light-line);
}

.proof-strip > div:last-child {
  border-right: 1px solid var(--light-line);
}

.proof-strip strong {
  margin-bottom: 4px;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.problem {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  padding-block: 136px;
}

.problem-copy h2 {
  max-width: 690px;
}

.problem-copy .lead {
  max-width: 630px;
  color: var(--muted);
}

.problem-lines {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.problem-lines p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.problem-lines span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.problem-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.problem-photo figcaption,
.classroom-photo figcaption,
.real-proof-photo figcaption,
.campus-gallery figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.problem-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  color: var(--paper-bright);
  background: rgba(26, 25, 22, 0.84);
}

.kinetic-band {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  color: var(--paper-bright);
  background: var(--moss-deep);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.kinetic-band.is-dragging {
  cursor: grabbing;
}

.kinetic-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  will-change: transform;
}

.kinetic-track span {
  font-family: var(--display);
  font-size: 2.15rem;
  white-space: nowrap;
}

.kinetic-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.architecture {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(62px, 10vw, 150px);
  padding-block: 144px;
}

.architecture-intro {
  align-self: start;
}

.architecture-intro h2 {
  font-size: 3.7rem;
}

.architecture-intro p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.architecture-intro .text-link {
  margin-top: 24px;
}

.architecture-steps {
  border-top: 1px solid var(--line);
}

.architecture-steps article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.architecture-steps article > span {
  padding-top: 4px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.architecture-steps p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
}

.classroom {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(360px, 0.75fr);
  background: var(--ink);
}

.classroom-photo {
  position: relative;
  min-height: 720px;
  margin: 0;
}

.classroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.classroom-photo figcaption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  padding: 10px 13px;
  color: var(--paper-bright);
  background: rgba(26, 25, 22, 0.8);
}

.classroom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 6vw, 92px);
  color: var(--paper-bright);
}

.classroom-copy h2 {
  font-size: 3.35rem;
}

.classroom-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.classroom-copy dl {
  margin: 44px 0 0;
  border-top: 1px solid var(--light-line);
}

.classroom-copy dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-line);
}

.classroom-copy dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.classroom-copy dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.45;
}

.real-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: end;
  padding-block: 144px;
}

.real-proof-copy {
  padding-bottom: 34px;
}

.real-proof-copy h2 {
  font-size: 3.6rem;
}

.real-proof-copy p:not(.eyebrow) {
  color: var(--muted);
}

.real-proof-photo {
  margin: 0;
}

.real-proof-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.real-proof-photo figcaption {
  margin-top: 12px;
}

.outcomes {
  padding-block: 132px;
  color: var(--paper-bright);
  background: var(--moss-deep);
}

.outcomes .eyebrow {
  color: #c7a761;
}

.outcomes-head h2 {
  max-width: 830px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--light-line);
}

.outcome-grid article {
  min-height: 280px;
  padding: 34px 34px 24px 0;
  border-right: 1px solid var(--light-line);
}

.outcome-grid article + article {
  padding-left: 34px;
}

.outcome-grid article:last-child {
  border-right: 0;
}

.outcome-grid span {
  color: #c7a761;
  font-size: 0.78rem;
  font-weight: 800;
}

.outcome-grid h3 {
  margin-top: 54px;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.outcome-grid p {
  color: rgba(255, 255, 255, 0.64);
}

.route-section {
  padding-block: 144px;
}

.route-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 60px;
  align-items: start;
}

.route-heading h2 {
  max-width: 900px;
}

.route-list {
  margin: 58px 0 44px;
  border-top: 1px solid var(--line);
}

.route-list article {
  display: grid;
  grid-template-columns: 150px minmax(190px, 0.55fr) 1fr;
  gap: 36px;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.route-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-list h3,
.route-list p {
  margin-bottom: 0;
}

.route-list h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
}

.route-list p {
  color: var(--muted);
}

.campus-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 18px;
  align-items: end;
  padding-bottom: 144px;
}

.campus-gallery figure {
  margin: 0;
}

.gallery-wide img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-tall img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.campus-gallery figcaption {
  margin-top: 10px;
}

.fit-section {
  padding-block: 130px;
  background: var(--sage);
}

.fit-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 140px);
}

.fit-title h2 {
  font-size: 3.6rem;
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.fit-columns h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.fit-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-columns li {
  position: relative;
  padding: 15px 0 15px 22px;
  border-bottom: 1px solid rgba(26, 25, 22, 0.1);
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.fit-columns li::before {
  position: absolute;
  top: 25px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
  padding-block: 144px;
}

.faq-heading h2 {
  font-size: 3.5rem;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  content: "+";
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 250ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 54px 24px 0;
  color: var(--muted);
}

.apply-section {
  padding-block: 132px;
  color: var(--paper-bright);
  background: var(--ink);
}

.apply-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 140px);
}

.apply-copy {
  align-self: start;
}

.apply-copy h2 {
  font-size: 4rem;
}

.apply-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.64);
}

.light-link {
  margin-top: 26px;
  color: var(--paper-bright);
}

.interest-form {
  display: grid;
  gap: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.interest-form label > span {
  font-size: 0.9rem;
  font-weight: 700;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  outline: 0;
  color: var(--paper-bright);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 200ms ease, background 200ms ease;
}

.interest-form input {
  min-height: 50px;
  padding: 0 14px;
}

.interest-form textarea {
  min-height: 126px;
  padding: 13px 14px;
  resize: vertical;
}

.interest-form input:focus,
.interest-form textarea:focus {
  border-color: #c7a761;
  background: rgba(255, 255, 255, 0.08);
}

.interest-form [aria-invalid="true"] {
  border-color: #d78e72;
}

.interest-form small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  line-height: 1.4;
}

.interest-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.consent span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.interest-form .button {
  width: fit-content;
  margin-top: 8px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #d9c28a;
  font-size: 0.84rem;
}

.site-footer {
  padding: 80px 0 24px;
  color: var(--paper-bright);
  background: var(--moss-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.7fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 70px;
}

.footer-main p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-main > div {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--light-line);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 14;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  background: #1e6a48;
  box-shadow: 0 14px 34px rgba(22, 48, 35, 0.24);
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 240ms ease, background 240ms ease;
}

.whatsapp-float svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #17563a;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms), transform 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms);
}

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

@media (max-width: 1060px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .problem,
  .architecture,
  .real-proof,
  .fit-inner,
  .faq,
  .apply-inner {
    gap: 58px;
  }

  .classroom {
    grid-template-columns: 1.35fr 0.85fr;
  }

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

  .classroom-copy {
    padding: 50px 34px;
  }

  .classroom-copy h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 820px) {
  :root {
    --section: min(100% - 32px, 720px);
  }

  h1 {
    font-size: 3.15rem;
    line-height: 0.98;
  }

  h2,
  .architecture-intro h2,
  .real-proof-copy h2,
  .fit-title h2,
  .faq-heading h2,
  .apply-copy h2 {
    font-size: 2.7rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding-inline: 16px;
  }

  .wordmark {
    font-size: 1.8rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 240ms ease;
  }

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

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

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    display: grid;
    width: 100%;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    background: rgba(243, 238, 232, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    height: calc(100svh - 108px);
    min-height: 560px;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-copy {
    justify-content: flex-end;
    padding-bottom: 72px;
  }

  .hero-copy::before {
    position: absolute;
    inset: auto -16px 0;
    z-index: -1;
    height: 72%;
    content: "";
    background: rgba(243, 238, 232, 0.88);
    backdrop-filter: blur(8px);
  }

  .hero-lede {
    max-width: 560px;
    font-size: 1.05rem;
  }

  .hero-location {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip > div {
    min-height: 112px;
    padding: 20px 16px;
    border-bottom: 1px solid var(--light-line);
  }

  .proof-strip > div:nth-child(odd) {
    border-left: 0;
  }

  .proof-strip > div:last-child {
    border-right: 0;
  }

  .problem,
  .architecture,
  .real-proof,
  .fit-inner,
  .faq,
  .apply-inner,
  .classroom {
    grid-template-columns: 1fr;
  }

  .problem,
  .architecture,
  .real-proof,
  .route-section,
  .faq {
    padding-block: 94px;
  }

  .problem {
    gap: 46px;
  }

  .problem-photo {
    aspect-ratio: 16 / 11;
  }

  .architecture {
    gap: 58px;
  }

  .classroom-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .classroom-copy {
    padding: 70px 24px;
  }

  .real-proof-copy {
    padding-bottom: 0;
  }

  .outcomes {
    padding-block: 94px;
  }

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

  .outcome-grid article,
  .outcome-grid article + article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .outcome-grid h3 {
    margin-top: 28px;
  }

  .route-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .route-list article {
    grid-template-columns: 110px 1fr;
    gap: 14px 20px;
  }

  .route-list p {
    grid-column: 2;
  }

  .campus-gallery {
    grid-template-columns: 1.25fr 0.75fr;
    padding-bottom: 94px;
  }

  .fit-section {
    padding-block: 90px;
  }

  .fit-columns {
    gap: 28px;
  }

  .apply-section {
    padding-block: 94px;
  }

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

  .footer-main p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.75rem;
  }

  h2,
  .architecture-intro h2,
  .real-proof-copy h2,
  .fit-title h2,
  .faq-heading h2,
  .apply-copy h2 {
    font-size: 2.35rem;
  }

  p,
  li,
  dd,
  input,
  textarea {
    font-size: 1rem;
  }

  .hero {
    height: calc(100svh - 104px);
    min-height: 560px;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  .hero-copy::before {
    inset: auto -16px 0;
    height: 78%;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 18px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-actions .text-link {
    font-size: 0.9rem;
  }

  .proof-strip strong {
    font-size: 1.45rem;
  }

  .proof-strip span {
    font-size: 0.76rem;
  }

  .kinetic-track span {
    font-size: 1.75rem;
  }

  .architecture-steps article {
    grid-template-columns: 42px 1fr;
  }

  .classroom-photo {
    aspect-ratio: 4 / 3;
  }

  .classroom-photo img {
    object-position: 54% center;
  }

  .classroom-photo figcaption {
    right: 14px;
    left: 14px;
    bottom: 12px;
  }

  .classroom-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .real-proof-photo img {
    aspect-ratio: 4 / 3;
  }

  .route-list article {
    grid-template-columns: 1fr;
  }

  .route-list p {
    grid-column: 1;
  }

  .campus-gallery,
  .fit-columns,
  .field-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .gallery-tall img {
    aspect-ratio: 4 / 3;
    object-position: center 42%;
  }

  .faq-list details p {
    padding-right: 0;
  }

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

  .footer-main {
    gap: 26px;
  }

  .footer-main p {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-main > div {
    justify-items: start;
  }

  .footer-meta {
    gap: 20px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .whatsapp-float span {
    display: none;
  }
}

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


/* Mobile hero: keep the full opening image visible and move copy onto a readable surface. */
@media (max-width: 820px) {
  .hero {
    display: grid;
    height: auto;
    min-height: 0;
    max-height: none;
    grid-template-rows: auto auto;
    overflow: hidden;
    background: var(--paper);
  }

  .hero-media {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center;
  }

  .hero-copy {
    z-index: 2;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    margin: -18px 0 0;
    padding: 28px clamp(20px, 6vw, 42px) 58px;
    background: linear-gradient(
      180deg,
      rgba(243, 238, 232, 0.88) 0,
      rgba(243, 238, 232, 0.97) 48px,
      var(--paper) 100%
    );
    backdrop-filter: blur(8px);
  }

  .hero-copy::before {
    display: none;
  }

  .hero-copy .eyebrow {
    max-width: 34rem;
    margin-bottom: 16px;
    color: var(--moss-deep);
  }

  .hero-actions {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .hero-media {
    aspect-ratio: 16 / 9;
  }

  .hero-copy {
    margin-top: -14px;
    padding: 24px 20px 48px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 14px;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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