/* ══════════════════════════════════════════════════════════
   SHELFORD DAY NURSERY — style.css
   BEM naming, ACSS variables

   ACSS Dashboard Colour Mapping:
   Primary:   #6F6AA9 (purple)
   Secondary: #5EB8AE (teal)
   Tertiary:  #E3795F (orange)
   Accent:    #ECBF5D (yellow/gold)
   Neutral:   #1E1B2E (dark navy)
   Base:      #f5f3ef (off-white)
   ══════════════════════════════════════════════════════════ */

/* ─── 1. Site-Specific Custom Properties ─────────────────
   Only properties ACSS doesn't provide.
   Colours, spacing, typography, shadows, transitions,
   radius, and grid are all handled by ACSS.
   ─────────────────────────────────────────────────────── */
:root {
  /* ── Fonts (site-specific) ── */
  --ff-head: 'Montserrat', system-ui, sans-serif;
  --ff-body: 'Mulish', system-ui, sans-serif;
  --header-h: 88px;

  /* ── ACSS fallbacks ──
     On WP with ACSS active these are overridden by the framework.
     For standalone HTML they provide the actual values.
     ──────────────────── */

  /* Colours */
  --primary:             #6d6aaa;
  --primary-hover:       #8784b8;
  --primary-ultra-light: #efeff6;
  --primary-light:       #cfcee3;
  --primary-light-trans-20: rgba(207, 206, 227, 0.20);
  --bg-light:              var(--primary-light-trans-20);
  --primary-semi-light:  #807db5;
  --primary-semi-dark:   #444171;
  --primary-dark:        #4f4c87;
  --primary-ultra-dark:  #131320;
  --secondary:           #5EB8AE;
  --secondary-hover:     #52a89f;
  --secondary-dark:      #4A9E94;
  --secondary-ultra-light: rgba(94,184,174,0.12);
  --secondary-trans-20:  rgba(94,184,174,0.20);
  --secondary-trans-30:  rgba(94,184,174,0.30);
  --tertiary:            #E3795F;
  --tertiary-ultra-light: rgba(227,121,95,0.12);
  --accent:              #ECBF5D;
  --accent-hover:        #e0b24e;
  --accent-dark:         #D4A838;
  --accent-ultra-light:  rgba(236,191,93,0.12);
  --accent-trans-20:     rgba(236,191,93,0.20);
  --neutral:             #1E1B2E;
  --base:                #f3f3f7;
  --white:               #ffffff;
  --black:               #000000;

  /* White transparencies */
  --white-trans-10: rgba(255,255,255,0.10);
  --white-trans-20: rgba(255,255,255,0.15);
  --white-trans-30: rgba(255,255,255,0.30);
  --white-trans-40: rgba(255,255,255,0.40);
  --white-trans-50: rgba(255,255,255,0.50);
  --white-trans-70: rgba(255,255,255,0.65);
  --white-trans-80: rgba(255,255,255,0.80);
  --white-trans-90: rgba(255,255,255,0.88);

  /* Black transparencies */
  --black-trans-10: rgba(0,0,0,0.06);

  /* Contextual text colours */
  --text-light:       rgba(255,255,255,0.88);
  --text-light-muted: rgba(255,255,255,0.65);
  --text-dark:        #1E1B2E;
  --text-dark-muted:  rgba(30,27,46,0.72);
  --heading-color:    var(--white);

  /* Typography scale */
  --text-xs:  1.26rem;
  --text-s:   1.42rem;
  --text-m:   1.8rem;
  --text-l:   2.025rem;
  --text-xl:  2.28rem;
  --text-xxl: 2.565rem;
  --text-line-height: 1.65;
  --h1: clamp(3.2rem, 4.5vw, 5.2rem);
  --h2: clamp(2.56rem, 3.5vw, 4rem);
  --h3: clamp(2rem, 2.5vw, 2.8rem);
  --h4: clamp(1.6rem, 1.8vw, 1.92rem);
  --h5: var(--text-s);
  --h6: var(--text-xs);
  --heading-line-height: 1.2;
  --heading-font-weight: 600;

  /* Spacing */
  --space-xs:  0.8rem;
  --space-s:   1.6rem;
  --space-m:   2.4rem;
  --space-l:   4rem;
  --space-xl:  6.4rem;
  --space-xxl: 9.6rem;
  --section-space-s: 4rem;
  --section-space-m: clamp(8rem, 8vw, 12.8rem);
  --section-space-l: clamp(9.6rem, 10vw, 16rem);
  --content-width: 1200px;
  --gutter: clamp(1.6rem, 4vw, 3.2rem);

  /* Borders & radius */
  --radius: 1.2rem;
  --radius-circle: 50vw;

  /* Shadows */
  --box-shadow-m: 0 4px 24px rgba(0,0,0,0.18);
  --box-shadow-l: 0 8px 40px rgba(0,0,0,0.25);

  /* Transition */
  --transition: 0.22s ease;

  --scroll-offset: calc(var(--header-h) + var(--space-xl));
}

/* ─── 2. Reset & Base ────────────────────────────────────
   On WP with ACSS active, ACSS handles reset and base.
   These are included for standalone HTML compatibility.
   ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: var(--text-m);
  line-height: var(--text-line-height);
  color: var(--white);
  background: var(--primary);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); letter-spacing: 0.06em; text-transform: uppercase; }
h6 { font-size: var(--h6); }
p { margin: 0; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* Icons */
.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  display: inline-block;
  flex-shrink: 0;
}

/* ─── 3. Layout Utilities ────────────────────────────────
   ACSS provides .section--{size} and .section__inner.
   Keep .container for legacy/non-section contexts.
   ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-m); }
.mt-3 { margin-top: var(--space-l); }

/* ─── 4. Utility Bar ────────────────────────────────────── */
.util-bar {
  background: var(--primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.util-bar--hidden {
  transform: translateY(-100%);
  opacity: 1;
  pointer-events: none;
}
.util-bar__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: var(--space-xs) var(--gutter);
  display: flex;
  gap: var(--space-s);
  justify-content: flex-end;
  align-items: center;
}
.util-bar__social {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-circle);
  background: var(--white-trans-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  transition: background var(--transition);
}
.util-bar__social:hover { background: var(--secondary); }

/* ─── 5. Site Header ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header--scrolled {
  background: var(--primary);
  box-shadow: var(--box-shadow-l);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: var(--space-s) var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-m);
}
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 56px; width: auto; }
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  list-style: none;
}
.site-header__link {
  font-family: var(--ff-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: var(--space-xs) var(--space-s);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  color: var(--white-trans-90);
}
.site-header__link:hover { background: var(--white-trans-10); color: var(--white); }
.site-header__link--active { color: var(--white); background: var(--white-trans-10); }
.site-header__link--cta {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-circle);
  padding: var(--space-s) var(--space-m);
  margin-left: var(--space-xs);
}
.site-header__link--cta:hover { background: var(--secondary-dark); }

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  border-radius: var(--radius);
  margin-left: auto;
}
.site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger--open span:nth-child(2) { opacity: 0; }
.site-header__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 6. Mobile Nav ─────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary);
  border-top: 1px solid var(--white-trans-10);
  padding: var(--space-s) 0 var(--space-m);
  list-style: none;
}
.mobile-nav--open { display: flex; }
.mobile-nav__link {
  display: block;
  padding: var(--space-s) var(--gutter);
  font-family: var(--ff-head);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--white-trans-90);
  border-bottom: 1px solid var(--white-trans-10);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav__link:hover { background: var(--white-trans-10); color: var(--white); }
.mobile-nav__link--active { color: var(--secondary); }
.mobile-nav__link--cta {
  margin: var(--space-s) var(--gutter) 0;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  border-bottom: none;
}
.mobile-nav__link--cta:hover { background: var(--secondary-dark); }

/* ─── 7. Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, color-mix(in srgb, var(--neutral) 88%, transparent) 45%, color-mix(in srgb, var(--primary-dark) 75%, transparent) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: var(--section-space-m) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; gap: var(--space-m); }
.hero__eyebrow {
  font-family: var(--ff-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.hero__title { color: var(--white); }
.hero__subtitle {
  font-family: var(--ff-head);
  font-size: var(--text-l);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.hero__lead { color: var(--text-light); font-size: var(--text-l); max-width: 560px; }
.hero__actions { display: flex; gap: var(--space-s); flex-wrap: wrap; }
.hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-l);
  aspect-ratio: 4/3;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* Centered hero modifier */
.hero--centered .hero__inner {
  grid-template-columns: 1fr;
  max-width: 780px;
  text-align: center;
}
.hero--centered .hero__content { align-items: center; }
.hero--centered .hero__eyebrow { justify-content: center; }
.hero--centered .hero__lead { margin-inline: auto; }
.hero--centered .hero__actions { justify-content: center; }

/* ─── 8. Sections ───────────────────────────────────────── */
.section {
  padding-block: var(--section-space-m);
  padding-inline: var(--gutter);
}
.section--sm { padding-block: var(--section-space-s); }
section[id] { scroll-margin-top: calc(var(--header-h) + var(--space-s)); }
.section--primary-dark { background: var(--primary-light-trans-20); }
.section--primary-light { background: var(--bg-light); }
.section--teal { background: var(--secondary); color: var(--white); }
.section--off-white { background: var(--base); color: var(--neutral); }
.section--offwhite { background: var(--base); color: var(--neutral); }
.section--white { background: var(--white); color: var(--neutral); }

/* Light sections — redefine text tokens so all components inherit dark text */
.section--off-white,
.section--offwhite,
.section--white {
  --text-light:       var(--text-dark-muted);
  --text-light-muted: rgba(30,27,46,0.55);
}
.section--off-white .section-label,
.section--offwhite .section-label,
.section--white .section-label { color: var(--accent-dark); }

/* section--primary-light — subtle tinted bg, inherits default text colours */
.section--primary-light { background: var(--bg-light); }

/* ACSS-compatible utility classes */
.bg-light {
  background: var(--base);
  color: var(--text-light);
}
.bg-ultra-light {
  background: var(--white);
  color: var(--text-light);
}
.bg-light, .bg-ultra-light {
  --text-light:       var(--text-dark-muted);
  --text-light-muted: rgba(30,27,46,0.55);
}
.bg-light .section-label, .bg-ultra-light .section-label {
  color: var(--accent-dark);
}
.bg-light a, .bg-ultra-light a {
  color: var(--secondary-dark);
}

/* ─── 9. Section Intro ──────────────────────────────────── */
.section-intro { margin-bottom: var(--space-xl); }
.section-intro--centered { text-align: center; }
.section-intro h2 { margin-bottom: var(--space-s); }
.section-intro__body,
.section-intro p { max-width: 680px; color: var(--text-light); }
.section-intro--centered .section-intro__body,
.section-intro--centered p { margin-inline: auto; }
.section-intro p + p { margin-top: var(--space-s); }

/* ─── 10. Section Label ─────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: calc(var(--text-xs) * 0.85);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}
.section-label--dark { color: var(--accent-dark); }
.page-hero .section-label { color: var(--accent); }

/* ─── 11. Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-head);
  font-size: var(--text-s);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: var(--space-s) var(--space-m);
  border-radius: var(--radius-circle);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }

.btn--teal, .btn-teal { background: var(--secondary); color: var(--white); }
.btn--teal:hover, .btn-teal:hover { background: var(--secondary-dark); }
.btn--orange, .btn-orange { background: var(--tertiary); color: var(--white); }
.btn--orange:hover, .btn-orange:hover { background: #d06a50; }
.btn--yellow, .btn-yellow { background: var(--accent); color: var(--neutral); }
.btn--yellow:hover, .btn-yellow:hover { background: var(--accent-dark); }
.btn--outline, .btn-outline { background: transparent; border-color: var(--white-trans-50); color: var(--white); }
.btn--outline:hover, .btn-outline:hover { background: var(--white-trans-10); border-color: var(--white); }
.btn--outline-primary { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn--outline-primary:hover { background: var(--primary); color: var(--white); }
.btn--ghost, .btn-ghost {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: var(--text-s);
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0;
  transform: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn--ghost:hover, .btn-ghost:hover { color: var(--white); }

/* ─── 12. Split Layout ──────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-m), 5vw, var(--space-xxl));
  align-items: center;
}
.split--reverse .split__image { order: 2; }
.split--reverse .split__text  { order: 1; }
.split--spaced { margin-bottom: var(--space-xl); }
.split__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--box-shadow-m);
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__text { display: flex; flex-direction: column; gap: var(--space-s); }
.split__text h2,
.split__text h3 { color: var(--text-light); }
.split__text p { color: var(--text-light); }
.split__list { display: flex; flex-direction: column; gap: var(--space-xs); padding-left: 0; margin-top: var(--space-xs); }
.split__list li {
  position: relative;
  padding-left: var(--space-m);
  color: var(--text-light);
  font-size: var(--text-m);
}
.split__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  background: var(--secondary);
}
.split__actions { display: flex; gap: var(--space-s); flex-wrap: wrap; margin-top: var(--space-s); }
.split__award {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--space-xs);
}
.split__award-logo { height: 56px; width: auto; flex-shrink: 0; }
.split__award-logo--sm { height: 36px; }
.split__award-info { display: flex; flex-direction: column; gap: 0.24rem; }
.split__award-title { font-weight: 700; font-size: var(--text-m); color: var(--white); }
.split__award-sub { font-size: var(--text-xs); color: var(--text-light-muted); }

/* ─── 13. Grids ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-m); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-m); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-m); }

/* ─── 14. Icon Card ─────────────────────────────────────── */
.icon-card {
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-10);
  border-radius: var(--radius);
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.icon-card--light {
  background: var(--white);
  border-color: var(--black-trans-10);
  color: var(--text-light);
}
.icon-card--light h4 { color: var(--neutral); }
.icon-card--light p { color: var(--text-dark-muted); }
.icon-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  flex-shrink: 0;
}
.icon-card__icon--teal    { background: var(--secondary-ultra-light); color: var(--secondary); }
.icon-card__icon--yellow  { background: var(--accent-ultra-light); color: var(--accent-dark); }
.icon-card__icon--orange  { background: var(--tertiary-ultra-light); color: var(--tertiary); }
.icon-card__icon--primary { background: var(--primary-light-trans-20); color: var(--primary); }
.icon-card__icon--primary-dark { background: var(--secondary-ultra-light); color: var(--secondary); }
.icon-card__title { font-family: var(--ff-head); font-size: var(--text-m); font-weight: 700; color: var(--text-light); }
.icon-card__body { font-size: var(--text-m); color: var(--text-light); line-height: var(--text-line-height); }
.icon-card h4 { font-family: var(--ff-head); font-size: var(--text-m); font-weight: 700; color: var(--text-light); }
.icon-card p { font-size: var(--text-m); color: var(--text-light); line-height: var(--text-line-height); }

/* Light-section icon-card background */
.section--off-white .icon-card,
.section--offwhite .icon-card,
.section--white .icon-card { background: var(--white); border-color: rgba(0,0,0,0.06); }

/* ─── 14b. Testimonials ─────────────────────────────────── */
.testimonial {
  background: var(--primary-dark);
  border-radius: var(--radius);
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  margin: 0;
}
.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  color: var(--yellow);
  font-size: 1.1rem;
}
.testimonial__text {
  font-size: var(--text-m);
  color: var(--text-light);
  line-height: var(--text-line-height);
  font-style: italic;
  flex: 1;
}
.testimonial__footer {
  margin-top: auto;
  padding-top: var(--space-xs);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.testimonial__author {
  font-style: normal;
  font-size: var(--text-s);
  color: var(--text-light-muted);
  font-weight: 600;
}

/* ─── 15. Pillar Grid ───────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}
.pillar {
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-10);
  border-radius: var(--radius);
  padding: var(--space-l) var(--space-m);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
}
.pillar__letter {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: calc(var(--text-xxl) * 1.1);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-xs);
}
.pillar__letter--s { background: var(--secondary); }
.pillar__letter--t { background: var(--accent-dark); }
.pillar__letter--e { background: var(--tertiary); }
.pillar__letter--m { background: var(--primary-light); }
.pillar h4, .pillar__title { font-family: var(--ff-head); font-weight: 700; font-size: var(--text-l); }
.pillar p, .pillar__body { font-size: var(--text-s); color: var(--text-light); }

/* ─── 16. Contact Strip ─────────────────────────────────── */
.contact-strip { background: var(--secondary-dark); padding: var(--space-m) 0; }
.contact-strip__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s) var(--space-l);
  justify-content: center;
  align-items: center;
}
.contact-strip__item { display: flex; align-items: center; gap: var(--space-s); color: var(--white); }
.contact-strip__item i,
.contact-strip__item .icon { font-size: var(--text-xl); color: var(--accent); }
.contact-strip__item strong { display: block; font-size: var(--text-xs); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.contact-strip__item a, .contact-strip__item span { font-size: var(--text-m); color: var(--white-trans-90); }
.contact-strip__item a:hover { color: var(--accent); }

/* ─── 16b. Key Facts Strip ─────────────────────────────── */
.facts-strip { background: var(--primary-light-trans-20); padding: var(--space-l) 0; }
.facts-strip__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-m);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-m);
}
.facts-strip__item { display: flex; align-items: center; gap: var(--space-s); color: var(--white); }
.facts-strip__item i,
.facts-strip__item .icon { font-size: var(--text-xl); color: var(--accent); }
.facts-strip__stat { display: block; font-family: var(--ff-head); font-size: var(--text-m); font-weight: 700; }
.facts-strip__label { font-size: var(--text-xs); color: var(--text-light-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── 17. Awards Strip ──────────────────────────────────── */
.awards-strip { background: var(--base); padding: var(--space-l) 0; }
.awards-strip__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-l);
  justify-content: center;
  align-items: center;
}
.awards-strip__item { display: flex; gap: var(--space-m); align-items: center; }
.awards-strip__item img { height: 60px; width: auto; }
.awards-strip__item span { font-size: var(--text-s); color: var(--neutral); max-width: 280px; }

/* ─── 18. CTA Section ───────────────────────────────────── */
.cta,
.cta-section {
  background: var(--secondary);
  padding-block: var(--section-space-m);
  text-align: center;
}
.cta__heading,
.cta-section h2 { color: var(--white); margin-bottom: var(--space-s); }
.cta__body,
.cta-section p { color: var(--white-trans-80); max-width: 560px; margin-inline: auto; margin-bottom: 0; }
.cta__actions,
.cta-section__actions { display: flex; gap: var(--space-s); flex-wrap: wrap; justify-content: center; margin-top: var(--space-l); }

/* ─── 19. Page Hero ─────────────────────────────────────── */
.page-hero {
  color: var(--white);
  background: var(--primary-dark);
  padding-block: clamp(var(--space-xl), 6vw, var(--section-space-l));
}
.page-hero__split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(var(--space-m), 4vw, var(--space-xl));
  align-items: center;
}
.page-hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--box-shadow-l);
}
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__content { display: flex; flex-direction: column; gap: var(--space-s); }
.page-hero__inner { max-width: 800px; }
.page-hero__lead { font-size: var(--text-l); color: var(--text-light); }

/* ─── 20. Breadcrumb ────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--white-trans-50);
  margin-bottom: var(--space-xs);
  flex-wrap: wrap;
}
.breadcrumb__link,
.breadcrumb a { color: var(--white-trans-50); transition: color var(--transition); }
.breadcrumb__link:hover,
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep,
.breadcrumb span { color: var(--white-trans-30); }
.breadcrumb__current { color: var(--white-trans-80); }

/* ─── 21. Page Subnav ───────────────────────────────────── */
.page-subnav {
  background: var(--tertiary);
  border-bottom: 1px solid var(--white-trans-20);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}
.page-subnav__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-subnav__inner::-webkit-scrollbar { display: none; }
.page-subnav__link,
.page-subnav a {
  display: block;
  padding: var(--space-s) var(--space-m);
  font-family: var(--ff-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--white-trans-70);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.page-subnav__link:hover,
.page-subnav a:hover { color: var(--white); border-bottom-color: var(--white); }
.page-subnav__link--active,
.page-subnav a.active { color: var(--white); border-bottom-color: var(--white); }

/* ─── 22. Timeline ──────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline__item {
  position: relative;
  padding: 0 0 var(--space-l) var(--space-l);
  border-left: 2px solid var(--white-trans-20);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -9px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-circle);
  background: var(--secondary);
  border: 3px solid var(--primary-dark);
  box-shadow: 0 0 0 2px var(--secondary);
}
.timeline__year {
  font-family: var(--ff-head);
  font-size: calc(var(--text-xs) * 0.85);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}
.timeline__title { color: var(--white); margin-bottom: var(--space-xs); font-size: var(--text-m); }
.timeline__text { font-size: var(--text-s); color: var(--text-light); }

/* ─── 23. Tag ───────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-s);
  border-radius: var(--radius-circle);
  font-family: var(--ff-head);
  font-size: calc(var(--text-xs) * 0.85);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--tertiary);
  color: var(--white);
  width: fit-content;
}
.tag--teal { background: var(--secondary); }
.tag--yellow { background: var(--accent); color: var(--neutral); }

/* ─── 24. Highlight Band ────────────────────────────────── */
.highlight-band {
  background: var(--white-trans-10);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: var(--space-m) var(--space-l);
  margin-block: var(--space-l);
  font-size: var(--text-l);
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
}
.highlight-band__quote { font-size: var(--text-l); }

/* ─── 25. Card (Blog) ───────────────────────────────────── */
.card {
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-10);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--box-shadow-l); }
.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.card__image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__body { padding: var(--space-m); display: flex; flex-direction: column; gap: var(--space-s); flex: 1; }
.card__tag {
  display: inline-block;
  padding: 0.32rem var(--space-s);
  border-radius: var(--radius-circle);
  font-size: calc(var(--text-xs) * 0.85);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white-trans-20);
  color: var(--white);
  width: fit-content;
}
.card__tag--teal { background: var(--secondary-trans-30); color: var(--secondary); }
.card__tag--yellow { background: var(--accent-trans-20); color: var(--accent); }
.card__title { font-size: var(--text-l); color: var(--white); line-height: 1.3; }
.card__text { font-size: var(--text-s); color: var(--text-light); line-height: var(--text-line-height); flex: 1; }
.card__meta { display: flex; align-items: center; justify-content: space-between; gap: var(--space-s); margin-top: auto; padding-top: var(--space-xs); border-top: 1px solid var(--white-trans-10); }
.card__date { font-size: var(--text-xs); color: var(--text-light-muted); }

/* ─── 26. Event Card ────────────────────────────────────── */
.event-card {
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-20);
  border-radius: var(--radius);
  padding: var(--space-m);
  display: flex;
  gap: var(--space-m);
  align-items: flex-start;
  flex-wrap: wrap;
}
.event-card__date {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: var(--space-s);
  text-align: center;
  min-width: 64px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-card__date--yellow { background: var(--accent); color: var(--neutral); }
.event-card__date--orange { background: var(--tertiary); }
.event-card__day {
  font-family: var(--ff-head);
  font-size: var(--text-xxl);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.event-card__date--yellow .event-card__day { color: var(--neutral); }
.event-card__month {
  font-family: var(--ff-head);
  font-size: calc(var(--text-xs) * 0.85);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.event-card__date--yellow .event-card__month { color: var(--neutral); }
.event-card__body { flex: 1; min-width: 0; }
.event-card__title { font-size: var(--text-m); font-weight: 700; color: var(--white); margin-bottom: var(--space-xs); font-family: var(--ff-head); }
.event-card__desc { font-size: var(--text-s); color: var(--text-light); margin-bottom: var(--space-xs); }
.event-card__meta { display: flex; gap: var(--space-s); flex-wrap: wrap; font-size: var(--text-s); color: var(--text-light-muted); }
.event-card__action { display: inline-flex; margin-top: var(--space-s); }

/* ─── Events Header & Toggle ──────────────────────────── */
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
}
.events-toggle {
  display: flex;
  gap: 0;
  background: var(--white-trans-10);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--white-trans-10);
}
.events-toggle__btn {
  padding: var(--space-xs) var(--space-s);
  font-family: var(--ff-head);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--text-light-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.events-toggle__btn:hover { color: var(--white); background: var(--white-trans-10); }
.events-toggle__btn--active {
  background: var(--secondary);
  color: var(--white);
}
.events-toggle__btn--active:hover { background: var(--secondary-dark); }

/* ─── Events List ──────────────────────────────────────── */
.events-list[hidden],
.events-calendar[hidden] { display: none !important; }
.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.events-empty {
  text-align: center;
  padding: var(--space-l) var(--space-m);
  color: var(--text-light-muted);
  font-size: var(--text-m);
}
.event-card__actions {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
  margin-top: var(--space-s);
}

/* ─── Add to Calendar Dropdown ─────────────────────────── */
.add-cal {
  position: relative;
  display: inline-flex;
}
.add-cal__menu {
  position: absolute;
  bottom: calc(100% + var(--space-xs));
  left: 0;
  background: var(--primary-dark);
  border: 1px solid var(--white-trans-20);
  border-radius: var(--radius);
  padding: 0.4rem 0;
  min-width: 200px;
  box-shadow: var(--box-shadow-l);
  z-index: 10;
}
.add-cal__menu[hidden] { display: none; }
.add-cal__option {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  width: 100%;
  padding: var(--space-xs) var(--space-s);
  font-family: var(--ff-body);
  font-size: var(--text-s);
  color: var(--text-light);
  text-align: left;
  transition: background var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}
.add-cal__option:hover {
  background: var(--white-trans-10);
  color: var(--white);
}

/* ─── Calendar View ────────────────────────────────────── */
.events-calendar__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-m);
  margin-bottom: var(--space-m);
}
.events-calendar__month {
  font-family: var(--ff-head);
  font-size: var(--text-l);
  font-weight: 700;
  color: var(--white);
  min-width: 200px;
  text-align: center;
}
.events-calendar__nav {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background: var(--white-trans-10);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: var(--text-s);
}
.events-calendar__nav:hover { background: var(--secondary); }
.events-calendar__grid,
.events-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.events-calendar__day-label {
  text-align: center;
  font-family: var(--ff-head);
  font-size: calc(var(--text-xs) * 0.85);
  font-weight: 700;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-xs) 0;
}
.events-calendar__cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--text-light);
  border-radius: var(--radius);
  position: relative;
  cursor: default;
}
.events-calendar__cell--other { color: var(--white-trans-20); }
.events-calendar__cell--today {
  background: var(--white-trans-10);
  color: var(--white);
}
.events-calendar__cell--event {
  background: var(--secondary);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.events-calendar__cell--event:hover { background: var(--secondary-dark); }
.events-calendar__detail {
  margin-top: var(--space-m);
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-20);
  border-radius: var(--radius);
  padding: var(--space-m);
}
.events-calendar__detail-title {
  font-family: var(--ff-head);
  font-size: var(--text-m);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xs);
}
.events-calendar__detail-desc {
  font-size: var(--text-s);
  color: var(--text-light);
}

/* ─── Room Cards (Learning Spaces) ─────────────────────── */
.room-card {
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-10);
  border-radius: var(--radius);
  padding: var(--space-l) var(--space-m);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
  border-top: 4px solid var(--secondary);
}
.room-card--teal  { border-top-color: var(--secondary); }
.room-card--yellow { border-top-color: var(--accent); }
.room-card--orange { border-top-color: var(--tertiary); }
.room-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-l);
  color: var(--white);
  background: var(--white-trans-10);
  margin-bottom: 0.4rem;
}
.room-card--teal .room-card__icon  { background: var(--secondary); }
.room-card--yellow .room-card__icon { background: var(--accent); color: var(--neutral); }
.room-card--orange .room-card__icon { background: var(--tertiary); }
.room-card__name {
  font-family: var(--ff-head);
  font-size: var(--text-l);
  font-weight: 700;
  color: var(--white);
}
.room-card__age {
  font-family: var(--ff-head);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.room-card--yellow .room-card__age { color: var(--accent); }
.room-card--orange .room-card__age { color: var(--tertiary); }
.room-card__desc {
  font-size: var(--text-s);
  color: var(--text-light);
  line-height: var(--text-line-height);
}

/* ─── Icon Card List (for Future Schools etc) ──────────── */
.icon-card__list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-s);
}
.icon-card__list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--white-trans-10);
  font-size: var(--text-s);
  color: var(--text-light);
}
.icon-card__list li:last-child { border-bottom: none; }

/* ─── Icon Card Compact variant ────────────────────────── */
.icon-card--compact {
  padding: var(--space-m) var(--space-s);
}

/* ─── 27. Contact Layout (contact page) ────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--space-m); }
.contact-info__item { display: flex; gap: var(--space-s); align-items: flex-start; }
.contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-s);
  color: var(--white);
}
.contact-info__icon--teal        { background: var(--secondary); }
.contact-info__icon--yellow      { background: var(--accent); color: var(--neutral); }
.contact-info__icon--orange      { background: var(--tertiary); }
.contact-info__icon--primary-dark { background: var(--primary-light-trans-20); border: 1px solid var(--white-trans-20); }
.contact-info__label {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.32rem;
}
.contact-info__label--teal        { color: var(--secondary); }
.contact-info__label--yellow      { color: var(--accent); }
.contact-info__label--orange      { color: var(--tertiary); }
.contact-info__label--muted       { color: var(--text-light-muted); }
.contact-info__value { font-size: var(--text-m); color: var(--white); line-height: var(--text-line-height); }
.contact-info__value a:hover { color: var(--secondary); }
.contact-info__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--white-trans-20);
  margin-top: var(--space-s);
}
.contact-info__note { font-size: calc(var(--text-xs) * 0.9); color: var(--text-light-muted); margin-top: var(--space-xs); font-style: italic; }
.contact-info__socials-label {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-trans-50);
  margin-bottom: var(--space-s);
}
.contact-info__socials { display: flex; gap: var(--space-s); margin-bottom: var(--space-l); }
.contact-info__quick-links { display: flex; flex-direction: column; gap: var(--space-s); margin-top: var(--space-m); }

.contact-form-panel {
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-10);
  border-radius: var(--radius);
  padding: var(--space-l);
}
.contact-form-panel__heading { font-size: var(--text-xxl); margin-bottom: var(--space-xs); }
.contact-form-panel__subtext { font-size: var(--text-s); color: var(--text-light-muted); margin-bottom: var(--space-l); }

/* ─── 28. Contact Form ──────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: var(--space-m); }
.form-group { display: flex; flex-direction: column; gap: var(--space-xs); }
.form-group label {
  font-family: var(--ff-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-trans-80);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-20);
  border-radius: var(--radius);
  padding: var(--space-s);
  font-size: var(--text-m);
  font-family: var(--ff-body);
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-trans-30); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--secondary); background: var(--white-trans-10); }
.form-group select option { background: var(--primary); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── 29. Skills Box (curriculum) ───────────────────────── */
.skills-box {
  background: var(--base);
  border-radius: var(--radius);
  padding: var(--space-l);
  color: var(--text-light);
}
.skills-box__heading { color: var(--neutral); margin-bottom: var(--space-s); font-size: var(--text-l); }
.skills-box__list { display: flex; flex-direction: column; gap: var(--space-s); padding: 0; }
.skills-box__item { display: flex; gap: var(--space-s); align-items: flex-start; color: var(--neutral); font-size: var(--text-m); }
.skills-box__icon { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }

/* ─── 30. Team Card ─────────────────────────────────────── */
.team-card {
  background: var(--white-trans-10);
  border: 1px solid var(--white-trans-10);
  border-radius: var(--radius);
  padding: var(--space-l) var(--space-m);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}
.team-card__initials {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: var(--text-xxl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-xs);
}
.team-card__initials--teal        { background: var(--secondary); }
.team-card__initials--primary-dark { background: var(--primary-light-trans-20); }
.team-card__initials--orange      { background: var(--tertiary); }
.team-card__initials--yellow-dark { background: var(--accent-dark); }
.team-card__name,
.team-card h4 { font-family: var(--ff-head); font-size: var(--text-l); font-weight: 700; color: var(--white); }
.team-card__role { font-size: var(--text-xs); color: var(--secondary); font-weight: 600; font-family: var(--ff-head); letter-spacing: 0.04em; }
.team-card__bio,
.team-card p:not(.team-card__role) { font-size: var(--text-s); color: var(--text-light); }

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  margin-bottom: var(--space-xs);
  border: 3px solid var(--white-trans-20);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__socials {
  display: flex;
  gap: var(--space-s);
  margin-top: var(--space-xs);
}
.team-card__social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  background: var(--white-trans-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-s);
  color: var(--text-light);
  transition: background var(--transition), color var(--transition);
}
.team-card__social:hover {
  background: var(--secondary);
  color: var(--white);
}

/* ─── 31. Gallery Grid ──────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-s);
}
.gallery-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--primary);
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid__item:hover img { transform: scale(1.05); }

/* ─── 32. Fee Table ─────────────────────────────────────── */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-m);
  background: var(--white-trans-10);
  border-radius: var(--radius);
  overflow: hidden;
}
.fee-table th,
.fee-table td {
  padding: var(--space-s) var(--space-m);
  text-align: left;
  border-bottom: 1px solid var(--white-trans-10);
}
.fee-table th {
  background: var(--secondary-trans-20);
  font-family: var(--ff-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:hover td { background: var(--white-trans-10); }

/* ─── 33. Accordion ─────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 0; }
.accordion__item {
  border-bottom: 1px solid var(--white-trans-10);
}
.accordion__item:first-child { border-top: 1px solid var(--white-trans-10); }
.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  padding: var(--space-m) 0;
  font-family: var(--ff-head);
  font-size: var(--text-m);
  font-weight: 600;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.accordion__btn > span { display: flex; align-items: center; gap: var(--space-s); }
.accordion__btn:hover { color: var(--secondary); }
.accordion__btn i.fa-chevron-down {
  transition: transform 0.3s ease;
  font-size: var(--text-xs);
  color: var(--white-trans-50);
  flex-shrink: 0;
}
.accordion__item--open .accordion__btn { color: var(--secondary); }
.accordion__item--open .accordion__btn i.fa-chevron-down { transform: rotate(180deg); }
.accordion__body { display: none; }
.accordion__item--open .accordion__body { display: block; }
.accordion__body-inner {
  padding-bottom: var(--space-m);
  font-size: var(--text-m);
  color: var(--text-light);
  line-height: 1.7;
}
.accordion__body-inner p + p { margin-top: var(--space-s); }
.accordion__body-inner ul {
  list-style: disc;
  padding-left: var(--space-m);
  margin-top: var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

/* ─── 34. Footer ────────────────────────────────────────── */
.site-footer { background: var(--primary-light-trans-20); padding-block: var(--space-xl) var(--space-m); }
.site-footer__grid,
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.site-footer__bottom,
.footer__bottom {
  border-top: 1px solid var(--white-trans-10);
  padding-top: var(--space-m);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
}
.site-footer__copyright,
.footer__copyright { font-size: var(--text-xs); color: var(--white-trans-50); }

/* Footer Brand */
.footer-brand { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer-brand__name { font-family: var(--ff-head); font-size: var(--text-l); font-weight: 800; color: var(--white); }
.footer-brand__sub { font-size: var(--text-xs); color: var(--secondary); font-weight: 600; font-family: var(--ff-head); letter-spacing: 0.04em; }
.footer-brand__desc { font-size: var(--text-s); color: var(--white-trans-50); line-height: var(--text-line-height); margin-top: 0.4rem; }
.footer-brand__socials,
.footer__socials { display: flex; gap: var(--space-xs); margin-top: var(--space-s); }
.footer-brand__social,
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  background: var(--white-trans-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--white);
  transition: background var(--transition);
}
.footer-brand__social:hover,
.footer__social:hover { background: var(--secondary); }

/* Footer Columns */
.footer-col,
.footer__col { display: flex; flex-direction: column; gap: var(--space-s); }
.footer-col__heading,
.footer__col h5 { color: var(--white-trans-50); margin-bottom: 0.4rem; font-size: calc(var(--text-xs) * 0.85); letter-spacing: 0.1em; }
.footer-col__links,
.footer__links { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer-col__link,
.footer__links a {
  font-size: var(--text-s);
  color: var(--white-trans-70);
  transition: color var(--transition);
}
.footer-col__link:hover,
.footer__links a:hover { color: var(--white); }

/* Footer Contact */
.footer-contact,
.footer__contact { display: flex; flex-direction: column; gap: var(--space-s); }
.footer-contact__item,
.footer__contact-item { display: flex; gap: var(--space-s); align-items: flex-start; }
.footer-contact__item i,
.footer-contact__item .icon,
.footer__contact-item i,
.footer__contact-item .icon { color: var(--secondary); font-size: var(--text-s); margin-top: 3px; flex-shrink: 0; }
.footer-contact__item p,
.footer__contact-item p { font-size: var(--text-s); color: var(--white-trans-70); line-height: 1.5; }
.footer-contact__item a,
.footer__contact-item a { color: var(--white-trans-70); transition: color var(--transition); }
.footer-contact__item a:hover,
.footer__contact-item a:hover { color: var(--white); }

/* Footer Legal */
.footer-legal,
.footer__legal { display: flex; gap: var(--space-m); flex-wrap: wrap; }
.footer-legal__link,
.footer__legal a { font-size: var(--text-xs); color: var(--white-trans-40); transition: color var(--transition); }
.footer-legal__link:hover,
.footer__legal a:hover { color: var(--white-trans-70); }

/* ─── 35. Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid,
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-l); }
}

@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__image { order: 0; }
  .split--reverse .split__text  { order: 0; }
  .page-hero__split { grid-template-columns: 1fr; }
  .page-hero__image { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .events-header { flex-direction: column; align-items: flex-start; }
  .events-calendar__cell { font-size: calc(var(--text-xs) * 0.85); }
  .awards-strip__item { flex-direction: column; text-align: center; }
  .contact-strip__inner { flex-direction: column; align-items: flex-start; gap: var(--space-s); }
  .facts-strip__inner { flex-direction: column; align-items: flex-start; gap: var(--space-s); }
  .site-footer__grid,
  .footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom,
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer-legal,
  .footer__legal { justify-content: center; }
  .cta__actions { flex-direction: column; align-items: center; }
  .section-intro { text-align: center; }
  .page-hero {
  color: var(--white); padding-block: var(--section-space-s) var(--space-l); }
  .page-hero__title { font-size: var(--text-xl); }
}

/* ─── 36. Accordion icon colours ────────────────────────── */
.accordion__icon { margin-right: var(--space-xs); }
.accordion__icon--teal   { color: var(--secondary); }
.accordion__icon--yellow { color: var(--accent); }
.accordion__icon--orange { color: var(--tertiary); }

/* ─── 37. Fee table wrapper ─────────────────────────────── */
.fee-table-wrap { overflow-x: auto; }

/* ─── 38. Section note ──────────────────────────────────── */
.section-note { color: var(--text-light-muted); font-size: var(--text-s); text-align: center; }
