:root {
  --green-950: #062318;
  --green-900: #0a3526;
  --green-800: #0d5a3b;
  --green-700: #167349;
  --green-100: #e8f4ed;
  --mustard: #d99a18;
  --mustard-2: #f4c14b;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --ink: #102018;
  --muted: #65726b;
  --line: #e6ded1;
  --shadow: 0 24px 70px rgba(8, 36, 26, 0.14);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  background: var(--green-950);
  color: white;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: 0.75rem;
  transform: translateY(-180%);
  z-index: 100;
}

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

.section,
.hero {
  position: relative;
}

.section-shell,
.nav-shell,
.contact-grid {
  margin: 0 auto;
  max-width: var(--max);
  width: 100%;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(230, 222, 209, 0.72);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(8, 36, 26, 0.08);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 22px;
  min-height: 86px;
  padding: 0 40px;
}

.brand {
  align-items: center;
  display: flex;
  margin-right: auto;
}

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

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: #1e2a24;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 10px 0;
  position: relative;
}

.nav-links a::after {
  background: var(--mustard);
  bottom: 3px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
}

.nav-cta,
.button,
.card-action {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--green-800);
  box-shadow: 0 14px 28px rgba(13, 90, 59, 0.23);
  color: white;
}

.button.secondary {
  background: white;
  border-color: rgba(217, 154, 24, 0.55);
  color: #8a5b0b;
}

.button.on-blue {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

.nav-cta::before,
.floating-contact::before {
  border: 2px solid currentColor;
  border-radius: 999px;
  content: "";
  height: 14px;
  width: 14px;
}

.nav-cta:hover,
.button:hover,
.card-action:hover,
.value-cards button:hover,
.experience-grid button:hover {
  transform: translateY(-2px);
}

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

.hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(217, 154, 24, 0.14), transparent 28%),
    radial-gradient(circle at 95% 5%, rgba(13, 90, 59, 0.11), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fffaf1 100%);
  overflow-x: hidden;
  overflow-y: visible;
  padding: 78px 40px 44px;
}

.hero-lines,
.doodle-field {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-lines {
  background:
    linear-gradient(105deg, transparent 0 45%, rgba(217, 154, 24, 0.18) 45.2% 45.6%, transparent 45.8%),
    radial-gradient(circle at 76% 34%, transparent 0 150px, rgba(217, 154, 24, 0.24) 151px 153px, transparent 154px),
    radial-gradient(circle at 83% 38%, transparent 0 235px, rgba(217, 154, 24, 0.15) 236px 238px, transparent 239px);
}

.doodle {
  opacity: 0.62;
  position: absolute;
}

.doodle.book {
  border: 2px solid rgba(13, 90, 59, 0.16);
  border-radius: 8px 8px 14px 14px;
  height: 56px;
  left: 46%;
  top: 22%;
  transform: rotate(-10deg);
  width: 76px;
}

.doodle.book::after {
  background: rgba(217, 154, 24, 0.3);
  content: "";
  height: 2px;
  left: 12px;
  position: absolute;
  top: 18px;
  width: 48px;
}

.doodle.pencil {
  animation: drift 8s ease-in-out infinite;
  background: rgba(217, 154, 24, 0.22);
  border-radius: 999px;
  height: 150px;
  right: 43%;
  top: 16%;
  transform: rotate(12deg);
  width: 7px;
}

.doodle.star {
  border: 2px solid rgba(217, 154, 24, 0.38);
  height: 18px;
  left: 7%;
  top: 70%;
  transform: rotate(45deg);
  width: 18px;
}

.doodle.chat {
  border: 2px solid rgba(13, 90, 59, 0.14);
  border-radius: 18px;
  height: 54px;
  right: 7%;
  top: 72%;
  width: 92px;
}

.doodle.path {
  border: 1px dashed rgba(217, 154, 24, 0.36);
  border-radius: 50%;
  height: 340px;
  left: -110px;
  top: 55%;
  width: 340px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  min-height: 520px;
  position: relative;
  z-index: 1;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  color: #b46f0a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--mustard-2);
}

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

h1 {
  color: var(--green-950);
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 650px;
}

.h1-line {
  display: block;
}

h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 3.3vw, 3.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

h3 {
  color: var(--green-950);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.14;
}

.text-accent {
  color: var(--mustard);
}

.hero-lede {
  color: #35443c;
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 600px;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 32px;
}

.hero-proof {
  margin-top: 22px;
}

.hero-proof span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(230, 222, 209, 0.9);
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 8px 12px;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 500px;
  position: relative;
}

.mascot-orbit {
  border: 1px solid rgba(217, 154, 24, 0.44);
  border-radius: 50%;
  height: 400px;
  left: 50%;
  position: absolute;
  top: 54px;
  transform: translateX(-50%) rotate(-14deg);
  width: 400px;
}

.mascot-orbit::before,
.mascot-orbit::after {
  background: var(--mustard-2);
  content: "";
  height: 36px;
  position: absolute;
  transform: rotate(45deg);
  width: 36px;
}

.mascot-orbit::before {
  left: 45px;
  top: 26px;
}

.mascot-orbit::after {
  bottom: 38px;
  left: 80px;
}

.mascot-main {
  animation: floatMascot 5s ease-in-out infinite;
  height: 400px;
  margin: 0 auto;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 2;
}

.speech-bubble,
.floating-note {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(230, 222, 209, 0.95);
  box-shadow: 0 18px 44px rgba(8, 36, 26, 0.12);
  position: absolute;
  z-index: 4;
}

.speech-bubble {
  border-radius: 999px;
  color: var(--green-950);
  font-size: 1rem;
  font-weight: 900;
  max-width: 205px;
  padding: 16px 20px;
  right: -8px;
  text-align: center;
  top: 4px;
}

.floating-note {
  border-radius: 16px;
  color: inherit;
  cursor: pointer;
  left: 8%;
  padding: 13px 15px;
  text-align: left;
  top: 344px;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.value-cards,
.stats-bar,
.experience-grid,
.offer-grid,
.modern-card-grid {
  position: relative;
  z-index: 1;
}

.value-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.value-cards article,
.offer-grid article,
.modern-card-grid article,
.faq-list details {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(230, 222, 209, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(8, 36, 26, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.value-cards article {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1fr 34px;
  min-height: 142px;
  padding: 24px;
}

.value-cards article:hover,
.offer-grid article:hover,
.modern-card-grid article:hover {
  border-color: rgba(217, 154, 24, 0.48);
  box-shadow: 0 26px 54px rgba(8, 36, 26, 0.13);
  transform: translateY(-4px);
}

.value-cards button,
.experience-grid button {
  align-items: center;
  background: white;
  border: 1px solid rgba(217, 154, 24, 0.46);
  border-radius: 999px;
  color: var(--mustard);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.icon,
.stat-icon,
.mini-icon {
  align-items: center;
  display: flex;
  justify-content: center;
}

.icon {
  background: var(--green-800);
  border-radius: 999px;
  color: white;
  height: 54px;
  width: 54px;
}

.icon.gold {
  background: var(--mustard);
}

.icon::before,
.stat-icon::before,
.mini-icon::before {
  content: "";
  display: block;
}

.icon-book::before {
  border: 2px solid currentColor;
  border-radius: 4px;
  height: 20px;
  width: 24px;
}

.icon-users::before,
.icon-people::before {
  background:
    radial-gradient(circle at 35% 28%, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 65% 28%, currentColor 0 4px, transparent 5px),
    linear-gradient(currentColor 0 0) center 17px / 30px 9px no-repeat;
  height: 28px;
  width: 34px;
}

.icon-star::before {
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 92%, 50% 70%, 21% 92%, 32% 56%, 2% 35%, 39% 35%);
  height: 28px;
  width: 28px;
}

.icon-shield::before {
  background: currentColor;
  clip-path: polygon(50% 0, 88% 14%, 82% 62%, 50% 100%, 18% 62%, 12% 14%);
  height: 28px;
  width: 24px;
}

.icon-trophy::before {
  border: 4px solid currentColor;
  border-radius: 4px 4px 12px 12px;
  border-top-width: 8px;
  height: 22px;
  width: 24px;
}

.icon-heart::before {
  background: currentColor;
  clip-path: polygon(50% 90%, 14% 54%, 10% 28%, 24% 10%, 43% 16%, 50% 28%, 57% 16%, 76% 10%, 90% 28%, 86% 54%);
  height: 26px;
  width: 28px;
}

.icon-spark::before {
  background: currentColor;
  clip-path: polygon(50% 0, 58% 32%, 90% 18%, 72% 48%, 100% 58%, 66% 64%, 82% 94%, 50% 74%, 18% 94%, 34% 64%, 0 58%, 28% 48%, 10% 18%, 42% 32%);
  height: 28px;
  width: 28px;
}

.icon-chat::before {
  border: 2px solid currentColor;
  border-radius: 10px;
  height: 22px;
  width: 30px;
}

.icon-route::before {
  border: 3px dashed currentColor;
  border-left: 0;
  border-radius: 50%;
  height: 28px;
  width: 30px;
}

.icon-home::before {
  border: 3px solid currentColor;
  border-top: 0;
  height: 20px;
  position: relative;
  width: 24px;
}

.icon-home::after {
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  content: "";
  height: 18px;
  position: absolute;
  transform: translateY(-9px) rotate(45deg);
  width: 18px;
}

.value-cards h2 {
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.value-cards p,
.offer-grid p,
.modern-card-grid p,
.faq-layout p {
  color: var(--muted);
  font-weight: 500;
}

.stats-bar {
  background: var(--green-800);
  border-radius: 16px;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  overflow: hidden;
}

.stats-bar div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 2px 14px;
  grid-template-columns: 42px 1fr;
  min-height: 92px;
  padding: 18px 24px;
}

.stats-bar div:last-child {
  border-right: 0;
}

.stat-icon {
  color: var(--mustard-2);
  grid-column: 1;
  grid-row: 1 / span 2;
}

.stats-bar strong {
  color: var(--mustard-2);
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  grid-column: 2;
  line-height: 1;
}

.stats-bar span:not(.stat-icon) {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  grid-column: 2;
}

.section {
  padding: 78px 40px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 32px;
}

.section-heading p {
  max-width: 560px;
}

.section-heading > a {
  color: #a96908;
  font-weight: 900;
}

.section-heading > div > span,
.title-line {
  background: var(--mustard);
  display: block;
  height: 3px;
  margin-top: 12px;
  width: 48px;
}

.band-green {
  background:
    radial-gradient(circle at 8% 20%, rgba(244, 193, 75, 0.16), transparent 26%),
    radial-gradient(circle at 92% 90%, rgba(255, 255, 255, 0.10), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  color: white;
}

.band-green h2,
.band-green h3 {
  color: white;
}

.band-green .modern-card-grid article {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.band-green .modern-card-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.modern-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.modern-card-grid article {
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.modern-card-grid article::after {
  background: rgba(217, 154, 24, 0.18);
  border-radius: 999px;
  content: "";
  height: 110px;
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
}

.mini-icon {
  background: var(--green-100);
  border-radius: 999px;
  color: var(--mustard);
  height: 48px;
  margin-bottom: 34px;
  width: 48px;
}

.card-action {
  background: var(--green-100);
  color: var(--green-900);
  font-size: 0.86rem;
  margin-top: 18px;
  min-height: 38px;
  padding: 0 16px;
}

.card-action:hover {
  background: var(--green-800);
  color: white;
}

.offer {
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 154, 24, 0.12), transparent 22%),
    radial-gradient(circle at 100% 80%, rgba(13, 90, 59, 0.08), transparent 24%),
    #f8f2e8;
}

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

.offer-grid article {
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 154, 24, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.92);
  min-height: 360px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.offer-grid article::before {
  background: var(--green-100);
  border-radius: 999px;
  content: "";
  height: 120px;
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
}

.offer-card-top {
  border-bottom: 1px solid rgba(230, 222, 209, 0.9);
  margin-bottom: 20px;
  padding-bottom: 18px;
  position: relative;
  z-index: 1;
}

.offer-card-top span {
  color: #a96908;
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.offer-grid article > p,
.offer-grid ul,
.offer-grid .card-action {
  position: relative;
  z-index: 1;
}

.offer-grid ul {
  color: var(--muted);
  display: grid;
  font-weight: 700;
  gap: 10px;
  list-style: none;
  margin: 22px 0 8px;
  padding: 0;
}

.offer-grid li {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.offer-grid li::before {
  background: var(--mustard);
  border-radius: 999px;
  content: "";
  height: 8px;
  margin-top: 0.58em;
  width: 8px;
}

.video-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f7fbf9 100%);
}

.video-card {
  background:
    radial-gradient(circle at 10% 20%, rgba(244, 193, 75, 0.18), transparent 24%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  padding: 34px;
}

.video-card h2 {
  color: white;
}

.video-card p {
  color: rgba(255, 255, 255, 0.72);
}

.video-frame {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.video-frame video {
  aspect-ratio: 16 / 9;
  background: white;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

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

.experience-grid article {
  background: var(--green-900);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(8, 36, 26, 0.12);
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.image-slot {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(13, 90, 59, 0.86), rgba(13, 90, 59, 0.42)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 12px);
  display: flex;
  height: 240px;
  justify-content: center;
}

.image-slot.facade {
  background:
    linear-gradient(135deg, rgba(6, 35, 24, 0.88), rgba(13, 90, 59, 0.42)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 12px);
}

.image-slot.students,
.image-slot.activities,
.image-slot.teachers,
.image-slot.campus {
  background:
    linear-gradient(135deg, rgba(217, 154, 24, 0.88), rgba(13, 90, 59, 0.58)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 12px);
}

.image-slot span {
  border: 1px dashed rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 8px 13px;
}

.experience-grid strong {
  bottom: 18px;
  color: white;
  left: 20px;
  position: absolute;
  z-index: 2;
}

.experience-grid button {
  bottom: 18px;
  position: absolute;
  right: 20px;
  z-index: 2;
}

.pepe-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 154, 24, 0.16), transparent 24%),
    radial-gradient(circle at 10% 90%, rgba(13, 90, 59, 0.08), transparent 24%),
    #fffaf1;
}

.graduation-card {
  align-items: center;
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 154, 24, 0.18), transparent 26%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(230, 222, 209, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 32px;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  padding: 42px;
}

.graduation-copy p {
  color: var(--muted);
  font-weight: 600;
  max-width: 620px;
}

.graduation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.graduation-visual {
  align-items: end;
  background:
    radial-gradient(circle at 50% 62%, rgba(13, 90, 59, 0.16), transparent 38%),
    var(--green-100);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  min-height: 360px;
}

.graduation-visual img {
  height: 350px;
  object-fit: contain;
  object-position: bottom center;
}

.admissions-card {
  align-items: center;
  background:
    radial-gradient(circle at 92% 12%, rgba(244, 193, 75, 0.18), transparent 24%),
    var(--green-950);
  border-radius: 28px;
  color: white;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  padding: 42px;
}

.admissions-card h2 {
  color: white;
}

.admissions-card p {
  color: rgba(255, 255, 255, 0.72);
}

.admissions-card ol {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admissions-card li {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  font-weight: 800;
  gap: 12px;
  padding: 14px;
}

.admissions-card li span {
  align-items: center;
  background: var(--mustard-2);
  border-radius: 999px;
  color: var(--green-950);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.faq-layout {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.82fr 1.18fr;
}

.faq-layout img {
  background: transparent;
  border-radius: 0;
  height: 300px;
  margin-top: 18px;
  object-fit: contain;
  object-position: bottom center;
  width: min(100%, 360px);
}

.faq-layout h2 {
  max-width: 420px;
}

.faq-layout > div:first-child > p:not(.eyebrow) {
  max-width: 420px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  color: var(--green-950);
  cursor: pointer;
  font-weight: 900;
}

.faq-list details p {
  margin: 10px 0 0;
}

.contact {
  background:
    radial-gradient(circle at 95% 82%, rgba(217, 154, 24, 0.18), transparent 24%),
    var(--cream);
  padding: 82px 40px 96px;
}

.contact-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-placeholders {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-placeholders span {
  align-items: flex-start;
  background: white;
  border: 1px solid rgba(230, 222, 209, 0.9);
  border-radius: 16px;
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 13px;
}

.contact-placeholders strong {
  color: var(--green-900);
  margin-right: 6px;
}

.lead-form {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(230, 222, 209, 0.95);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(8, 36, 26, 0.08);
  display: grid;
  gap: 14px;
  padding: 22px;
}

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

.lead-form label {
  display: grid;
}

.lead-form label span {
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: white;
  border: 1px solid #ded7ce;
  border-radius: 12px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}

.lead-form textarea {
  min-height: 88px;
  padding-top: 12px;
  resize: vertical;
}

.form-submit {
  justify-self: end;
  min-width: 210px;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.floating-contact {
  align-items: center;
  background: white;
  border: 1px solid rgba(230, 222, 209, 0.9);
  border-radius: 999px;
  bottom: 26px;
  box-shadow: 0 16px 36px rgba(8, 36, 26, 0.14);
  color: var(--green-800);
  display: none;
  font-weight: 900;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  position: fixed;
  right: 24px;
  z-index: 30;
}

.site-footer {
  background: var(--green-950);
  color: white;
  padding: 48px 40px 0;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.25fr 0.8fr 1.1fr;
}

.footer-grid img {
  background: white;
  border-radius: 10px;
  height: 58px;
  object-fit: contain;
  padding: 8px;
  width: 180px;
}

.footer-grid p,
.footer-grid address,
.footer-grid a {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-weight: 700;
}

.footer-grid p {
  margin: 18px 0 0;
  max-width: 430px;
}

.footer-grid nav,
.footer-grid address {
  display: grid;
  gap: 10px;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--mustard-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 38px;
  padding: 18px 0;
  text-align: center;
}

.footer-bottom a {
  color: white;
}

.info-modal {
  align-items: center;
  background: rgba(8, 36, 26, 0.42);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 22px;
  position: fixed;
  z-index: 10001;
}

.info-modal.is-open {
  display: flex;
}

.info-modal__panel {
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 154, 24, 0.16), transparent 24%),
    white;
  border: 1px solid rgba(230, 222, 209, 0.95);
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(8, 36, 26, 0.26);
  max-width: 580px;
  padding: 34px;
  position: relative;
  width: min(100%, 580px);
}

.info-modal__panel p,
.info-modal__panel li {
  color: var(--muted);
}

.info-modal__panel ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 1.2rem;
}

.modal-close {
  align-items: center;
  background: var(--green-100);
  border: 0;
  border-radius: 999px;
  color: var(--green-900);
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}

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

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

@keyframes floatMascot {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(16px) rotate(12deg);
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    align-items: center;
    background: white;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(8, 36, 26, 0.08);
    display: flex;
    flex-direction: column;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .nav-toggle span {
    background: var(--green-900);
    display: block;
    height: 3px;
    margin: 3px 0;
    width: 24px;
  }

  .nav-links {
    background: white;
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 2px;
    left: 0;
    padding: 18px 28px 24px;
    position: fixed;
    right: 0;
    top: 86px;
  }

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

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .video-card,
  .admissions-card,
  .graduation-card,
  .faq-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .mascot-main {
    height: 430px;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    min-height: 76px;
    padding: 0 18px;
  }

  .brand img {
    height: 46px;
    width: 165px;
  }

  .mobile-menu-button {
    background: white;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(8, 36, 26, 0.08);
    color: var(--green-900);
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    left: min(calc(100vw - 78px), 320px);
    min-height: 40px;
    padding: 0 10px;
    position: fixed;
    right: auto;
    top: 18px;
    z-index: 10000;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    top: 76px;
  }

  .hero,
  .section,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-shell,
  .nav-shell,
  .contact-grid {
    max-width: 100%;
  }

  .hero {
    padding-top: 44px;
    max-width: 100vw;
    overflow: hidden;
    width: 100%;
  }

  .hero-grid {
    gap: 28px;
    min-width: 0;
    width: 100%;
  }

  .hero-copy {
    max-width: min(100%, 336px);
    min-width: 0;
    overflow: hidden;
    width: min(100%, 336px);
  }

  h1 {
    font-size: clamp(1.95rem, 8vw, 2.16rem);
    line-height: 1.04;
    max-width: min(100%, 336px);
    width: min(100%, 336px);
  }

  .h1-line {
    display: inline;
  }

  .h1-line::after {
    content: " ";
  }

  .h1-line:last-child::after {
    content: "";
  }

  .hero-lede {
    max-width: min(100%, 336px);
    width: min(100%, 336px);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .hero-actions,
  .hero-proof {
    display: grid;
  }

  .button,
  .hero-proof span {
    width: 100%;
  }

  .hero-visual {
    min-height: 310px;
    overflow: hidden;
  }

  .mascot-orbit {
    height: 250px;
    left: 50%;
    top: 30px;
    width: 250px;
  }

  .mascot-main {
    height: 285px;
    margin-left: 0;
  }

  .speech-bubble,
  .floating-note,
  .doodle.book,
  .doodle.chat {
    display: none;
  }

  .value-cards,
  .offer-grid,
  .modern-card-grid,
  .experience-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .value-cards article {
    grid-template-columns: 48px 1fr 32px;
    padding: 18px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stats-bar div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    min-height: 110px;
    padding: 14px 12px;
  }

  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-layout img {
    height: 240px;
  }

  .video-card {
    border-radius: 20px;
    padding: 20px;
  }

  .faq-layout {
    gap: 24px;
  }

  .graduation-card {
    border-radius: 22px;
    padding: 22px;
  }

  .graduation-visual {
    min-height: 260px;
  }

  .graduation-visual img {
    height: 250px;
  }

  .admissions-card {
    padding: 24px;
  }

  .form-submit {
    justify-self: stretch;
  }

  .floating-contact {
    display: flex;
    height: 48px;
    min-height: 48px;
    padding: 0;
    right: 14px;
    width: 48px;
  }

  .floating-contact span {
    display: none;
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
