:root {
  --ink: #123025;
  --muted: #5f746c;
  --line: #d9e1d8;
  --paper: #fffdf6;
  --cream: #f7f3e8;
  --mint: #d7eee2;
  --green: #216f4b;
  --leaf: #89c66d;
  --sky: #b8e2ee;
  --blue: #23658d;
  --yellow: #ffd766;
  --coral: #ff8c6f;
  --rose: #f7c4b6;
  --shadow: 0 22px 60px rgba(40, 67, 47, 0.14);
  --font: "Helvetica Neue", "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  --site-max: 1240px;
}

@keyframes soft-float {
  0%, 100% {
    transform: translateY(0) rotate(var(--tilt, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--tilt, 0deg));
  }
}

@keyframes gentle-pulse {
  0%, 100% {
    box-shadow: 0 0 0 20px rgba(255, 215, 102, 0.12), 0 0 0 0 rgba(255, 215, 102, 0.18);
  }
  50% {
    box-shadow: 0 0 0 26px rgba(255, 215, 102, 0.08), 0 0 0 18px rgba(255, 215, 102, 0.08);
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 215, 102, 0.28), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(184, 226, 238, 0.42), transparent 30rem),
    linear-gradient(180deg, #fffef8 0%, #f7f3e8 100%);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

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

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: clamp(150px, 15vw, 190px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 7vw, 100px);
  background: rgba(255, 253, 246, 0.84);
  border-bottom: 1px solid rgba(18, 48, 37, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: clamp(86px, 8vw, 118px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

html[lang^="en"] .brand img {
  width: clamp(160px, 14vw, 184px);
}

html[lang^="en"] .site-header {
  grid-template-columns: clamp(168px, 15vw, 196px) minmax(540px, 1fr) auto;
  column-gap: clamp(18px, 2vw, 32px);
  padding-inline: clamp(20px, 7vw, 100px) clamp(18px, 4vw, 72px);
}

html[lang^="en"] .hero-copy h1 {
  max-width: 10em;
  font-size: clamp(36px, 3vw, 40px);
  letter-spacing: -0.02em;
}

.top-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-self: center;
  gap: 8px;
  width: 100%;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.top-nav a {
  position: relative;
  padding: 8px 0;
  text-align: center;
  white-space: nowrap;
}

.top-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--coral);
  border-radius: 999px;
  transition: width 180ms ease;
}

.top-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

html[lang^="en"] h1,
html[lang^="en"] h2,
html[lang^="en"] h3,
html[lang^="en"] .eyebrow,
html[lang^="en"] .tag,
html[lang^="en"] .top-nav a {
  text-transform: uppercase;
}

html[lang^="en"] .top-nav {
  grid-template-columns: repeat(6, max-content);
  justify-content: center;
  gap: clamp(16px, 1.7vw, 30px);
  max-width: none;
  font-size: 14px;
}

html[lang^="en"] .header-actions {
  gap: 18px;
}

html[lang^="en"] .language-toggle {
  min-width: 76px;
}

html[lang^="en"] .header-actions .pill-button {
  min-width: 174px;
}

.language-toggle {
  width: auto;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
  border: 2px solid var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.pill-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 48, 37, 0.18);
}

.pill-button:active {
  transform: translateY(0) scale(0.98);
}

.pill-button.dark {
  color: #fff;
  background: var(--ink);
}

.pill-button.light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: calc(100svh - 76px);
  padding: clamp(24px, 4dvh, 52px) clamp(20px, 7vw, 100px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 9em;
  font-size: clamp(54px, min(8vw, 10dvh), 112px);
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: var(--green);
}

h2 {
  font-size: clamp(34px, 5.1vw, 72px);
}

h2 span {
  display: block;
}

h3 {
  font-size: clamp(22px, 2vw, 30px);
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-lead {
  max-width: 540px;
  margin-top: 28px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  white-space: pre;
}

html[lang^="en"] .hero-lead {
  white-space: normal;
}

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

.hero-stage {
  position: relative;
  min-height: 0;
  height: min(68dvh, 680px);
}

@media (min-width: 1061px) {
  .hero-stage {
    transform: translateY(clamp(0px, 1dvh, 10px));
  }
}

.hero-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 36px 36px 120px 36px;
  box-shadow: var(--shadow);
  transform: rotate(1.6deg);
  transition: transform 260ms ease, filter 260ms ease;
}

.hero-stage:hover .hero-main {
  filter: saturate(1.08);
  transform: rotate(0deg) scale(1.015);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 160px;
  padding: 18px 22px;
  border: 2px solid rgba(18, 48, 37, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(18, 48, 37, 0.14);
  animation: soft-float 5s ease-in-out infinite;
}

.floating-card strong {
  font-size: 48px;
  line-height: 1;
}

.floating-card span {
  color: var(--ink);
  font-weight: 800;
}

.card-blue {
  --tilt: -2deg;
  right: 8%;
  bottom: 10%;
  background: var(--sky);
  animation-delay: -1.8s;
}

.card-yellow {
  --tilt: 2deg;
  left: -2%;
  top: 10%;
  background: var(--yellow);
}

.resource-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--site-max), calc(100% - clamp(40px, 12vw, 176px)));
  margin: 0 auto 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.resource-strip a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  transition: background 180ms ease, transform 180ms ease;
}

.resource-strip a::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.resource-strip a:nth-child(2)::before {
  background: var(--blue);
}

.resource-strip a:nth-child(3)::before {
  background: var(--coral);
}

.resource-strip a:nth-child(4)::before {
  background: var(--yellow);
}

.resource-strip a:hover {
  background: var(--mint);
  transform: translateY(-3px);
}

.resource-strip a:hover::before {
  transform: scaleX(1);
}

.resource-strip span {
  color: var(--coral);
  font-weight: 900;
}

.resource-strip strong {
  font-size: 24px;
  line-height: 1.25;
}

.resource-strip small {
  color: var(--muted);
  font-size: 15px;
}

.section-pad {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 7vw, 100px);
}

.section-heading {
  display: grid;
  gap: 18px;
  width: min(var(--site-max), 100%);
  max-width: var(--site-max);
  margin: 0 auto 44px;
}

.section-heading h2 {
  max-width: 920px;
}

html[lang^="en"] .section-heading h2 {
  max-width: none;
  text-wrap: wrap;
}

.intro-title {
  max-width: none;
  font-size: clamp(38px, 4.45vw, 66px);
}

.intro-title span {
  display: inline;
  white-space: normal;
}

html[lang^="en"] .intro-title span:not(:last-child)::after {
  content: " ";
}

.section-heading.narrow {
  max-width: 820px;
  margin-inline: 0;
}

#model .section-heading.narrow {
  max-width: var(--site-max);
  margin-inline: auto;
}

#about > .section-heading,
#model > .section-heading.narrow,
#language > .section-heading,
#highlights > .section-heading {
  width: 100%;
  max-width: none;
}

#about > .section-heading > h2,
#model > .section-heading > h2,
#language > .section-heading > h2,
#highlights > .section-heading > h2 {
  width: 100%;
  max-width: none;
  text-wrap: wrap;
}

html[lang^="en"] #about > .section-heading > h2 {
  max-width: 16.55em;
}

html[lang^="en"] .intro-title span:first-child::after {
  display: inline-block;
  width: 0.55em;
  content: "";
}

@media (min-width: 900px) {
  html:not([lang^="en"]) #about > .section-heading > h2 {
    width: calc(100% + clamp(36px, 4.5vw, 72px));
  }
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  font-size: 20px;
}

#model .section-heading > p:last-child,
#language .section-heading > p:last-child,
#highlights .section-heading > p:last-child,
#resources .section-heading > p:last-child,
#campuses .section-heading > p:last-child {
  max-width: 1120px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.intro-text > p {
  font-size: 21px;
}

dl {
  display: grid;
  gap: 14px;
  margin: 8px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 22px;
  background: var(--cream);
  border-radius: 20px;
}

dt {
  color: var(--green);
  font-weight: 900;
}

dd {
  margin: 0;
  color: var(--muted);
}

.education-view {
  grid-template-columns: 96px 1fr;
}

.education-view dd {
  display: grid;
  gap: 10px;
}

.model {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.55)),
    var(--mint);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.model-card {
  min-height: 460px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 48, 37, 0.12);
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(18, 48, 37, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(18, 48, 37, 0.16);
}

.model-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.model-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.model-card img.model-card-image-cropped {
  transform: scale(1.025);
  transform-origin: center;
}

.model-card:hover img.model-card-image-cropped {
  transform: scale(1.06);
}

.model-card div {
  padding: 28px;
  transition: transform 220ms ease;
}

.model-card:hover div {
  transform: translateY(-4px);
}

.model-card p {
  margin-top: 18px;
  font-size: 17px;
}

.model-card h3 span,
.product-title span,
.product-showcase h3 span,
.subpage-card h3 span,
.sub-campus-grid h3 span,
.campus-detail h1 span,
.gallery-copy h2 span {
  display: block;
}

.model-card.green {
  background: #f9fff8;
}

.model-card.mint {
  background: #eff9f2;
}

.model-card.yellow {
  background: #fff7db;
}

.model-card.coral {
  background: #fff0e9;
}

.future {
  background: var(--ink);
  color: #fff;
}

.future .eyebrow,
.future p {
  color: rgba(255, 255, 255, 0.75);
}

.future-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 46px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.future-copy {
  min-width: 0;
}

.future-copy h2 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.16;
}

.future-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(19px, 2vw, 24px);
}

.section-more {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  background: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.section-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.os-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px;
  background:
    radial-gradient(circle at center, rgba(255, 215, 102, 0.24), transparent 8rem),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.os-orbit::before {
  position: absolute;
  inset: 58px;
  content: "";
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.os-core {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  background: var(--yellow);
  border-radius: 50%;
  animation: gentle-pulse 4.8s ease-in-out infinite;
}

.os-orbit span {
  position: absolute;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 900;
  background: #fff;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.os-orbit span:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.os-orbit span:nth-of-type(1) { top: 54px; left: 42px; }
.os-orbit span:nth-of-type(2) { top: 58px; right: 34px; background: var(--sky); }
.os-orbit span:nth-of-type(3) { right: 34px; bottom: 106px; background: var(--rose); }
.os-orbit span:nth-of-type(4) { bottom: 52px; left: 48px; background: var(--mint); }
.os-orbit span:nth-of-type(5) { left: 22px; bottom: 190px; background: var(--coral); }
.os-orbit span:nth-of-type(6) { right: 154px; bottom: 42px; background: #fff8df; }

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--site-max);
  margin: 28px auto 0;
}

.product-row article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  transition: transform 220ms ease, background 220ms ease;
}

.product-row article:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}

.product-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-row article:hover img {
  transform: scale(1.04);
}

.product-row h3,
.product-row p {
  padding-inline: 24px;
}

.product-row h3 {
  margin-top: 24px;
  font-size: 24px;
}

.product-row p {
  padding-bottom: 26px;
  color: rgba(255, 255, 255, 0.74);
}

.tabs,
.city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto 22px;
}

.tab,
.city {
  min-height: 46px;
  padding: 0 22px;
  color: var(--ink);
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.tab.active,
.city.active {
  color: #fff;
  background: var(--green);
}

.tab-panels {
  max-width: var(--site-max);
  margin: 0 auto;
}

.tab-panel {
  display: none;
  min-height: 420px;
  padding: clamp(26px, 4vw, 52px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 34px;
  animation: panel-in 260ms ease both;
}

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

.tab-panel p {
  margin-top: 18px;
  font-size: 20px;
}

.tab-panel img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 28px;
}

.pathway {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pathway span {
  padding: 24px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  background: var(--mint);
  border-radius: 22px;
}

.language-head {
  margin-inline: 0;
}

.language-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.language-cards article {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  min-height: 360px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.language-cards article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(18, 48, 37, 0.14);
}

.language-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-cards div {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 36px);
}

.language-cards p:not(.tag) {
  margin-top: 16px;
  font-size: 18px;
}

.highlights {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 119, 92, 0.16), transparent 20rem),
    radial-gradient(circle at 92% 20%, rgba(184, 226, 238, 0.45), transparent 23rem),
    linear-gradient(135deg, #fff8df 0%, #f7fff9 56%, #eaf8fb 100%);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.highlight-card {
  position: relative;
  display: grid;
  min-height: 340px;
  padding: clamp(28px, 3vw, 38px);
  align-content: end;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(18, 48, 37, 0.12);
  border-radius: 36px;
  box-shadow: 0 18px 48px rgba(18, 48, 37, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.highlight-card::before {
  position: absolute;
  inset: 24px 24px auto auto;
  width: 88px;
  height: 88px;
  content: "";
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: transform 280ms ease;
}

.highlight-card::after {
  position: absolute;
  inset: auto 28px 28px auto;
  width: 70px;
  height: 18px;
  content: "";
  background: rgba(18, 48, 37, 0.18);
  border-radius: 999px;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(18, 48, 37, 0.16);
}

.highlight-card:hover::before {
  transform: scale(1.35) rotate(8deg);
}

.highlight-card > span {
  position: relative;
  color: rgba(18, 48, 37, 0.64);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.highlight-card h3 {
  position: relative;
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

html[lang^="en"] .highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

html[lang^="en"] .highlight-card {
  min-height: 320px;
  padding: clamp(30px, 4vw, 52px);
}

html[lang^="en"] .highlight-card h3 {
  display: grid;
  gap: 0;
  max-width: 100%;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.94;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

html[lang^="en"] .highlight-card h3 span {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
}

html[lang^="en"] .highlight-card p {
  max-width: 460px;
}

.highlight-card p {
  position: relative;
  margin-top: 18px;
  max-width: 260px;
  font-size: 18px;
}

.highlight-card.sports { background: #fdf0d5; }
.highlight-card.art { background: #ffd7ce; }
.highlight-card.life { background: #dff4df; }
.highlight-card.competition { background: #b8e2ee; }

.resources {
  background: linear-gradient(135deg, rgba(255, 215, 102, 0.28), rgba(184, 226, 238, 0.32));
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.article-grid article {
  display: grid;
  grid-template-rows: 220px auto minmax(108px, auto) minmax(112px, auto) auto;
  align-items: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 16px 42px rgba(18, 48, 37, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.article-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(18, 48, 37, 0.14);
}

.article-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.article-grid article:hover img {
  transform: scale(1.05);
}

.article-grid article {
  min-height: 430px;
}

.article-grid article h3,
.article-grid article .tag,
.article-grid article > p:not(.tag),
.article-grid article .text-link {
  padding-inline: 24px;
}

.article-grid h3 {
  margin-top: 8px;
  font-size: 25px;
  line-height: 1.35;
}

.tag {
  width: fit-content;
  margin: 22px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.feature-article {
  grid-row: auto;
}

.feature-article img {
  height: 220px;
}

.feature-article div {
  display: contents;
}

.feature-article p:not(.tag) {
  padding-inline: 24px;
  margin: 16px 0 6px;
  font-size: 18px;
}

.article-grid article > p:not(.tag),
.feature-article p:not(.tag) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.feature-article a {
  color: var(--green);
  font-weight: 900;
}

.article-grid article > .text-link,
.feature-article .text-link {
  align-self: end;
  margin-top: 0;
  margin-bottom: 26px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.text-link,
.card-link {
  width: fit-content;
  margin-top: 18px;
  padding: 0;
  color: var(--green);
  font-weight: 900;
  background: none;
  border: 0;
  border-bottom: 2px solid currentColor;
  cursor: pointer;
}

.text-link:hover,
.card-link:hover {
  color: var(--ink);
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.featured-campus-grid {
  margin-top: 10px;
}

.campus-grid article {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 14px 38px rgba(18, 48, 37, 0.1);
  transition: transform 180ms ease;
}

.campus-grid article:hover {
  transform: translateY(-6px);
}

.campus-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.campus-grid article:hover img {
  transform: scale(1.05);
}

.campus-grid p,
.campus-grid h3,
.campus-grid span,
.campus-grid .card-link {
  display: block;
  padding-inline: 24px;
}

.campus-grid p {
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
}

.campus-grid h3 {
  margin-top: 10px;
  white-space: nowrap;
}

.campus-grid span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.campus-grid .card-link {
  margin: auto 0 24px;
  padding-inline: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  overflow: hidden;
}

.gallery-copy {
  min-width: 0;
  padding-left: clamp(0px, 2vw, 34px);
}

.gallery-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 22px 0 30px;
  font-size: 20px;
}

.gallery-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
  overflow: visible;
  padding: 12px 0;
}

.gallery-rail article,
.gallery-rail a {
  position: relative;
  display: block;
  min-height: clamp(420px, 42vw, 520px);
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.gallery-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-rail article:hover img,
.gallery-rail a:hover img {
  transform: scale(1.08);
  filter: brightness(0.72) saturate(1.1);
}

.gallery-rail span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -44%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-rail article:hover span,
.gallery-rail a:hover span {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.visit {
  background: var(--yellow);
}

.visit-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(34px, 4vw, 64px);
  max-width: var(--site-max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.visit-card > div:first-child {
  min-width: 0;
  max-width: 520px;
}

.visit-card h2 {
  max-width: 520px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.08;
}

.visit-card p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 20px;
  font-size: 20px;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
  min-width: 0;
}

.visit-card form {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(33, 111, 75, 0.16);
  border-radius: 26px;
  background: #eaf5ee;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.visit-card label {
  color: #185d3d;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(33, 111, 75, 0.25);
  border-radius: 16px;
}

.visit-card input:focus,
.visit-card select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(33, 111, 75, 0.14);
}

form .pill-button {
  grid-column: 1 / -1;
  width: 100%;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 30px;
  color: var(--green);
  font-weight: 900;
}

.detail-view {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.detail-view.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 48, 37, 0.62);
  backdrop-filter: blur(10px);
}

.detail-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  width: min(1120px, 100%);
  max-height: min(760px, calc(100dvh - 48px));
  overflow: auto;
  padding: clamp(22px, 4vw, 42px);
  background: var(--paper);
  border-radius: 34px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(20px) scale(0.98);
  transition: transform 180ms ease;
}

.detail-view.open .detail-panel {
  transform: translateY(0) scale(1);
}

.detail-panel img {
  grid-row: span 4;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 26px;
}

.detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  font-weight: 900;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.detail-panel .tag {
  margin-top: 28px;
}

.detail-panel h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.detail-body {
  display: grid;
  gap: 18px;
  align-content: start;
}

.detail-body p {
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 38px clamp(20px, 7vw, 100px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  font-weight: 900;
}

.subpage-body {
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 215, 102, 0.24), transparent 22rem),
    radial-gradient(circle at 88% 12%, rgba(184, 226, 238, 0.34), transparent 28rem),
    var(--paper);
}

.subpage-shell {
  display: grid;
  gap: clamp(44px, 7vw, 86px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, 88px);
}

.sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

.sub-hero h1,
.article-page h1,
.campus-detail h1,
.gallery-detail h1 {
  max-width: 920px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1.06;
}

.research-hero h1 {
  max-width: 4.25em;
  text-wrap: wrap;
}

html:not([lang^="en"]) #subpageRoot[data-section="centers"] .sub-hero h1 {
  max-width: 4.85em;
  text-wrap: wrap;
}

.campus-detail h1 {
  max-width: none;
  font-size: clamp(42px, 4.5vw, 64px);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.sub-campus-grid h3 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.sub-hero p:not(.eyebrow),
.campus-detail-copy > p,
.gallery-detail p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(19px, 2vw, 24px);
}

.campus-detail-copy > p.campus-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 16px;
}

.sub-hero img,
.campus-detail > img,
.gallery-detail > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.sub-hero-media {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.sub-hero .sub-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.sub-hero-media-cropped img {
  transform: scale(1.025);
  transform-origin: center;
}

@media (min-width: 721px) {
  html[lang^="en"] .sub-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: start;
    column-gap: clamp(34px, 5vw, 72px);
    row-gap: 20px;
  }

  html[lang^="en"] .sub-hero > div {
    display: contents;
  }

  html[lang^="en"] .sub-hero .eyebrow,
  html[lang^="en"] .sub-hero h1 {
    grid-column: 1 / -1;
  }

  html[lang^="en"] .sub-hero .eyebrow {
    grid-row: 1;
    margin: 0;
  }

  html[lang^="en"] .sub-hero h1 {
    grid-row: 2;
    max-width: none;
    margin: 0;
    font-size: clamp(46px, 5.6vw, 80px);
    line-height: 1;
    text-wrap: wrap;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  html[lang^="en"] .sub-hero p:not(.eyebrow) {
    grid-column: 1;
    grid-row: 3;
    margin-top: 4px;
  }

  html[lang^="en"] .sub-hero .sub-actions {
    grid-column: 1;
    grid-row: 4;
    margin-top: 0;
  }

  html[lang^="en"] .sub-hero > img,
  html[lang^="en"] .sub-hero > .sub-hero-media {
    grid-column: 2;
    grid-row: 3 / span 2;
    align-self: start;
    margin-top: 4px;
  }

  html[lang^="en"] .gallery-detail {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: start;
    column-gap: clamp(34px, 5vw, 72px);
    row-gap: 20px;
  }

  html[lang^="en"] .gallery-detail > div {
    display: contents;
  }

  html[lang^="en"] .gallery-detail .back-link,
  html[lang^="en"] .gallery-detail .eyebrow,
  html[lang^="en"] .gallery-detail h1 {
    grid-column: 1 / -1;
  }

  html[lang^="en"] .gallery-detail .back-link { grid-row: 1; justify-self: start; }
  html[lang^="en"] .gallery-detail .eyebrow { grid-row: 2; margin: 0; }

  html[lang^="en"] .gallery-detail h1 {
    grid-row: 3;
    max-width: none;
    margin: 0;
    font-size: clamp(46px, 5.6vw, 80px);
    line-height: 1;
    text-wrap: wrap;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  html[lang^="en"] .gallery-detail p:not(.eyebrow) {
    grid-column: 1;
    grid-row: 4;
    margin-top: 4px;
  }

  html[lang^="en"] .gallery-detail > img {
    grid-column: 2;
    grid-row: 4;
    align-self: start;
    margin-top: 4px;
  }
}

html[lang^="en"] .gallery-detail h1 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.sub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.subpage-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.subpage-card,
.sub-article-card,
.campus-tile {
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 16px 42px rgba(18, 48, 37, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.subpage-card {
  position: relative;
  min-height: 190px;
  padding: clamp(24px, 3vw, 36px);
}

.subpage-card:nth-child(4n + 2) {
  background: var(--mint);
}

.subpage-card:nth-child(4n + 3) {
  background: #fff8e6;
}

.subpage-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.model-card {
  color: inherit;
  text-decoration: none;
}

.subpage-card:hover,
.sub-article-card:hover,
.campus-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(18, 48, 37, 0.14);
}

.subpage-card p,
.sub-article-card p,
.campus-tile p {
  font-size: 18px;
}

.sub-list,
.sub-campus-grid {
  display: grid;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.article-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.research-search {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto -40px;
}

.research-search label {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(18, 48, 37, 0.08);
}

.research-search span {
  padding-left: 18px;
  color: var(--green);
  font-weight: 900;
}

.research-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  color: var(--ink);
  font: inherit;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.sub-article-card img,
.campus-tile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.sub-article-card:hover img,
.campus-tile:hover img {
  transform: scale(1.05);
}

.sub-article-card span,
.sub-article-card h3,
.sub-article-card p,
.campus-tile span,
.campus-tile h3,
.campus-tile p {
  padding-inline: 24px;
}

.sub-article-card span,
.campus-tile span {
  margin-top: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.sub-article-card {
  color: inherit;
  text-decoration: none;
}

.sub-article-card[hidden] {
  display: none;
}

.sub-article-author {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: -10px;
  padding: 0 24px 24px;
}

.sub-article-author > img,
.sub-article-author > .author-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.sub-article-card .sub-article-author,
.sub-article-card .sub-article-author span {
  padding-inline: 0;
}

.sub-article-card .sub-article-author > img {
  transform: none;
}

.sub-article-author strong,
.sub-article-author small {
  display: block;
  line-height: 1.35;
}

.sub-article-author strong {
  font-size: 14px;
}

.sub-article-author small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.author-avatar-placeholder {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.product-showcase,
.story-grid,
.pathway-panel {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-showcase article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 16px 42px rgba(18, 48, 37, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-showcase article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(18, 48, 37, 0.14);
}

.product-showcase img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-showcase .featured-product {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--green);
  color: #fff;
}

.product-showcase .featured-product img {
  height: 100%;
  min-height: 340px;
}

.product-showcase div {
  padding: clamp(24px, 3vw, 36px);
}

.product-showcase h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
}

.product-showcase p {
  margin-top: 18px;
  color: inherit;
  font-size: 19px;
}

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

.story-grid article {
  padding: clamp(26px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
}

.story-grid article:nth-child(3n + 1) {
  background: var(--mint);
}

.story-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.story-grid h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.16;
}

.story-grid p {
  margin-top: 18px;
  font-size: 19px;
}

.pathway-panel {
  display: grid;
  gap: 18px;
}

.pathway-intro-card {
  padding: clamp(28px, 5vw, 60px);
  color: #fff;
  background: var(--green);
  border-radius: 40px;
}

.pathway-intro-card h2 {
  max-width: 780px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.08;
}

.pathway-intro-card p {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.pathway-section-title {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px 28px;
  align-items: end;
  padding: clamp(24px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
}

.pathway-section-title span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-section-title h2 {
  grid-column: 1 / -1;
  max-width: 880px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
}

.pathway-section-title p {
  grid-column: 2;
  margin: 0;
  font-size: 19px;
}

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

.ik-grid article,
.bk-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
}

.ik-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 420px;
}

.ik-stage-head {
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, #fff8df, #eef8f0);
}

.ik-grid span,
.ik-details dt {
  color: var(--green);
  font-weight: 900;
}

.ik-grid h3 {
  max-width: 520px;
  margin-top: 12px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
}

.ik-stage-head p {
  max-width: 620px;
  margin-top: 14px;
  font-size: 18px;
}

.ik-details {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
}

.ik-details div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  padding: 20px clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.ik-grid dd,
.bk-table {
  font-size: 17px;
  line-height: 1.65;
}

.bk-table-wrap {
  padding: 10px;
  overflow-x: auto;
}

.bk-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.bk-table th,
.bk-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.bk-table th {
  color: var(--green);
  background: var(--mint);
}

.sub-article-card p,
.campus-tile p {
  padding-bottom: 26px;
}

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

.article-page {
  max-width: 980px;
  margin: 0 auto;
}

html[lang^="en"] .article-page {
  max-width: 1240px;
}

html[lang^="en"] .article-page h1,
html[lang^="en"] .article-body h2 {
  max-width: none;
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.article-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.article-page .tag {
  margin-top: 30px;
}

.article-byline {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.article-byline > img,
.article-byline > .author-avatar-placeholder {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.article-byline strong,
.article-byline span {
  display: block;
}

.article-byline strong {
  font-size: 18px;
}

.article-byline span {
  color: var(--muted);
  font-size: 15px;
}

.article-byline .article-meta {
  margin-top: 2px;
  color: var(--muted);
  font-size: 15px;
}

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

.article-body {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.article-body p {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.95;
}

.article-body h2 {
  margin-top: 30px;
  color: var(--green);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.24;
}

.article-body .numbered {
  padding-left: 18px;
  border-left: 4px solid var(--yellow);
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.3em;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.95;
}

.article-body figure {
  margin: 8px 0;
}

.article-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.article-body blockquote {
  margin: 0;
  padding: 4px 0 4px 20px;
  border-left: 4px solid var(--coral);
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  font-style: italic;
}

.article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.comment-box {
  grid-template-columns: 1fr;
  margin-top: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
}

textarea {
  min-height: 150px;
  padding: 16px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.campus-detail,
.gallery-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

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

.campus-detail-copy {
  min-width: 0;
}

.principal-note,
.contact-list {
  margin-top: 32px;
}

.principal-note {
  padding: 28px;
  background: var(--mint);
  border-radius: 28px;
}

.principal-note h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.principal-note p {
  margin-top: 16px;
  font-size: 19px;
}

.contact-list {
  gap: 12px;
  margin-bottom: 28px;
}

.contact-list div {
  grid-template-columns: 82px 1fr;
  background: #fff;
}

.gallery-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-photo-wall {
  columns: 3;
  column-gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-photo-wall figure {
  position: relative;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 28px;
  clip-path: inset(0 round 28px);
  isolation: isolate;
  transform: translateZ(0);
  background: var(--mint);
  box-shadow: var(--shadow);
  break-inside: avoid;
}

.gallery-photo-wall img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  backface-visibility: hidden;
  transition: transform 360ms ease, filter 260ms ease;
}

.gallery-photo-wall figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(15, 47, 38, 0.52);
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-photo-wall figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(82%, 320px);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-photo-wall figure:hover img {
  filter: brightness(0.74) saturate(0.96);
  transform: scale(1.045);
}

.gallery-photo-wall figure:hover::after,
.gallery-photo-wall figure:hover figcaption {
  opacity: 1;
}

.gallery-photo-wall figure:hover figcaption {
  transform: translate(-50%, -50%);
}

@media (hover: none) {
  .gallery-photo-wall figure::after {
    background: linear-gradient(to top, rgba(15, 47, 38, 0.78), transparent 58%);
    opacity: 1;
  }

  .gallery-photo-wall figcaption {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
    width: auto;
    font-size: 15px;
    text-align: left;
    opacity: 1;
    transform: none;
  }
}

.gallery-switcher a {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.gallery-switcher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-switcher a:hover img {
  transform: scale(1.08);
  filter: brightness(0.68);
}

.gallery-switcher span {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -44%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-switcher a:hover span {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  html[lang^="en"] .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 16px;
    padding-inline: clamp(20px, 7vw, 100px) 18px;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .intro-grid,
  .future-panel,
  .visit-card,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 0;
    height: min(62dvh, 480px);
  }

  .hero-main {
    height: 100%;
  }

  .resource-strip,
  .model-grid,
  .highlight-grid,
  .product-row,
  .product-showcase,
  .story-grid,
  .campus-grid,
  .language-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-showcase .featured-product {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .pathway-section-title {
    grid-template-columns: 1fr;
  }

  .pathway-section-title p {
    grid-column: auto;
  }

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

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

  .feature-article {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand span {
    display: none;
  }

  .header-actions .pill-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-line;
  }

  h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .hero-stage {
    height: auto;
  }

  .hero-main {
    height: min(58dvh, 360px);
    border-radius: 24px 24px 72px 24px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .resource-strip,
  .model-grid,
  .highlight-grid,
  .subpage-card-grid,
  .product-row,
  .product-showcase,
  .story-grid,
  .article-grid,
  .campus-grid,
  .language-cards,
  form {
    grid-template-columns: 1fr;
  }

  html[lang^="en"] .highlight-grid {
    grid-template-columns: 1fr;
  }

  html[lang^="en"] .section-heading {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  html[lang^="en"] .article-page {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  html[lang^="en"] .article-page h1 {
    font-size: clamp(38px, 10.5vw, 46px);
  }

  html[lang^="en"] .article-body h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  html[lang^="en"] .intro-title span {
    white-space: normal;
  }

  .product-showcase .featured-product {
    grid-column: auto;
  }

  .pathway-section-title {
    padding: 24px;
  }

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

  .ik-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .research-search label {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .research-search span {
    padding-left: 4px;
  }

  .language-cards article {
    grid-template-columns: 1fr;
  }

  .language-cards img {
    height: 240px;
  }

  .resource-strip {
    width: calc(100% - 28px);
  }

  .intro-media img {
    min-height: 340px;
  }

  dl div,
  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .os-orbit {
    min-height: 500px;
  }

  .gallery-rail {
    grid-template-columns: 86vw 86vw 86vw;
    overflow-x: auto;
  }

  .gallery-rail article {
    min-height: 420px;
  }

  .site-footer {
    display: grid;
  }

  .detail-view {
    padding: 12px;
  }

  .detail-panel {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 24px);
    border-radius: 24px;
  }

  .detail-panel img {
    grid-row: auto;
    min-height: 260px;
    height: 280px;
  }

  .detail-panel .tag {
    margin-top: 0;
  }

  .sub-hero,
  .campus-detail,
  .gallery-detail {
    grid-template-columns: 1fr;
  }

  .campus-detail > img {
    grid-row: 1;
    height: calc((100vw - 40px) * 0.75);
    max-height: 360px;
    object-fit: cover;
  }

  .campus-detail-copy {
    grid-row: 2;
  }

  .sub-hero img,
  .gallery-detail > img {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }

  .sub-hero-media {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }

  .subpage-card-grid,
  .article-list,
  .sub-campus-grid,
  .gallery-switcher {
    grid-template-columns: 1fr;
  }

  .gallery-switcher a {
    min-height: 320px;
  }

  .gallery-photo-wall {
    columns: 2;
  }
}

@media (max-width: 620px) {
  .visit-card form {
    padding: 22px 18px;
  }

  .gallery-photo-wall {
    columns: 1;
  }

  .gallery-photo-wall figure {
    border-radius: 22px;
  }
}
