:root {
  --ink: #1a2433;
  --muted: #5f6b7a;
  --paper: #fffdf7;
  --surface: #ffffff;
  --sun: #f7c948;
  --sun-dark: #c78200;
  --leaf: #2f7d5a;
  --aqua: #e7f5f0;
  --sky: #dff2ff;
  --line: #dde6ec;
  --shadow: 0 20px 50px rgba(26, 36, 51, 0.12);
  --container: 1280px;
  --container-padding: 32px;
  --section-space: clamp(80px, 10vw, 128px);
  --grid-gap: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - (var(--container-padding) * 2), var(--container));
  margin: 0 auto;
  padding: 16px 0;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(221, 230, 236, 0.9);
  backdrop-filter: blur(16px);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 19;
  height: 91px;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(221, 230, 236, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: #354256;
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--leaf);
  border-bottom-color: var(--leaf);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 5px;
  position: relative;
  min-height: 42px;
  padding: 9px 12px 9px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle span:first-child {
  top: 13px;
}

.nav-toggle span:nth-child(2) {
  top: 20px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 32, 44, 0.82), rgba(13, 32, 44, 0.44) 48%, rgba(13, 32, 44, 0.1)),
    linear-gradient(180deg, rgba(13, 32, 44, 0.05), rgba(13, 32, 44, 0.56));
}

.hero-content {
  width: min(100% - (var(--container-padding) * 2), var(--container));
  margin: 0 auto clamp(48px, 9vh, 96px);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.admission-band h2 {
  margin: 0;
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--sun);
  color: #2e2300;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.message-box {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: min(100% - (var(--container-padding) * 2), var(--container));
  margin: var(--grid-gap) auto 0;
  padding: 24px;
  border: 1px solid rgba(199, 130, 0, 0.28);
  border-left: 6px solid var(--sun-dark);
  border-radius: 8px;
  background: #fff8df;
  box-shadow: 0 16px 38px rgba(199, 130, 0, 0.12);
}

.message-box.is-hidden {
  display: none;
}

.message-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--sun);
  color: #342700;
  font-weight: 800;
}

.message-content h2 {
  margin: 0;
  color: #1f3145;
  font-size: 1.28rem;
  line-height: 1.25;
}

.message-content p {
  margin: 8px 0 0;
  color: #4f4630;
  font-size: 1.02rem;
  font-weight: 600;
}

.message-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(199, 130, 0, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #634800;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.message-close:hover,
.message-close:focus-visible {
  background: #ffffff;
}

.notice-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  width: min(100% - (var(--container-padding) * 2), var(--container));
  margin: var(--grid-gap) auto 0;
  background: transparent;
  border-bottom: 0;
}

.notice-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.notice-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(47, 125, 90, 0.08);
}

.notice-graphic {
  position: relative;
  display: block;
  width: 100%;
  height: 116px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef8ff;
}

.notice-graphic::before,
.notice-graphic::after {
  content: "";
  position: absolute;
}

.classes-graphic {
  background:
    linear-gradient(180deg, #e8f7ff 0 58%, #f7e4b7 59%),
    #eef8ff;
}

.classes-graphic::before {
  left: 24px;
  bottom: 24px;
  width: 80px;
  height: 54px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, #ffffff 0 48%, #f8fafc 49% 100%);
  box-shadow:
    inset 0 0 0 4px #2f7d5a,
    88px -10px 0 -14px #f7c948,
    118px 8px 0 -18px #ef6f6c;
}

.classes-graphic::after {
  left: 42px;
  bottom: 40px;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: #2f7d5a;
  box-shadow: 0 13px 0 #2f7d5a, 78px -10px 0 #284a68, 78px 5px 0 #284a68;
}

.safety-graphic {
  background:
    linear-gradient(180deg, #ecfdf5 0 58%, #d9f2e6 59%),
    #e7f5f0;
}

.safety-graphic::before {
  left: 50%;
  top: 18px;
  width: 64px;
  height: 76px;
  border-radius: 32px 32px 10px 10px;
  background: var(--leaf);
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 88% 15%, 82% 68%, 50% 100%, 18% 68%, 12% 15%);
}

.safety-graphic::after {
  left: 50%;
  top: 45px;
  width: 34px;
  height: 18px;
  border-left: 7px solid #ffffff;
  border-bottom: 7px solid #ffffff;
  transform: translateX(-50%) rotate(-45deg);
}

.parent-graphic {
  background:
    linear-gradient(180deg, #fff7e0 0 58%, #f7dfab 59%),
    #fff8df;
}

.parent-graphic::before {
  left: 32px;
  top: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #58b4ae;
  box-shadow:
    56px 10px 0 -5px #f7c948,
    112px 0 0 -1px #ef6f6c;
}

.parent-graphic::after {
  left: 35px;
  top: 77px;
  width: 146px;
  height: 24px;
  border-radius: 999px 999px 8px 8px;
  background:
    radial-gradient(circle at 20px 0, #58b4ae 0 20px, transparent 21px),
    radial-gradient(circle at 75px 0, #f7c948 0 18px, transparent 19px),
    radial-gradient(circle at 132px 0, #ef6f6c 0 20px, transparent 21px),
    rgba(47, 125, 90, 0.16);
}

.notice-strip strong,
.notice-strip span {
  display: block;
  position: relative;
  z-index: 1;
}

.notice-strip strong {
  color: var(--leaf);
  font-size: 1.02rem;
}

.notice-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  width: min(100% - (var(--container-padding) * 2), var(--container));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section h2,
.admission-band h2 {
  color: #172235;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.about-copy {
  max-width: 800px;
  color: #3d4a5d;
  font-size: 1.06rem;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 18px;
}

.about {
  padding-bottom: clamp(44px, 5vw, 72px);
}

.stats-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--aqua);
  box-shadow: var(--shadow);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
}

.stat-graphic {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 8px;
  background: #eef8ff;
}

.stat-graphic::before,
.stat-graphic::after {
  content: "";
  position: absolute;
}

.primary-graphic {
  background: #fff3bf;
}

.primary-graphic::before {
  left: 13px;
  top: 14px;
  width: 32px;
  height: 25px;
  border-radius: 4px 4px 2px 2px;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px var(--sun-dark);
}

.primary-graphic::after {
  left: 21px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--leaf);
  transform: rotate(45deg);
}

.classroom-graphic {
  background: #e7f5f0;
}

.classroom-graphic::before {
  left: 11px;
  top: 15px;
  width: 36px;
  height: 24px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.9) 48% 52%, transparent 53%),
    linear-gradient(180deg, transparent 47%, rgba(255, 255, 255, 0.9) 48% 52%, transparent 53%),
    var(--leaf);
}

.classroom-graphic::after {
  left: 16px;
  bottom: 10px;
  width: 26px;
  height: 5px;
  border-radius: 999px;
  background: var(--sun-dark);
}

.support-graphic {
  background: #eef8ff;
}

.support-graphic::before {
  left: 14px;
  top: 10px;
  width: 30px;
  height: 38px;
  border-radius: 5px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(180deg, #5fb5d8, #2f7d5a) border-box;
  border: 3px solid transparent;
}

.support-graphic::after {
  left: 22px;
  top: 22px;
  width: 16px;
  height: 9px;
  border-left: 4px solid var(--leaf);
  border-bottom: 4px solid var(--leaf);
  transform: rotate(-45deg);
}

.stats-panel strong,
.stats-panel span {
  display: block;
}

.stats-panel strong {
  color: var(--leaf);
  font-size: 1.45rem;
  line-height: 1.1;
}

.stats-panel span {
  margin-top: 4px;
  color: var(--muted);
}

.academics {
  position: relative;
}

.program-grid,
.facility-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.program-card,
.facility-item,
.contact-card,
address {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.facility-item {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.facility-item:hover,
.facility-item:focus-visible {
  border-color: rgba(47, 125, 90, 0.38);
  box-shadow: 0 18px 42px rgba(26, 36, 51, 0.12);
  outline: none;
  transform: translateY(-4px);
}

.facility-graphic {
  position: relative;
  height: 150px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef8ff;
}

.facility-graphic::before,
.facility-graphic::after,
.facility-graphic span,
.facility-graphic span::before,
.facility-graphic span::after {
  content: "";
  position: absolute;
  transition: transform 260ms ease, opacity 260ms ease;
}

.facility-item:hover .facility-graphic::before,
.facility-item:focus-visible .facility-graphic::before {
  transform: translateY(-4px);
}

.facility-item:hover .facility-graphic span,
.facility-item:focus-visible .facility-graphic span {
  transform: translateY(-5px) rotate(-1deg);
}

.classroom-facility {
  background:
    linear-gradient(180deg, #dff2ff 0 62%, #f6dfaa 63%),
    #eef8ff;
}

.classroom-facility::before {
  left: 26px;
  top: 22px;
  width: 112px;
  height: 70px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.9) 49% 52%, transparent 53%),
    linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.9) 49% 52%, transparent 53%),
    #58b4ae;
  box-shadow: inset 0 0 0 5px #ffffff;
}

.classroom-facility::after {
  right: 28px;
  bottom: 28px;
  width: 112px;
  height: 34px;
  border-radius: 8px 8px 4px 4px;
  background: #b98445;
  box-shadow: 0 12px 0 -5px #80592c;
}

.classroom-facility span:first-child {
  right: 54px;
  top: 42px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sun);
}

.classroom-facility span:nth-child(2) {
  right: 78px;
  bottom: 64px;
  width: 38px;
  height: 50px;
  border-radius: 20px 20px 8px 8px;
  background: var(--leaf);
}

.activity-facility {
  background:
    radial-gradient(circle at 18% 24%, rgba(247, 201, 72, 0.32) 0 18px, transparent 19px),
    linear-gradient(180deg, #fff8df 0 62%, #f3ead7 63%);
}

.activity-facility::before {
  left: 28px;
  top: 25px;
  width: 96px;
  height: 76px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, #ef6f6c 0 24%, transparent 25%),
    linear-gradient(180deg, transparent 0 32%, #58b4ae 33% 44%, transparent 45%),
    #ffffff;
  box-shadow: inset 0 0 0 4px #f7c948;
}

.activity-facility::after {
  right: 34px;
  bottom: 26px;
  width: 88px;
  height: 48px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 4px #2f7d5a;
  transform: rotate(-5deg);
}

.activity-facility span:first-child {
  right: 76px;
  top: 34px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    conic-gradient(#ef6f6c 0 25%, #f7c948 0 50%, #58b4ae 0 75%, #2f7d5a 0);
}

.activity-facility span:nth-child(2) {
  left: 58px;
  bottom: 24px;
  width: 84px;
  height: 7px;
  border-radius: 999px;
  background: #284a68;
  transform: rotate(-24deg);
}

.play-facility {
  background:
    linear-gradient(180deg, #e8f7ff 0 58%, #cfead8 59%);
}

.play-facility::before {
  left: 36px;
  bottom: 26px;
  width: 96px;
  height: 48px;
  border-radius: 999px 999px 10px 10px;
  background: #f7c948;
  box-shadow: inset 0 -8px 0 rgba(199, 130, 0, 0.26);
}

.play-facility::after {
  right: 38px;
  top: 28px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 9px, transparent 10px),
    conic-gradient(#ef6f6c 0 25%, #58b4ae 0 50%, #f7c948 0 75%, #2f7d5a 0);
}

.play-facility span:first-child {
  left: 74px;
  top: 34px;
  width: 18px;
  height: 52px;
  border-radius: 999px;
  background: #2f7d5a;
  transform: rotate(28deg);
}

.play-facility span:first-child::before,
.play-facility span:first-child::after {
  width: 44px;
  height: 9px;
  border-radius: 999px;
  background: #2f7d5a;
}

.play-facility span:first-child::before {
  left: -30px;
  top: 12px;
  transform: rotate(-34deg);
}

.play-facility span:first-child::after {
  left: 5px;
  bottom: 2px;
  transform: rotate(-50deg);
}

.play-facility span:nth-child(2) {
  left: 70px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ef6f6c;
}

.teacher-facility {
  background:
    linear-gradient(180deg, #edf8f4 0 62%, #f2dfbb 63%);
}

.teacher-facility::before {
  left: 28px;
  top: 24px;
  width: 118px;
  height: 76px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, 0.85) 21% 26%, transparent 27% 44%, rgba(255, 255, 255, 0.85) 45% 50%, transparent 51%),
    #234637;
  box-shadow: inset 0 0 0 5px #b98445;
}

.teacher-facility::after {
  right: 42px;
  bottom: 28px;
  width: 50px;
  height: 64px;
  border-radius: 28px 28px 10px 10px;
  background: #284a68;
}

.teacher-facility span:first-child {
  right: 54px;
  top: 34px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f7c948;
}

.teacher-facility span:nth-child(2) {
  left: 50px;
  bottom: 34px;
  width: 66px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 0 rgba(255, 255, 255, 0.88);
}

.program-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(48, 93, 122, 0.08);
}

.card-board {
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
    #234637;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  box-shadow: inset 0 0 0 5px #b98445;
}

.card-board::before,
.card-board::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.card-board::before {
  right: 18px;
  bottom: 14px;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.card-board::after {
  top: 16px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 16px 0 0 rgba(255, 255, 255, 0.65);
}

.card-board span {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
}

.language-board span:first-child {
  font-size: 2.5rem;
  line-height: 1;
}

.language-board span:nth-child(2),
.language-board span:nth-child(3) {
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.math-board {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
    #284a68;
}

.math-board span:first-child,
.math-board span:nth-child(2) {
  font-size: 1.25rem;
}

.math-board span:nth-child(3) {
  position: absolute;
  right: 26px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 3px solid rgba(247, 201, 72, 0.9);
  border-radius: 50%;
}

.evs-board {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
    #2f6a4c;
}

.evs-board span:first-child {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sun);
  color: #3b2a00;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.evs-board span:nth-child(2),
.evs-board span:nth-child(3) {
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
}

.evs-board span:nth-child(2)::before,
.evs-board span:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 3px 12px 3px 12px;
  background: #98d96f;
}

.evs-board span:nth-child(3)::before {
  border-radius: 50% 50% 60% 60%;
  background: #7dd3fc;
}

.art-board {
  background:
    radial-gradient(circle at 24% 34%, #f7c948 0 13px, transparent 14px),
    radial-gradient(circle at 45% 55%, #ef6f6c 0 15px, transparent 16px),
    radial-gradient(circle at 68% 38%, #58b4ae 0 16px, transparent 17px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
    #44385f;
}

.art-board span:first-child {
  padding: 4px 12px;
  border: 2px dashed rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  text-transform: uppercase;
}

.art-board span:nth-child(2),
.art-board span:nth-child(3) {
  position: absolute;
  right: 30px;
  bottom: 42px;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  transform: rotate(-28deg);
}

.art-board span:nth-child(3) {
  right: 42px;
  bottom: 35px;
  width: 26px;
  background: var(--sun);
  transform: rotate(-28deg);
}

.program-card h3,
.facility-item h3 {
  margin: 22px 0 8px;
  font-size: 1.1rem;
}

.program-card p,
.facility-item p {
  margin: 0;
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  background: var(--leaf);
  color: #ffffff;
  border-radius: 8px;
  padding-right: clamp(24px, 4vw, 56px);
  padding-left: clamp(24px, 4vw, 56px);
}

.values h2,
.values .eyebrow {
  color: #ffffff;
}

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

.values-list li {
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
}

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

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

.admission-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(100% - (var(--container-padding) * 2), var(--container));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 4vw, 56px);
  border-radius: 8px;
  background: #1f3145;
  color: #ffffff;
}

.admission-copy {
  max-width: 820px;
}

.admission-band h2 {
  color: #ffffff;
}

.admission-band p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.admission-band .button {
  margin-top: 28px;
}

.admission-image-wrap {
  position: relative;
}

.admission-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  border-radius: 8px;
  background: var(--sun);
}

.admission-image-wrap img {
  position: relative;
  width: 100%;
  min-height: 320px;
  max-height: 460px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

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

address,
.contact-card {
  font-style: normal;
}

address strong,
address span,
.contact-card strong,
.contact-card span,
.contact-card a {
  display: block;
}

address strong,
.contact-card strong {
  color: var(--leaf);
  font-size: 1.08rem;
}

address span,
.contact-card span,
.contact-card a {
  margin-top: 7px;
  color: var(--muted);
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--leaf);
  text-decoration: underline;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - (var(--container-padding) * 2), var(--container));
  margin: var(--grid-gap) auto 0;
  padding: 26px 0;
  background: #101926;
  color: rgba(255, 255, 255, 0.78);
}

body::after {
  content: "";
  display: block;
  height: 0;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .button:hover,
  .button:focus-visible,
  .facility-item:hover,
  .facility-item:focus-visible,
  .reveal-on-scroll {
    transform: none;
  }

  .facility-item,
  .facility-graphic::before,
  .facility-graphic::after,
  .facility-graphic span,
  .facility-graphic span::before,
  .facility-graphic span::after,
  .reveal-on-scroll {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
  }
}

@media (max-width: 920px) {
  :root {
    --container-padding: 24px;
    --section-space: clamp(64px, 9vw, 96px);
    --grid-gap: 20px;
  }

  .site-header {
    position: static;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  body::before {
    display: none;
  }

  .main-nav {
    display: none;
    width: 100%;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 32, 44, 0.86), rgba(13, 32, 44, 0.5)),
      linear-gradient(180deg, rgba(13, 32, 44, 0.1), rgba(13, 32, 44, 0.58));
  }

  .notice-strip,
  .about-grid,
  .message-box,
  .values,
  .program-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .admission-band {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --container-padding: 16px;
    --section-space: 56px;
    --grid-gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    gap: 4px 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: min(100% - (var(--container-padding) * 2), var(--container));
    margin: 0 auto 42px;
  }

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

  .button {
    width: 100%;
  }

  .notice-strip,
  .program-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }

  .about {
    padding-bottom: 40px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
