:root {
  --green: #0b4a33;
  --green-2: #123f31;
  --gold: #d4a842;
  --ink: #17201c;
  --muted: #65736c;
  --paper: #f7f3eb;
  --white: #ffffff;
  --line: rgba(23, 32, 28, 0.14);
  --shadow: 0 22px 55px rgba(16, 33, 27, 0.16);
  --site-max: 100vw;
  --content-max: 1680px;
  --content-narrow: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

body > main {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.academics-page-hero,
.admissions-page-hero,
.global-page-hero,
.arts-page-hero,
.athletics-page-hero,
.vca-life-page-hero {
  justify-items: center;
}

.academics-page-hero > div,
.admissions-page-hero > div,
.global-page-hero > div,
.arts-page-hero > div,
.athletics-page-hero > div,
.vca-life-page-hero > div {
  width: min(var(--content-narrow), 100%);
  justify-self: center;
  margin-inline: auto;
  text-align: center;
}

.academics-page-hero h1,
.academics-page-hero p,
.admissions-page-hero h1,
.admissions-page-hero p,
.global-page-hero h1,
.global-page-hero p,
.arts-page-hero h1,
.arts-page-hero p,
.athletics-page-hero h1,
.athletics-page-hero p,
.vca-life-page-hero h1,
.vca-life-page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.academics-overview,
.academics-content,
.admissions-panel,
.tour-section,
.global-overview,
.global-detail,
.arts-overview,
.arts-detail,
.arts-gallery-section,
.media-gallery-section,
.athletics-overview,
.athletics-detail,
.vca-life-overview,
.vca-life-detail,
.vca-life-accordion,
.vca-life-project-grid,
.vca-life-section-grid {
  width: min(100%, var(--site-max));
  margin-inline: auto;
}

.academics-content .intro,
.course-grid,
.academics-pdf-row,
.tour-intro,
.tour-feature,
.tour-list,
.tour-form,
.global-campus-grid,
.arts-menu-grid,
.arts-program-list,
.media-gallery-heading,
.media-scroll-gallery,
.athletics-menu-grid,
.vca-life-menu-grid,
.vca-life-further,
.vca-life-project-grid,
.vca-life-section-grid {
  margin-left: auto;
  margin-right: auto;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.25rem, 8vw, 7.7rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

p {
  margin: 0;
}

p,
li,
small,
span,
strong,
h1,
h2,
h3,
.button,
.nav-dropdown a {
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  right: auto;
  width: min(100%, var(--site-max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(11, 74, 51, 0.97);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(11, 74, 51, 0.97);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 132px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 28px);
  min-width: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 7px 0;
  white-space: nowrap;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .nav-item > a {
  display: block;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 80;
  width: min(860px, calc(100vw - 72px));
  padding: 0;
  overflow: visible;
  background: rgba(246, 241, 232, 0.98);
  border: 1px solid rgba(199, 155, 40, 0.34);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
  color: var(--green);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
  content: "";
  background: transparent;
}

.nav-mega {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  text-align: left;
}

.mega-intro {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px;
  background: var(--green);
  color: #fff;
}

.mega-intro span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mega-intro strong {
  font-size: 1.65rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(199, 155, 40, 0.25);
}

.nav-mega-wide {
  width: min(1120px, calc(100vw - 72px));
  grid-template-columns: 250px minmax(0, 1fr);
}

.nav-dropdown[aria-label="Global campuses submenu"],
.nav-dropdown[aria-label="Arts submenu"],
.nav-dropdown[aria-label="Athletics submenu"] {
  right: 0;
  left: auto;
  width: min(960px, calc(100vw - 72px));
  transform: translateY(8px);
}

.nav-dropdown[aria-label="VCA Life submenu"] {
  right: 0;
  left: auto;
  width: min(960px, calc(100vw - 72px));
  transform: translateY(8px);
}

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

.vca-life-mega-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  min-width: 0;
  background: rgba(199, 155, 40, 0.25);
}

.vca-life-mega-group {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 1px;
  min-width: 0;
  background: #f6f1e8;
}

.vca-life-mega-primary {
  min-height: 58px !important;
  background: var(--green) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 900;
  letter-spacing: 0.08em !important;
}

.vca-life-mega-group:first-child .vca-life-mega-primary {
  grid-column: 1 / -1;
  min-height: 56px !important;
}

.vca-life-mega-secondary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.vca-life-mega-group:nth-child(3) .vca-life-mega-secondary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vca-life-mega-secondary a {
  min-height: 58px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.54rem, 0.6vw, 0.64rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

.nav-dropdown .vca-life-calendar-link {
  min-height: 50px;
  background: var(--gold);
  color: #172c22;
  font-weight: 900;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 52px;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  font-size: clamp(0.66rem, 0.78vw, 0.76rem);
  letter-spacing: clamp(0.02em, 0.18vw, 0.08em);
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: left;
  text-transform: uppercase;
  white-space: normal;
}

.nav-dropdown[aria-label="Global campuses submenu"] a,
.nav-dropdown[aria-label="VCA Life submenu"] a {
  padding-inline: clamp(14px, 1.3vw, 20px);
}

.nav-dropdown[aria-label="Arts submenu"] .mega-links a[href="arts.html"] {
  order: 1;
}

.nav-dropdown[aria-label="Arts submenu"] .mega-links a[href="arts-students-gain.html"] {
  order: 2;
}

.nav-dropdown[aria-label="Arts submenu"] .mega-links a[href="arts-we-provide.html"] {
  order: 3;
}

.nav-dropdown[aria-label="Arts submenu"] .mega-links a[href="arts-performing.html"] {
  order: 4;
}

.nav-dropdown[aria-label="Arts submenu"] .mega-links a[href="arts-studio.html"] {
  order: 5;
}

.nav-dropdown[aria-label="Arts submenu"] .mega-links a[href="arts-musical.html"] {
  order: 6;
}

.nav-dropdown[aria-label="Arts submenu"] .mega-links a[href="arts-dance.html"] {
  order: 7;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(199, 155, 40, 0.2);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .nav-dropdown[aria-label="VCA Life submenu"],
.has-dropdown:focus-within .nav-dropdown[aria-label="VCA Life submenu"] {
  transform: translateY(0);
}

.has-dropdown:hover .nav-dropdown[aria-label="Global campuses submenu"],
.has-dropdown:focus-within .nav-dropdown[aria-label="Global campuses submenu"],
.has-dropdown:hover .nav-dropdown[aria-label="Arts submenu"],
.has-dropdown:focus-within .nav-dropdown[aria-label="Arts submenu"],
.has-dropdown:hover .nav-dropdown[aria-label="Athletics submenu"],
.has-dropdown:focus-within .nav-dropdown[aria-label="Athletics submenu"] {
  transform: translateY(0);
}

.main-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.main-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 35, 25, 0.86), rgba(6, 35, 25, 0.44) 52%, rgba(6, 35, 25, 0.1)),
    linear-gradient(0deg, rgba(6, 35, 25, 0.66), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 170px 0 88px;
}

.hero-content p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #1c241f;
}

.button.secondary {
  color: var(--white);
}

.hero-note {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 4vw, 64px);
  bottom: 24px;
  max-width: 470px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-pad,
.intro-band,
.history-panel,
.site-footer {
  padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 76px);
}

.home-motto {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 76px);
  background: var(--green);
  color: var(--white);
}

.home-motto span {
  min-height: 170px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  font-weight: 700;
}

.home-motto span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ppt-slide {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(100vh, 56.25vw);
  background: #fff;
  overflow: hidden;
}

.ppt-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.canvas-slide {
  position: relative;
  min-height: min(100vh, 56.25vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
}

.canvas-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.canvas-motto-words {
  position: absolute;
  z-index: 1;
  left: 13%;
  top: 29%;
  display: grid;
  gap: 0.15em;
  color: #105741;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 7.4vw, 8.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.canvas-about-panel {
  position: absolute;
  z-index: 1;
  left: 13.5%;
  top: 10%;
  width: 73%;
  color: #9f7c25;
  text-align: center;
}

.canvas-about-panel h2 {
  color: #9f7c25;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 7.2vw, 8.3rem);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
}

.canvas-about-panel p {
  width: min(1120px, 86%);
  margin: clamp(28px, 5vw, 88px) auto 0;
  font-size: clamp(0.95rem, 1.9vw, 2.25rem);
  line-height: 1.38;
}

.canvas-ranking {
  position: relative;
  min-height: 0;
  aspect-ratio: auto;
  padding: clamp(42px, 3.35vw, 72px) 3.2% clamp(26px, 2.5vw, 48px);
  overflow: hidden;
  background: #105741;
  color: #fff;
}

.ranking-hero-row {
  display: grid;
  grid-template-columns: 12% minmax(0, 1fr) 20%;
  align-items: center;
  gap: 2.4%;
}

.niche-badge {
  width: 100%;
  max-width: 195px;
}

.ranking-title {
  position: relative;
  min-width: 0;
  padding-left: 0.4%;
  padding-bottom: 1.2%;
}

.ranking-title span {
  position: absolute;
  left: 0;
  top: -0.9em;
}

.ranking-title b {
  position: absolute;
  right: 8%;
  bottom: -0.45em;
  min-width: 0;
}

.ranking-title span,
.ranking-title b {
  color: #c79b28;
  font-size: clamp(1rem, 2.25vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.ranking-title h2 {
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.62vw, 5.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.18;
  white-space: nowrap;
}

.accreditations-button {
  display: grid;
  place-items: center;
  min-height: clamp(46px, 4.9vw, 94px);
  padding: 0 8%;
  border-radius: 8px;
  background: #c79b28;
  color: #fff;
  font-size: clamp(0.86rem, 1.85vw, 2.25rem);
  line-height: 1;
  white-space: nowrap;
}

.ranking-grid-canvas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.45vw, 28px) clamp(14px, 2.25vw, 42px);
  margin-top: 2.5%;
}

.ranking-grid-canvas article {
  display: grid;
  align-content: center;
  min-height: clamp(96px, 10.5vw, 202px);
  padding: 4.5% 6.5%;
  border-radius: 8px;
  background: #427d69;
  overflow: hidden;
}

.ranking-grid-canvas strong {
  color: #d3a637;
  font-size: clamp(2.15rem, 4.85vw, 5.65rem);
  font-weight: 900;
  line-height: 0.8;
}

.ranking-grid-canvas span {
  margin-top: 3.8%;
  color: #fff;
  font-size: clamp(0.72rem, 1.28vw, 1.48rem);
  font-weight: 900;
  line-height: 1.13;
}

.ranking-footnote {
  position: relative;
  z-index: 2;
  margin: clamp(10px, 1vw, 18px) 0 0 0.35%;
  color: #fff;
  font-size: clamp(0.8rem, 1.12vw, 1.28rem);
  line-height: 1;
}

.canvas-report {
  position: relative;
  min-height: min(100vh, 43vw);
  aspect-ratio: 16 / 7.05;
  overflow: hidden;
  background: #f3f4f1;
}

.canvas-report-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.accreditation-logos {
  position: absolute;
  left: 7.5%;
  top: 21%;
  width: 36%;
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  gap: 3.2%;
  align-items: center;
}

.accreditation-logos img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.accreditation-logos .acts-logo {
  grid-row: span 2;
}

.accreditation-logos .ap-logo {
  align-self: end;
}

.report-copy {
  position: absolute;
  right: 9.4%;
  top: 20%;
  width: 40%;
  display: grid;
  justify-items: center;
  color: #105741;
  text-align: center;
}

.report-copy img {
  width: min(56%, 530px);
  margin-bottom: 2.8%;
}

.report-copy h2 {
  color: #105741;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.75vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
}

.report-copy p {
  margin-top: 1.2%;
  color: #62666a;
  font-size: clamp(0.85rem, 1.45vw, 1.7rem);
  font-weight: 900;
  line-height: 1.1;
}

.report-copy a {
  display: grid;
  place-items: center;
  width: min(76%, 520px);
  min-height: clamp(42px, 4.15vw, 80px);
  margin-top: 5.5%;
  padding: 0 4%;
  border-radius: 6px;
  background: #c79b28;
  color: #fff;
  font-size: clamp(0.95rem, 1.7vw, 2.05rem);
  line-height: 1;
  white-space: nowrap;
}

.canvas-graduation {
  position: relative;
  height: clamp(500px, 38vw, 660px);
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  background: #fff;
  color: #105741;
  text-align: center;
}

.graduation-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 18%, #000 36%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 18%, #000 36%, #000 100%);
}

.graduation-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #fff 0 24%, rgba(255, 255, 255, 0.76) 44%, rgba(255, 255, 255, 0.58) 66%, rgba(255, 255, 255, 0.34) 100%),
    rgba(255, 255, 255, 0.08);
}

.graduation-mark {
  position: absolute;
  top: 5.6%;
  left: 50%;
  width: min(16%, 300px);
  transform: translateX(-50%);
  opacity: 0.72;
}

.graduation-copy {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 24.8%;
  width: min(980px, 78%);
  display: grid;
  justify-items: center;
  transform: translateX(-50%);
}

.graduation-copy p,
.graduation-copy strong {
  color: #9f7c25;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 0.9;
}

.graduation-copy p {
  margin: 0 0 clamp(7px, 0.58vw, 13px);
  font-size: clamp(1.15rem, 2.45vw, 2.9rem);
}

.graduation-copy h2 {
  margin: 0;
  color: #105741;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5.75vw, 6.7rem);
  font-weight: 900;
  line-height: 0.84;
  white-space: nowrap;
}

.graduation-copy strong {
  display: block;
  margin-top: clamp(7px, 0.58vw, 13px);
  font-size: clamp(1rem, 2.25vw, 2.7rem);
}

.graduation-copy span {
  position: relative;
  display: block;
  width: min(50%, 540px);
  height: 4px;
  margin: 5.6% auto 0;
  background: #c79b28;
}

.graduation-copy span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 50%;
  background: #c79b28;
  transform: translate(-50%, -50%);
}

.home-motion {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

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

.home-motion:is(.ppt-slide, .canvas-report, .canvas-graduation) > img:first-child {
  transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.home-motion.is-visible:is(.ppt-slide, .canvas-report, .canvas-graduation) > img:first-child {
  transform: scale(1.015);
}

.home-motion.is-visible:is(.ranking-grid-canvas article, .canvas-news-card):hover,
.report-copy a:hover,
.hero-actions .button:hover,
.graduate-ppt-tabs button:hover {
  transform: translateY(-6px);
  filter: brightness(1.04);
}

.report-copy a,
.hero-actions .button,
.graduate-ppt-tabs button {
  transition:
    transform 360ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 360ms ease,
    background-color 360ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .home-motion,
  .home-motion:is(.ppt-slide, .canvas-report, .canvas-graduation) > img:first-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.canvas-news {
  position: relative;
  padding: clamp(74px, 8vw, 140px) 3.2% clamp(62px, 6vw, 110px);
  overflow: hidden;
  background: #fff;
}

.canvas-news::before {
  position: absolute;
  right: 2%;
  top: -0.38em;
  content: "News & Views";
  color: rgba(16, 87, 65, 0.06);
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.canvas-news-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(24px, 3vw, 44px);
  color: #105741;
  text-align: center;
}

.canvas-news-heading span {
  color: #c79b28;
  font-size: clamp(0.9rem, 1.2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.canvas-news-heading h2 {
  margin-top: 6px;
  color: #105741;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: 0.95;
}

.canvas-news-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.1vw, 40px);
}

.canvas-news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  padding: 0;
  border: 0;
  background: #105741;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.canvas-news-card img {
  width: 100%;
  aspect-ratio: 573 / 360;
  object-fit: cover;
}

.canvas-news-card .seoul-news-image {
  object-position: center 76%;
}

.canvas-card-copy {
  display: grid;
  align-content: start;
  min-height: clamp(170px, 17.8vw, 330px);
  padding: 6.5% 7.5% 10%;
  overflow: hidden;
}

.canvas-card-copy strong {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2.35rem);
  font-weight: 900;
  line-height: 1.18;
}

.canvas-card-copy small {
  display: block;
  margin-top: 2.8%;
  color: #fff;
  font-size: clamp(0.78rem, 1.05vw, 1.24rem);
  font-weight: 800;
  line-height: 1.18;
}

.ppt-repair {
  display: block;
}

.ppt-repair > img {
  width: 100%;
}

.about-repair::before {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 2.4%;
  content: "";
  background: #fff;
}

.ranking-repair::after {
  position: absolute;
  z-index: 1;
  left: 2.85%;
  top: 30.9%;
  width: 94%;
  height: 64.1%;
  content: "";
  background: #115d43;
}

.ranking-repair::before {
  position: absolute;
  z-index: 2;
  right: 4.35%;
  top: 12.45%;
  width: 17.9%;
  height: 7.2%;
  content: "ACCREDITATIONS";
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #c99d26;
  box-shadow: 0 0 0 8px #115d43;
  color: #fff;
  font-size: clamp(1rem, 1.85vw, 2.24rem);
  line-height: 1;
  white-space: nowrap;
}

.about-repair-mask,
.about-repair-text,
.about-leak-cover,
.ranking-card-fix,
.footer-top-fix,
.footer-heading-fix,
.admission-copy-fix {
  position: absolute;
  z-index: 2;
}

.about-repair-mask {
  left: 18%;
  top: 8.4%;
  width: 73%;
  height: 68%;
  background: #fff;
}

.about-leak-cover {
  z-index: 3;
  left: 9.6%;
  top: 31.5%;
  width: 14.2%;
  height: 58%;
  background: #fff;
}

.about-repair-text {
  z-index: 4;
  left: 12%;
  top: 11.5%;
  width: 76%;
  color: #9f7c25;
  text-align: center;
}

.about-repair-text h2 {
  margin: 0 0 2.8%;
  color: #9f7c25;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 7vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  white-space: nowrap;
}

.about-repair-text p {
  margin: 0 auto;
  max-width: 78%;
  font-size: clamp(0.82rem, 1.72vw, 2.24rem);
  line-height: 1.34;
}

.ranking-card-fix {
  display: grid;
  align-content: center;
  justify-items: start;
  width: 29.55%;
  height: 19.1%;
  padding: 1.45% 2.1%;
  border-radius: 8px;
  background: #397c68;
  color: #fff;
}

.ranking-card-fix strong {
  display: block;
  color: #d0a126;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 0.72;
  white-space: nowrap;
}

.ranking-card-fix span {
  display: block;
  margin-top: 4%;
  max-width: 100%;
  color: #fff;
  font-size: clamp(0.58rem, 1.26vw, 1.52rem);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.ranking-card-fix.r7 span,
.ranking-card-fix.r8 span,
.ranking-card-fix.r9 span {
  white-space: normal;
}

.ranking-card-fix.r1,
.ranking-card-fix.r4,
.ranking-card-fix.r7 {
  left: 3.28%;
}

.ranking-card-fix.r2,
.ranking-card-fix.r5,
.ranking-card-fix.r8 {
  left: 34.95%;
}

.ranking-card-fix.r3,
.ranking-card-fix.r6,
.ranking-card-fix.r9 {
  left: 66.63%;
}

.ranking-card-fix.r1,
.ranking-card-fix.r2,
.ranking-card-fix.r3 {
  top: 31.55%;
}

.ranking-card-fix.r4,
.ranking-card-fix.r5,
.ranking-card-fix.r6 {
  top: 52.98%;
}

.ranking-card-fix.r7,
.ranking-card-fix.r8,
.ranking-card-fix.r9 {
  top: 74.35%;
}

.admission-repair {
  aspect-ratio: 16 / 7.15;
  overflow: hidden;
}

.admission-repair img {
  width: 100%;
  max-width: none;
}

.admission-repair::before {
  position: absolute;
  z-index: 2;
  left: 53.6%;
  top: 30.1%;
  width: 44.3%;
  height: 27.4%;
  content: "";
  border-radius: 18px;
  background: rgba(242, 242, 238, 0.96);
  box-shadow: 0 0 42px 32px rgba(242, 242, 238, 0.92);
}

.admission-copy-fix {
  left: 55.8%;
  top: 37.3%;
  width: 39.6%;
  height: 12%;
  display: grid;
  align-content: center;
  justify-items: center;
  color: #0c5b40;
  text-align: center;
}

.admission-copy-fix h2 {
  color: #0c5b40;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2.02vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.news-card-fix {
  position: absolute;
  z-index: 2;
  top: 53.1%;
  width: 28.8%;
  height: 25.4%;
  display: grid;
  align-content: start;
  padding: 1.35% 2.25%;
  background: #075f43;
  color: #fff;
  pointer-events: none;
}

.news-card-fix-1 {
  left: 3.95%;
}

.news-card-fix-2 {
  left: 35.9%;
}

.news-card-fix-3 {
  left: 67.85%;
}

.news-card-fix h3 {
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.82vw, 2.18rem);
  font-weight: 800;
  line-height: 1.16;
}

.news-card-fix p {
  margin-top: 1.15%;
  color: #fff;
  font-size: clamp(0.7rem, 1.05vw, 1.24rem);
  font-weight: 800;
  line-height: 1.18;
}

.news-card-fix-2 p {
  font-size: clamp(0.66rem, 0.96vw, 1.14rem);
  line-height: 1.12;
}

.admission-copy-fix p {
  margin-top: 0.9%;
  color: #6c6f73;
  font-size: clamp(0.78rem, 1.28vw, 1.55rem);
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

.footer-top-fix {
  left: 7%;
  top: 35.6%;
  width: 44%;
  height: 8.5%;
  display: grid;
  place-items: start center;
  background: #fff;
  color: #6c6f73;
  text-align: center;
}

.footer-top-fix p {
  max-width: 76%;
  font-size: clamp(0.9rem, 1.72vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.footer-heading-fix {
  top: 53.6%;
  height: 7.3%;
  display: grid;
  place-items: center;
  border-bottom: 3px solid #c99d26;
  background: #0c5b40;
  color: #fff;
  font-size: clamp(1rem, 2.05vw, 2.55rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.footer-heading-fix.f1 {
  left: 3.5%;
  width: 16.4%;
}

.footer-heading-fix.f2 {
  left: 23%;
  width: 16.4%;
}

.footer-heading-fix.f3 {
  left: 42.5%;
  width: 16.4%;
}

.footer-heading-fix.f4 {
  left: 62%;
  width: 16.4%;
}

.footer-heading-fix.f5 {
  left: 81.5%;
  width: 16.4%;
}

.about-ppt-fix {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(100vh, 56.25vw);
  padding: clamp(80px, 8vw, 136px) clamp(24px, 10vw, 180px);
  overflow: hidden;
  background: #fff;
  color: #9b7a29;
  text-align: center;
}

.about-ppt-fix::before {
  position: absolute;
  left: -3vw;
  bottom: -5vw;
  width: min(25vw, 330px);
  aspect-ratio: 1;
  content: "";
  border: 18px solid rgba(155, 122, 41, 0.08);
  border-radius: 50% 50% 8% 50%;
  transform: rotate(45deg);
}

.about-ppt-fix::after {
  position: absolute;
  top: 7%;
  right: 2.5%;
  bottom: 4%;
  width: 13px;
  content: "";
  border-left: 3px solid #8a5528;
  border-right: 3px solid #8a5528;
}

.about-ppt-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
}

.about-ppt-heading {
  display: inline-block;
  margin-bottom: clamp(28px, 4vw, 62px);
  color: #9b7a29;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.8rem, 8vw, 8.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  white-space: nowrap;
}

.about-ppt-inner p {
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(1.32rem, 2.1vw, 2.58rem);
  font-weight: 400;
  line-height: 1.34;
}

.rank-ppt-fix {
  display: grid;
  min-height: min(100vh, 56.25vw);
  padding: clamp(72px, 7vw, 120px) clamp(24px, 7vw, 126px);
  background: #0b4a33;
  color: #fff;
}

.rank-ppt-inner {
  width: min(100%, 1320px);
  margin: auto;
}

.rank-ppt-kicker {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: clamp(1rem, 1.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rank-ppt-fix h2 {
  margin-bottom: clamp(28px, 4vw, 58px);
  color: var(--gold);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5.6vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
  white-space: nowrap;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
}

.rank-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 1.1vw, 18px);
  min-height: clamp(86px, 8vw, 132px);
  padding: clamp(14px, 1.6vw, 24px);
  border: 2px solid rgba(212, 168, 66, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.rank-grid strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 0.82;
  white-space: nowrap;
}

.rank-grid span {
  min-width: 0;
  font-size: clamp(0.86rem, 1.08vw, 1.24rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  white-space: nowrap;
}

.footer-ppt-fix {
  background: #0b4a33;
  color: #fff;
}

.footer-report {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vw, 112px);
  min-height: clamp(190px, 25vw, 430px);
  padding: clamp(46px, 7vw, 100px) clamp(24px, 8vw, 140px);
  background: #fff;
  color: #9b7a29;
  text-align: center;
}

.footer-report p {
  color: #9b7a29;
  font-size: clamp(2.1rem, 4.2vw, 5.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.footer-report a {
  display: inline-grid;
  place-items: center;
  min-height: 58px;
  padding: 16px 32px;
  border: 2px solid #9b7a29;
  color: #9b7a29;
  font-size: clamp(0.86rem, 1.1vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 88px);
  padding: clamp(48px, 6vw, 86px) clamp(24px, 7vw, 126px);
}

.footer-brand img {
  width: min(210px, 70vw);
  margin-bottom: 30px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-brand p + p {
  margin-top: 28px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 44px);
}

.footer-columns div {
  min-width: 0;
}

.footer-columns h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.84rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-columns a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  line-height: 1.35;
}

.ppt-news {
  overflow: visible;
}

.news-hotspot {
  position: absolute;
  top: 28%;
  bottom: 10%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.news-hotspot:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: -4px;
}

.news-hotspot-1 {
  left: 3.4%;
  width: 30%;
}

.news-hotspot-2 {
  left: 35%;
  width: 30%;
}

.news-hotspot-3 {
  left: 67%;
  width: 30%;
}

.news-modal[hidden] {
  display: none;
}

.news-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.news-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.news-modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  width: 54px;
  height: 54px;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.news-modal-track img {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail {
  padding: clamp(34px, 5vw, 70px);
  color: var(--ink);
  background: #fff;
}

.news-detail + .news-detail {
  border-top: 1px solid var(--line);
}

.news-detail h2 {
  color: var(--green);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.news-detail time {
  display: block;
  margin-top: 16px;
  color: #9f7c25;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-detail p {
  margin-top: 22px;
  color: #37423d;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.news-detail--plain p:first-child {
  margin-top: 0;
}

.graduate-ppt {
  background: #fff;
  padding-top: clamp(26px, 3.2vw, 54px);
}

.graduate-ppt-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
  color: #a77f1c;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.graduate-ppt-tabs button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.graduate-ppt-tabs button.active {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 9px;
}

.graduate-ppt-slider {
  position: relative;
  min-height: clamp(520px, 56vw, 820px);
  overflow: hidden;
}

.graduate-ppt-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 31% 1fr;
  align-items: center;
  padding: 3% 4% 4% 5.5%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.graduate-ppt-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.graduate-ppt-media {
  position: relative;
  z-index: 2;
  width: 100%;
  height: min(680px, 44vw);
  overflow: hidden;
  box-shadow: 0 26px 34px rgba(0, 0, 0, 0.2);
}

.graduate-ppt-media::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: clamp(82px, 20%, 138px);
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.graduate-ppt-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.graduate-ppt-copy {
  min-height: min(620px, 43vw);
  display: grid;
  align-content: center;
  margin-left: -3%;
  padding: clamp(30px, 5vw, 84px) clamp(26px, 6vw, 120px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(14, 107, 57, 0.96), rgba(14, 107, 57, 0.96)),
    repeating-linear-gradient(45deg, transparent 0 110px, rgba(255,255,255,.05) 110px 130px);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.7;
  font-weight: 700;
}

.graduate-ppt-copy h2 {
  margin-top: 18px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4.4vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.graduate-ppt-copy p {
  max-width: 900px;
  margin: 14px auto 0;
  font-size: clamp(1rem, 1.72vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
}

.graduate-ppt-name {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4.5%, 34px);
  z-index: 2;
  width: calc(100% - 40px);
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(1.1rem, 2.1vw, 2rem);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.anchor-target {
  position: relative;
  display: block;
  top: -90px;
  height: 0;
  overflow: hidden;
}

.about-main {
  background: #f6f1e8;
}

.about-page-hero {
  position: relative;
  min-height: min(84vh, 52vw);
  display: grid;
  place-items: center;
  padding: 140px 24px 70px;
  overflow: hidden;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.about-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.about-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 49, 34, 0.55), rgba(8, 49, 34, 0.2));
}

.about-page-hero div {
  position: relative;
  z-index: 1;
}

.about-page-hero p,
.about-kicker {
  color: #c79b28;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-page-hero h1 {
  margin-top: 14px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(4rem, 11vw, 12rem);
  font-weight: 900;
  line-height: 0.9;
}

.about-section {
  scroll-margin-top: 110px;
  padding: clamp(64px, 7vw, 118px) clamp(22px, 6vw, 112px);
  background: #fff;
  color: var(--ink);
}

.about-section:nth-of-type(odd) {
  background: #f6f1e8;
}

.about-section h2 {
  color: var(--green);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 900;
  line-height: 0.96;
}

.about-section h3 {
  margin-top: 28px;
  color: #9f7c25;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

.about-section p {
  margin-top: 18px;
  color: #34423c;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.72;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}

.about-split .about-kicker {
  grid-column: 1 / -1;
}

.about-split.reverse {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.about-split.reverse .about-copy {
  order: 2;
}

.about-split.reverse figure {
  order: 1;
}

.about-split figure,
.campus-grid figure {
  margin: 0;
}

.about-split figure img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-text-panel {
  text-align: center;
}

.about-text-panel p {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.about-motto {
  color: #9f7c25 !important;
  font-size: clamp(1.2rem, 1.7vw, 1.9rem) !important;
  font-weight: 900;
}

.accreditions-section > p,
.people-section > p {
  max-width: 980px;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  margin-top: 42px;
}

.accreditation-grid article,
.people-grid article,
.niche-list {
  background: #f6f1e8;
  border: 1px solid rgba(23, 32, 28, 0.08);
}

.accreditation-grid article {
  min-width: 0;
  padding: clamp(18px, 1.8vw, 28px);
}

.accreditation-grid img {
  width: clamp(58px, 5.4vw, 84px);
  height: clamp(58px, 5.4vw, 84px);
  object-fit: contain;
}

.niche-list {
  display: grid;
  grid-template-columns: minmax(70px, 96px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(20px, 2.2vw, 28px);
}

.niche-badge-link {
  display: inline-grid;
  place-items: center;
  width: clamp(66px, 6vw, 92px);
  justify-self: center;
}

.niche-badge-link img {
  display: block;
  width: 100%;
  height: auto;
}

.niche-list ul {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.niche-list li,
.niche-profile-note {
  color: #2d3f39;
  font-size: clamp(0.78rem, 0.92vw, 1rem);
  font-weight: 700;
  line-height: 1.22;
}

.niche-list li::before {
  content: "\2022  ";
  color: #9f7c25;
}

.niche-profile-note {
  margin-top: 10px;
  font-style: italic;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 36px);
  margin-top: 44px;
}

.people-grid article {
  min-width: 0;
  overflow: hidden;
  text-align: center;
}

.people-grid img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: contain;
  background: #fff;
}

.people-grid h3 {
  margin: 18px 16px 8px;
}

.people-grid p {
  margin: 0 16px 22px;
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

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

.about-contact-form input,
.about-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 28, 0.18);
  background: #fff;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
}

.about-contact-form textarea {
  grid-column: 1 / -1;
  min-height: 170px;
  resize: vertical;
}

.about-contact-form button {
  justify-self: start;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
  margin-top: 42px;
}

.campus-grid img {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
}

.campus-grid figcaption {
  padding: 14px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.about-landing-main {
  background: #fff;
}

.about-canvas-hero {
  min-height: min(76vh, 48vw);
}

.about-title-hero {
  position: relative;
  min-height: min(72vh, 46vw);
  display: grid;
  place-items: center;
  padding: 150px clamp(22px, 7vw, 130px) 76px;
  overflow: hidden;
  background: #f7f4ed;
  color: var(--green);
  text-align: center;
}

.about-title-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(1);
}

.about-title-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.48));
}

.about-title-hero div {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.about-title-hero p {
  color: #9f7c25;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-title-hero h1 {
  margin-top: 14px;
  color: var(--green);
  font-size: clamp(3.8rem, 8.8vw, 10rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.history-title-hero img,
.accreditions-title-hero img,
.people-title-hero img,
.contact-title-hero img,
.campus-title-hero img {
  object-position: center;
}

.about-menu-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(30px, 6vw, 98px);
  align-items: center;
  padding: clamp(70px, 8vw, 130px) clamp(24px, 7vw, 130px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)),
    url("assets/about-canvasite/MAHLO8rNvvA.jpg.webp") center / cover;
}

.about-menu-copy h2 {
  margin-top: 14px;
  color: var(--green);
  font-size: clamp(3.1rem, 6vw, 7.8rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.about-menu-copy p:last-child {
  max-width: 620px;
  margin-top: 24px;
  color: #52625a;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

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

.about-menu-grid a {
  display: grid;
  min-height: 78px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(36, 85, 62, 0.94);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-menu-grid a:hover,
.about-menu-grid a:focus-visible {
  background: #c79b28;
  color: #15291f;
}

.about-canvas-panel {
  position: relative;
  overflow: hidden;
}

.about-canvas-panel::before {
  position: absolute;
  inset: 28px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(143, 105, 58, 0.32);
  pointer-events: none;
}

.about-canvas-panel > * {
  position: relative;
  z-index: 1;
}

.about-worldview {
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.91), rgba(255, 255, 255, 0.95)),
    url("assets/about-canvasite/MAHLO8rNvvA.jpg.webp") center / cover;
}

.about-worldview p {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.about-worldview strong {
  display: block;
  margin-top: 30px;
  color: #9f7c25;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
}

.campus-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
  margin-top: 42px;
}

.campus-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.campus-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 2.85;
  object-fit: cover;
}

.campus-gallery-grid figcaption {
  padding: 14px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.site-directory-footer {
  position: relative;
  display: block;
  min-height: 0;
  padding: 58px clamp(28px, 5vw, 70px) 72px;
  overflow: visible;
  background: var(--green);
  border-top: 22px solid var(--gold);
  color: #fff;
}

.site-directory-footer::before,
.site-directory-footer img:first-child,
.site-directory-footer .footer-top-fix,
.site-directory-footer .footer-heading-fix {
  display: none !important;
}

.footer-directory-columns {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.05fr 1.05fr 1fr;
  gap: clamp(22px, 4vw, 58px);
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--gold);
}

.footer-directory-columns h2 {
  display: inline-block;
  min-width: min(100%, 320px);
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
}

.footer-directory-columns a {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.55rem);
  line-height: 1.18;
  text-transform: uppercase;
}

.footer-directory-columns a:hover,
.footer-directory-columns a:focus-visible {
  color: var(--gold);
}

.footer-directory-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: center;
  align-items: center;
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-top: 44px;
  text-align: center;
}

.footer-directory-bottom img {
  display: none;
  width: min(300px, 100%);
  opacity: 0.95;
}

.footer-directory-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.45rem);
  line-height: 1.65;
  text-align: center;
}

.academics-main {
  background: #fff;
}

.academics-page-hero {
  position: relative;
  min-height: min(76vh, 50vw);
  display: grid;
  place-items: center;
  padding: 150px clamp(24px, 7vw, 120px) 80px;
  overflow: hidden;
  background: #f6f1e8;
  color: var(--green);
  text-align: center;
}

.academics-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  filter: grayscale(1);
}

.academics-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.52));
}

.academics-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.academics-page-hero p {
  color: #717273;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.academics-page-hero h1 {
  margin-top: 14px;
  color: var(--green);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.academics-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: center;
  padding: clamp(70px, 8vw, 130px) clamp(24px, 7vw, 128px);
  background: #fff;
}

.academics-overview h2,
.academics-content h2 {
  color: var(--green);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 900;
  line-height: 0.94;
}

.academics-overview p,
.academics-content p {
  margin-top: 20px;
  color: #25372f;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}

.academics-overview .lead {
  color: #9f7d22;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-weight: 900;
  line-height: 1.28;
}

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

.academics-menu-grid a {
  min-height: 86px;
  display: grid;
  align-items: center;
  padding: 18px 22px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academics-menu-grid a:hover,
.academics-menu-grid a:focus-visible {
  background: var(--gold);
  color: #182b22;
}

.academics-content {
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.94)),
    url("assets/academics-canvasite/MAHLV0kNDE0.jpg.webp") center / cover;
}

.academics-content .intro {
  max-width: 1180px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 38px);
  margin-top: 46px;
}

.course-card {
  padding: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border-left: 6px solid var(--gold);
  box-shadow: 0 16px 35px rgba(16, 33, 27, 0.08);
}

.course-card h3 {
  color: var(--green);
  font-size: clamp(1.4rem, 2vw, 2.3rem);
  font-weight: 900;
  line-height: 1.08;
}

.course-card p {
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
}

.course-image-grid {
  align-items: stretch;
}

.course-card-with-image {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
  border-left: 0;
}

.course-card-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(4, 70, 47, 0.12);
}

.course-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card-body {
  padding: clamp(22px, 2.7vw, 38px);
  border-left: 6px solid var(--gold);
}

.academics-pdf-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.admissions-main {
  background: #fff;
}

.admissions-page-hero {
  position: relative;
  min-height: min(76vh, 50vw);
  display: grid;
  place-items: center;
  padding: 150px clamp(24px, 7vw, 120px) 80px;
  overflow: hidden;
  background: #f6f1e8;
  color: var(--green);
  text-align: center;
}

.admissions-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: grayscale(1);
}

.admissions-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.55));
}

.admissions-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.admissions-page-hero p {
  color: #717273;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.admissions-page-hero h1 {
  margin-top: 14px;
  color: var(--green);
  font-size: clamp(3.6rem, 8.4vw, 9.5rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.admissions-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(32px, 6vw, 94px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.95)),
    url("assets/admissions-canvasite/MAHLVPfbsFk.png.webp") center / cover;
}

.admissions-panel h2,
.tour-section h2 {
  color: var(--green);
  font-size: clamp(2.6rem, 5.5vw, 6.8rem);
  font-weight: 900;
  line-height: 0.96;
}

.admissions-panel p,
.tour-section p,
.tour-section li {
  margin-top: 18px;
  color: #25372f;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.admissions-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.admissions-menu-grid a {
  min-height: 82px;
  display: grid;
  align-items: center;
  padding: 18px 22px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admissions-menu-grid a:hover,
.admissions-menu-grid a:focus-visible {
  background: var(--gold);
  color: #182b22;
}

.tour-section {
  padding: clamp(62px, 7vw, 110px) clamp(24px, 7vw, 128px);
  background: #fff;
}

.tour-section.compact {
  padding-top: clamp(36px, 4vw, 64px);
}

.tour-intro {
  max-width: 1120px;
}

.tour-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  margin-top: 38px;
}

.tour-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.tour-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.tour-list li {
  margin: 0;
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: #f6f1e8;
  font-weight: 800;
}

.tour-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding: clamp(24px, 4vw, 44px);
  background: #f6f1e8;
}

.tour-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.tour-form input,
.tour-form select,
.tour-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 28, 0.18);
  background: #fff;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
}

.tour-form textarea,
.tour-form .full {
  grid-column: 1 / -1;
}

.global-main {
  background: #fff;
}

.global-page-hero {
  position: relative;
  min-height: min(78vh, 50vw);
  display: grid;
  place-items: center;
  padding: 150px clamp(24px, 7vw, 120px) 80px;
  overflow: hidden;
  background: #f6f1e8;
  color: var(--green);
  text-align: center;
}

.global-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: grayscale(1);
}

.global-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.52));
}

.global-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
}

.global-page-hero p {
  color: #717273;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.global-page-hero h1 {
  margin-top: 14px;
  color: var(--green);
  font-size: clamp(3.8rem, 8.4vw, 9.6rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.global-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1.28fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    url("assets/global-campus-canvasite/MAHLOTR2qjU.jpg.webp") center / cover;
}

.global-overview h2,
.global-detail h2 {
  color: var(--green);
  font-size: clamp(2.7rem, 5.8vw, 7rem);
  font-weight: 900;
  line-height: 0.96;
}

.global-overview p,
.global-detail p {
  margin-top: 18px;
  color: #25372f;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}

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

.global-campus-grid a {
  min-height: 76px;
  display: grid;
  align-items: center;
  padding: 16px 20px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.global-campus-grid a:hover,
.global-campus-grid a:focus-visible {
  background: var(--gold);
  color: #182b22;
}

.global-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background: #fff;
}

.global-detail figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.global-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

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

.arts-main {
  background: #fff;
}

.arts-page-hero {
  position: relative;
  min-height: min(78vh, 50vw);
  display: grid;
  place-items: center;
  padding: 150px clamp(24px, 7vw, 120px) 80px;
  overflow: hidden;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.arts-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: grayscale(0.25);
}

.arts-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 87, 65, 0.92), rgba(16, 87, 65, 0.44));
}

.arts-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
}

.arts-page-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.arts-page-hero h1 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(4rem, 8.6vw, 10rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.arts-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    url("assets/arts-canvasite/MAHLUP72jxw.png.webp") center / cover;
}

.arts-overview h2,
.arts-detail h2,
.arts-gallery-section h2 {
  color: var(--green);
  font-size: clamp(2.7rem, 5.8vw, 7rem);
  font-weight: 900;
  line-height: 0.96;
}

.arts-overview p,
.arts-detail p {
  margin-top: 18px;
  color: #25372f;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}

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

.arts-menu-grid a {
  min-height: 82px;
  display: grid;
  align-items: center;
  padding: 18px 22px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.arts-menu-grid a:hover,
.arts-menu-grid a:focus-visible {
  background: var(--gold);
  color: #182b22;
}

.arts-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background: #fff;
}

.arts-detail figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.arts-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.arts-program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.arts-program-list li {
  padding: 12px 14px;
  background: #f5efe3;
  color: var(--green);
  font-weight: 900;
}

.arts-gallery-section {
  padding: clamp(62px, 7vw, 110px) clamp(24px, 7vw, 128px);
  background: #f5efe3;
}

.arts-scroll-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 30vw);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 0 22px;
  scroll-snap-type: x mandatory;
}

.arts-scroll-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.arts-scroll-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.media-gallery-section {
  padding: clamp(62px, 7vw, 112px) clamp(24px, 7vw, 128px);
  background: #f5efe3;
  overflow: hidden;
}

.media-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.media-gallery-heading h2 {
  margin-top: 10px;
  color: var(--green);
  font-size: clamp(2.6rem, 5.6vw, 6.8rem);
  font-weight: 900;
  line-height: 0.96;
}

.media-gallery-controls {
  display: flex;
  gap: 10px;
}

.media-gallery-controls button {
  min-width: 78px;
  min-height: 44px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.media-gallery-controls button:hover,
.media-gallery-controls button:focus-visible {
  background: var(--gold);
  color: #172c22;
}

.media-scroll-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 34vw);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px 0 26px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(16, 87, 65, 0.16);
}

.media-scroll-gallery::-webkit-scrollbar {
  height: 12px;
}

.media-scroll-gallery::-webkit-scrollbar-track {
  background: rgba(16, 87, 65, 0.12);
}

.media-scroll-gallery::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.media-scroll-gallery figure {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.media-scroll-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.athletics-main {
  background: #fff;
}

.athletics-page-hero {
  position: relative;
  min-height: min(78vh, 50vw);
  display: grid;
  place-items: center;
  padding: 150px clamp(24px, 7vw, 120px) 80px;
  overflow: hidden;
  background: #143d2f;
  color: #fff;
  text-align: center;
}

.athletics-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(0.85);
}

.athletics-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(9, 45, 32, 0.9), rgba(9, 45, 32, 0.38));
}

.athletics-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
}

.athletics-page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.athletics-page-hero h1 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(4rem, 8.6vw, 10rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.athletics-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    url("assets/athletics-canvasite/MAHLKWRI1F4.png.webp") center / cover;
}

.athletics-overview h2,
.athletics-detail h2 {
  color: var(--green);
  font-size: clamp(2.7rem, 5.8vw, 7rem);
  font-weight: 900;
  line-height: 0.96;
}

.athletics-overview p,
.athletics-detail p {
  margin-top: 18px;
  color: #25372f;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}

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

.athletics-menu-grid a {
  min-height: 82px;
  display: grid;
  align-items: center;
  padding: 18px 22px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.athletics-menu-grid a:hover,
.athletics-menu-grid a:focus-visible {
  background: var(--gold);
  color: #182b22;
}

.athletics-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background: #fff;
}

.athletics-detail figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.athletics-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.vca-life-main {
  background: #fff;
}

.vca-life-page-hero {
  position: relative;
  min-height: min(78vh, 50vw);
  display: grid;
  place-items: center;
  padding: 150px clamp(24px, 7vw, 120px) 80px;
  overflow: hidden;
  background: #143d2f;
  color: #fff;
  text-align: center;
}

.vca-life-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.9);
}

.vca-life-page-hero.is-privacy img {
  filter: blur(12px) saturate(0.7);
  transform: scale(1.08);
}

.vca-life-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(9, 45, 32, 0.92), rgba(9, 45, 32, 0.34));
}

.vca-life-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
}

.vca-life-page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vca-life-page-hero h1 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(3.6rem, 7.7vw, 9rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.about-title-hero > div,
.about-page-hero > div,
.academics-page-hero > div,
.admissions-page-hero > div,
.global-page-hero > div,
.arts-page-hero > div,
.athletics-page-hero > div,
.vca-life-page-hero > div {
  width: min(1180px, calc(100% - 48px));
  max-width: 100%;
  margin-inline: auto;
  justify-self: center;
  text-align: center;
}

.about-title-hero h1,
.about-page-hero h1,
.academics-page-hero h1,
.admissions-page-hero h1,
.global-page-hero h1,
.arts-page-hero h1,
.athletics-page-hero h1,
.vca-life-page-hero h1 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.about-title-hero h1 {
  font-size: clamp(3.2rem, 8vw, 8.8rem);
}

@media (max-width: 900px) {
  .about-title-hero h1,
  .about-page-hero h1,
  .academics-page-hero h1,
  .admissions-page-hero h1,
  .global-page-hero h1,
  .arts-page-hero h1,
  .athletics-page-hero h1,
  .vca-life-page-hero h1 {
    font-size: clamp(2.6rem, 12vw, 5.8rem);
  }
}

.vca-life-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.96)),
    url("assets/vca-life-canvasite/MAHK1uOHnlw.jpg.webp") center / cover;
}

.vca-life-overview h2,
.vca-life-detail h2 {
  color: var(--green);
  font-size: clamp(2.6rem, 5.6vw, 6.7rem);
  font-weight: 900;
  line-height: 0.96;
}

.vca-life-overview p,
.vca-life-detail p,
.vca-life-accordion p,
.vca-life-project-grid p,
.vca-life-section-grid p {
  margin-top: 18px;
  color: #25372f;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.72;
}

.vca-life-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.vca-life-menu-group {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  min-width: 0;
  align-content: start;
  gap: 1px;
  background: rgba(199, 155, 40, 0.28);
  border: 1px solid rgba(199, 155, 40, 0.32);
  box-shadow: 0 10px 26px rgba(18, 54, 41, 0.08);
}

.vca-life-menu-group:first-child {
  grid-template-columns: 1fr;
}

.vca-life-menu-primary,
.vca-life-further a {
  min-height: 100px;
  display: grid;
  align-items: center;
  padding: 22px 24px;
  border-left: 6px solid var(--gold);
  background: var(--green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.vca-life-menu-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.vca-life-menu-secondary a {
  min-height: 64px;
  display: grid;
  align-items: center;
  padding: 14px 16px;
  background: #fbf9f4;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.vca-life-menu-group:nth-child(2) .vca-life-menu-secondary a:last-child {
  grid-column: 1 / -1;
}

.vca-life-menu-primary:hover,
.vca-life-menu-primary:focus-visible,
.vca-life-menu-secondary a:hover,
.vca-life-menu-secondary a:focus-visible,
.vca-life-further a:hover,
.vca-life-further a:focus-visible {
  background: var(--gold);
  color: #182b22;
}

.vca-life-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(24px, 7vw, 128px);
  background: #fff;
}

.vca-life-detail figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vca-life-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.vca-life-detail img.is-contain {
  aspect-ratio: 1742 / 1080;
  object-fit: contain;
  background: #fff;
}

.vca-life-detail figure.is-privacy {
  display: grid;
  min-height: clamp(360px, 42vw, 560px);
  place-items: center;
  padding: clamp(26px, 4vw, 54px);
  background: #f7f7f3;
}

.vca-life-detail figure.is-privacy img {
  width: min(68%, 480px);
  aspect-ratio: auto;
  object-fit: contain;
  filter: blur(6px);
}

.vca-life-further {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.vca-life-further .about-kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.vca-life-accordion,
.vca-life-project-grid,
.vca-life-section-grid {
  padding: clamp(54px, 7vw, 108px) clamp(24px, 7vw, 128px);
  background: #f5efe3;
}

.vca-life-accordion {
  display: grid;
  gap: 16px;
}

.vca-life-accordion details {
  background: #fff;
  border-left: 8px solid var(--gold);
  box-shadow: 0 18px 42px rgba(16, 87, 65, 0.1);
}

.vca-life-accordion summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--green);
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  font-weight: 900;
  text-transform: uppercase;
}

.vca-life-accordion p {
  margin: 0;
  padding: 0 26px 26px;
}

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

.vca-life-project-grid article {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 87, 65, 0.1);
}

.vca-life-section-grid article {
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 87, 65, 0.1);
}

.vca-life-project-media {
  position: relative;
  container-type: inline-size;
  width: 100%;
  aspect-ratio: 2.7 / 1;
  overflow: hidden;
}

.vca-life-project-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vca-life-project-image.is-month-crop {
  visibility: hidden;
}

.vca-life-project-media[class*="crop-frame-"]:not(.crop-frame-standard) {
  --month-accent: #a66f72;
  --month-base: #4b4b4a;
  isolation: isolate;
  background: var(--month-accent);
}

.vca-life-project-media[class*="crop-frame-"]:not(.crop-frame-standard)::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -8%;
  right: -8%;
  bottom: -58%;
  height: 112%;
  border-radius: 50% 50% 0 0;
  background: var(--month-base);
}

.vca-life-month-name,
.vca-life-month-number {
  position: absolute;
  z-index: 1;
  color: #f7f4ec;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1;
  text-transform: capitalize;
  white-space: nowrap;
}

.vca-life-month-name {
  top: 10%;
  left: 7%;
  font-size: clamp(2rem, 10cqw, 5.25rem);
}

.vca-life-month-number {
  left: 12%;
  bottom: 12%;
  font-size: clamp(1.25rem, 5cqw, 2.75rem);
}

.vca-life-project-media.crop-frame-january {
  --month-accent: #a66f72;
}

.vca-life-project-media.crop-frame-february {
  --month-accent: #6f879d;
}

.vca-life-project-media.crop-frame-march {
  --month-accent: #91877d;
}

.vca-life-project-media.crop-frame-april {
  --month-accent: #8e7993;
}

.vca-life-project-media.crop-frame-may {
  --month-accent: #a58e62;
}

.vca-life-project-media.crop-frame-june {
  --month-accent: #667a82;
}

.vca-life-project-media.crop-frame-july {
  --month-accent: #5f8785;
}

.vca-life-project-media.crop-frame-august {
  --month-accent: #788c68;
}

.vca-life-project-media.crop-frame-september {
  --month-accent: #7f6f7c;
}

.vca-life-project-media.crop-frame-october {
  --month-accent: #a27b63;
}

.vca-life-project-media.crop-frame-november {
  --month-accent: #77788f;
}

.vca-life-project-media.crop-frame-december {
  --month-accent: #6e8980;
}

.vca-life-project-copy {
  padding: 26px 28px 30px;
}

.vca-life-project-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.vca-life-project-copy li {
  padding-left: 18px;
  color: #25372f;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.45;
  position: relative;
}

.vca-life-project-copy li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.vca-life-project-grid h3,
.vca-life-section-grid h3 {
  color: var(--green);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  background: var(--white);
}

.intro-copy h2,
.section-heading h2,
.split-copy h2,
.history-panel h2 {
  margin-top: 10px;
}

.intro-band > p,
.section-heading > p,
.split-copy p,
.history-panel p,
.feature-row p,
.contact p {
  color: var(--muted);
  font-size: 1.03rem;
}

.rankings {
  background: #f1eadc;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.section-heading.light {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.76);
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.rank-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
}

.rank-grid strong {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
}

.rank-grid span {
  font-weight: 800;
}

.home-rank-grid article {
  min-height: 190px;
}

.report-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--green);
  color: var(--white);
}

.report-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.graduation-banner {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 76px);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(9, 45, 32, 0.76), rgba(9, 45, 32, 0.76)),
    url("assets/school-hall.jpg.webp") center / cover;
}

.graduation-banner span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.graduation-banner h2 {
  max-width: 780px;
  margin-top: 12px;
}

.home-directory {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--white);
}

.home-directory a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  background: var(--white);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-copy p {
  margin-top: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  color: var(--white);
  background: var(--green);
}

.history-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.stage-grid,
.program-grid,
.news-grid,
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stage-grid article,
.news-grid article {
  padding: 30px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 16px 35px rgba(16, 33, 27, 0.08);
}

.stage-grid span,
.timeline span,
.news-grid span {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-grid p,
.news-grid p,
.timeline p,
.program-card p {
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-top: 42px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--white);
}

.feature-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-row p {
  margin-top: 14px;
}

.admissions,
.athletics {
  background: var(--green-2);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.timeline article {
  min-height: 250px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.timeline span {
  color: var(--gold);
}

.timeline h3 {
  margin: 28px 0 12px;
}

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

.campuses,
.life,
.arts,
.graduates,
.contact {
  background: var(--white);
}

.campus-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.82fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: stretch;
}

.campus-grid > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #e7ece6;
}

.campus-grid article {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

.campus-grid article img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.program-card button {
  width: 100%;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.program-card p {
  display: none;
  padding: 0 24px 26px;
}

.program-card.active {
  border-color: var(--gold);
  background: #fbf7ec;
}

.program-card.active p {
  display: block;
}

.life-gallery,
.arts-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  margin-top: 38px;
}

.life-gallery img,
.arts-mosaic img,
.sports-grid img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.sports-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.sports-grid h3 {
  padding: 20px 22px;
  color: var(--white);
}

.news {
  background: var(--paper);
}

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

.graduate-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.graduate-tabs button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.graduate-tabs button.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.graduate-slider {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--paper);
}

.graduate-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(280px, 1fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: center;
  padding: clamp(24px, 5vw, 60px);
  opacity: 0;
  transform: translateX(38px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.graduate-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.graduate-card img {
  width: min(320px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.graduate-card p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  border-top: 1px solid var(--line);
}

.contact p,
.contact address {
  margin-top: 18px;
}

.contact address {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label.full,
form button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfaf6;
  padding: 13px;
  color: var(--ink);
  font: inherit;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) auto;
  gap: 24px;
  align-items: start;
  background: #092d20;
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 8px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .site-header {
    gap: clamp(10px, 1.4vw, 18px);
  }

  .main-nav {
    gap: clamp(12px, 1.6vw, 20px);
  }

  .main-nav a,
  .main-nav .nav-item > a {
    font-size: clamp(0.62rem, 1.18vw, 0.76rem);
    letter-spacing: 0.11em;
  }

  .about-repair-text {
    left: 10%;
    top: 10%;
    width: 80%;
  }

  .about-leak-cover {
    left: 7.5%;
    top: 28%;
    width: 18%;
    height: 63%;
  }

  .about-repair-text h2 {
    margin-bottom: 2%;
    font-size: clamp(2.4rem, 6.3vw, 6.2rem);
  }

  .about-repair-text p {
    max-width: 86%;
    font-size: clamp(0.72rem, 1.55vw, 1.45rem);
    line-height: 1.3;
  }

  .canvas-ranking {
    min-height: 0;
    aspect-ratio: auto;
    padding-bottom: clamp(26px, 4vw, 46px);
  }

  .ranking-grid-canvas article {
    min-height: clamp(96px, 11.5vw, 160px);
  }

  .ranking-grid-canvas span {
    font-size: clamp(0.68rem, 1.14vw, 1rem);
    line-height: 1.18;
  }

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

  .canvas-card-copy {
    min-height: auto;
    overflow: visible;
  }

  .canvas-card-copy strong {
    font-size: clamp(1.15rem, 2.5vw, 1.8rem);
  }

  .canvas-card-copy small {
    font-size: clamp(0.78rem, 1.55vw, 1.05rem);
    line-height: 1.28;
  }

  .media-scroll-gallery figure {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-header {
    gap: 14px;
    padding: 12px 14px;
    overflow: hidden;
  }

  .brand {
    min-width: 88px;
  }

  .brand img {
    width: 88px;
    height: 36px;
  }

  .main-nav {
    position: static;
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 2px 8px 0;
    background: transparent;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 7px 0;
  }

  .main-nav .nav-cta {
    padding: 8px 12px;
  }

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

  .rank-grid span {
    font-size: clamp(0.72rem, 1.55vw, 0.98rem);
  }

  .footer-report {
    flex-direction: column;
    gap: 22px;
  }

  .footer-directory {
    grid-template-columns: 1fr;
  }

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

  .home-motto,
  .report-cta {
    grid-template-columns: 1fr;
  }

  .graduate-ppt-card {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 20px;
  }

  .graduate-ppt-media {
    width: min(360px, 86vw);
    height: 360px;
    margin: 0 auto;
  }

  .graduate-ppt-media::after {
    height: 76px;
  }

  .graduate-ppt-copy {
    min-height: auto;
    margin: -12px 0 0;
    padding: 34px 22px;
  }

  .graduate-ppt-slider {
    min-height: 900px;
  }

  .graduate-ppt-name {
    bottom: 20px;
    width: calc(100% - 34px);
    white-space: nowrap;
  }

  .home-motto span {
    min-height: 104px;
  }

  .stage-grid,
  .program-grid,
  .news-grid,
  .sports-grid,
  .site-footer,
  .arts-overview,
  .arts-detail,
  .athletics-overview,
  .athletics-detail {
    grid-template-columns: 1fr;
  }

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

  .arts-scroll-gallery,
  .media-scroll-gallery {
    grid-auto-columns: minmax(260px, 48vw);
  }
}

@media (max-width: 760px) {
  .brand span {
    display: none;
  }

  .brand {
    min-width: 82px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 136px;
    padding-bottom: 178px;
  }

  .hero-note {
    left: 18px;
    right: 18px;
  }

  .intro-band,
  .split-section,
  .history-panel,
  .feature-row,
  .campus-grid,
  .contact,
  .graduate-card {
    grid-template-columns: 1fr;
  }

  .rank-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .about-ppt-fix {
    min-height: 720px;
    padding: 92px 22px 84px;
  }

  .about-ppt-fix::after {
    right: 12px;
  }

  .about-ppt-heading {
    max-width: calc(100vw - 44px);
    font-size: clamp(3.15rem, 17vw, 4.9rem);
  }

  .about-ppt-inner p {
    font-size: clamp(1.08rem, 5vw, 1.5rem);
  }

  .rank-ppt-fix {
    min-height: 760px;
    padding: 76px 18px;
  }

  .rank-ppt-fix h2 {
    font-size: clamp(1.65rem, 7vw, 2.45rem);
  }

  .rank-grid article {
    min-height: 82px;
  }

  .rank-grid span {
    font-size: clamp(0.74rem, 3.3vw, 0.94rem);
  }

  .footer-report p {
    max-width: calc(100vw - 44px);
    font-size: clamp(1.75rem, 8vw, 3.1rem);
  }

  .footer-directory {
    padding: 44px 22px;
  }

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

  .life-gallery,
  .arts-mosaic {
    grid-template-columns: 1fr;
  }

  .arts-page-hero {
    min-height: 620px;
  }

  .athletics-page-hero {
    min-height: 620px;
  }

  .vca-life-page-hero {
    min-height: 620px;
  }

  .arts-menu-grid,
  .athletics-menu-grid,
  .arts-program-list,
  .vca-life-menu-grid,
  .vca-life-further,
  .vca-life-project-grid,
  .vca-life-section-grid {
    grid-template-columns: 1fr;
  }

  .media-gallery-heading {
    align-items: start;
    flex-direction: column;
  }

  .media-gallery-controls {
    width: 100%;
  }

  .media-gallery-controls button {
    flex: 1;
  }

  .arts-scroll-gallery,
  .media-scroll-gallery {
    grid-auto-columns: minmax(240px, 82vw);
  }

  .graduate-slider {
    min-height: 670px;
  }

  .news-modal {
    padding: 12px;
  }

  .graduate-ppt-slider {
    min-height: 860px;
  }

  .graduate-ppt-card {
    transform: translateX(0);
  }

  form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .main-nav .nav-item {
    flex: 0 0 auto;
  }

  .nav-dropdown {
    left: 0;
    top: calc(100% + 8px);
    width: min(780px, calc(100vw - 34px));
    transform: translateY(8px);
  }

  .nav-dropdown[aria-label="VCA Life submenu"] {
    right: 0;
    left: auto;
    width: min(780px, calc(100vw - 34px));
    transform: translateY(8px);
  }

  .nav-dropdown[aria-label="Global campuses submenu"],
  .nav-dropdown[aria-label="Arts submenu"],
  .nav-dropdown[aria-label="Athletics submenu"] {
    right: 0;
    left: auto;
    width: min(780px, calc(100vw - 34px));
    transform: translateY(8px);
  }

  .nav-mega,
  .about-menu-page,
  .academics-overview,
  .admissions-panel,
  .tour-feature,
  .global-overview,
  .global-detail,
  .vca-life-overview,
  .vca-life-detail {
    grid-template-columns: 1fr;
  }

  .mega-links,
  .mega-links-three,
  .footer-directory-columns,
  .course-grid,
  .tour-list,
  .global-campus-grid,
  .vca-life-menu-grid,
  .vca-life-further,
  .vca-life-project-grid,
  .vca-life-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vca-life-mega-groups {
    grid-template-columns: 1fr;
  }

  .footer-directory-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    transform: translateY(0);
  }

  .about-split,
  .about-split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-split.reverse .about-copy,
  .about-split.reverse figure {
    order: initial;
  }

  .accreditation-grid,
  .people-grid,
  .faculty-grid,
  .campus-grid,
  .campus-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ranking-hero-row {
    grid-template-columns: 13% minmax(0, 1fr) 22%;
  }

  .accreditations-button {
    font-size: clamp(0.62rem, 2.05vw, 0.78rem);
    letter-spacing: 0;
  }

  .canvas-news-grid {
    grid-template-columns: 1fr;
  }

  .nav-dropdown {
    width: min(420px, calc(100vw - 28px));
  }

  .nav-dropdown[aria-label="VCA Life submenu"] {
    width: min(420px, calc(100vw - 28px));
  }

  .nav-dropdown[aria-label="Global campuses submenu"],
  .nav-dropdown[aria-label="Arts submenu"],
  .nav-dropdown[aria-label="Athletics submenu"] {
    width: min(420px, calc(100vw - 28px));
  }

  .mega-links {
    grid-template-columns: 1fr;
  }

  .vca-life-mega-groups {
    grid-template-columns: 1fr;
    max-height: 62vh;
    overflow-y: auto;
  }

  .vca-life-mega-group {
    grid-template-columns: 1fr;
  }

  .vca-life-mega-secondary,
  .vca-life-mega-group:nth-child(3) .vca-life-mega-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vca-life-menu-grid {
    grid-template-columns: 1fr;
  }

  .vca-life-menu-group {
    grid-template-columns: 1fr;
  }

  .vca-life-menu-secondary {
    grid-template-columns: 1fr;
  }

  .vca-life-menu-group:nth-child(2) .vca-life-menu-secondary a:last-child {
    grid-column: auto;
  }

  .mega-intro {
    padding: 20px;
  }

  .nav-dropdown a {
    min-height: 46px;
    padding: 11px 16px;
  }

  .about-page-hero {
    min-height: 680px;
  }

  .about-title-hero {
    min-height: 620px;
  }

  .academics-page-hero {
    min-height: 620px;
  }

  .admissions-page-hero {
    min-height: 620px;
  }

  .global-page-hero {
    min-height: 620px;
  }

  .accreditation-grid,
  .people-grid,
  .faculty-grid,
  .campus-grid,
  .campus-gallery-grid,
  .about-menu-grid,
  .academics-menu-grid,
  .admissions-menu-grid,
  .footer-directory-columns,
  .course-grid,
  .tour-list,
  .tour-form,
  .global-campus-grid,
  .about-contact-form {
    grid-template-columns: 1fr;
  }

  .site-directory-footer {
    padding: 42px 24px 54px;
  }

  .footer-directory-bottom p {
    text-align: center;
  }

  .niche-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .vca-life-project-grid {
    grid-template-columns: 1fr;
  }

  .ranking-hero-row {
    grid-template-columns: 13% minmax(0, 1fr) 24%;
  }

  .ranking-title h2 {
    font-size: clamp(1.55rem, 4.25vw, 2rem);
  }

  .accreditations-button {
    padding-inline: 4%;
    font-size: clamp(0.58rem, 1.9vw, 0.74rem) !important;
    letter-spacing: 0;
  }
}

body.pdf-open {
  overflow: hidden;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  background: rgba(0, 0, 0, 0.68);
}

.pdf-modal[hidden] {
  display: none;
}

.pdf-modal__panel {
  position: relative;
  width: min(1120px, 96vw);
  height: min(860px, 88vh);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.pdf-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-width: 92px;
  min-height: 42px;
  border: 0;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.pdf-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 700px) {
  .pdf-modal {
    padding: 10px;
  }

  .pdf-modal__panel {
    width: 100%;
    height: 92vh;
  }

  .pdf-modal__close {
    top: 10px;
    right: 10px;
    min-width: 76px;
    min-height: 38px;
    font-size: 0.74rem;
  }
}
