:root {
  --green-950: #082f23;
  --green-900: #0b3b2b;
  --green-800: #12513a;
  --green-700: #1a6849;
  --gold-500: #dfa52a;
  --gold-400: #f2bd48;
  --ivory: #f8f6ef;
  --cream: #f0ecdf;
  --white: #ffffff;
  --ink: #17231d;
  --muted: #657269;
  --line: rgba(13, 59, 43, 0.15);
  --shell: min(1280px, calc(100vw - 64px));
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 18px;
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 800;
  transform: translateY(-170%);
}

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

.reading-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-400);
  box-shadow: 0 0 12px rgba(242, 189, 72, 0.75);
}

.cursor-glow {
  position: fixed;
  z-index: 50;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 189, 72, 0.09), transparent 68%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 250ms ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.topbar {
  position: relative;
  z-index: 41;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 5px rgba(242, 189, 72, 0.12);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar a,
.link-button {
  transition: color 180ms ease;
}

.topbar a:hover,
.link-button:hover {
  color: var(--white);
}

.link-button {
  padding: 0 0 0 26px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: none;
  color: inherit;
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(13, 59, 43, 0.1);
  background: rgba(248, 246, 239, 0.96);
  backdrop-filter: blur(14px);
  transition:
    box-shadow 240ms ease,
    background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 246, 239, 0.985);
  box-shadow: 0 12px 32px rgba(8, 47, 35, 0.08);
}

.navigation {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 240ms ease;
}

.is-scrolled .navigation {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.brand:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.brand > span {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.brand b {
  margin-top: 4px;
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.main-menu a {
  position: relative;
  color: #33443a;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.main-menu a:not(.menu-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-menu a:hover::after,
.main-menu a:focus-visible::after,
.main-menu a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-menu a.is-active {
  color: var(--green-900);
}

.main-menu .menu-cta {
  padding: 11px 16px;
  border-radius: 3px;
  background: var(--green-900);
  color: var(--white);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 128px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.hero__image,
.hero__overlay,
.hero__grain {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero__overlay {
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(5, 34, 24, 0.97) 0%, rgba(5, 34, 24, 0.78) 39%, rgba(5, 34, 24, 0.18) 67%, rgba(5, 34, 24, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 34, 24, 0.4), transparent 48%);
}

.hero__grain {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-block: 100px 120px;
}

.hero__copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

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

.hero h1 {
  max-width: 800px;
  margin: 0;
  display: grid;
  font-family: var(--serif);
  font-size: clamp(56px, 6.4vw, 100px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 em {
  color: var(--gold-400);
  font-weight: 400;
}

.hero__lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 14px 22px;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button--gold {
  background: var(--gold-400);
  color: var(--green-950);
}

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

.button--green {
  background: var(--green-900);
  color: var(--white);
}

.button--green:hover {
  background: var(--green-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(18, 81, 58, 0.25);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 850;
}

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

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

.text-link--light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button:focus-visible,
.text-link:focus-visible,
.main-menu a:focus-visible,
.notice-list a:focus-visible,
.notice-list button:focus-visible,
.menu-button:focus-visible,
.topbar a:focus-visible,
.link-button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

.hero__seal {
  position: relative;
  width: 190px;
  height: 190px;
  flex: 0 0 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(8, 47, 35, 0.48);
  text-align: center;
  backdrop-filter: blur(8px);
  animation: float 5s ease-in-out infinite;
}

.hero__seal::before,
.hero__seal::after {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold-400);
  transform: translateX(-50%);
}

.hero__seal::before {
  top: 12px;
}

.hero__seal::after {
  bottom: 12px;
}

.hero__seal span {
  color: var(--gold-400);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__seal strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.hero__seal b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 42px;
  background: var(--gold-400);
  animation: scrollLine 1.8s ease-in-out infinite;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.promise {
  background: var(--green-900);
  color: var(--white);
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.promise article {
  min-height: 170px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.promise article:not(:first-child) {
  padding-left: 28px;
}

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

.promise article > span {
  align-self: start;
  margin-top: 7px;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 14px;
}

.promise h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.promise p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.section {
  padding-block: 120px;
}

.section-title h2,
.split-heading h2,
.activities__intro h2,
.admission__intro h2,
.guidelines__intro h2,
.notices__title h2,
.contact__intro h2,
.faq h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-title h2 em {
  color: var(--green-700);
  font-weight: 400;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  align-items: start;
}

.about__copy {
  padding-top: 34px;
}

.about__copy p {
  color: var(--muted);
  line-height: 1.8;
}

.about__copy .lead-copy {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.55;
}

.about__copy .text-link {
  margin-top: 20px;
}

.vision-card {
  position: relative;
  margin-top: 90px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 58px;
  align-items: center;
  padding: 54px 64px;
  border-left: 5px solid var(--gold-500);
  background: var(--cream);
}

.vision-card::after {
  position: absolute;
  right: -45px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(13, 59, 43, 0.1);
  border-radius: 50%;
  content: "";
}

.vision-card__mark {
  height: 190px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
}

.vision-card__mark img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.vision-card blockquote {
  max-width: 800px;
  margin: 0;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.vision-card > div:last-child > p {
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision-card p span {
  color: var(--gold-500);
  font-size: 13px;
}

.laurels {
  background: var(--green-950);
  color: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.split-heading--dark > p {
  color: var(--muted);
}

.laurels__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.laurels article {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hover-line::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.hover-line:hover::after {
  transform: scaleX(1);
}

.laurels article strong {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
}

.laurels article h3 {
  margin: 20px 0 10px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.laurels article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

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

.academics__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.academic-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--ivory);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 120ms linear;
  transform-style: preserve-3d;
}

.academic-card:hover {
  border-color: rgba(223, 165, 42, 0.65);
  box-shadow: 0 26px 56px rgba(8, 47, 35, 0.11);
}

.card-number {
  color: var(--gold-500);
  font-family: var(--serif);
}

.academic-card h3 {
  margin: auto 0 16px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
}

.academic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.academic-card b {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--green-700);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.learning-flow {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 36px;
  background: var(--green-900);
  color: var(--white);
}

.learning-flow div {
  display: grid;
  text-align: center;
}

.learning-flow span {
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 800;
}

.learning-flow strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.learning-flow p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.learning-flow i {
  color: rgba(255, 255, 255, 0.35);
  font-style: normal;
}

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

.facilities__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.facility {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  transition:
    box-shadow 220ms ease,
    transform 120ms linear;
  transform-style: preserve-3d;
}

.facility::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.08;
  transition: scale 350ms ease;
}

.facility:hover::after {
  scale: 1.2;
}

.facility > span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.facility h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
}

.facility p {
  max-width: 500px;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.facility--main {
  grid-row: 1 / 3;
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  color: var(--white);
}

.facility--main p,
.facility--dark p {
  color: rgba(255, 255, 255, 0.62);
}

.facility--main > span,
.facility--dark > span {
  color: var(--gold-400);
}

.facility--gold {
  background: var(--gold-400);
  color: var(--green-950);
}

.facility--gold p {
  color: rgba(8, 47, 35, 0.72);
}

.facility--dark {
  background: #1b2821;
  color: var(--white);
}

.facility--light {
  background: var(--white);
  color: var(--green-900);
}

.small-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.activities {
  padding-bottom: 50px;
  background: var(--white);
}

.activities__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.activities__intro {
  position: sticky;
  top: 150px;
}

.activities__intro > p:last-child {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.85;
}

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

.activities__list article {
  min-height: 190px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 220ms ease;
}

.activities__list article:hover {
  padding-left: 14px;
}

.activities__list article > span {
  color: var(--gold-500);
  font-family: var(--serif);
}

.activities__list h3 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
}

.activities__list p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.admission {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  color: var(--white);
}

.admission__rings {
  position: absolute;
  top: -180px;
  left: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.025),
    0 0 0 180px rgba(255, 255, 255, 0.018);
  will-change: transform;
}

.admission__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
}

.admission__intro > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.admission__intro .button {
  margin-top: 28px;
}

.admission__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.admission__steps li {
  min-height: 135px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: padding-left 220ms ease, background 220ms ease;
}

.admission__steps li:hover {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.admission__steps span {
  color: var(--gold-400);
  font-family: var(--serif);
}

.admission__steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.admission__steps p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.updates {
  background: var(--ivory);
}

.updates__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.update-feature,
.updates__stack article {
  padding: 42px;
}

.update-feature {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  background: var(--green-950);
  color: var(--white);
  transition: transform 120ms linear;
  transform-style: preserve-3d;
}

.update-feature__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.update-feature__meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold-400);
  color: var(--green-950);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.update-feature__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
}

.update-feature h3 {
  max-width: 650px;
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: clamp(35px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.08;
}

.update-feature > p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.update-feature .text-link {
  width: fit-content;
  margin-top: 28px;
}

.updates__stack {
  display: grid;
  gap: 22px;
}

.updates__stack article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: var(--white);
}

.updates__stack article > span {
  margin-bottom: auto;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.updates__stack h3 {
  margin: 50px 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.updates__stack p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hover-lift {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hover-lift:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(8, 47, 35, 0.09);
}

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

.guidelines__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: center;
}

.guidelines__intro > p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principles article {
  min-height: 230px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.principles article:hover {
  z-index: 1;
  background: var(--ivory);
  transform: scale(1.02);
}

.principles span {
  color: var(--gold-500);
  font-family: var(--serif);
}

.principles h3 {
  margin: 46px 0 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.notices__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
}

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

.notice-list article {
  min-height: 145px;
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.notice-list article > span {
  color: var(--green-700);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.notice-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.notice-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.notice-list a,
.notice-list button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--green-800);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.notice-list a:hover,
.notice-list button:hover {
  background: var(--green-900);
  color: var(--white);
  transform: rotate(8deg) scale(1.06);
}

.disclosure {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  padding: 60px;
  background: var(--green-950);
  color: var(--white);
}

.disclosure h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.disclosure > div > p:last-child {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.disclosure ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.disclosure li {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}

.disclosure li b {
  color: var(--gold-400);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.contact__intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
}

.contact__details {
  margin-top: 46px;
  display: grid;
  gap: 22px;
}

.contact__details a,
.contact__details p {
  margin: 0;
  display: grid;
  gap: 3px;
  color: var(--green-900);
  font-weight: 750;
}

.contact__details span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.enquiry-form {
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

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

.enquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 59, 43, 0.2);
  border-radius: 2px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.enquiry-form input,
.enquiry-form select {
  height: 54px;
  padding: 0 16px;
}

.enquiry-form textarea {
  padding: 14px 16px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(26, 104, 73, 0.1);
}

.enquiry-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.faq {
  padding-block: 0 120px;
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

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

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

.faq summary {
  position: relative;
  padding: 25px 44px 25px 0;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: var(--gold-500);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

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

.faq details p {
  max-width: 700px;
  margin: -4px 0 25px;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding-block: 82px 26px;
  background: var(--green-950);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 70px;
}

.brand--footer strong {
  color: var(--white);
}

.brand--footer img {
  width: 58px;
  height: 58px;
}

.footer__grid > div:first-child > p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 20px;
}

.footer__grid h2 {
  margin: 0 0 20px;
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer__grid a,
.footer__grid > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer__grid a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 70px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.portal {
  width: min(520px, calc(100vw - 32px));
  padding: 46px;
  border: 0;
  border-top: 5px solid var(--gold-500);
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.portal[open] {
  animation: dialogIn 240ms ease both;
}

.portal::backdrop {
  background: rgba(4, 25, 18, 0.78);
  backdrop-filter: blur(5px);
}

.portal > img {
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  object-fit: contain;
}

.portal h2 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15;
}

.portal > p:not(.eyebrow) {
  color: var(--muted);
}

.portal .button {
  margin-top: 12px;
}

.portal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--green-900);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.portal__close:hover {
  background: var(--cream);
  transform: rotate(90deg);
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px;
  background: var(--gold-400);
  color: var(--green-950);
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.js .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.js .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.js .reveal:nth-child(4) {
  transition-delay: 230ms;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1080px);
  }

  .main-menu {
    gap: 11px;
  }

  .main-menu a {
    font-size: 10px;
  }

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

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

  .about__grid,
  .activities__grid,
  .guidelines__grid,
  .contact__grid {
    gap: 64px;
  }
}

@media (max-width: 1020px) {
  .cursor-glow {
    display: none;
  }

  .topbar__inner > p {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-end;
  }

  .topbar__links {
    width: 100%;
    justify-content: space-between;
  }

  .menu-button {
    width: 54px;
    height: 54px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 24px;
    height: 2px;
    background: var(--green-900);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .menu-button b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-inline: 24px;
    border-bottom: 0 solid var(--line);
    background: var(--ivory);
    opacity: 0;
    transition: max-height 280ms ease, opacity 180ms ease, padding 280ms ease;
  }

  .main-menu.is-open {
    max-height: 680px;
    padding-block: 22px;
    border-bottom-width: 1px;
    opacity: 1;
  }

  .main-menu a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .main-menu .menu-cta {
    grid-column: 1 / 3;
    margin-top: 16px;
    text-align: center;
  }

  .hero__seal {
    display: none;
  }

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

  .promise article:nth-child(2) {
    border-right: 0;
  }

  .promise article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .promise article:nth-child(3),
  .promise article:nth-child(4) {
    border-bottom: 0;
  }

  .about__grid,
  .split-heading,
  .activities__grid,
  .admission__grid,
  .guidelines__grid,
  .notices__grid,
  .disclosure,
  .contact__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__copy {
    padding-top: 0;
  }

  .vision-card {
    grid-template-columns: 150px 1fr;
    padding: 42px;
  }

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

  .academic-card {
    min-height: 320px;
  }

  .activities__intro {
    position: static;
  }

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

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

  .disclosure {
    padding: 44px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 34px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 80px;
  }

  .topbar {
    display: none;
  }

  .navigation {
    min-height: 74px;
  }

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

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

  .brand b {
    font-size: 11px;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .main-menu {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .main-menu .menu-cta {
    grid-column: 1;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(5, 34, 24, 0.98) 0%, rgba(5, 34, 24, 0.86) 50%, rgba(5, 34, 24, 0.18) 100%),
      linear-gradient(90deg, rgba(5, 34, 24, 0.55), transparent);
  }

  .hero__content {
    padding-block: 210px 74px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
    line-height: 0.98;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .scroll-cue {
    display: none;
  }

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

  .promise article,
  .promise article:not(:first-child) {
    min-height: 126px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .promise article:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding-block: 84px;
  }

  .section-title h2,
  .split-heading h2,
  .activities__intro h2,
  .admission__intro h2,
  .guidelines__intro h2,
  .notices__title h2,
  .contact__intro h2,
  .faq h2 {
    font-size: 42px;
  }

  .vision-card {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 26px;
  }

  .vision-card__mark {
    height: 110px;
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vision-card__mark img {
    width: 90px;
    height: 90px;
  }

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

  .laurels article {
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .academic-card {
    min-height: 330px;
    padding: 28px;
  }

  .learning-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .learning-flow i {
    transform: rotate(90deg);
  }

  .facilities__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(250px, auto));
  }

  .facility--main {
    grid-row: auto;
  }

  .activities__list article {
    min-height: 170px;
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .activities__list h3 {
    font-size: 24px;
  }

  .admission__steps li {
    grid-template-columns: 45px 1fr;
  }

  .update-feature {
    min-height: 460px;
    padding: 30px;
  }

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

  .updates__stack article {
    min-height: 250px;
    padding: 30px;
  }

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

  .principles article {
    min-height: 200px;
  }

  .notice-list article {
    min-height: 160px;
    grid-template-columns: 1fr 44px;
    gap: 12px;
    padding-block: 20px;
  }

  .notice-list article > span {
    grid-column: 1 / 3;
  }

  .disclosure {
    margin-top: 70px;
    padding: 34px 24px;
  }

  .disclosure li {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .enquiry-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq {
    padding-bottom: 84px;
  }

  .faq__grid {
    padding-top: 64px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 26px;
  }

  .footer__grid > div:first-child {
    grid-column: 1 / 3;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .portal {
    padding: 36px 24px;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

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

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