:root {
  --blue: #204080;
  --blue-deep: #122450;
  --gold: #f0c020;
  --gold-soft: #f7d95c;
  --red: #c01020;
  --ivory: #fff8ea;
  --paper: #fffdf7;
  --ink: #17233c;
  --muted: #667285;
  --white: #ffffff;
  --shadow: 0 28px 86px rgba(18, 36, 80, 0.2);
  --serif: "Songti SC", "Noto Serif SC", "SimSun", Georgia, serif;
  --sans: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

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

body.drawer-open {
  overflow: hidden;
}

body.scene-scrolling {
  overscroll-behavior: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(18, 36, 80, 0.08);
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.scene-rail {
  position: fixed;
  z-index: 65;
  top: 50%;
  left: clamp(18px, 3vw, 42px);
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-weight: 800;
  transform: translateY(-50%);
  mix-blend-mode: difference;
}

.scene-rail div {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.22);
}

.scene-rail i {
  display: block;
  width: 100%;
  height: 12.5%;
  background: var(--gold);
  transform-origin: top;
  transition: height 360ms ease;
}

.site-header {
  position: fixed;
  z-index: 70;
  top: 24px;
  left: clamp(18px, 4vw, 64px);
  right: clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 76px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 48px rgba(18, 36, 80, 0.16);
  backdrop-filter: blur(18px);
  transition: top 220ms ease, min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.compact {
  top: 12px;
  min-height: 64px;
  box-shadow: 0 14px 34px rgba(18, 36, 80, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

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

.brand strong {
  display: block;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 24px);
  flex: 1;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 240ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.nav-cta,
.button,
.floating-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease, background 220ms ease;
}

.nav-cta,
.button.primary,
.floating-apply {
  color: var(--blue-deep);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(240, 192, 32, 0.28);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta:hover,
.button:hover,
body.show-floating .floating-apply:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.menu-toggle,
.mobile-drawer {
  display: none;
}

.floating-apply {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 52px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

body.show-floating .floating-apply {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scene {
  position: relative;
  display: grid;
  align-items: center;
  --bg-scale: 1.06;
  --bg-y: 0px;
  min-height: 100svh;
  padding: clamp(112px, 13vh, 154px) clamp(28px, 7vw, 100px) clamp(48px, 7vh, 78px);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  isolation: isolate;
}

.scene-bg,
.scene-bg img,
.scene-shade {
  position: absolute;
  inset: 0;
}

.scene-bg {
  z-index: -3;
  overflow: hidden;
}

.scene-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--bg-y), 0) scale(var(--bg-scale));
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
}

.scene-bg.soft-bg img {
  filter: saturate(0.9) brightness(0.72);
}

.scene-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 36, 80, 0.9) 0%, rgba(18, 36, 80, 0.62) 48%, rgba(18, 36, 80, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 36, 80, 0.74) 0%, rgba(18, 36, 80, 0.06) 52%);
}

.bilingual-scene .scene-shade {
  background:
    linear-gradient(90deg, rgba(18, 36, 80, 0.94) 0%, rgba(18, 36, 80, 0.7) 46%, rgba(18, 36, 80, 0.34) 100%),
    linear-gradient(0deg, rgba(18, 36, 80, 0.7) 0%, rgba(18, 36, 80, 0.08) 56%);
}

.concept-scene {
  background: var(--blue-deep);
}

.concept-scene .scene-bg img {
  object-position: center center;
  filter: saturate(1.04) contrast(1.05) brightness(0.72);
}

.concept-scene .scene-shade {
  background:
    linear-gradient(90deg, rgba(8, 16, 40, 0.9) 0%, rgba(12, 26, 58, 0.72) 44%, rgba(12, 26, 58, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 12, 30, 0.82) 0%, rgba(8, 16, 40, 0.08) 58%);
}

.campus-scene {
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.96), rgba(255, 253, 247, 1)),
    repeating-linear-gradient(90deg, rgba(18, 36, 80, 0.04) 0 1px, transparent 1px 84px);
}

.life-scene {
  background: var(--blue-deep);
}

.life-scene .scene-bg img {
  object-position: center center;
  filter: saturate(1.08) contrast(1.06) brightness(0.82);
}

.life-scene .scene-shade {
  background:
    radial-gradient(circle at 70% 14%, rgba(240, 192, 32, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(8, 16, 40, 0.94) 0%, rgba(14, 25, 56, 0.74) 42%, rgba(12, 14, 24, 0.24) 100%),
    linear-gradient(0deg, rgba(6, 12, 30, 0.88) 0%, rgba(8, 14, 28, 0.16) 56%);
}

.scene-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.hero-layout,
.concept-layout,
.split-layout,
.course-layout,
.bilingual-layout,
.life-layout,
.campus-layout,
.care-layout,
.visit-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.78fr);
}

.hero-layout {
  align-items: end;
}

.concept-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.46fr);
  align-items: end;
  min-height: min(680px, calc(100svh - 216px));
}

.scene-copy {
  color: var(--blue-deep);
}

[data-theme="dark"] .scene-copy {
  color: var(--white);
}

.scene-copy > * {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: opacity, transform;
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scene.active .scene-copy > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scene.active .scene-copy > *:nth-child(2) {
  transition-delay: 80ms;
}

.scene.active .scene-copy > *:nth-child(3) {
  transition-delay: 160ms;
}

.scene.active .scene-copy > *:nth-child(4),
.scene.active .scene-copy > *:nth-child(5) {
  transition-delay: 240ms;
}

.scene.active .scene-copy > *:nth-child(6) {
  transition-delay: 320ms;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 800;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-weight: 900;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(62px, 9vw, 122px);
}

h2 {
  max-width: 760px;
  color: inherit;
  font-size: clamp(42px, 6.4vw, 82px);
}

.hero-mission {
  margin: 26px 0 0;
  color: var(--gold);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.18;
  text-wrap: balance;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: currentColor;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.74;
  opacity: 0.9;
}

[data-theme="dark"] .lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 30px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.stat-cluster,
.course-stack,
.speech-board,
.care-list,
.admission-form,
.mission-quote {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 820ms ease 180ms, transform 820ms ease 180ms;
}

.scene.active .stat-cluster,
.scene.active .course-stack,
.scene.active .speech-board,
.scene.active .care-list,
.scene.active .admission-form,
.scene.active .mission-quote {
  opacity: 1;
  transform: translateX(0);
}

.stat-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--shadow);
  color: var(--blue-deep);
  backdrop-filter: blur(18px);
}

.stat-cluster strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.stat-cluster span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: clamp(28px, 7vw, 100px);
  z-index: 3;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 14px;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 70px;
  margin: 12px auto 0;
  background: var(--gold);
  content: "";
  animation: scrollLine 1.8s ease-in-out infinite;
}

.scene-number {
  position: absolute;
  top: clamp(108px, 16vh, 150px);
  left: clamp(26px, 7vw, 100px);
  z-index: 0;
  color: rgba(192, 16, 32, 0.12);
  font-family: var(--serif);
  font-size: clamp(110px, 18vw, 250px);
  font-weight: 900;
  line-height: 0.75;
  pointer-events: none;
}

[data-theme="dark"] .scene-number {
  color: rgba(255, 255, 255, 0.1);
}

blockquote {
  margin: 38px 0 0;
  padding: 26px 30px;
  border-left: 6px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(18, 36, 80, 0.12);
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.24;
}

blockquote span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 13px;
}

.concept-copy {
  max-width: 860px;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
}

.concept-copy h2 {
  max-width: 880px;
}

.concept-copy .lead {
  max-width: 760px;
}

.concept-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 940px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(8, 16, 40, 0.36);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.concept-meta span {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.concept-meta span:last-child {
  border-right: 0;
}

.concept-meta strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.concept-meta em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

.mission-quote {
  align-self: end;
  justify-self: end;
  max-width: 410px;
  margin: 0;
  border-left-color: var(--gold);
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.26);
}

.image-composition,
.moment-grid,
.speech-board,
.campus-board {
  opacity: 0;
  clip-path: inset(9% 0 9% 0);
  transform: translateY(28px) scale(0.98);
  transition: opacity 900ms ease 180ms, clip-path 900ms ease 180ms, transform 900ms ease 180ms;
}

.scene.active .image-composition,
.scene.active .moment-grid,
.scene.active .speech-board,
.scene.active .campus-board {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

.image-composition {
  position: relative;
  min-height: min(62vh, 620px);
}

.image-panel {
  position: absolute;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel.large {
  inset: 0;
}

.image-panel.small {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 38%;
  border: 8px solid rgba(255, 253, 247, 0.96);
  box-shadow: 0 20px 58px rgba(18, 36, 80, 0.24);
}

.image-panel img,
.moment-grid img,
.speech-board img,
.campus-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-stack {
  display: grid;
  gap: 16px;
}

.course-stack article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.course-stack span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 900;
}

.course-stack p {
  margin: 16px 0 8px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 800;
}

.course-stack h3 {
  margin: 0;
  font-size: 30px;
}

.course-stack small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.bilingual-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.06fr);
}

.speech-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 32px;
}

.speech-points div {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.speech-points strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
}

.speech-points span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.speech-board {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 16px;
}

.speech-board figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.speech-board figure:first-child {
  grid-row: 1 / span 2;
}

.speech-board figure:first-child img {
  object-position: 38% center;
}

.speech-board figure::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgba(18, 36, 80, 0.86), transparent);
  content: "";
}

.speech-board figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 900;
}

.life-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.9fr);
}

.event-layout {
  align-items: end;
}

.event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
}

.event-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.moment-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 18px;
}

.moment-grid article {
  position: relative;
  min-height: 240px;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(18, 36, 80, 0.16);
  overflow: hidden;
}

.moment-grid article:first-child {
  grid-row: 1 / span 2;
}

.moment-grid article:nth-child(2) {
  grid-column: 2 / span 2;
}

.moment-grid article::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(18, 36, 80, 0.9), transparent);
  content: "";
}

.moment-grid span,
.moment-grid h3 {
  position: absolute;
  z-index: 1;
  left: 22px;
}

.moment-grid span {
  bottom: 62px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 900;
}

.moment-grid h3 {
  bottom: 22px;
  margin: 0;
  color: var(--white);
  font-size: 28px;
}

.event-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(176px, 0.72fr) minmax(220px, 1fr);
  gap: 16px;
  max-width: 620px;
  justify-self: end;
}

.event-grid article {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
}

.event-grid article:first-child,
.event-grid article:nth-child(2) {
  grid-row: auto;
  grid-column: auto;
}

.event-grid .event-summary {
  display: flex;
  grid-column: 1 / -1;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 176px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    linear-gradient(90deg, rgba(192, 16, 32, 0.34), rgba(240, 192, 32, 0.16));
  color: var(--white);
  backdrop-filter: blur(18px);
}

.event-grid .event-summary::after {
  display: none;
}

.event-grid .event-summary span,
.event-grid .event-summary h3 {
  position: static;
  left: auto;
  bottom: auto;
}

.event-grid .event-summary span {
  color: var(--gold);
  font-size: 22px;
}

.event-grid .event-summary h3 {
  margin-top: 8px;
  font-size: 34px;
}

.event-grid .event-summary p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.campus-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1.1fr);
}

.campus-board {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 18px;
}

.campus-board figure {
  position: relative;
  min-height: 0;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(18, 36, 80, 0.14);
  overflow: hidden;
}

.campus-board .main {
  grid-row: 1 / span 2;
}

.care-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-list li {
  padding: 24px;
  border-left: 5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.12);
}

.care-list strong {
  display: block;
  color: var(--blue-deep);
  font-size: 21px;
}

.care-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.visit-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
}

.visit-info {
  display: grid;
  gap: 18px;
  margin: 38px 0 0;
}

.visit-info div {
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}

.visit-info dt {
  color: var(--gold);
  font-weight: 900;
}

.visit-info dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.admission-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
  color: var(--blue-deep);
  backdrop-filter: blur(18px);
}

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

.admission-form span {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 850;
}

.admission-form input,
.admission-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 36, 80, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.admission-form input {
  min-height: 52px;
  padding: 0 16px;
}

.admission-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 14px 16px;
}

.admission-form input:focus,
.admission-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(32, 64, 128, 0.12);
}

.admission-form .invalid input,
.admission-form .invalid textarea {
  border-color: var(--red);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-size: 14px;
  line-height: 1.55;
}

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

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.45);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

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

  .site-header {
    top: 14px;
    min-height: 68px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .menu-toggle {
    display: grid;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--blue-deep);
    place-content: center;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--gold);
  }

  .mobile-drawer {
    position: fixed;
    z-index: 68;
    top: 96px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-drawer.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-drawer a {
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--blue-deep);
    font-weight: 750;
  }

  .scene {
    padding: 112px 24px 54px;
  }

  .hero-layout,
  .concept-layout,
  .split-layout,
  .course-layout,
  .bilingual-layout,
  .life-layout,
  .campus-layout,
  .care-layout,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    align-items: center;
  }

  .concept-layout {
    min-height: auto;
  }

  .concept-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .concept-meta span:nth-child(2) {
    border-right: 0;
  }

  .concept-meta span:nth-child(1),
  .concept-meta span:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mission-quote {
    justify-self: start;
    max-width: 520px;
  }

  .stat-cluster {
    max-width: 520px;
  }

  .image-composition {
    min-height: 460px;
  }

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

  .moment-grid,
  .speech-board,
  .campus-board {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-snap-type: y proximity;
  }

  .site-header {
    left: 12px;
    right: 12px;
    padding: 10px 12px;
  }

  .brand {
    gap: 9px;
  }

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

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

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

  .floating-apply {
    display: none;
  }

  .scene {
    min-height: 100svh;
    padding: 112px 22px 48px;
  }

  .scene-number {
    top: 94px;
    font-size: 108px;
  }

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

  h2 {
    font-size: clamp(35px, 11vw, 52px);
  }

  .hero-mission {
    max-width: 320px;
    font-size: clamp(25px, 8vw, 32px);
  }

  .lead {
    max-width: 330px;
    font-size: 17px;
    line-height: 1.68;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 34px;
  }

  .hero-tags {
    gap: 8px;
    max-width: 340px;
    margin-top: 24px;
  }

  .hero-tags span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .button {
    width: 100%;
  }

  .stat-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
  }

  .stat-cluster strong {
    font-size: 24px;
  }

  .stat-cluster span {
    font-size: 12px;
  }

  .scroll-cue {
    display: none;
  }

  blockquote {
    padding: 22px;
    font-size: 23px;
  }

  .concept-scene .scene-bg img {
    object-position: 53% center;
  }

  .concept-layout {
    gap: 24px;
  }

  .concept-meta {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .concept-meta span,
  .concept-meta span:nth-child(2) {
    border-right: 0;
  }

  .concept-meta span {
    padding: 14px 16px;
  }

  .concept-meta span:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .concept-meta strong {
    white-space: normal;
  }

  .mission-quote {
    max-width: 330px;
  }

  .image-composition {
    min-height: 340px;
  }

  .image-panel.large {
    inset: 0;
  }

  .image-panel.small {
    display: none;
  }

  .course-stack {
    grid-template-columns: 1fr;
  }

  .course-stack article {
    padding: 20px;
  }

  .course-stack h3 {
    font-size: 25px;
  }

  .moment-grid,
  .speech-board,
  .campus-board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .moment-grid article,
  .speech-board figure,
  .campus-board figure {
    min-height: 220px;
  }

  .moment-grid article:first-child,
  .moment-grid article:nth-child(2),
  .speech-board figure:first-child,
  .campus-board .main {
    grid-row: auto;
    grid-column: auto;
  }

  .speech-points {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .speech-board figcaption {
    font-size: 15px;
  }

  .care-list li {
    padding: 20px;
  }

  .visit-info {
    margin-top: 28px;
  }

  .admission-form {
    padding: 22px;
  }
}

@media (max-height: 760px) and (min-width: 900px) {
  .scene {
    padding-top: 104px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(58px, 8vw, 96px);
  }

  h2 {
    font-size: clamp(38px, 5.6vw, 66px);
  }

  .lead {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions,
  .visit-info {
    margin-top: 26px;
  }
}

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

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