/* ══════════════════════════════════════
         DESIGN TOKENS
        ══════════════════════════════════════ */
:root {
  --pink: #d81b7d;
  --pink-deep: #b01564;
  --pink-light: #e84595;
  --pink-pale: #fef0f7;
  --pink-tint: #fff5fa;

  --navy: #0d1238;
  --navy-mid: #1a1f50;
  --navy-soft: #252b65;

  --bg: #fafafb;
  --surface: #ffffff;
  --surface-2: #f7f6f9;

  --border: rgba(216, 27, 125, 0.1);
  --border-mid: rgba(216, 27, 125, 0.18);

  --text: #0d1238;
  --text-muted: #4a4f6a;
  --text-faint: #8b8fa8;
  --on-pink: #ffffff;

  --font-head: "Roboto", sans-serif;
  --font-body: "Inter", sans-serif;

  --sz-xs: 0.75rem;
  --sz-sm: 0.875rem;
  --sz-md: 1rem;
  --sz-lg: 1.25rem;
  --sz-xl: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  --sz-2xl: clamp(2rem, 1.2rem + 2.4vw, 3.2rem);

  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 6.25rem;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 32px;
  --r-full: 9999px;

  --sh-sm: 0 1px 3px rgba(13, 18, 56, 0.04), 0 2px 6px rgba(0, 0, 0, 0.03);
  --sh-md: 0 4px 18px rgba(13, 18, 56, 0.06), 0 8px 28px rgba(0, 0, 0, 0.04);
  --sh-lg: 0 8px 30px rgba(13, 18, 56, 0.08), 0 16px 40px rgba(0, 0, 0, 0.05);
  --sh-pink: 0 6px 22px rgba(216, 27, 125, 0.22);

  --ease: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow: 350ms cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1200px;
}

/* ── Reset ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  font-size: var(--sz-md);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
}
p {
  max-width: 66ch;
}

/* ══════════════════════════════════════
         TOP BAR
        ══════════════════════════════════════ */
.top-bar {
  background: linear-gradient(
    120deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #3d0d28 100%
  );
  padding: var(--s2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--sz-xs);
  transition: color var(--ease);
}
.top-bar__item:hover {
  color: #fff;
}
.top-bar__item svg {
  flex-shrink: 0;
  opacity: 0.65;
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.top-bar__hours {
  font-size: var(--sz-xs);
  color: rgba(255, 255, 255, 0.65);
  padding: 3px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar__social {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--ease),
    color var(--ease);
}
.top-bar__social:hover {
  background: var(--pink);
  color: #fff;
}

/* ══════════════════════════════════════
         NAVBAR
        ══════════════════════════════════════ */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(13, 18, 56, 0.04);
  position: sticky;
  top: 0;
  z-index: 200;
}
.navbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--s6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.logo__emblem {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--pink-pale);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo__name {
  font-family: var(--font-head);
  font-size: clamp(0.85rem, 0.7rem + 0.4vw, 1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.logo__board {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.logo__slogan {
  font-size: 0.6rem;
  color: var(--text-faint);
  font-weight: 500;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__list a {
  display: block;
  padding: var(--s2) var(--s3);
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition:
    color var(--ease),
    background var(--ease);
}
.nav__list a:hover {
  color: var(--pink);
  background: var(--pink-tint);
}
.nav__list a.active {
  color: var(--pink-deep);
  font-weight: 600;
  background: var(--pink-tint);
}
.nav__list .nav__cta {
  background: var(--pink) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  padding: var(--s2) var(--s5) !important;
  font-weight: 700 !important;
  box-shadow: var(--sh-pink);
  margin-left: var(--s2);
  transition:
    background var(--ease),
    box-shadow var(--ease),
    transform var(--ease) !important;
}
.nav__list .nav__cta:hover {
  background: var(--pink-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(216, 27, 125, 0.35) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.mobile-menu {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--s4) var(--s6) var(--s6);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: var(--s3) var(--s2);
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition:
    color var(--ease),
    padding-left var(--ease);
}
.mobile-menu a:hover {
  color: var(--pink);
  padding-left: var(--s4);
}
.mobile-menu__cta {
  display: block;
  margin-top: var(--s4);
  text-align: center;
  background: var(--pink);
  color: #fff !important;
  padding: var(--s3) var(--s4);
  border-radius: var(--r-full);
  font-weight: 700;
  border-bottom: none !important;
}

@media (max-width: 960px) {
  .nav__list {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 620px) {
  .top-bar__hours {
    display: none;
  }
}

/* ══════════════════════════════════════
         SHARED SECTION UTILITIES
        ══════════════════════════════════════ */
.section {
  padding: var(--s20) var(--s6);
}
.section--light {
  background: var(--surface-2);
}
.section--muted {
  background: var(--pink-tint);
}
.section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}
.section__header {
  margin-bottom: var(--s12);
}
.section__header--center {
  text-align: center;
}
.section__title {
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--navy);
  margin-top: var(--s3);
  letter-spacing: -0.02em;
}
.section__desc {
  font-size: var(--sz-sm);
  color: var(--text-muted);
  max-width: 52ch;
  margin: var(--s3) auto 0;
  line-height: 1.8;
}
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 1px solid rgba(216, 27, 125, 0.18);
}

/* ══ HERO ══ */
.hero-custom {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.hero-custom__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 8, 42, 0.55) 0%, rgba(22, 8, 42, 0.85) 100%);
  z-index: 1;
}
.hero-custom__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.15), transparent 55%),
    radial-gradient(circle at bottom left, rgba(232, 56, 142, 0.15), transparent 55%);
  pointer-events: none;
}
.hero-custom__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: var(--s12) var(--s6);
}
.hero-custom__content h1 {
  font-size: var(--sz-2xl);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0;
  line-height: 1.15;
}
.hero-custom__content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 700px;
  margin: 1.25rem auto 0;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* ══════════════════════════════════════
   ABOUT — SINGLE CLEAN IMAGE LEFT
══════════════════════════════════════ */
.about {
  background: var(--bg);
  padding: var(--s20) var(--s6);
}

.about__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: stretch;
}

/* ─── LEFT: Image ─── */
.about__media {
  position: relative;
}

.about__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  display: block;
}

/* Offset pink border behind image */
.about__media::before {
  content: "";
  position: absolute;
  top: var(--s5);
  left: calc(-1 * var(--s4));
  width: 100%;
  height: 100%;
  border-radius: var(--r-2xl);
  border: 2px solid rgba(216, 27, 125, 0.22);
  z-index: 0;
  pointer-events: none;
}

/* Est. tag */
.about__est {
  position: absolute;
  bottom: var(--s8);
  left: 0;
  z-index: 2;
  background: var(--pink);
  color: #fff;
  padding: var(--s3) var(--s6) var(--s3) var(--s5);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: var(--sh-pink);
  line-height: 1;
}

.about__est span {
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-bottom: var(--s1);
}

.about__est strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
}

/* ─── RIGHT: Content ─── */
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s5);
}

.about__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  border: 1px solid var(--border-mid);
  color: var(--pink-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  width: fit-content;
}

.about__title {
  font-family: var(--font-head);
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about__title em {
  font-style: italic;
  color: var(--pink);
}

.about__bar {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  border-radius: var(--r-full);
}

.about__desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 52ch;
}

/* ─── Value rows ─── */
.about__values {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(216, 27, 125, 0.1);
  margin-top: var(--s2);
}

.about__value-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s5);
  padding: var(--s5) 0;
  border-bottom: 1px solid rgba(216, 27, 125, 0.08);
  transition: padding-left var(--ease);
  cursor: default;
}

.about__value-row:hover {
  padding-left: var(--s3);
}

.about__value-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--pink-pale);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about__value-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s1);
}

.about__value-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--s12);
  }
  .about__img { height: 420px; }
}

@media (max-width: 768px) {
  .about { padding: var(--s12) var(--s4); }
  .about__img {
    height: 320px;
    border-radius: var(--r-xl);
  }
  .about__media::before { border-radius: var(--r-xl); }
  .about__value-row:hover { padding-left: 0; }
}

@media (max-width: 480px) {
  .about__img { height: 260px; }
  .about__est strong { font-size: 1.5rem; }
}

/* ══════════════════════════════════════
   SECTION 2 — HISTORY (REDESIGNED)
   Alternating image-text timeline
══════════════════════════════════════ */

.history {
  background: var(--surface-2);
  padding: var(--s20) var(--s6);
}

.history__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

/* ── Header ── */
.history__header {
  text-align: center;
  margin-bottom: var(--s16);
}

.history__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  border: 1px solid rgba(216, 27, 125, 0.2);
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}

.history__title {
  font-family: var(--font-head);
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s3);
}

.history__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto;
}

/* ── Timeline container ── */
.history__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical centre line */
.history__timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(216, 27, 125, 0.25) 8%,
    rgba(216, 27, 125, 0.25) 92%,
    transparent
  );
  z-index: 0;
}

/* ── Each timeline row ── */
.history__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 0;
  padding: var(--s10) 0;
}

/* Flipped row: text | spine | image */
.history__item--flip {
  direction: ltr; /* keep natural flow */
}

/* ── Image wrap ── */
.history__img-wrap {
  overflow: hidden;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
}

.history__img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.history__img-wrap:hover img {
  transform: scale(1.04);
}

/* Align image/text away from centre line */
.history__item:not(.history__item--flip) .history__img-wrap {
  margin-right: var(--s8);
}

.history__item:not(.history__item--flip) .history__text {
  padding-left: var(--s8);
}

.history__item--flip .history__text {
  padding-right: var(--s8);
  text-align: right;
}

.history__item--flip .history__img-wrap {
  margin-left: var(--s8);
}

/* ── Centre spine ── */
.history__spine {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.history__spine-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(216, 27, 125, 0.12), var(--sh-pink);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* ── Text block ── */
.history__text {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.history__text h3 {
  font-family: var(--font-head);
  font-size: var(--sz-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.history__text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  max-width: 42ch;
}

.history__item--flip .history__text p {
  margin-left: auto;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 860px) {
  .history__item,
  .history__item--flip {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--s5);
    padding: var(--s8) 0;
  }

  /* Always: spine on top, image, then text */
  .history__item .history__spine      { order: 0; }
  .history__item .history__img-wrap   { order: 1; }
  .history__item .history__text       { order: 2; }

  .history__item--flip .history__spine    { order: 0; }
  .history__item--flip .history__img-wrap { order: 1; }
  .history__item--flip .history__text     { order: 2; }

  .history__timeline::before { display: none; }

  .history__spine {
    flex-direction: row;
    gap: var(--s3);
    justify-content: flex-start;
  }

  .history__spine::after {
    content: "";
    flex: 1;
    height: 2px;
    background: rgba(216, 27, 125, 0.18);
    border-radius: var(--r-full);
  }

  .history__item:not(.history__item--flip) .history__img-wrap,
  .history__item:not(.history__item--flip) .history__text,
  .history__item--flip .history__img-wrap,
  .history__item--flip .history__text {
    padding: 0;
    text-align: left;
  }

  .history__item--flip .history__text p {
    margin-left: 0;
  }

  .history__img-wrap img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .history { padding: var(--s12) var(--s4); }
  .history__img-wrap img { height: 200px; }
  .history__spine-dot { width: 44px; height: 44px; font-size: 0.65rem; }
}

/* ══════════════════════════════════════
         SECTION 5 — FACILITIES (KEPT)
        ══════════════════════════════════════ */
.facility-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: var(--s4);
}
.facility-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.facility-card--wide {
  grid-row: span 2;
  grid-column: 1;
}
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease-out;
}
.facility-card:hover img {
  transform: scale(1.04);
}
.facility-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 18, 56, 0.8), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s4);
  color: #fff;
}
.facility-card__overlay span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.facility-card__overlay h3 {
  margin-top: var(--s1);
  font-size: var(--sz-md);
  font-weight: 700;
}
@media (max-width: 860px) {
  .facility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facility-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 300px;
  }
}
@media (max-width: 540px) {
  .facility-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .facility-card--wide {
    height: 260px;
  }
}
/* ══════════════════════════════════════
   SECTION 3 — CLASSROOMS (REDESIGNED)
   Right text, Left tall gallery strip
══════════════════════════════════════ */
.classrooms-new {
  background: var(--surface);
  padding: var(--s20) var(--s6);
}

.classrooms-new__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s16);
  align-items: stretch;
}

/* ─── LEFT: Gallery — 1 tall + 2 stacked ─── */
.classrooms-new__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s3);
  height: 100%;
  min-height: 520px;
}

.classrooms-gallery__tall {
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
}

.classrooms-gallery__top {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}

.classrooms-gallery__bottom {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}

.classrooms-new__gallery figure {
  margin: 0;
  height: 100%;
}

.classrooms-new__gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.classrooms-new__gallery figure:hover img {
  transform: scale(1.05);
}

/* ─── RIGHT: Content ─── */
.classrooms-new__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s5);
}

.classrooms-new__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  border: 1px solid rgba(216, 27, 125, 0.2);
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  width: fit-content;
}

.classrooms-new__headline {
  font-family: var(--font-head);
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.classrooms-new__bar {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  border-radius: var(--r-full);
}

.classrooms-new__desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 50ch;
}

/* ─── Checklist rows ─── */
.classrooms-new__checklist {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(216, 27, 125, 0.1);
  margin-top: var(--s2);
}

.classrooms-check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid rgba(216, 27, 125, 0.08);
  transition: padding-left var(--ease);
  cursor: default;
}

.classrooms-check-item:hover {
  padding-left: var(--s3);
}

.classrooms-check-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--pink-pale);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.classrooms-check-item__body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s1);
}

.classrooms-check-item__body span {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .classrooms-new__inner {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }
  .classrooms-new__gallery {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .classrooms-new { padding: var(--s12) var(--s4); }
  .classrooms-new__gallery { height: 320px; }
  .classrooms-check-item:hover { padding-left: 0; }
}

@media (max-width: 480px) {
  .classrooms-new__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 160px 160px;
    height: auto;
  }
  .classrooms-gallery__tall {
    grid-column: 1;
    grid-row: 1;
    border-radius: var(--r-xl);
  }
  .classrooms-gallery__top {
    grid-column: 1;
    grid-row: 2;
  }
  .classrooms-gallery__bottom {
    grid-column: 1;
    grid-row: 3;
  }
}


/* ══════════════════════════════════════
   ACTIVITIES SECTION — Image-based cards
══════════════════════════════════════ */
.activities {
  background: var(--pink-tint);
  padding: var(--s20) var(--s6);
}

.activities__inner {
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Header ── */
.activities__header {
  text-align: center;
  margin-bottom: var(--s12);
}

.activities__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  border: 1px solid rgba(216, 27, 125, 0.2);
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}

.activities__title {
  font-family: var(--font-head);
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s3);
}

.activities__subtitle {
  font-size: var(--sz-sm);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 48ch;
  margin: 0 auto;
}

/* ── Grid ── */
.activities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.activities__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Card ── */
.activity-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: var(--s8) var(--s6);
  box-shadow: 0 4px 15px rgba(22, 8, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(22, 8, 42, 0.04);
  cursor: default;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(22, 8, 42, 0.08);
}

.activity-card__img {
  width: 60px;
  height: 60px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  margin-bottom: var(--s5);
  background: #fdf2f8;
  box-shadow: 0 8px 20px rgba(216, 27, 125, 0.08);
}
.activity-card--blue .activity-card__img {
  color: #2842c4;
  background: #eef2ff;
  box-shadow: 0 8px 20px rgba(40, 66, 196, 0.1);
}
.activity-card--green .activity-card__img {
  color: #1d8f4a;
  background: #edfaf1;
  box-shadow: 0 8px 20px rgba(29, 143, 74, 0.1);
}

.activity-card__img svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.activity-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s2);
  line-height: 1.2;
}

.activity-card__body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .activities__grid { grid-template-columns: repeat(2, 1fr); }
  .activity-card__img { height: 300px; }
}

@media (max-width: 768px) {
  .activities { padding: var(--s12) var(--s4); }
  .activity-card__img { opacity: 0.6; }
  .activity-card__accent { transform: scaleX(1); }
}

@media (max-width: 480px) {
  .activities__grid { grid-template-columns: 1fr; }
  .activity-card__img { height: 260px; }
}



/* ══════════════════════════════════════
   SECTION 4 — SCHOOL TIMINGS
══════════════════════════════════════ */
.timings {
  background: var(--surface-2);
  padding: var(--s20) var(--s6);
}

.timings__inner {
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Header ── */
.timings__header {
  text-align: center;
  margin-bottom: var(--s12);
}

.timings__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  border: 1px solid rgba(216, 27, 125, 0.2);
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}

.timings__title {
  font-family: var(--font-head);
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s3);
}

.timings__subtitle {
  font-size: var(--sz-sm);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 44ch;
  margin: 0 auto;
}

/* ── Schedule board ── */
.timings__board {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

/* Column labels bar */
.timings__cols-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
}

.timings__col-label {
  padding: var(--s4) var(--s8);
  font-size: var(--sz-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.timings__col-label:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Two-column grid */
.timings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.timings__col {
  display: flex;
  flex-direction: column;
}

.timings__col:first-child {
  border-right: 1px solid rgba(216, 27, 125, 0.08);
}

/* ── Single row ── */
.timings__row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s8);
  border-bottom: 1px solid rgba(216, 27, 125, 0.06);
  transition: background var(--ease);
}

.timings__row:last-child {
  border-bottom: none;
}

.timings__row:hover {
  background: rgba(216, 27, 125, 0.03);
}

/* Dot */
.timings__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(216, 27, 125, 0.2);
}

/* Time */
.timings__time {
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-faint);
  white-space: nowrap;
  min-width: 96px;
  flex-shrink: 0;
}

/* Activity */
.timings__activity {
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--navy);
}

/* ── Special rows ── */
.timings__row--special {
  background: var(--pink-pale);
}

.timings__row--special .timings__dot {
  background: var(--pink);
  box-shadow: 0 0 0 3px rgba(216, 27, 125, 0.15);
}

.timings__row--special .timings__time {
  color: var(--pink-deep);
}

.timings__row--special .timings__activity {
  color: var(--pink-deep);
  font-weight: 700;
}

.timings__row--special:hover {
  background: rgba(216, 27, 125, 0.09);
}

/* ── Break rows ── */
.timings__row--break {
  background: #faf9fb;
}

.timings__row--break .timings__dot {
  background: var(--text-faint);
}

.timings__row--break .timings__time,
.timings__row--break .timings__activity {
  color: var(--text-muted);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .timings { padding: var(--s12) var(--s4); }

  .timings__cols-header,
  .timings__grid {
    grid-template-columns: 1fr;
  }

  .timings__col:first-child {
    border-right: none;
    border-bottom: 2px solid rgba(216, 27, 125, 0.1);
  }

  .timings__col-label:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .timings__row {
    padding: var(--s3) var(--s5);
  }
}

@media (max-width: 400px) {
  .timings__time { min-width: 82px; font-size: 0.7rem; }
  .timings__activity { font-size: 0.82rem; }
}

    /* ---------- FOOTER BASE ---------- */
    .site-footer {
        background: linear-gradient(160deg,
                var(--navy) 0%,
                var(--navy-mid) 55%,
                #3a0d28 100%);
        color: rgba(255, 255, 255, 0.72);
        font-family: var(--font-body);
    }

    /* ---------- MAIN GRID : 3 COLUMNS ---------- */
    .footer__main {
        max-width: var(--wrap);
        margin: 0 auto;
        padding: 3rem 1.5rem 2.5rem;
        display: grid;
        grid-template-columns: 1.7fr 0.9fr 1.4fr;
        /* 3 columns — no wasted 4th */
        gap: 2.5rem;
        align-items: start;
    }

    /* ---------- COLUMN 1 : BRAND ---------- */
    .footer__logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    .footer__logo-emblem {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        overflow: hidden;
        background: rgba(196, 20, 114, 0.15);
        border: 1px solid rgba(196, 20, 114, 0.25);
        flex-shrink: 0;
    }
    .footer__logo-emblem img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .footer__logo-name {
        font-size: 0.92rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.25;
    }
    .footer__logo-board {
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 2px;
    }
    .footer__logo-slogan {
        font-size: 0.6rem;
        color: rgba(255, 255, 255, 0.4);
    }

    .footer__affil {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.28rem 0.75rem;
        border-radius: 999px;
        background: rgba(245, 166, 35, 0.12);
        border: 1px solid rgba(245, 166, 35, 0.2);
        color: var(--gold);
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 0.875rem;
    }
    .footer__affil-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
    }

    .footer__desc {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.58);
        line-height: 1.8;
        margin-bottom: 1.25rem;
        max-width: 30ch;
    }

    /* stats */
    .footer__stats {
        display: flex;
        align-items: center;
        gap: 0;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
    }
    .footer__stat {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding-right: 1rem;
    }
    .footer__stat-divider {
        width: 1px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        margin-right: 1rem;
        flex-shrink: 0;
    }
    .footer__stat-num {
        font-size: 1.25rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
    }
    .footer__stat-num span {
        color: var(--pink-light);
    }
    .footer__stat-lbl {
        font-size: 0.58rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.35);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    /* socials */
    .footer__socials {
        display: flex;
        gap: 0.5rem;
    }
    .footer__social {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
        text-decoration: none;
    }
    .footer__social:hover {
        background: var(--pink);
        color: #fff;
        border-color: var(--pink);
    }

    /* ---------- COLUMN 2 & 3 : HEADINGS ---------- */
    .footer__col-head {
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 1.1rem;
        padding-bottom: 0.6rem;
        position: relative;
    }
    .footer__col-head::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 24px;
        height: 2px;
        background: var(--pink);
        border-radius: 999px;
    }

    /* ---------- NAV LIST ---------- */
    .footer__nav-list {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer__nav-list a {
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.58);
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 3px 0;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }
    .footer__nav-list a::before {
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--pink);
        opacity: 0;
        flex-shrink: 0;
        transition: opacity 0.2s;
    }
    .footer__nav-list a:hover {
        color: #fff;
        padding-left: 6px;
    }
    .footer__nav-list a:hover::before {
        opacity: 1;
    }

    /* ---------- CONTACT LIST ---------- */
    .footer__contact-list {
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer__contact-item {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .footer__contact-icon {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        background: rgba(196, 20, 114, 0.15);
        border: 1px solid rgba(196, 20, 114, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--pink-light);
        flex-shrink: 0;
        margin-top: 1px;
    }
    .footer__contact-icon svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }
    .footer__contact-label {
        font-size: 0.58rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.32);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        display: block;
        margin-bottom: 1px;
    }
    .footer__contact-value {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        line-height: 1.5;
    }
    .footer__contact-value a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer__contact-value a:hover {
        color: var(--pink-light);
    }

    /* ---------- BOTTOM BAR ---------- */
    .footer__bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }
    .footer__bottom-inner {
        max-width: var(--wrap);
        margin: 0 auto;
        padding: 1.1rem 1.5rem;
    }
    .footer__copyright {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.6;
        margin: 0;
    }
    .footer__copyright a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer__copyright a:hover {
        color: var(--pink-light);
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 1024px) {
        .footer__main {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer__brand {
            grid-column: 1 / -1;
        }
        .footer__desc {
            max-width: 100%;
        }
    }
    @media (max-width: 640px) {
        .footer__main {
            grid-template-columns: 1fr;
            padding: 2.5rem 1rem 2rem;
        }
        .footer__bottom-inner {
            padding-inline: 1rem;
        }
        .footer__stats {
            gap: 0;
        }
    }
/* ── Shared Badge (like index.html) ── */
.section-badge {
  background: linear-gradient(135deg, var(--navy) 0%, var(--pink-deep) 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(22, 8, 42, 0.18);
  gap: 8px;
  margin-bottom: var(--s4);
  width: max-content;
}
.section-badge svg {
  stroke-width: 2.5;
}

/* ══ PAGE NAVIGATION ══ */
.page-nav { background: var(--surface); padding: 0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.page-nav__inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: center; align-items: center; }
.page-nav__list { display: flex; list-style: none; margin: 0; padding: 0; gap: var(--s8); }
.page-nav__link { color: var(--navy); font-weight: 700; padding: var(--s5) 0; display: block; text-decoration: none; transition: color var(--ease); position: relative; font-family: var(--font-head); font-size: 1.05rem; }
.page-nav__link:hover { color: var(--pink); }
.page-nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--pink); transition: width var(--ease); }
.page-nav__link:hover::after { width: 100%; }

/* ══ DAILY MEALS ══ */
.daily-meals { background: var(--bg); padding: var(--s20) var(--s6); text-align: center; }
.daily-meals__inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.daily-meals__title { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--navy); margin-bottom: var(--s2); letter-spacing: -0.02em; }
.daily-meals__desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: var(--s12); max-width: 65ch; }
.daily-meals__img-wrap { width: 100%; height: 420px; border-radius: var(--r-2xl); box-shadow: var(--sh-lg); overflow: hidden; }
.daily-meals__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .page-nav__list { flex-wrap: wrap; gap: var(--s4); justify-content: center; padding: var(--s4) 0; }
  .page-nav__link { padding: var(--s2) 0; font-size: 0.95rem; }
  .daily-meals__img-wrap { height: 280px; }
  .daily-meals__title { font-size: 1.8rem; }
}
