:root {
  color-scheme: dark;
  --dark: #0c1219;
  --panel: #16202b;
  --paper: #f4f3ef;
  --paper-line: #d8d6cf;
  --white: #f4f6f8;
  --text: #e8ecef;
  --muted: #9fb0be;
  --quiet: #7d8b99;
  --blue: #5fa8e0;
  --blue-bright: #8cc3ee;
  --navy: #0f4c81;
  --hairline: rgba(255, 255, 255, 0.14);
  --display: "Anton", Impact, sans-serif;
  --body: "Archivo", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--dark);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

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

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

::selection {
  background: var(--navy);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--dark);
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-160%);
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 72px;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
  background: rgba(12, 18, 25, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  width: 210px;
  align-items: center;
  padding: 9px 26px;
  border-right: 1px solid var(--hairline);
}

.brand img {
  width: 155px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: stretch;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid var(--hairline);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  background: rgba(95, 168, 224, 0.08);
  color: #fff;
}

.nav-links .nav-login {
  background: var(--blue);
  color: var(--dark);
  font-weight: 500;
}

.nav-links .nav-login:hover {
  background: var(--blue-bright);
  color: var(--dark);
}

.menu-toggle {
  display: none;
  border: 0;
  border-left: 1px solid var(--hairline);
  background: transparent;
  color: var(--text);
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-lines {
  position: relative;
  margin-left: 12px;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  border-bottom: 1px solid var(--hairline);
}

.hero-copy {
  display: flex;
  min-height: 670px;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(64px, 7vw, 96px) clamp(32px, 5vw, 72px) 64px;
  border-right: 1px solid var(--hairline);
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
}

.eyebrow.ink {
  color: var(--navy);
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
  animation: rise 700ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-eyebrow i {
  color: #4a5866;
  font-style: normal;
}

.hero h1,
.section-heading h2,
.model h2,
.about h2,
.contact h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 7ch;
  margin-bottom: 34px;
  font-size: clamp(76px, 8vw, 118px);
  animation: rise 800ms 100ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero h1 em,
.model h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lede {
  max-width: 34em;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  animation: rise 800ms 220ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.button-pair,
.contact-links {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 1px;
  border: 1px solid var(--hairline);
  background: var(--hairline);
}

.button-pair {
  animation: rise 800ms 340ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--dark);
  color: var(--text);
  cursor: pointer;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button:hover {
  background: var(--panel);
  color: #fff;
}

.button-primary {
  background: var(--blue);
  color: var(--dark);
}

.button-primary:hover {
  background: var(--blue-bright);
  color: var(--dark);
}

.hero-media,
.about-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  margin: 0;
}

.hero-media::after,
.about-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.25), rgba(12, 18, 25, 0.56));
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-media img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.84);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-media:hover img,
.about-media:hover img {
  transform: scale(1.035);
}

.hero-media figcaption,
.about-media figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  max-width: calc(100% - 48px);
  background: rgba(12, 18, 25, 0.78);
  color: rgba(232, 236, 239, 0.9);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
}

.stats > div {
  padding: 27px clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--hairline);
}

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

.stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.stats span {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  min-height: 74px;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.ticker-label {
  position: relative;
  z-index: 2;
  display: flex;
  width: 230px;
  flex: 0 0 230px;
  align-items: center;
  margin: 0;
  border-right: 1px solid var(--hairline);
  background: var(--dark);
  color: var(--blue);
  padding: 0 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker-window {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.logo-track,
.audience-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  will-change: transform;
}

.logo-track {
  gap: 1px;
  background: var(--hairline);
  animation: ticker 90s linear infinite;
}

.logo-tile {
  display: grid;
  width: 158px;
  height: 73px;
  flex: 0 0 158px;
  place-items: center;
  background: #fff;
  padding: 13px 19px;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.light-section {
  background: var(--paper);
  color: #16202b;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(360px, 1.2fr);
  align-items: end;
  gap: 64px;
  padding: 88px clamp(32px, 5vw, 72px) 70px;
  border-bottom: 1px solid var(--paper-line);
}

.section-heading h2 {
  color: #16202b;
  font-size: clamp(58px, 6vw, 78px);
}

.section-heading > div,
.section-heading > p {
  max-width: 48em;
  justify-self: end;
}

.section-heading > div > p:last-child,
.section-heading > p {
  margin: 12px 0 0;
  color: #48505a;
  font-size: 17px;
  line-height: 1.65;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
  padding: 56px clamp(32px, 5vw, 72px) 64px;
}

.program-card:first-child {
  border-right: 1px solid var(--paper-line);
}

.program-card .index {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
}

.program-card h3,
.book-card h3 {
  margin: 0;
  color: #16202b;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.program-card > p:not(.index),
.book-card > p:not(.eyebrow) {
  margin: 0;
  color: #48505a;
  font-size: 16px;
  line-height: 1.65;
}

.program-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--paper-line);
}

.program-points li:last-child {
  border-bottom: 1px solid var(--paper-line);
}

.program-points li > span {
  color: var(--navy);
  padding-top: 4px;
  font-family: var(--mono);
  font-size: 12px;
}

.program-points p {
  margin: 0;
  color: #48505a;
  font-size: 15px;
  line-height: 1.65;
}

.program-points strong {
  color: #16202b;
}

.dark-button {
  width: fit-content;
  margin-top: auto;
  background: #16202b;
  color: var(--paper);
}

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

.audience-ticker {
  min-height: 62px;
  border-top: 1px solid var(--hairline);
}

.audience-track {
  gap: 28px;
  padding-left: 28px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
}

.audience-track i {
  color: #2a3642;
  font-style: normal;
}

.ticker:hover .logo-track,
.ticker:hover .audience-track {
  animation-play-state: paused;
}

.model {
  border-bottom: 1px solid var(--hairline);
}

.model-intro {
  padding: 88px clamp(32px, 5vw, 72px) 66px;
}

.model h2 {
  max-width: 15em;
  margin-top: 19px;
  font-size: clamp(54px, 5.5vw, 76px);
  line-height: 1;
}

.model-intro > p:last-child {
  max-width: 51em;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.model-grid article {
  padding: 40px clamp(28px, 4vw, 54px) 52px;
  border-right: 1px solid var(--hairline);
  transition: background 180ms ease;
}

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

.model-grid article:hover {
  background: rgba(95, 168, 224, 0.05);
}

.model-grid span {
  display: block;
  margin-bottom: 14px;
  color: #25415c;
  font-family: var(--display);
  font-size: 88px;
  line-height: 1;
}

.model-grid h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.book-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 17px;
  padding: 48px clamp(30px, 4vw, 54px) 56px;
  border-right: 1px solid var(--paper-line);
}

.book-card:last-child {
  border-right: 0;
}

.book-art {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  padding: 24px;
}

.book-art img {
  max-width: 210px;
  max-height: 280px;
  box-shadow: 14px 14px 0 var(--navy);
}

.book-card h3 {
  font-size: 26px;
}

.book-card a,
.text-button {
  width: fit-content;
  margin-top: auto;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.book-card a:hover,
.text-button:hover {
  color: #1870ba;
}

.testimonial {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  margin: 0;
  padding: 64px clamp(32px, 5vw, 72px) 76px;
  border-top: 1px solid var(--paper-line);
}

.testimonial > span {
  color: var(--navy);
  font-family: var(--display);
  font-size: 120px;
  line-height: 0.7;
}

.testimonial blockquote {
  max-width: 35em;
  margin: 0 0 20px;
  color: #16202b;
  font-size: 26px;
  font-style: italic;
  line-height: 1.45;
}

.testimonial figcaption {
  color: #48505a;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.testimonial figcaption strong {
  color: var(--navy);
  font-weight: 500;
}

.about {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.about-media {
  border-right: 1px solid var(--hairline);
}

.about-media img {
  position: absolute;
  inset: 0;
  object-position: center 18%;
}

.about-copy {
  padding: 88px clamp(32px, 5vw, 72px);
}

.about h2 {
  margin: 18px 0 28px;
  font-size: clamp(54px, 5vw, 72px);
  line-height: 1;
}

.bio {
  display: flex;
  max-width: 50em;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.bio p {
  margin: 0;
}

.credentials {
  max-width: 50em;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
}

.credentials li:last-child {
  border-bottom: 1px solid var(--hairline);
}

.credentials span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials p {
  margin: 0;
  color: #c6d0d9;
  font-size: 15px;
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  border-bottom: 1px solid var(--hairline);
}

.contact-intro {
  padding: 96px clamp(32px, 5vw, 72px) 82px;
  border-right: 1px solid var(--hairline);
}

.contact h2 {
  margin: 20px 0 30px;
  font-size: clamp(72px, 7vw, 104px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 39em;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-links {
  max-width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding: 64px clamp(28px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.018);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label,
.inquiry-modal label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span,
.inquiry-modal label > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.inquiry-modal input,
.inquiry-modal select,
.inquiry-modal textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: var(--panel);
  color: var(--text);
  padding: 13px 14px;
  font-size: 15px;
}

.contact-form textarea,
.inquiry-modal textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.inquiry-modal input:focus,
.inquiry-modal select:focus,
.inquiry-modal textarea:focus {
  border-color: var(--blue);
  outline: 1px solid var(--blue);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-footer p {
  margin: 0;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 72px);
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.inquiry-modal {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: var(--dark);
  color: var(--text);
  padding: 0;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.inquiry-modal::backdrop {
  background: rgba(12, 18, 25, 0.84);
  backdrop-filter: blur(6px);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 28px;
  border-bottom: 1px solid var(--hairline);
}

.modal-head button {
  border: 0;
  background: transparent;
  color: var(--quiet);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 26px;
  line-height: 1;
}

.modal-head button:hover {
  color: #fff;
}

.inquiry-modal form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px 28px;
}

.inquiry-modal h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .nav-links a {
    padding-inline: 15px;
    font-size: 10.5px;
  }

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

  .hero-copy {
    min-height: 620px;
  }

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

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

  .site-nav {
    min-height: 68px;
  }

  .brand {
    width: 184px;
    padding: 7px 20px;
  }

  .brand img {
    width: 142px;
    height: 50px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    border-bottom: 1px solid var(--hairline);
    background: rgba(12, 18, 25, 0.98);
  }

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

  .nav-links a {
    min-height: 54px;
    padding: 0 24px;
    border-top: 1px solid var(--hairline);
    border-left: 0;
  }

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

  .hero-copy {
    min-height: auto;
    border-right: 0;
  }

  .hero-media {
    min-height: min(78vw, 610px);
    border-top: 1px solid var(--hairline);
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .section-heading > div,
  .section-heading > p {
    justify-self: start;
  }

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

  .program-card:first-child,
  .book-card {
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .book-card:last-child {
    border-bottom: 0;
  }

  .book-art {
    min-height: 270px;
  }

  .about-media {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .contact-intro {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
}

@media (max-width: 680px) {
  .hero-copy,
  .model-intro,
  .about-copy,
  .contact-intro,
  .contact-form {
    padding-inline: 24px;
  }

  .hero-copy {
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(68px, 23vw, 92px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .button-pair,
  .contact-links {
    width: 100%;
  }

  .button-pair .button,
  .contact-links .button {
    width: 100%;
  }

  .hero-media {
    min-height: 72vw;
  }

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

  .stats > div {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .stats > div:last-child {
    border-bottom: 0;
  }

  .ticker {
    display: block;
  }

  .ticker-label {
    width: 100%;
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    padding-inline: 24px;
  }

  .ticker-window {
    min-height: 72px;
  }

  .section-heading {
    padding: 68px 24px 48px;
  }

  .section-heading h2 {
    font-size: 60px;
  }

  .program-card,
  .book-card {
    padding: 44px 24px 52px;
  }

  .program-card h3 {
    font-size: 31px;
  }

  .program-points li {
    grid-template-columns: 20px 1fr;
  }

  .model h2 {
    font-size: 48px;
  }

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

  .model-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .model-grid article:last-child {
    border-bottom: 0;
  }

  .testimonial {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 54px 24px 64px;
  }

  .testimonial blockquote {
    font-size: 21px;
  }

  .about-media {
    min-height: 130vw;
  }

  .about h2 {
    font-size: 51px;
  }

  .contact h2 {
    font-size: 65px;
  }

  .field-row,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .field-row {
    display: grid;
  }

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

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

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    gap: 16px 22px;
  }
}

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

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