:root {
  --pink: #ef2f7b;
  --pink-dark: #c9175a;
  --yellow: #f8c830;
  --orange: #ff8500;
  --orange-dark: #df6d00;
  --ink: #101014;
  --muted: #5d5d66;
  --line: #ece7ea;
  --soft: #fff7fb;
  --warm: #fff8ef;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(16, 16, 20, 0.13);
  --radius: 8px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(100% - 72px, var(--shell)); margin: 0 auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 40; padding: 10px 14px; background: var(--ink); color: #fff; border-radius: var(--radius); }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 216px;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand .college-logo { width: 64px; height: 58px; }
.brand .montessori-logo { width: 60px; height: 60px; }
.brand strong, .brand small { display: block; line-height: 1.02; }
.brand strong { color: var(--pink); font-size: 1.3rem; font-weight: 950; letter-spacing: 0; }
.brand small { color: var(--ink); margin-top: 4px; font-weight: 950; font-size: .82rem; }
.brand.orange strong { color: var(--orange); }
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: .9rem;
  font-weight: 800;
}
.nav-menu a,
.nav-dropdown-toggle {
  color: var(--ink);
  position: relative;
  padding: 10px 0;
  text-decoration: none;
  font: inherit;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 255px;
  display: none;
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 40;
}
.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
}
.nav-dropdown a:hover { background: var(--soft); }
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  display: block;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"], .nav-dropdown-toggle:hover { color: var(--pink); }
.orange-site .nav-menu a:hover, .orange-site .nav-menu a[aria-current="page"], .orange-site .nav-dropdown-toggle:hover { color: var(--orange); }
.nav-menu .nav-portal { display: none; }
.nav-menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  background: currentColor;
}
.nav-actions { display: flex; justify-content: end; gap: 10px; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background: #fff;
}
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); }

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.solid { background: var(--pink); color: #fff; box-shadow: 0 16px 28px rgba(239,47,123,.24); }
.btn.outline { border-color: var(--pink); color: var(--pink); }
.btn.orange { background: var(--orange); color: #fff; box-shadow: 0 16px 28px rgba(255,133,0,.22); }
.btn.orange-outline { border-color: var(--orange); color: var(--orange); }
.btn.dark { background: var(--ink); color: #fff; }
.btn.full { width: 100%; }
.play-dot { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 999px; background: currentColor; color: #fff; font-size: .64rem; }

.hero-slider {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease, transform 900ms ease;
  transform: scale(1.02);
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 36%, rgba(255,255,255,.32) 61%, rgba(255,255,255,.05) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,.86) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 650px; padding: 56px 0; animation: heroText .8s ease both; }
.slide.is-active .hero-copy { animation: heroText .8s ease both; }
@keyframes heroText { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: .95;
  letter-spacing: 0;
  font-weight: 950;
}
.hero-copy p {
  max-width: 590px;
  margin: 18px 0 0;
  color: #1e1e22;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.page-hero .slide::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 43%, rgba(255,255,255,.2) 78%, rgba(255,255,255,.04) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 68%, rgba(255,255,255,.9) 100%);
}
.page-hero .hero-copy { padding-bottom: 94px; }
.page-hero .hero-buttons { position: relative; z-index: 8; }
.page-hero .slider-controls { bottom: 34px; }
.slider-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.slider-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(16,16,20,.25);
  cursor: pointer;
}
.slider-dot.is-active { background: var(--pink); }
.orange-site .slider-dot.is-active { background: var(--orange); }

.proof-strip { border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid article {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 24px;
  border-left: 1px solid var(--line);
}
.proof-grid article:last-child { border-right: 1px solid var(--line); }
.proof-grid span { color: var(--pink); font-size: 1.65rem; font-weight: 950; }
.proof-grid p { margin: 0; font-weight: 850; line-height: 1.18; }

.section { padding: 82px 0; }
.section.soft { background: var(--soft); }
.section.warm { background: var(--warm); }
.section.dark { background: #111; color: #fff; }
.section.dark p { color: rgba(255,255,255,.74); }
.section-head { max-width: 760px; margin: 0 0 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-label { margin: 0 0 10px; color: var(--pink); font-weight: 950; }
.orange-site .section-label, .orange-text { color: var(--orange); }
h1, h2, h3 { letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.04; }
h3 { margin: 0; font-size: 1.22rem; line-height: 1.22; }
p { color: var(--muted); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 16px 38px rgba(16,16,20,.06);
}
.card.accent { border-top: 5px solid var(--pink); }
.orange-site .card.accent { border-top-color: var(--orange); }
.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.tall-photo { height: 480px; }
.wide-photo { height: 360px; }

.campus-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.campus-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16,16,20,.06);
}
.campus-card img { width: 78px; height: 78px; object-fit: contain; }
.campus-card b { color: var(--pink); }
.campus-card.orange b { color: var(--orange); }

.director-grid { display: grid; grid-template-columns: 1fr 340px 1fr; gap: 42px; align-items: center; }
.director-photo { height: 420px; }
.signature { margin: 18px 0 4px; color: var(--ink); font-family: "Brush Script MT", "Segoe Script", cursive; font-size: 1.8rem; }
.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 78px 1fr; gap: 18px; position: relative; }
.timeline-item strong { color: var(--orange); font-size: 1.1rem; }
.timeline-item p { margin: 0; }

.process { counter-reset: step; display: grid; gap: 16px; }
.process article { position: relative; padding-left: 76px; }
.process article::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 22px;
  color: var(--pink);
  font-weight: 950;
  font-size: 1.2rem;
}
.orange-site .process article::before { color: var(--orange); }
.tick-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; color: var(--muted); }
.tick-list li::before { content: "✓"; color: var(--pink); font-weight: 950; margin-right: 10px; }
.orange-site .tick-list li::before { color: var(--orange); }

.stats-band { position: relative; z-index: 1; padding: 22px 0; clear: both; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--pink), #f52f79);
  color: #fff;
}
.orange-site .stats-grid { background: linear-gradient(90deg, var(--orange), #ff9d12); }
.stats-grid div { min-height: 78px; display: grid; place-items: center; padding: 14px; text-align: center; border-right: 1px solid rgba(255,255,255,.24); }
.stats-grid strong, .stats-grid span { display: block; line-height: 1.15; }
.stats-grid strong { font-size: 1.25rem; font-weight: 950; }
.stats-grid span { font-size: .82rem; font-weight: 800; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: 0 14px 34px rgba(16,16,20,.08); }
.gallery-grid img { width: 100%; height: 205px; object-fit: cover; }
.gallery-grid figcaption { padding: 12px 14px; font-weight: 850; font-size: .9rem; }
.school-video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); background: #000; box-shadow: var(--shadow); }

.lead-form, .contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.lead-form label, .contact-form label { display: grid; gap: 7px; font-size: .88rem; font-weight: 850; }
.lead-form .wide, .contact-form .wide, .lead-form button, .contact-form button, .form-status { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(239,47,123,.18); border-color: var(--pink); }
.orange-site input:focus, .orange-site select:focus, .orange-site textarea:focus { outline-color: rgba(255,133,0,.22); border-color: var(--orange); }
.form-status { min-height: 1.4em; margin: 0; color: var(--pink); font-weight: 850; }

.page-hero { min-height: 450px; }
.page-hero .hero-content { min-height: 450px; }
.page-hero .hero-copy h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
.page-hero .slide::after { background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.84) 42%, rgba(255,255,255,.12) 100%); }

.notification-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,16,20,.06);
}
.notification-panel p { margin: 0; }

.site-footer { padding: 38px 0; background: #402840; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-grid a { color: #fff; text-decoration: none; font-weight: 800; }
.footer-grid p { color: rgba(255,255,255,.68); margin: 10px 0 0; max-width: 520px; }
.footer-chat-cta {
  max-width: 270px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.footer-chat-cta strong { display: block; font-size: 1rem; }
.footer-chat-cta p { margin: 8px 0 14px; color: rgba(255,255,255,.76); font-size: .88rem; }
.footer-chat-cta .btn { min-height: 40px; padding: 10px 16px; }
.install-button { position: fixed; right: 18px; bottom: 18px; z-index: 35; border: 0; border-radius: var(--radius); padding: 13px 16px; background: var(--ink); color: #fff; box-shadow: var(--shadow); font-weight: 900; cursor: pointer; }


/* ============================================ */
/* CHAT WIDGET - COMPACT & FIXED */
/* ============================================ */

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 9999;
  font-family: inherit;
}

.chat-launcher {
  min-width: 65px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--pink, #EF2F7B);
  color: #fff;
  box-shadow: 0 18px 34px rgba(239,47,123,.3);
  font-weight: 950;
  cursor: pointer;
  position: relative;
  z-index: 10000;
  padding: 10px 18px;
  font-size: 0.9rem;
  display: block;
}

.chat-launcher:hover {
  transform: scale(1.05);
}

/* Chat Panel - Reduced Height */
.chat-panel {
  position: fixed;
  right: 18px;
  bottom: 140px;
  width: 370px;
  height: 450px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line, #e0e0e0);
  border-radius: 12px;
  background: #fff;
  color: var(--ink, #333);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 9998;
}

.chat-panel[hidden] {
  display: none !important;
}

/* Compact Chat Head */
.chat-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--pink, #EF2F7B), #f35d99);
  color: #fff;
  cursor: move;
  user-select: none;
  min-height: 48px;
}

.chat-head > div:first-child {
  min-width: 0;
  pointer-events: none;
}

.chat-head strong {
  font-size: 0.9rem;
}

.chat-head span {
  display: block;
  font-size: 0.7rem;
  opacity: .82;
}

.chat-head-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.chat-voice-toggle {
  min-height: 28px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  padding: 4px 8px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  pointer-events: auto;
}

.chat-voice-toggle[aria-pressed="true"] {
  background: rgba(255,255,255,.25);
}

/* FIXED CLOSE BUTTON */
.chat-close-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 10001;
  line-height: 1;
  padding: 0;
  transition: all 0.2s ease;
}

.chat-close-btn:hover {
  background: rgba(255,0,0,0.5);
  transform: scale(1.1);
}

.chat-close-btn:active {
  transform: scale(0.95);
  background: rgba(255,0,0,0.7);
}

/* Messages Area */
.chat-messages {
  flex: 1 1 auto;
  min-height: 80px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: #fff7fb;
}

.chat-messages::-webkit-scrollbar {
  width: 5px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(239,47,123,.2);
  border-radius: 3px;
}

.chat-message {
  max-width: 85%;
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
  word-wrap: break-word;
  animation: msgIn 0.3s ease;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.chat-message.user {
  align-self: flex-end;
  background: var(--pink, #EF2F7B);
  color: #fff;
}

.chat-message.pending {
  opacity: .6;
}

/* Quick Action Buttons - Hides after first message */
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px 0;
  pointer-events: auto;
}

.chat-quick button {
  border: 1px solid rgba(239,47,123,.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  color: var(--pink, #EF2F7B);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.chat-quick button:hover {
  background: var(--pink, #EF2F7B);
  color: #fff;
}

/* Compact Form */
.chat-form.compact {
  flex: 0 0 auto;
  display: grid;
  gap: 6px;
  padding: 8px 12px;
  background: #fff;
  border-top: 1px solid #eee;
}

.chat-form.compact textarea {
  font-size: 0.82rem;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  resize: none;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  overflow-y: auto;
}

.chat-form.compact textarea:focus {
  outline: 2px solid rgba(239,47,123,.2);
  border-color: var(--pink, #EF2F7B);
}

.chat-form-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.chat-form-actions .btn {
  font-size: 0.8rem;
  min-height: 36px;
  padding: 6px 12px;
}

.chat-mic-btn {
  min-width: 36px;
  font-size: 1rem;
}

.chat-mic-btn.recording {
  background: var(--pink, #EF2F7B);
  color: #fff;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.chat-mic-btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

/* WhatsApp Link */
.chat-whatsapp {
  display: block;
  flex: 0 0 auto;
  margin: 6px 12px 8px;
  padding: 8px;
  border-radius: 6px;
  background: #20b15a;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 900;
  transition: all 0.2s;
}

.chat-whatsapp:hover {
  background: #1a944b;
}

.chat-whatsapp.escalate {
  background: #FF6B35;
  animation: pulse 2s infinite;
}

/* ============================================ */
/* MOBILE RESPONSIVE */
/* ============================================ */
@media (max-width: 680px) {
  .chat-widget {
    right: 8px;
    bottom: 60px;
  }
  
  .chat-launcher {
    min-width: 55px;
    min-height: 42px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  .chat-panel {
    right: 4px;
    left: 4px;
    bottom: 60px;
    width: auto;
    height: calc(100vh - 120px);
    max-height: none;
    border-radius: 10px;
  }
  
  .chat-head {
    padding: 8px 12px;
    min-height: 42px;
  }
  
  .chat-close-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .chat-form-actions {
    grid-template-columns: 1fr;
  }
  
  .chat-form-actions .btn {
    width: 100%;
  }
}

/* ============================================ */
/* DESKTOP */
/* ============================================ */
@media (min-width: 1024px) {
  .chat-panel {
    right: 24px;
    bottom: 140px;
    height: 450px;
  }
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS */
/* ============================================ */
@media (max-width: 1040px) {
  .shell { width: min(100% - 34px, var(--shell)); }
  .nav { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .nav-menu {
    position: absolute;
    top: 78px;
    left: 17px;
    right: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu .nav-portal {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 4px;
    padding: 12px 16px;
    border: 1px solid var(--pink);
    border-radius: 6px;
    background: var(--pink);
    color: #fff;
    font-weight: 950;
  }
  .orange-site .nav-menu .nav-portal {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
  }
  .nav-item { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown {
    position: static;
    min-width: 0;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
  }
  .nav-menu a[aria-current="page"]::after { bottom: -2px; }
  .nav-actions { display: none; }
  .hero-slider, .hero-content { min-height: 620px; }
  .slide img { position: absolute; height: 100%; object-position: center; }
  .slide::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.46) 0%, rgba(255,255,255,.88) 62%, rgba(255,255,255,.98) 100%),
      linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.42) 72%, rgba(255,255,255,.08));
  }
  .hero-content { align-items: center; }
  .hero-copy { padding: 98px 0 118px; }
  .two-col, .director-grid, .campus-cards { grid-template-columns: 1fr; }
  .three-col, .four-col, .proof-grid, .gallery-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .brand { min-width: 0; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: .96rem; }
  .brand small { font-size: .72rem; }
  .hero-slider, .hero-content { min-height: 610px; }
  .hero-copy { padding: 88px 0 112px; }
  .page-hero, .page-hero .hero-content { min-height: 570px; }
  .page-hero .hero-copy { padding: 78px 0 108px; }
  .hero-copy h1 { font-size: clamp(2.15rem, 10.5vw, 3.1rem); line-height: 1.03; }
  .page-hero .hero-copy h1 { font-size: clamp(2rem, 9.8vw, 2.85rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-buttons { margin-top: 22px; }
  .hero-buttons, .lead-form, .contact-form, .three-col, .four-col, .proof-grid, .gallery-grid, .stats-grid { grid-template-columns: 1fr; display: grid; }
  .btn { width: 100%; }
  .campus-card { grid-template-columns: 62px 1fr; }
  .campus-card img { width: 60px; height: 60px; }
  .section { padding: 58px 0; }
  .lead-form .wide, .contact-form .wide, .lead-form button, .contact-form button, .form-status { grid-column: auto; }
  .notification-panel, .footer-grid { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-chat-cta { max-width: none; }
  .install-button { right: 12px; bottom: 12px; padding: 10px 12px; font-size: .84rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
