:root {
  --navy-950: #061c30;
  --navy-900: #082943;
  --navy-800: #0b365d;
  --brand-blue: #165d9c;
  --brand-blue-dark: #104b80;
  --brand-blue-soft: #eaf1f6;
  --gold: #d4a84b;
  --gold-light: #f0d88f;
  --cream: #f7f4ed;
  --white: #ffffff;
  --ink: #102535;
  --ink-soft: #566977;
  --border: #d6e0e7;
  --surface: #ffffff;
  --danger: #b42318;
  --shadow-sm: 0 8px 30px rgba(6, 28, 48, 0.08);
  --shadow-lg: 0 24px 80px rgba(6, 28, 48, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-heading: "Songti SC", STSong, "Noto Serif CJK SC", serif;
  --font-body: "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --container: 1180px;
  --header-height: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  min-height: 44px;
  padding: 10px 16px;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: env(safe-area-inset-top);
  color: var(--white);
  transition: background-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(6, 28, 48, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.menu-visible {
  background: var(--navy-950);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, 1320px);
  min-height: var(--header-height);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 10px;
}

.brand img {
  width: 40px;
  height: 43px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: none;
}

.menu-button,
.dialog-toolbar button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.menu-button:active,
.dialog-toolbar button:active {
  transform: scale(0.96);
}

.menu-button svg,
.dialog-toolbar svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.mobile-menu {
  position: fixed;
  top: calc(var(--header-height) + env(safe-area-inset-top));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  height: calc(100dvh - var(--header-height) - env(safe-area-inset-top));
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  overflow-y: auto;
  padding: 28px 20px calc(28px + env(safe-area-inset-bottom));
  background: var(--navy-950);
  overscroll-behavior: contain;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 56px;
  gap: 16px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  font-weight: 600;
}

.mobile-menu a span {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  min-height: max(720px, 100dvh);
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  isolation: isolate;
}

.photo-wall {
  position: absolute;
  inset: -10% -12%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  transform: rotate(-2deg) scale(1.08);
  opacity: var(--hero-wall-opacity, 1);
  will-change: opacity;
}

.photo-column {
  min-width: 0;
  overflow: hidden;
}

.photo-column:nth-child(n + 4) {
  display: none;
}

.photo-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: photo-up var(--duration) linear var(--phase) infinite;
}

.photo-column.is-down .photo-track {
  animation-name: photo-down;
}

.photo-track img {
  width: 100%;
  height: 47dvh;
  min-height: 320px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

@keyframes photo-up {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, calc(-50% - 4px), 0); }
}

@keyframes photo-down {
  from { transform: translate3d(0, calc(-50% - 4px), 0); }
  to { transform: translate3d(0, 0, 0); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 28, 48, 0.72) 0%, rgba(6, 28, 48, 0.45) 32%, rgba(6, 28, 48, 0.78) 100%),
    radial-gradient(circle at 52% 43%, rgba(6, 28, 48, 0.18), rgba(6, 28, 48, 0.72) 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(720px, 100dvh);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100% - 40px, 920px);
  margin-inline: auto;
  padding: calc(var(--header-height) + 70px) 0 110px;
  text-align: center;
  opacity: var(--hero-content-opacity, 1);
  transform: translate3d(0, var(--hero-content-shift, 0), 0) scale(var(--hero-content-scale, 1));
  transform-origin: 50% 42%;
  will-change: opacity, transform;
}

.hero-mark {
  display: grid;
  width: 76px;
  height: 82px;
  margin-bottom: 20px;
  place-items: center;
}

.hero-mark img {
  width: 76px;
  height: 82px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--gold-light);
}

.hero h1,
.section-heading h2,
.gear-intro h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 {
  font-size: clamp(3.35rem, 15vw, 6.8rem);
  line-height: 1.04;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.26);
}

.hero-lead {
  max-width: 30rem;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 140ms ease;
}

.button:active {
  transform: scale(0.97);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-light);
}

.scroll-cue {
  position: absolute;
  bottom: max(68px, calc(env(safe-area-inset-bottom) + 60px));
  left: 50%;
  z-index: 3;
  display: flex;
  min-width: 44px;
  min-height: 64px;
  align-items: center;
  flex-direction: column;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.24em;
}

.scroll-cue i {
  position: relative;
  width: 14px;
  height: 36px;
  margin-top: 8px;
  animation: cue-pulse 1.6s ease-in-out 3 forwards;
}

.scroll-cue i::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 27px;
  background: linear-gradient(var(--gold), rgba(212, 168, 75, 0.38));
  content: "";
  transform: translateX(-50%);
}

.scroll-cue i::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

@keyframes cue-pulse {
  0% { opacity: 0.42; transform: translateY(-3px); }
  50% { opacity: 1; transform: translateY(3px); }
  100% { opacity: 0.78; transform: translateY(0); }
}

.section,
.welcome-letter {
  position: relative;
  padding: 88px 0;
}

.intro-panel {
  z-index: 2;
  margin-top: -42px;
  padding-top: 118px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -24px 64px rgba(3, 18, 31, 0.42);
}

.intro-threshold {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 40px), 1180px);
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.intro-threshold i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(212, 168, 75, 0.72), rgba(255, 255, 255, 0.08));
}

.section-dark,
.section-navy {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.section-dark::before,
.section-navy::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}

.welcome-layout {
  position: relative;
  z-index: 1;
}

.section-heading h2,
.gear-intro h2 {
  color: var(--ink);
  font-size: clamp(2.45rem, 10vw, 5.3rem);
  line-height: 1.14;
}

.section-dark .section-heading h2,
.section-navy .section-heading h2 {
  color: var(--white);
}

.section-dark .eyebrow,
.section-navy .eyebrow {
  color: var(--gold);
}

.welcome-copy {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.welcome-copy p,
.section-intro,
.cohort-copy p {
  margin: 0;
}

.welcome-copy p + p,
.section-intro + .section-intro,
.cohort-copy p + p {
  margin-top: 16px;
}

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

.section-white {
  background: var(--white);
}

.section-blue {
  background: var(--brand-blue);
  color: var(--white);
}

.section-intro {
  max-width: 48rem;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.section-navy .section-intro,
.section-blue .section-intro,
.gear-section .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.college-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 48px;
}

.college-gallery figure,
.cohort-image,
.split-gallery {
  margin: 0;
}

.college-gallery figure {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.college-gallery .gallery-main {
  grid-column: 1 / -1;
  min-height: 240px;
}

.college-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.college-gallery figure:hover img {
  transform: scale(1.025);
}

.college-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(6, 28, 48, 0.76);
  color: var(--white);
  font-size: 13px;
  line-height: 1.45;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 56px 0;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  width: 1px;
  background: var(--border);
  content: "";
}

.timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 0 0 24px 24px;
}

.timeline div:last-child {
  padding-bottom: 0;
}

.timeline div::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 1px var(--brand-blue);
  content: "";
}

.timeline strong {
  color: var(--brand-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
}

.timeline span {
  color: var(--ink-soft);
  font-size: 14px;
}

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

.stat-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
}

.stat-value {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.stat-value strong {
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 12vw, 4.8rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-value small {
  padding-bottom: 5px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
}

.stat-card > span {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.practice-system {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: var(--white);
}

.practice-image {
  display: grid;
  min-width: 0;
  padding: 20px 12px;
  place-items: center;
  background: var(--white);
}

.practice-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.practice-system figcaption {
  padding: 28px 22px 30px;
}

.practice-system .eyebrow {
  color: var(--gold-light);
}

.practice-system h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 7vw, 2.5rem);
  line-height: 1.25;
}

.practice-system figcaption > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.practice-system ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.practice-system li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.practice-system li strong {
  color: var(--gold-light);
  font-size: 13px;
}

.practice-system li span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.support-layout {
  position: relative;
  z-index: 1;
}

.support-list {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.support-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.support-list summary {
  display: grid;
  min-height: 64px;
  grid-template-columns: 32px 1fr 28px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.support-list summary span {
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.support-list summary svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 220ms ease;
}

.support-list details[open] summary svg {
  transform: rotate(180deg);
}

.support-list details p {
  margin: 0;
  padding: 0 36px 22px 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.support-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
}

.support-gallery figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.support-media {
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  overflow: hidden;
}

.support-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-gallery figcaption {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  padding: 11px 10px 13px;
}

.support-gallery figcaption strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.45;
}

.support-gallery figcaption span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.55;
}

.cohort-hero {
  display: grid;
  gap: 36px;
}

.cohort-number {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 38px 0 0;
}

.cohort-number strong {
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: clamp(4.8rem, 23vw, 9rem);
  font-variant-numeric: tabular-nums;
  line-height: 0.8;
}

.cohort-number span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.cohort-image {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--brand-blue-soft);
}

.cohort-image img {
  width: 100%;
  height: auto;
}

.cohort-copy {
  max-width: 52rem;
  margin: 42px 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

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

.data-grid article {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.data-grid article > span {
  color: var(--ink-soft);
  font-size: 12px;
}

.data-grid article > strong {
  margin: auto 0 7px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.data-grid strong i {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}

.data-grid strong small {
  margin-left: 3px;
  font-family: var(--font-body);
  font-size: 13px;
}

.data-grid article > small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
}

.data-grid .date-range {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 4px;
  font-size: clamp(1.28rem, 5.8vw, 2.05rem);
}

.data-grid .date-range b {
  font: inherit;
}

.data-grid .date-range b:first-child {
  grid-column: 1 / -1;
}

.split-gallery {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.split-gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.cohort .button {
  width: 100%;
  margin-top: 28px;
}

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

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--navy-950);
  color: var(--white);
}

.section-blue .section-heading h2,
.section-blue .cohort-number strong {
  color: var(--white);
}

.section-blue .eyebrow {
  color: var(--gold-light);
}

.section-blue .cohort-number span,
.section-blue .cohort-copy {
  color: rgba(255, 255, 255, 0.72);
}

.graduate-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.graduate-grid article > span,
.graduate-grid article > small {
  color: rgba(255, 255, 255, 0.68);
}

.graduate-grid article > strong {
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--brand-blue-dark);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--gold-light);
  color: var(--navy-950);
}

.life-map-feature {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  padding: 0 0 32px;
  border-bottom: 1px solid var(--border);
}

.life-map-media {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--brand-blue-soft);
}

.life-map-media button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.life-map-media img,
.life-story img {
  width: 100%;
  height: auto;
}

.life-story-copy > span {
  color: var(--brand-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.life-story-copy h3 {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 7vw, 2.5rem);
  line-height: 1.25;
}

.life-story-copy p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.life-stories {
  display: grid;
  gap: 0;
}

.life-story {
  display: grid;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.life-story figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--brand-blue-soft);
}

.campus-map-feature {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.campus-map-media {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.campus-map-media button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.campus-map-media img {
  width: 100%;
  height: auto;
}

.campus-map-copy > span,
.panel-kicker {
  color: var(--brand-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.campus-map-copy h3,
.life-panel h3 {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 7vw, 2.5rem);
  line-height: 1.25;
}

.campus-map-copy p,
.life-panel-header > p,
.panel-feature header > p:last-child,
.travel-layout > div > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.map-key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.map-key-points i {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 12px;
  font-style: normal;
}

.life-guide {
  margin-top: 48px;
}

.life-panel {
  padding: 24px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  animation: life-panel-in 240ms var(--ease);
}

.life-panel[hidden] { display: none; }

.life-sections {
  margin-top: 48px;
}

.life-chapter {
  padding: 44px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  animation: none;
}

.life-chapter:first-child {
  padding-top: 0;
}

.life-chapter:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.chapter-label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.1;
  white-space: nowrap;
}

.chapter-label span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

@keyframes life-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.life-panel-header {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.life-panel-header p,
.panel-kicker { margin: 0; }

.life-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-bottom: 24px;
}

.housing-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
}

.housing-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.housing-card figure {
  position: relative;
  display: grid;
  margin: 0;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: var(--brand-blue-soft);
}

.housing-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.life-media-grid figure,
.panel-feature figure,
.travel-layout figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--brand-blue-soft);
}

.life-media-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.life-media-grid figcaption,
.housing-card figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(6, 28, 48, 0.82);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.housing-card figcaption {
  display: none;
}

.housing-detail {
  padding: 0 14px;
  border-top: 1px solid var(--border);
}

.guide-details { border-top: 1px solid var(--border); }
.guide-details details { border-bottom: 1px solid var(--border); }

.guide-details summary {
  display: grid;
  min-height: 64px;
  grid-template-columns: minmax(0, 1fr) auto 14px;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

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

.guide-details summary::after {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.guide-details details[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }

.guide-details summary span {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}

.guide-details summary small {
  color: var(--ink-soft);
  font-size: 11px;
  text-align: right;
}

.guide-details details > div { padding: 0 22px 18px 0; }

.guide-details details p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.guide-details details p + p { margin-top: 7px; }

.guide-details.housing-detail summary {
  min-height: 88px;
  grid-template-columns: minmax(0, 1fr) auto 14px;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 10px;
  row-gap: 4px;
  padding: 12px 0;
}

.guide-details.housing-detail summary span {
  grid-column: 1;
  grid-row: 1;
}

.guide-details.housing-detail summary small {
  grid-column: 1;
  grid-row: 2;
  padding: 0;
  text-align: left;
}

.guide-details.housing-detail summary::after {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: center;
}

.housing-detail .detail-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.housing-detail .detail-action i {
  font-style: normal;
}

.housing-detail .when-open,
.housing-detail details[open] .when-closed {
  display: none;
}

.housing-detail details[open] .when-open {
  display: inline;
}

.service-feature {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--brand-blue-soft);
}

.service-feature figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.service-feature img {
  display: block;
  width: 100%;
  height: auto;
}

.service-feature > div {
  align-self: center;
  padding: 0 18px 20px;
}

.service-feature strong {
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 19px;
}

.service-feature p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.panel-tip {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 22px;
  padding: 15px 16px;
  border-left: 3px solid var(--gold);
  background: var(--brand-blue-soft);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.panel-tip strong { color: var(--navy-950); }

.panel-feature,
.travel-layout {
  display: grid;
  gap: 24px;
}

.panel-feature { margin-bottom: 24px; }

.panel-feature img,
.travel-layout figure img {
  display: block;
  width: 100%;
  height: auto;
}

.metro-photo {
  aspect-ratio: 4 / 3;
  background: var(--brand-blue-soft);
}

.travel-layout .metro-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.arrival-route {
  display: grid;
  gap: 6px;
  margin: 22px 0 0 !important;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.arrival-route strong {
  color: var(--brand-blue);
  font-size: 12px;
}

.arrival-route span {
  color: var(--navy-950);
  font-size: 14px;
  line-height: 1.75;
}

.travel-layout ul { margin: 22px 0 0; padding: 0; list-style: none; }

.travel-layout li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.travel-layout li strong { color: var(--navy-950); }

.zoom-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 28, 48, 0.82);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.life-note {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(180, 35, 24, 0.18);
  border-radius: 12px;
  background: rgba(180, 35, 24, 0.045);
  color: #6d2b25;
}

.life-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.life-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--brand-blue-dark);
  font-weight: 700;
}

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

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

.gear-section {
  overflow: hidden;
  background: var(--brand-blue-dark);
  color: var(--white);
}

.gear-pattern {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  border: 64px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.022), 0 0 0 90px rgba(255, 255, 255, 0.015);
}

.gear-layout,
.gear-questions,
.qa-examples,
.ai-disclaimer {
  position: relative;
  z-index: 1;
}

.gear-intro h2 {
  color: var(--white);
}

.gear-intro .eyebrow {
  color: var(--gold-light);
}

.status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 4px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(240, 216, 143, 0.12);
}

.button-primary {
  width: 100%;
  margin-top: 28px;
  background: var(--gold);
  color: var(--navy-950);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-light);
}

.gear-demo {
  position: relative;
  margin-top: 56px;
  padding-top: 52px;
}

.gear-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 112px;
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.24));
}

.chat-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 86px 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(6, 28, 48, 0.38);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.chat-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.65;
}

.chat-bubble.user {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: var(--white);
  color: var(--ink);
}

.chat-bubble.bot {
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  background: #cdeeff;
  color: var(--navy-950);
}

.chat-bubble strong {
  display: block;
  margin-bottom: 3px;
}

.gear-questions {
  margin-top: 64px;
}

.gear-questions h3 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 24px;
}

.question-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.question-chips a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.question-chips a:hover,
.question-chips a:focus-visible {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--navy-950);
}

.qa-examples {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.qa-examples article {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.qa-examples span {
  color: var(--gold-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.qa-examples h3 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.45;
}

.qa-examples p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.75;
}

.ai-disclaimer {
  margin-top: 32px;
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(6, 28, 48, 0.28);
}

.ai-disclaimer strong {
  color: var(--gold-light);
  font-size: 13px;
}

.ai-disclaimer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.closing-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(112px, 16vh, 180px) 0;
  background: var(--navy-950);
  isolation: isolate;
}

.closing-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(transparent, #000 20%, #000 80%, transparent);
}

.closing-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 168, 75, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(22, 93, 156, 0.05), 0 0 0 150px rgba(22, 93, 156, 0.025);
  transform: translate(-50%, -50%);
}

.closing-message {
  position: relative;
  z-index: 1;
  padding: 42px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  color: var(--navy-950);
  text-align: center;
}

.js .closing-message.closing-reveal {
  opacity: 0;
  clip-path: inset(16% 5% 16% 5% round var(--radius-md));
  transform: translateY(52px) scale(0.96);
  transition: opacity 680ms var(--ease), transform 760ms var(--ease), clip-path 820ms var(--ease);
}

.js .closing-message.closing-reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 round var(--radius-md));
  transform: translateY(0) scale(1);
}

.closing-message .eyebrow {
  color: var(--brand-blue);
}

.closing-message h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 12vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.closing-message > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.closing-message > p:last-child {
  color: var(--brand-blue-dark);
}

.closing-message strong {
  display: block;
  margin-top: 6px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1.3em;
}

.site-footer {
  padding: 48px 0 calc(48px + env(safe-area-inset-bottom));
  background: var(--navy-950);
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 62px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 16px;
  letter-spacing: 0.06em;
}

.footer-brand span,
.site-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.image-dialog {
  width: min(94vw, 1180px);
  height: min(90dvh, 900px);
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.image-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.dialog-toolbar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.dialog-toolbar p {
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dialog-image-wrap {
  height: calc(100% - 64px);
  overflow: auto;
  overscroll-behavior: contain;
}

.dialog-image-wrap img {
  width: 100%;
  height: auto;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

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

@media (min-width: 600px) {
  .container {
    width: min(100% - 64px, var(--container));
  }

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

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

  .cohort .button,
  .button-primary {
    width: auto;
  }

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

  .media-three,
  .media-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .site-footer p {
    text-align: right;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    width: min(100% - 48px, 1320px);
  }

  .brand img {
    width: 46px;
    height: 49px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .photo-wall {
    inset: -12% -5%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    transform: rotate(-1.5deg) scale(1.06);
  }

  .photo-column:nth-child(n + 4) {
    display: block;
  }

  .photo-track {
    gap: 12px;
  }

  .photo-track img {
    height: 40dvh;
    min-height: 300px;
    border-radius: 10px;
  }

  .hero-content {
    align-items: flex-start;
    width: min(100% - 72px, 1180px);
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(5rem, 10vw, 8rem);
  }

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

  .hero-mark {
    width: 90px;
    height: 96px;
  }

  .hero-mark img {
    width: 78px;
    height: 83px;
  }

  .section,
  .welcome-letter {
    padding: 120px 0;
  }

  .welcome-layout,
  .support-layout,
  .gear-layout,
  .cohort-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 72px;
  }

  .welcome-copy,
  .gear-demo,
  .support-gallery {
    margin-top: 0;
  }

  .welcome-copy {
    font-size: 18px;
    align-self: center;
  }

  .heading-wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    column-gap: 72px;
  }

  .heading-wide .eyebrow,
  .heading-wide h2 {
    grid-column: 1;
  }

  #college-title {
    font-size: clamp(2.45rem, 5.2vw, 4.35rem);
    white-space: nowrap;
  }

  .heading-wide .section-intro {
    grid-column: 2;
  }

  .heading-wide .heading-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: clamp(48px, 5vw, 72px);
  }

  .heading-wide .heading-copy .section-intro {
    grid-column: auto;
  }

  .heading-wide h2 + .section-intro {
    grid-row: 1 / span 2;
    align-self: end;
    margin-top: 0;
  }

  .heading-wide .section-intro + .section-intro {
    margin-top: 20px;
  }

  .college-gallery {
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-rows: 260px 260px;
    gap: 14px;
    margin-top: 72px;
  }

  .college-gallery .gallery-main {
    grid-row: 1 / span 2;
    grid-column: auto;
    min-height: 0;
  }

  .timeline {
    grid-template-columns: repeat(5, 1fr);
    margin: 72px 0;
  }

  .timeline::before {
    top: 6px;
    right: 8%;
    bottom: auto;
    left: 1%;
    width: auto;
    height: 1px;
  }

  .timeline div {
    display: flex;
    grid-template-columns: none;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px 0 0;
  }

  .timeline div::before {
    top: 0;
    left: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .stat-card {
    min-height: 200px;
    padding: 24px;
  }

  .practice-system {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: stretch;
    margin-top: 56px;
  }

  .practice-image {
    padding: 30px 20px;
  }

  .practice-system figcaption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 32px;
  }

  .support-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  }

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

  .support-gallery figcaption {
    padding: 15px 16px 17px;
  }

  .support-gallery figcaption strong {
    font-size: 14px;
  }

  .support-gallery figcaption span {
    font-size: 12px;
  }

  .cohort-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    align-items: center;
  }

  .cohort-reverse .section-heading {
    order: 2;
  }

  .cohort-reverse .cohort-image {
    order: 1;
  }

  .cohort-number span {
    font-size: 14px;
  }

  .cohort-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 64px 0;
    font-size: 17px;
  }

  .cohort-copy p + p {
    margin-top: 0;
  }

  .data-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .data-grid article {
    min-height: 190px;
    padding: 22px;
  }

  .data-grid .date-range {
    display: flex;
    gap: 3px;
    font-size: clamp(1.15rem, 1.7vw, 1.75rem);
  }

  .split-gallery {
    gap: 14px;
    margin-top: 52px;
  }

  .cohort .button {
    margin-top: 36px;
  }

  .campus-map-feature {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    align-items: center;
    gap: 48px;
    margin-top: 64px;
    padding-bottom: 52px;
  }

  .life-panel {
    padding: 36px;
  }

  .life-chapter {
    padding: 72px 0;
  }

  .life-chapter:first-child {
    padding-top: 0;
  }

  .life-chapter:last-child {
    padding-bottom: 0;
  }

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

  .service-feature {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    align-items: stretch;
    gap: 0;
  }

  .service-feature figure {
    min-height: 250px;
  }

  .service-feature img {
    height: 100%;
    object-fit: cover;
  }

  .service-feature > div {
    padding: 28px 32px;
  }

  .media-three figure:last-child {
    width: min(68%, 700px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .life-panel-header {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 32px;
  }

  .panel-feature,
  .travel-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 40px;
  }

  .dining-details,
  .study-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .life-story {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: center;
    gap: 52px;
    padding: 52px 0;
  }

  .life-story:nth-child(even) figure {
    order: 2;
  }

  .life-story figure {
    display: grid;
    max-height: 620px;
    place-items: center;
  }

  .life-story img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
  }

  .life-note {
    max-width: 720px;
  }

  .gear-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(350px, 0.72fr);
    align-items: center;
  }

  .gear-demo {
    padding-top: 0;
  }

  .gear-avatar {
    top: -58px;
    left: 24px;
    width: 130px;
    transform: none;
  }

  .chat-stack {
    padding: 84px 24px 26px;
  }

  .gear-questions {
    margin-top: 96px;
  }

  .qa-examples {
    margin-top: 40px;
  }

  .ai-disclaimer {
    max-width: 760px;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .desktop-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    transition: color 180ms ease, background 180ms ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible,
  .desktop-nav a[aria-current="true"] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .menu-button {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .section,
  .welcome-letter {
    padding: 148px 0;
  }

  .life-story-copy p {
    max-width: 26rem;
  }
}

@media (min-width: 1440px) {
  .hero-content {
    width: min(100% - 120px, 1320px);
  }

  .hero h1 {
    font-size: 8.4rem;
  }

  .photo-wall {
    inset-inline: -3%;
  }
}

@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;
  }

  .photo-track {
    animation: none !important;
  }

  .hero {
    --hero-content-opacity: 1 !important;
    --hero-content-shift: 0 !important;
    --hero-content-scale: 1 !important;
    --hero-wall-opacity: 1 !important;
  }

  .photo-column:nth-child(even) .photo-track {
    transform: translateY(-15%);
  }

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

  .js .closing-message.closing-reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
