:root {
  --bg: #f5f4f0;
  --white: #ffffff;
  --dark: #1e1e1e;
  --grey: #6b6b6b;
  --grey-light: #9a9a9a;
  --primary: #8b9fd4;
  --primary-hover: #7589c8;
  --primary-rgb: 139, 159, 212;
  --green: var(--primary);
  --green-hover: var(--primary-hover);
  --mustard: #d4a843;
  --mustard-hover: #c49838;
  --coral: #c96b6b;
  --sky: #a8b8e8;
  --brown: #8b6914;
  --border: #e0ddd6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-brand-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.nav-brand-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--grey-light);
  text-transform: uppercase;
}

.nav-brand-abbr {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin-left: auto;
}

.nav-center > li > a,
.nav-center > li > .dropdown-trigger {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: 6px;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-center > li > a:hover,
.nav-center > li > .dropdown-trigger:hover,
.nav-center > li > a.active {
  color: var(--dark);
}

.btn-visit {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  background: var(--mustard);
  color: var(--dark);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.btn-visit:hover { background: var(--mustard-hover); }

.dropdown { position: relative; }

.dropdown-trigger::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  list-style: none;
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  padding: 7rem 2.5rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent { color: var(--coral); }

.hero-body {
  font-size: 1rem;
  color: var(--grey);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--green);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--green);
  transition: background 0.15s, border-color 0.15s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: transparent;
  color: var(--dark);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--dark);
  transition: background 0.15s;
}

.btn-outline:hover { background: rgba(0,0,0,0.04); }

.hero-note {
  font-size: 0.8rem;
  color: var(--grey-light);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rainbow-wrap {
  width: 100%;
  max-width: 420px;
}

.rainbow-wrap svg,
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.hero-caption {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--grey-light);
  text-align: center;
  max-width: 320px;
}

/* ── Page header (inner pages) ── */
.page-header {
  padding: 7rem 2.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.page-header .section-intro {
  margin-bottom: 0;
}

.page-header + section {
  border-top: none;
  padding-top: 3rem;
}

/* ── Sections ── */
section {
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.bg-white { background: var(--white); }
.bg-cream { background: var(--bg); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text p {
  color: var(--grey);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-pillars {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pillar {
  flex: 1;
  min-width: 120px;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: 12px;
  border-left: 3px solid var(--green);
}

.pillar:nth-child(2) { border-left-color: var(--mustard); }
.pillar:nth-child(3) { border-left-color: var(--coral); }

.pillar h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.pillar p {
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0;
}

.photo-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg);
  border-radius: 16px;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--grey-light);
  font-size: 0.8rem;
}

.content-photo {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
}

.content-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-photo figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  color: var(--grey-light);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.location-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 2.5rem;
  align-items: start;
}

.approach-photo {
  position: sticky;
  top: 6rem;
}

.page-header .page-intro {
  max-width: 720px;
  margin-top: 1.5rem;
}

.page-header .page-intro p:last-of-type {
  margin-bottom: 0;
}

.about-opening-photo {
  max-width: 900px;
  margin: 0 auto;
}

.mission-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.mission-copy .section-title {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  margin-bottom: 1.25rem;
}

.mission-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.mission-text p:last-child {
  margin-bottom: 0;
}

.mission-callout {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: var(--bg);
  border-left: 4px solid var(--mustard);
  border-radius: 0 14px 14px 0;
}

.mission-callout p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 1rem;
}

.mission-callout cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--grey-light);
  font-weight: 500;
}

.goals-list {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  color: var(--grey);
}

.goals-list li {
  margin-bottom: 0.35rem;
  line-height: 1.6;
}

.gallery-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--grey-light);
}

/* Newsletters / blog */
.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.newsletter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.newsletter-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.newsletter-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.newsletter-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-card p {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.newsletter-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.newsletter-link:hover { text-decoration: underline; }

/* Blog post */
.post-header {
  padding: 7rem 2.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}

.post-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--dark);
}

.post-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}

.post-content p {
  color: var(--grey);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.post-content ul,
.post-content ol {
  color: var(--grey);
  margin: 0 0 1rem 1.25rem;
  font-size: 0.95rem;
}

.post-content img {
  border-radius: 12px;
  margin: 1.5rem 0;
}

.post-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.post-back:hover { text-decoration: underline; }

/* Curriculum */
.curriculum-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.curriculum-card {
  padding: 1.75rem;
  background: var(--bg);
  border-radius: 14px;
}

.curriculum-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.curriculum-card:nth-child(1) .dot { background: var(--green); }
.curriculum-card:nth-child(2) .dot { background: var(--sky); }
.curriculum-card:nth-child(3) .dot { background: var(--mustard); }

.curriculum-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.curriculum-card p {
  font-size: 0.875rem;
  color: var(--grey);
}

.pre-k-block {
  background: var(--green);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
}

.pre-k-block .section-eyebrow { color: rgba(255,255,255,0.55); }
.pre-k-block .section-title { color: var(--white); }
.pre-k-block .section-intro { color: rgba(255,255,255,0.8); }

.pre-k-block + section {
  border-top: none;
  padding-top: 3rem;
}

.prek-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.prek-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 1.25rem;
}

.prek-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.prek-item p {
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* Teachers */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

.teacher-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.teacher-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px dashed var(--border);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--grey-light);
  overflow: hidden;
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.teacher-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.teacher-card p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* Activities */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.activity-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 14px;
  align-items: flex-start;
}

.activity-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.45rem;
}

.activity-card:nth-child(1) .activity-dot { background: var(--coral); }
.activity-card:nth-child(2) .activity-dot { background: var(--green); }
.activity-card:nth-child(3) .activity-dot { background: var(--mustard); }
.activity-card:nth-child(4) .activity-dot { background: var(--sky); }
.activity-card:nth-child(5) .activity-dot { background: var(--brown); }
.activity-card:nth-child(6) .activity-dot { background: var(--coral); }

.activity-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.activity-card p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bg);
  border-radius: 14px;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--grey-light);
  font-size: 0.78rem;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Admissions */
.intake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.intake-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.intake-card.primary {
  border-left: 4px solid var(--green);
}

.intake-card.secondary {
  border-left: 4px solid var(--mustard);
}

.intake-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.intake-card.primary .intake-badge {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--green);
}

.intake-card.secondary .intake-badge {
  background: rgba(212, 168, 67, 0.2);
  color: var(--brown);
}

.intake-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.intake-card p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.intake-card ul {
  font-size: 0.875rem;
  color: var(--grey);
  margin-left: 1.25rem;
}

.rolling-note {
  padding: 1.5rem 2rem;
  background: var(--bg);
  border-radius: 14px;
  margin-bottom: 3rem;
}

.rolling-note h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rolling-note p {
  font-size: 0.9rem;
  color: var(--grey);
}

/* Forms */
.form-section {
  max-width: 640px;
}

.enquiry-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.enquiry-form .form-group {
  margin-bottom: 1.25rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.enquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--grey-light);
  margin-top: 1rem;
}

.form-response-note {
  font-size: 0.875rem;
  color: var(--grey);
  margin-top: 1rem;
}

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

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--green);
}

.map-embed {
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Home teasers */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.teaser-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}

.teaser-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.teaser-card p {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.text-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.cta-banner {
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.cta-banner .btn-primary {
  background: var(--mustard);
  border-color: var(--mustard);
  color: var(--dark);
}

.cta-banner .btn-primary:hover {
  background: var(--mustard-hover);
  border-color: var(--mustard-hover);
}

/* Day in the Life — program timeline */
.day-program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.day-program-column {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}

.day-program-column:nth-child(1) { border-top: 3px solid var(--coral); }
.day-program-column:nth-child(2) { border-top: 3px solid var(--green); }

.day-program-column h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.day-program-age {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.day-program-photo {
  margin-bottom: 1.5rem;
}

.timeline-block {
  padding-left: 1.25rem;
  border-left: 2px solid var(--border);
  margin-bottom: 1.25rem;
}

.timeline-block:last-child { margin-bottom: 0; }

.timeline-time {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.day-program-column:nth-child(1) .timeline-time { color: var(--coral); }

.timeline-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-block p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
}

.guide-quote {
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--mustard);
  border-radius: 14px;
  margin: 0 auto;
  max-width: 720px;
}

.guide-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.guide-quote cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--grey);
}

/* Stat banner */
.stat-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 180px;
}

.stat-banner-bg {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
  border: none;
  border-radius: 0;
}

.stat-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stat-banner-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(rgba(var(--primary-rgb), 0.9), rgba(var(--primary-rgb), 0.94));
  padding: 2.5rem 2rem;
}

.stat-banner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-banner-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--mustard);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.stat-banner-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Program pages */
.program-hero {
  max-width: 1100px;
  margin: 7rem auto 0;
}

.program-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.program-card-photo {
  aspect-ratio: 16 / 10;
  border: none;
  border-radius: 0;
  border-bottom: 1px dashed var(--border);
  overflow: hidden;
}

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

.program-card-body {
  padding: 1.75rem;
}

.program-card-age {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.35rem;
}

.program-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.program-card p {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.program-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.program-sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  position: sticky;
  top: 6rem;
}

.program-meta-list,
.program-curriculum-list {
  color: var(--grey);
  font-size: 0.95rem;
  margin-left: 1.25rem;
  line-height: 1.65;
}

.program-meta-list li {
  margin-bottom: 0.5rem;
}

.program-curriculum-list li {
  margin-bottom: 0.75rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 3rem 2.5rem 2rem;
  text-align: center;
}

footer h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

footer .location {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

footer p { font-size: 0.85rem; margin-bottom: 0.2rem; }

.footer-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--mustard);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-links a:hover { text-decoration: underline; }

.footer-copy {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-center { display: none; }
  .nav-inner .btn-visit { display: none; }
  .menu-toggle { display: block; }

  .nav-links-mobile {
    display: none;
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
    flex-direction: column;
    gap: 0;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

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

  .nav-links-mobile li a,
  .nav-links-mobile li .dropdown-trigger {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey);
    text-decoration: none;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
  }

  .nav-links-mobile .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 1rem;
    display: none;
  }

  .nav-links-mobile .dropdown.open .dropdown-menu { display: block; }

  .nav-links-mobile .btn-visit {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
  }

  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .location-photo-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-photo { position: static; }
  .curriculum-pillars { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .intake-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .day-program-grid { grid-template-columns: 1fr; }
  .program-card-grid { grid-template-columns: 1fr; }
  .program-layout { grid-template-columns: 1fr; }
  .program-sidebar-card { position: static; }
  .stat-banner-stats { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (min-width: 1025px) {
  .nav-links-mobile { display: none !important; }
}
