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

img,
video,
embed,
object {
  max-width: 100%;
}

:root {
  /* Brand colours from logo */
  --blue: #4A90C4;
  --blue-dark: #2E6A9A;
  --blue-deep: #1A3E5C;
  --blue-pale: #EAF4FC;
  --pink: #E8317A;
  --pink-pale: #FDEAF2;
  --green: #7BC142;
  --green-pale: #F0F8E8;
  --orange: #F5A623;
  --orange-pale: #FEF5E7;
  --crimson: #C0392B;
  --lavender: #9B6BB5;
  --lavender-pale: #F3EDF8;
  --gray-text: #5A5A5A;
  --gray-light: #F5F5F3;
  --white: #FFFFFF;
  --off-white: #FBF9F5;
  --warm-bg: #FEFCF9;
  --dark: #1A2E3B;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', sans-serif;
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --container: 1280px;
  --container-hero: 1440px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  background: var(--warm-bg);
  color: var(--dark);
  overflow-x: hidden
}

/* ─── CONTAINER ─── */
.site-container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 52px;
  padding-right: 52px;
  width: 100%;
}


/* ─── PAGE HERO ─── */
.page-hero {
  padding: 160px 0 60px;
  background: var(--blue-pale);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media(max-width: 960px) {
  .page-hero { padding: 140px 0 64px; }
}

@media(max-width: 640px) {
  .page-hero { padding: 130px 0 52px; }
}


/* ─────────────── NAV ─────────────── */

/* Top accreditation bar — ALWAYS VISIBLE, never hides */
.accred-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 202;
  height: 44px;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.accred-divider {
  width: 1px;
  height: 22px;
  background: rgba(0, 0, 0, .12);
  margin: 0 24px;
  flex-shrink: 0
}

.accred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px
}

/* Accreditation logo images */
.accred-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Main nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  backdrop-filter: blur(12px);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-hero);
  padding: 0 52px;
}

@media(max-width:640px) {
  .nav-inner {
    padding: 0 18px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0
}

.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
}

.nav-accreds {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-accred-logo {
  height: 56px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  min-width: 0;
}

.nav-accred-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, .14);
  flex-shrink: 0;
}

/* Logo carousel — activated on mobile via JS (.carousel-mode class) */
.nav-accreds.carousel-mode {
  position: relative;
  width: 100%;
  height: 48px;
  overflow: hidden;
  flex-wrap: nowrap;
}
.nav-accreds.carousel-mode .nav-accred-divider {
  display: none;
}
.nav-accreds.carousel-mode .nav-accred-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 42px;
  max-width: 130px;
  width: auto;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
  flex-shrink: unset;
  min-width: unset;
}
.nav-accreds.carousel-mode .nav-accred-logo.accred-active {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-text);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .25s;
}

nav.scrolled .nav-links a {
  color: var(--gray-text)
}

.nav-links a:hover {
  color: var(--blue) !important
}

nav.scrolled .nav-links a:hover {
  color: var(--blue) !important
}

/* ── Desktop Dropdowns ── */
.nav-links li {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  min-width: 240px;
  padding: 12px 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 400;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links li:hover>.nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown .nav-dropdown {
  top: -12px;
  left: 100%;
  transform: translateX(10px);
}

.nav-links li:hover>.nav-dropdown>li:hover>.nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-dropdown li {
  position: relative;
}

.nav-dropdown a {
  display: block;
  padding: 8px 24px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark) !important;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown a:hover {
  background: var(--blue-pale);
  color: var(--blue) !important;
}

.has-dropdown>a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.2s;
}

.nav-dropdown .has-dropdown>a::after {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid currentColor;
  margin-top: -2px;
  float: right;
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(74, 144, 196, .4)
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s;
  z-index: 301;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  background: rgba(0, 0, 0, .05);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── MOBILE DRAWER ─── */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 250;
  opacity: 0;
  transition: opacity .3s;
}

.mobile-drawer-overlay.visible {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  left: auto;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 260;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-header img {
  height: 40px;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.mobile-drawer-close:hover {
  background: rgba(0, 0, 0, .06);
}

.mobile-drawer-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
}

.mobile-drawer-links {
  padding: 16px 0;
  list-style: none;
}

.mobile-drawer-links li {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: background .2s, color .2s;
}

.mobile-drawer-links a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.mobile-drawer-links svg.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  opacity: .5;
}

/* ── Mobile Accordion ── */
.mobile-drawer-dropdown {
  display: none;
  list-style: none;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-drawer-dropdown a {
  padding-left: 48px;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-drawer-dropdown .mobile-drawer-dropdown a {
  padding-left: 64px;
  font-size: 13.5px;
}

.mobile-drawer-dropdown .mobile-drawer-dropdown .mobile-drawer-dropdown a {
  padding-left: 80px;
}

.drawer-toggle {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: transform 0.3s;
  margin-right: 12px;
}

.drawer-toggle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}

.mobile-item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-drawer-links li.open>.mobile-item-wrap>.drawer-toggle {
  transform: rotate(180deg);
}

.mobile-drawer-links li.open>.mobile-drawer-dropdown {
  display: block;
}

.mobile-drawer-cta {
  padding: 20px 24px;
}

.mobile-drawer-cta a {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background .25s;
}

.mobile-drawer-cta a:hover {
  background: var(--blue-dark);
}

/* Colour strip at bottom of drawer */
.mobile-drawer-colours {
  display: flex;
  height: 4px;
  margin-top: auto;
}

.mobile-drawer-colours span {
  flex: 1;
}

/* ── 960px: Mobile nav, single columns ── */
@media(max-width:960px) {
  .site-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  nav {
    top: 0;
    height: 84px;
    right: auto;
    width: 100vw;
    justify-content: flex-start;
    overflow: hidden;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: minmax(72px, 96px) minmax(0, 1fr) 42px;
    align-items: center;
    justify-content: stretch;
    padding: 0 clamp(12px, 3vw, 24px);
    min-height: 84px;
    gap: clamp(4px, 1.5vw, 10px);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .nav-logo {
    min-width: 0;
  }

  .nav-logo img {
    height: auto;
    max-height: clamp(48px, 8vw, 62px);
    max-width: 100%;
    width: auto;
  }

  .nav-right {
    display: flex;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
  }

  .nav-accreds {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2px, 1vw, 6px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    flex-wrap: nowrap;
  }

  .nav-accred-logo {
    height: auto;
    max-height: clamp(26px, 5vw, 38px);
    max-width: min(22vw, 96px);
    object-fit: contain;
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-accred-logo:first-child {
    max-width: min(18vw, 76px);
  }

  .nav-accred-divider {
    height: clamp(18px, 4vw, 24px);
    flex: 0 0 1px;
  }

  .nav-hamburger {
    display: flex !important;
    justify-self: end;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

}

/* ─────────────── CAROUSEL HERO ─────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero-carousel-wrap {
  margin-top: 100px;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #000;
}

@media(max-width:1180px) {
  .hero-carousel-wrap {
    margin-top: 100px;
  }
}

/* Track holds all slides side by side */
.carousel-track {
  display: flex;
  width: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Individual slide */
.c-slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  position: relative;
  height: calc(100svh - 116px);
  min-height: 480px;
  max-height: 800px;
  overflow: hidden;
}

@media(max-width:960px) {
  .c-slide {
    height: calc(100svh - 64px);
    min-height: 420px;
    max-height: none;
  }
}

/* Image slides */
.c-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.c-slide.active .c-slide-img {
  transform: scale(1.05)
}

/* Gradient overlay on image slides */
.c-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 25, 45, .72) 0%,
      rgba(10, 25, 45, .45) 45%,
      rgba(10, 25, 45, .15) 100%);
}

/* Slide copy */
.c-slide-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 64px 72px;
  z-index: 3;
  animation: fadeUp .7s ease both;
}

.c-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 6px 14px;
  border-radius: 24px;
  margin-bottom: 18px;
}

.c-slide-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
}

.c-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0
}

.c-slide-h {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  max-width: 700px;
}

.c-slide-h em {
  font-style: italic
}

.c-slide-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

.c-slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.c-btn-primary {
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 28px;
  text-decoration: none;
  letter-spacing: .025em;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(74, 144, 196, .4);
}

.c-btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px)
}

.c-btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 28px;
  text-decoration: none;
  letter-spacing: .025em;
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(4px);
  transition: all .25s;
}

.c-btn-ghost:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .6)
}

/* Video slide */
.c-slide-video {
  position: absolute;
  inset: 0;
  background: #000;
  overflow: hidden;
}

/* Local video — object-fit: cover works natively */
.c-slide-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* YouTube / external iframe — use max() cover trick */
.c-slide-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  border: none;
}

.c-slide-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: background .3s;
}

.c-slide-video-overlay.playing {
  background: transparent;
  pointer-events: none
}

.play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.play-btn:hover {
  background: rgba(255, 255, 255, .35);
  transform: scale(1.1)
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  margin-left: 4px
}

.video-label {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

/* ── CAROUSEL CONTROLS ── */
.carousel-arrow {
  display: none
}

/* Dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .35s;
  border: none;
  outline: none;
  padding: 0;
}

.c-dot.active {
  background: var(--white);
  width: 24px
}

/* Colour stripe at very bottom of carousel */
.carousel-colour-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  display: flex;
  z-index: 10;
}

.carousel-colour-bar span {
  flex: 1
}

/* Progress bar */
.carousel-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--pink);
  z-index: 11;
  transition: width .1s linear;
}

/* ── STAT BAR (below carousel) ── */
.hero-stats-wrap {
  background: var(--off-white);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.hero-stats {
  display: flex;
}

.hero-stat {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-stat:last-child {
  border-right: none
}

.hero-stat-accent {
  width: 4px;
  height: 38px;
  border-radius: 4px;
  flex-shrink: 0
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--gray-text);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 3px;
}

@media(max-width:640px) {
  .hero-stats {
    flex-wrap: wrap
  }

  .hero-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(0, 0, 0, .06)
  }

  .c-slide-copy {
    padding: 28px 22px 52px
  }

  .c-slide-h {
    font-size: clamp(28px, 7vw, 44px)
  }
}



/* ─────────────── SHARED ─────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.section-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.78;
  max-width: 640px;
}

/* ─────────────── PATHWAYS ─────────────── */
.pathways {
  background: var(--off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pathways-intro--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.pathways-intro--center .section-h2 em {
  font-style: italic;
}

/* ── Bubble layout ── */
.pathways-bubbles {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pathway-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating icon above the circle */
.bubble-icon-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: -46px;
}

.bubble-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.bubble-icon svg {
  width: 36px;
  height: 36px;
}

/* Circle */
.bubble-body {
  position: relative;
  width: 310px;
  height: 310px;
  flex-shrink: 0;
}

.bubble-circle-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: background .35s ease, transform .35s ease;
}

.pathway-bubble:hover .bubble-circle-bg {
  transform: scale(1.04);
}

/* ── Per-colour defaults ── */
.bubble-blue .bubble-icon {
  background: var(--blue);
}

.bubble-green .bubble-icon {
  background: var(--green);
}

.bubble-lavender .bubble-icon {
  background: var(--lavender);
}

.bubble-blue .bubble-circle-bg {
  background: var(--blue-pale);
}

.bubble-green .bubble-circle-bg {
  background: var(--green-pale);
}

.bubble-lavender .bubble-circle-bg {
  background: var(--lavender-pale);
}

.bubble-blue .bubble-age {
  color: var(--blue);
}

.bubble-green .bubble-age {
  color: var(--green);
}

.bubble-lavender .bubble-age {
  color: var(--lavender);
}

.bubble-blue .bubble-title {
  color: var(--blue-dark);
}

.bubble-green .bubble-title {
  color: #3D7A18;
}

.bubble-lavender .bubble-title {
  color: #6B3E8A;
}

.bubble-blue .bubble-link {
  color: var(--blue);
}

.bubble-green .bubble-link {
  color: var(--green);
}

.bubble-lavender .bubble-link {
  color: var(--lavender);
}

/* ── Hover: deep background, white text ── */
.bubble-blue:hover .bubble-circle-bg {
  background: var(--blue);
}

.bubble-green:hover .bubble-circle-bg {
  background: var(--green);
}

.bubble-lavender:hover .bubble-circle-bg {
  background: var(--lavender);
}

.bubble-age,
.bubble-title,
.bubble-desc,
.bubble-link {
  transition: color .35s ease;
}

.pathway-bubble:hover .bubble-age,
.pathway-bubble:hover .bubble-title,
.pathway-bubble:hover .bubble-desc,
.pathway-bubble:hover .bubble-link {
  color: rgba(255, 255, 255, .95);
}

/* Coming-soon pill inside bubble */
.bubble-coming-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(155, 107, 181, .15);
  color: var(--lavender);
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 5px;
  transition: background .35s ease, color .35s ease;
}

.bubble-lavender:hover .bubble-coming-pill {
  background: rgba(255, 255, 255, .2);
  color: var(--white);
}

.bubble-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 28px 24px;
  text-align: center;
}

.bubble-age {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.bubble-title {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}

.bubble-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 14px;
}

.bubble-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .03em;
  transition: gap .2s;
}

.bubble-link:hover {
  gap: 10px;
}

.bubble-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Bubble responsive ── */
@media(max-width:1100px) {
  .pathways-bubbles {
    gap: 28px;
  }

  .bubble-body {
    width: 276px;
    height: 276px;
  }

  .bubble-icon {
    width: 76px;
    height: 76px;
  }

  .bubble-icon-wrap {
    margin-bottom: -42px;
  }

  .bubble-content {
    padding: 50px 24px 20px;
  }

  .bubble-title {
    font-size: 24px;
  }
}

@media(max-width:760px) {
  .pathways-bubbles {
    gap: 40px;
  }

  .bubble-body {
    width: 300px;
    height: 300px;
  }

  .bubble-icon {
    width: 80px;
    height: 80px;
  }

  .bubble-icon-wrap {
    margin-bottom: -44px;
  }

  .bubble-content {
    padding: 54px 28px 22px;
  }

  .bubble-title {
    font-size: 26px;
  }
}

/* Decorative circle */
.pathways::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(232, 49, 122, .04);
  pointer-events: none;
}

.pathways::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(123, 193, 66, .05);
  pointer-events: none;
}

.pathways-intro {
  max-width: 500px;
  margin-bottom: 60px
}

.pathways-intro .section-h2 span {
  font-style: italic
}

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

.pathway-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .3s, box-shadow .3s;
}

.pathway-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .11)
}

.pathway-top {
  height: 210px;
  position: relative;
  overflow: hidden
}

.pathway-top.blue-card {
  background: linear-gradient(145deg, #2E6A9A, #4A90C4)
}

.pathway-top.green-card {
  background: linear-gradient(145deg, #3D7A18, #7BC142)
}

.pathway-top.lavender-card {
  background: linear-gradient(145deg, #5C3480, #9B6BB5)
}

.pathway-top-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pathway-top.blue-card .pathway-top-glow {
  background: radial-gradient(circle at 70% 30%, rgba(74, 144, 196, .5) 0%, transparent 60%)
}

.pathway-top.green-card .pathway-top-glow {
  background: radial-gradient(circle at 70% 30%, rgba(123, 193, 66, .4) 0%, transparent 60%)
}

.pathway-top.lavender-card .pathway-top-glow {
  background: radial-gradient(circle at 70% 30%, rgba(155, 107, 181, .5) 0%, transparent 60%)
}

.pathway-age-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 20px;
}

.pathway-colour-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  display: flex;
}

.pathway-colour-strip span {
  flex: 1
}

/* Big decorative letter */
.pathway-deco-letter {
  position: absolute;
  font-family: var(--serif);
  font-size: 160px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, .06);
  bottom: -20px;
  right: 10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pathway-body {
  padding: 28px
}

.pathway-body h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.pathway-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.72;
  margin-bottom: 22px;
}

.pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .03em;
  transition: gap .2s;
}

.pathway-link:hover {
  gap: 11px
}

.pathway-link.blue {
  color: var(--blue)
}

.pathway-link.green {
  color: var(--green)
}

.pathway-link.lavender {
  color: var(--lavender)
}

.pathway-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5
}

.coming-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--lavender-pale);
  color: var(--lavender);
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ─────────────── FACTS ─────────────── */
.facts {
  background: #4a90c4;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

/* Centred header variant */
.facts-header--center {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
}

.facts-intro {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .45);
  max-width: 480px;
  margin: 12px auto 0;
  line-height: 1.75;
}

/* ── Illustrated bento grid ── */
.facts-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fbc {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.fbc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 1;
}

.fbc-blue::before {
  background: var(--blue);
}

.fbc-green::before {
  background: var(--green);
}

.fbc-pink::before {
  background: var(--pink);
}

.fbc-orange::before {
  background: var(--orange);
}

.fbc-lavender::before {
  background: var(--lavender);
}

.fbc-crimson::before {
  background: var(--crimson);
}

.fbc:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
}

.fbc-span2 {
  grid-column: span 2;
}

.fbc-span3 {
  grid-column: span 3;
}

/* Full-width closing card — horizontal image + text layout */
.fbc-full {
  grid-column: 1 / -1;
  flex-direction: row;
}

.fbc-full .fbc-img {
  width: 38%;
  flex-shrink: 0;
  min-height: 200px;
}

.fbc-full .fbc-img img {
  max-height: none;
  height: 100%;
}

.fbc-full .fbc-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: none;
  border-left: 1px solid rgba(0, 0, 0, .06);
  padding: 28px 40px;
}

.fbc-full .fbc-name {
  font-size: 18px;
  margin-bottom: 10px;
}

.fbc-full .fbc-text p {
  font-size: 14px;
  line-height: 1.7;
}

@media(max-width:960px) {
  .fbc-full {
    flex-direction: column;
  }

  .fbc-full .fbc-img {
    width: 100%;
    min-height: 190px;
  }

  .fbc-full .fbc-text {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding: 16px 20px 20px;
  }

  .fbc-full .fbc-name {
    font-size: 14px;
  }

  .fbc-full .fbc-text p {
    font-size: 12px;
  }
}

.fbc-img {
  flex: 1;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 16px;
  background: var(--white);
}

.fbc-span2 .fbc-img {
  min-height: 220px;
}

.fbc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 200px;
}

.fbc-span2 .fbc-img img {
  max-height: 230px;
}

.fbc-text {
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: var(--white);
}

.fbc-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.fbc-text p {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Accent colour on name */
.fbc-blue .fbc-name {
  color: var(--blue-dark);
}

.fbc-green .fbc-name {
  color: #3D7A18;
}

.fbc-pink .fbc-name {
  color: #b01f5c;
}

.fbc-orange .fbc-name {
  color: #a06010;
}

.fbc-lavender .fbc-name {
  color: #6B3E8A;
}

.fbc-crimson .fbc-name {
  color: var(--crimson);
}

/* Pending illustration placeholder */
.fbc-img--pending {
  align-items: stretch;
}

.fbc-pending {
  flex: 1;
  min-height: 185px;
  background: repeating-linear-gradient(-45deg,
      var(--gray-light),
      var(--gray-light) 6px,
      #eeece8 6px,
      #eeece8 12px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.fbc-pending::after {
  content: 'Illustration coming soon';
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b0a898;
}

/* ── Responsive bento ── */
@media(max-width:960px) {
  .facts-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .fbc-span2 {
    grid-column: span 2;
  }
}

@media(max-width:480px) {
  .facts-bento {
    grid-template-columns: 1fr;
  }

  .fbc-span2 {
    grid-column: span 1;
  }
}

/* ── 5-column icon card grid (legacy, not used) ── */
.facts-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.fact-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-lg);
  padding: 22px 18px 22px;
  position: relative;
  overflow: hidden;
  transition: background .25s, transform .3s, box-shadow .3s;
}

/* Top colour accent */
.fact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.fact-card.fc-blue::before {
  background: var(--blue);
}

.fact-card.fc-green::before {
  background: var(--green);
}

.fact-card.fc-pink::before {
  background: var(--pink);
}

.fact-card.fc-orange::before {
  background: var(--orange);
}

.fact-card.fc-lavender::before {
  background: var(--lavender);
}

.fact-card.fc-crimson::before {
  background: var(--crimson);
}

.fact-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

/* Icon */
.fact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.fact-card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-card.fc-blue .fact-card-icon {
  background: rgba(74, 144, 196, .2);
}

.fact-card.fc-green .fact-card-icon {
  background: rgba(123, 193, 66, .2);
}

.fact-card.fc-pink .fact-card-icon {
  background: rgba(232, 49, 122, .2);
}

.fact-card.fc-orange .fact-card-icon {
  background: rgba(245, 166, 35, .2);
}

.fact-card.fc-lavender .fact-card-icon {
  background: rgba(155, 107, 181, .2);
}

.fact-card.fc-crimson .fact-card-icon {
  background: rgba(192, 57, 43, .2);
}

.fact-card.fc-blue .fact-card-icon svg {
  stroke: var(--blue);
}

.fact-card.fc-green .fact-card-icon svg {
  stroke: var(--green);
}

.fact-card.fc-pink .fact-card-icon svg {
  stroke: var(--pink);
}

.fact-card.fc-orange .fact-card-icon svg {
  stroke: var(--orange);
}

.fact-card.fc-lavender .fact-card-icon svg {
  stroke: var(--lavender);
}

.fact-card.fc-crimson .fact-card-icon svg {
  stroke: #e05040;
}

/* Stat */
.fact-card-stat {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.fact-card.fc-blue .fact-card-stat {
  color: var(--blue);
}

.fact-card.fc-green .fact-card-stat {
  color: var(--green);
}

.fact-card.fc-pink .fact-card-stat {
  color: var(--pink);
}

.fact-card.fc-orange .fact-card-stat {
  color: var(--orange);
}

.fact-card.fc-lavender .fact-card-stat {
  color: var(--lavender);
}

.fact-card.fc-crimson .fact-card-stat {
  color: #e05040;
}

/* Name & body */
.fact-card-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.35;
  letter-spacing: .01em;
}

.fact-card-body {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, .48);
  line-height: 1.65;
}

/* ── Responsive facts cards ── */
@media(max-width:1200px) {
  .facts-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:960px) {
  .facts-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:640px) {
  .facts-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media(max-width:380px) {
  .facts-cards {
    grid-template-columns: 1fr;
  }
}

/* Decorative circles */
.facts::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(74, 144, 196, .06);
  pointer-events: none;
}

.facts::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(123, 193, 66, .04);
  pointer-events: none;
}

.facts-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}

.facts-header .section-h2 {
  color: var(--white);
  margin-bottom: 0
}

.facts-header p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
  max-width: 340px;
  text-align: right;
  line-height: 1.6;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.fact-tile {
  background: rgba(255, 255, 255, .03);
  padding: 30px 26px;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}

.fact-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.fact-tile.t-blue::before {
  background: var(--blue)
}

.fact-tile.t-pink::before {
  background: var(--pink)
}

.fact-tile.t-green::before {
  background: var(--green)
}

.fact-tile.t-orange::before {
  background: var(--orange)
}

.fact-tile.t-crimson::before {
  background: var(--crimson)
}

.fact-tile.t-lavender::before {
  background: var(--lavender)
}

.fact-tile:hover {
  background: rgba(255, 255, 255, .07)
}

.fact-big {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 7px;
}

.fact-tile.t-blue .fact-big {
  color: var(--blue)
}

.fact-tile.t-pink .fact-big {
  color: var(--pink)
}

.fact-tile.t-green .fact-big {
  color: var(--green)
}

.fact-tile.t-orange .fact-big {
  color: var(--orange)
}

.fact-tile.t-crimson .fact-big {
  color: #e05040
}

.fact-tile.t-lavender .fact-big {
  color: var(--lavender)
}

.fact-tile p {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

/* ─────────────── INTERNATIONAL ─────────────── */
.intl {
  padding: 100px 0;
  background: var(--warm-bg);
}

.intl .site-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intl-visual {
  position: relative;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--blue-deep);
}

/* Rotating colour rings */
.intl-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.intl-r1 {
  width: 360px;
  height: 360px;
  border-color: rgba(74, 144, 196, .3)
}

.intl-r2 {
  width: 270px;
  height: 270px;
  border-color: rgba(232, 49, 122, .25)
}

.intl-r3 {
  width: 180px;
  height: 180px;
  border-color: rgba(123, 193, 66, .2)
}

.intl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(74, 144, 196, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 144, 196, .35);
}

.intl-center-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  text-align: center;
}

.intl-center-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  display: block;
  margin-top: 1px;
}

/* Dots on the rings */
.intl-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Cards in corners */
.intl-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}

.intl-stat-card-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.intl-stat-card-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}

.intl-copy {
  padding-left: 8px
}

.intl-copy .section-body {
  margin-bottom: 20px
}

.intl-copy .section-body+.section-body {
  margin-bottom: 0
}

.intl-accreds {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 24px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
}

.ab-blue {
  background: var(--blue-pale);
  color: var(--blue-dark)
}

.ab-green {
  background: var(--green-pale);
  color: #3E7A10
}

.ab-lavender {
  background: var(--lavender-pale);
  color: #6B3E8A
}

.ab-orange {
  background: var(--orange-pale);
  color: #A06010
}

.accred-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5
}

/* ─────────────── RATIOS ─────────────── */
.ratios {
  background: var(--off-white);
  padding: 100px 0
}

.ratios-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.ratio-rows {
  display: flex;
  flex-direction: column;
  gap: 22px
}

.ratio-item {}

.ratio-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.ratio-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark)
}

.ratio-number {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.ratio-track {
  height: 6px;
  background: rgba(0, 0, 0, .08);
  border-radius: 3px;
  overflow: hidden
}

.ratio-fill {
  height: 100%;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: fillBar .9s ease forwards;
}

@keyframes fillBar {
  to {
    transform: scaleX(1)
  }
}

.ratio-sub {
  font-size: 12.5px;
  color: #9a9a9a;
  margin-top: 5px
}

.ratios-copy .section-body {
  margin-bottom: 22px
}

.ratios-copy .section-body+.section-body {
  margin-top: 0
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: .025em;
  transition: all .25s;
  margin-top: 32px;
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 144, 196, .4)
}

/* ─────────────── TESTIMONIALS ─────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--warm-bg);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(245, 166, 35, .05);
  pointer-events: none;
}

.testi-header {
  margin-bottom: 56px
}

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

.testi-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, .07);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .09)
}

.testi-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.testi-quote {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.68;
  margin-bottom: 26px;
}

.testi-mark {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  line-height: .8;
  float: left;
  margin-right: 6px;
  margin-top: 4px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark)
}

.testi-role {
  font-size: 12.5px;
  color: #9a9a9a;
  margin-top: 1px
}

/* ─────────────── ENRICHMENT ─────────────── */
.enrichment {
  background: var(--blue-deep);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.enrichment::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(245, 166, 35, .05);
  pointer-events: none;
}

.enrichment-header {
  margin-bottom: 56px
}

.enrichment-header .section-h2 {
  color: var(--white)
}

.enrichment-header .section-label {
  color: var(--green)
}

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

.enrich-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: background .25s, transform .3s;
}

.enrich-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px)
}

.enrich-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.enrich-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8
}

.enrich-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.enrich-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
}

/* ─────────────── CAMPUSES ─────────────── */
.campuses {
  padding: 100px 0;
  background: var(--off-white)
}

.campus-intro {
  margin-bottom: 56px
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.campus-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  border: 1px solid rgba(0, 0, 0, .07);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.campus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1)
}

.campus-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  bottom: 0;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.campus-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.campus-addr {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 22px;
}

.campus-links {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.campus-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--gray-text);
  text-decoration: none;
  transition: color .2s;
}

.campus-link:hover {
  color: var(--blue)
}

.campus-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0
}

/* ─────────────── CTA ─────────────── */
.cta-band {
  background: var(--blue);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .1);
  pointer-events: none;
}

.cta-band .section-label {
  color: rgba(255, 255, 255, .65)
}

.cta-band .section-h2 {
  color: var(--white);
  margin: 0 auto 16px;
  max-width: 620px
}

.cta-band .section-h2 em {
  font-style: italic;
  color: var(--green)
}

.cta-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 44px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  font-size: 14.5px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: .025em;
  transition: all .25s;
}

.btn-white:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-size: 14.5px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: .025em;
  border: 1.5px solid rgba(255, 255, 255, .5);
  transition: all .25s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8)
}

/* ─────────────── FOOTER ─────────────── */
footer {
  position: relative;
  background: var(--pink);
  padding: 0 0 36px;
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
}

.footer-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.footer-bubble {
  position: absolute;
  bottom: -150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: floatUp 15s infinite ease-in-out;
}

.footer-bubble.b-1 { left: 10%; width: 80px; height: 80px; animation-duration: 18s; animation-delay: 2s; }
.footer-bubble.b-2 { left: 25%; width: 120px; height: 120px; animation-duration: 22s; animation-delay: 0s; }
.footer-bubble.b-3 { left: 45%; width: 60px; height: 60px; animation-duration: 15s; animation-delay: 5s; }
.footer-bubble.b-4 { left: 60%; width: 150px; height: 150px; animation-duration: 25s; animation-delay: 1s; }
.footer-bubble.b-5 { left: 80%; width: 90px; height: 90px; animation-duration: 19s; animation-delay: 7s; }
.footer-bubble.b-6 { left: 90%; width: 70px; height: 70px; animation-duration: 16s; animation-delay: 3s; }
.footer-bubble.b-7 { left: 35%; width: 110px; height: 110px; animation-duration: 21s; animation-delay: 8s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-800px) scale(1.2) rotate(360deg); opacity: 0; }
}

.footer-colour-bar,
.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-inner {
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo img {
  height: 90px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 260px;
  color: rgba(255, 255, 255, .9);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 1)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 22px
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 1)
}

/* Colour bar at footer top */
.footer-colour-bar {
  height: 4px;
  display: flex;
  margin-bottom: 0;
}

.footer-colour-bar span {
  flex: 1
}

/* ─────────────── WHATSAPP ─────────────── */
@keyframes enquiry-pulse {
  0% {
    box-shadow: 0 10px 28px rgba(232, 49, 122, .34), 0 0 0 0 rgba(232, 49, 122, .55);
  }

  60% {
    box-shadow: 0 10px 28px rgba(232, 49, 122, .34), 0 0 0 14px rgba(232, 49, 122, 0);
  }

  100% {
    box-shadow: 0 10px 28px rgba(232, 49, 122, .34), 0 0 0 0 rgba(232, 49, 122, 0);
  }
}

.enquiry-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .015em;
  box-shadow: 0 10px 28px rgba(232, 49, 122, .34);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
  animation: enquiry-pulse 2s ease-out infinite;
  gap: 8px;
}

.enquiry-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.enquiry-float:hover {
  animation: none;
  background: #d9236b;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(232, 49, 122, .42);
}

.enquiry-float:focus-visible {
  outline: 3px solid rgba(74, 144, 196, .45);
  outline-offset: 4px;
}

@keyframes enquiry-pulse-blue {
  0% {
    box-shadow: 0 10px 28px rgba(74, 144, 196, .34), 0 0 0 0 rgba(74, 144, 196, .55);
  }

  60% {
    box-shadow: 0 10px 28px rgba(74, 144, 196, .34), 0 0 0 14px rgba(74, 144, 196, 0);
  }

  100% {
    box-shadow: 0 10px 28px rgba(74, 144, 196, .34), 0 0 0 0 rgba(74, 144, 196, 0);
  }
}

.enquiry-float.in-footer {
  background: var(--blue);
  animation: enquiry-pulse-blue 2s ease-out infinite;
}

.enquiry-float.in-footer:hover {
  animation: none;
  background: var(--blue-dark);
  box-shadow: 0 16px 36px rgba(74, 144, 196, .42);
}

body.enquiry-modal-open {
  overflow: hidden;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 620;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(13, 30, 44, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.enquiry-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px 28px 20px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
  transform: translateY(14px);
  transition: transform .24s ease;
}

.enquiry-modal.open .enquiry-modal-panel {
  transform: translateY(0);
}

.enquiry-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquiry-modal-close:hover {
  background: var(--blue-pale);
}

.enquiry-modal-close:focus-visible {
  outline: 3px solid rgba(74, 144, 196, .45);
  outline-offset: 3px;
}

.enquiry-modal-header {
  padding-right: 48px;
  margin-bottom: 14px;
}

.enquiry-modal-header .section-label {
  margin-bottom: 4px;
}

.enquiry-modal-header h2 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--dark);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(26, 46, 59, .72);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: var(--radius-lg);
  background: var(--warm-bg);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  padding: 7px 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

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

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(74, 144, 196, .14);
}

.enquiry-message {
  grid-column: 1 / -1;
}

.enquiry-submit {
  align-self: flex-start;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 10px 24px;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
}

.enquiry-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(74, 144, 196, .28);
}

.enquiry-submit:focus-visible {
  outline: 3px solid rgba(74, 144, 196, .45);
  outline-offset: 4px;
}

.enquiry-status {
  min-height: 18px;
  color: var(--gray-text);
  font-size: 13px;
  line-height: 1.5;
}

.enquiry-modal-intro {
  margin-top: 4px;
  font-size: 12px;
  color: var(--gray-text);
}

.enquiry-full {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(26, 46, 59, .72);
}

.enquiry-req {
  color: var(--crimson);
  font-weight: 700;
}

.enquiry-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-text);
  text-transform: none;
  letter-spacing: 0;
}

.enquiry-section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(26, 46, 59, .72);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  margin-bottom: -2px;
}

.enquiry-campus-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.enquiry-campus-fieldset legend {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(26, 46, 59, .72);
  margin-bottom: 8px;
}

.enquiry-radio-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.enquiry-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.enquiry-radio input[type="radio"] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

/* ─────────────── RESPONSIVE ─────────────── */

/* ── 1200px: Tighten spacing, pathway grid 2-col ── */
@media(max-width:1200px) {
  .site-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-inner {
    padding: 0 40px;
  }

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

  .pathway-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

/* ── 960px: Mobile nav, single columns ── */
@media(max-width:960px) {
  .site-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .pathways-grid {
    grid-template-columns: 1fr;
    max-width: 480px
  }

  .pathway-card:last-child {
    max-width: none;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .intl .site-container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .intl-visual {
    height: 300px
  }

  .intl-copy {
    padding-left: 0;
  }

  .ratios-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .enrichment-grid {
    grid-template-columns: 1fr 1fr
  }

  .campus-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── 768px: Further reductions ── */
@media(max-width:768px) {
  .hero-stat {
    padding: 16px 20px;
  }

  .hero-stat-num {
    font-size: 24px;
  }

  .hero-stat-label {
    font-size: 10px;
  }

  .section-h2 {
    font-size: clamp(26px, 5vw, 40px);
  }

  .section-body {
    font-size: 15px;
  }

  .facts-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .facts-header--center {
    align-items: center;
  }

  .facts-header p {
    text-align: left;
  }

  .enrichment-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    padding: 24px;
  }

  .testi-quote {
    font-size: 15px;
  }

  .campus-card {
    padding: 24px 28px;
  }

  .intl-r1 {
    width: 240px;
    height: 240px;
  }

  .intl-r2 {
    width: 180px;
    height: 180px;
  }

  .intl-r3 {
    width: 120px;
    height: 120px;
  }

  .intl-center {
    width: 70px;
    height: 70px;
  }

  .intl-center-num {
    font-size: 24px;
  }

  .intl-stat-card {
    padding: 10px 14px;
  }

  .intl-stat-card-num {
    font-size: 22px;
  }

  .intl-stat-card-label {
    font-size: 9px;
  }

  .accred-badge {
    font-size: 11px;
    padding: 7px 12px;
  }
}

/* ── 480px: Smallest screens ── */
@media(max-width:480px) {
  .site-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  nav {
    height: 82px;
    right: auto;
    width: 100vw;
    justify-content: flex-start;
    overflow: hidden;
  }

  .hero-carousel-wrap {
    margin-top: 82px;
  }

  .c-slide {
    height: clamp(460px, 70svh, 560px);
  }

  .c-slide-copy {
    padding: 24px 16px 52px;
  }

  .c-slide-h {
    font-size: clamp(26px, 7.2vw, 34px);
    letter-spacing: 0;
    max-width: min(100%, 320px);
  }

  .c-slide-sub {
    max-width: min(100%, 320px);
    font-size: 14px;
    line-height: 1.6;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 38px;
    align-items: center;
    min-height: 82px;
    padding: 0 8px;
    gap: 5px;
  }

  .nav-right {
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .nav-logo img {
    height: auto;
    max-height: 46px;
    max-width: 100%;
    object-fit: contain;
  }

  .nav-accreds {
    justify-content: center;
    gap: 3px;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: hidden;
  }

  .nav-accred-logo {
    height: auto;
    max-height: 25px;
    max-width: min(18vw, 58px);
    object-fit: contain;
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-accred-logo:first-child {
    max-width: min(16vw, 52px);
  }

  .nav-accred-divider {
    height: 18px;
    min-width: 1px;
  }

  .nav-hamburger {
    width: 38px;
    height: 38px;
    padding: 7px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-stat {
    min-width: 100%;
    border-right: none;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact-tile {
    padding: 22px 20px;
  }

  .fact-big {
    font-size: 28px;
  }

  .pathway-top {
    height: 170px;
  }

  .pathway-deco-letter {
    font-size: 120px;
  }

  .c-slide-btns {
    flex-direction: column;
    gap: 10px;
  }

  .c-btn-primary,
  .c-btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .ratio-number {
    font-size: 20px;
  }

  .ratio-name {
    font-size: 13px;
  }

  .play-btn {
    width: 56px;
    height: 56px;
  }

  .play-btn svg {
    width: 22px;
    height: 22px;
  }

  .video-label {
    font-size: 11px;
  }

  .enquiry-float {
    bottom: 16px;
    right: 16px;
    left: auto;
    width: 56px;
    height: 56px;
    min-height: auto;
    padding: 0;
    border-radius: 50%;
    transform: none;
  }

  .enquiry-float .enquiry-text {
    display: none;
  }

  .enquiry-float svg {
    width: 24px;
    height: 24px;
  }

  .enquiry-float:hover {
    transform: translateY(-3px);
  }

  .enquiry-modal {
    align-items: flex-end;
    padding: 14px;
  }

  .enquiry-modal-panel {
    max-height: calc(100vh - 28px);
    padding: 28px 20px 22px;
    border-radius: var(--radius-lg);
  }

  .enquiry-modal-header {
    padding-right: 44px;
  }

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

  .enquiry-submit {
    width: 100%;
  }
}

/* Nav switches before desktop links overflow */
@media(min-width:481px) and (max-width:1180px) {
  nav {
    top: 0;
    height: 84px;
    right: auto;
    width: 100vw;
    justify-content: flex-start;
    overflow: hidden;
  }

  .hero-carousel-wrap {
    margin-top: 84px;
  }

  .c-slide {
    height: calc(100svh - 84px);
  }

  .nav-inner {
    display: grid;
    grid-template-columns: minmax(92px, 112px) minmax(0, 1fr) 42px;
    align-items: center;
    min-height: 84px;
    padding: 0 clamp(12px, 3vw, 24px);
    gap: clamp(4px, 1.5vw, 10px);
    max-width: 100vw;
    overflow: hidden;
  }

  .nav-logo {
    min-width: 0;
  }

  .nav-logo img {
    height: clamp(52px, 7vw, 64px);
    max-width: 112px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-right {
    justify-content: flex-start;
    gap: 0;
    min-width: 0;
    overflow: hidden;
  }

  .nav-accreds {
    justify-content: flex-start;
    gap: clamp(2px, 1vw, 6px);
    padding-right: 0;
    border-right: none;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    flex-wrap: nowrap;
  }

  .nav-accred-logo {
    height: auto;
    max-height: clamp(30px, 4.5vw, 38px);
    max-width: min(25vw, 110px);
    object-fit: contain;
    flex-shrink: 1;
    min-width: 0;
    width: auto;
  }

  .nav-accred-logo:first-child {
    max-width: min(28vw, 124px);
  }

  .nav-accred-divider {
    height: 26px;
    flex-shrink: 0;
  }

  .nav-hamburger {
    display: flex !important;
    justify-self: end;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
  }
}

/* WIDE FACT TILE */
.fact-tile.t-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.fact-tile.t-wide .fact-big {
  flex-shrink: 0;
  font-size: 40px;
}

.fact-wide-body {
  flex: 1;
}

.fact-wide-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
  letter-spacing: .01em;
}

.fact-tile.t-wide p {
  color: rgba(255, 255, 255, .55);
}

/* ─────────────── SPLIT SECTION LAYOUT ─────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-section--reverse .split-copy {
  order: 2;
}

.split-section--reverse .split-img {
  order: 1;
}

.split-copy .section-body {
  margin-bottom: 20px;
}

.split-copy .section-body:last-child {
  margin-bottom: 0;
}

/* Image panel */
.split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-light);
  position: relative;
}

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

/* Placeholder shown while photo is pending */
.split-img img[src$="academics.jpg"],
.split-img img[src$="belongs.jpg"],
.split-img img[src$="leaders.jpg"],
.split-img img[src$="calendar.jpg"] {
  opacity: 0;
}

.split-img::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b0a898;
  background: repeating-linear-gradient(-45deg,
      var(--gray-light),
      var(--gray-light) 6px,
      #eeece8 6px,
      #eeece8 12px);
}

/* Remove placeholder once real image loads */
.split-img.loaded::after {
  display: none;
}

.split-img.loaded img {
  opacity: 1;
}

/* ─────────────── ACADEMICS ─────────────── */
.academics {
  padding: 100px 0;
  background: var(--off-white);
}

/* ─────────────── RESPONSIVE SPLIT ─────────────── */
@media(max-width:960px) {

  .split-section,
  .split-section--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-section--reverse .split-copy,
  .split-section--reverse .split-img {
    order: unset;
  }

  .split-img {
    aspect-ratio: 16 / 9;
  }
}

.academics-body .section-body:last-child {
  margin-bottom: 0;
}

/* ─────────────── BELONGS ─────────────── */
.belongs {
  padding: 100px 0;
  background: var(--warm-bg);
}

/* ─────────────── LEADERS ─────────────── */
.leaders {
  padding: 100px 0;
  background: var(--off-white);
}

/* ─────────────── CALENDAR ─────────────── */
.calendar {
  padding: 100px 0;
  background: var(--off-white);
}

.calendar-gallery {
  max-width: 900px;
  margin: 48px auto 0;
}

.calendar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  aspect-ratio: 6 / 5;
  position: relative;
  padding: 12px;
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}

.calendar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
}

.calendar-card:focus-visible {
  outline: 3px solid rgba(74, 144, 196, .45);
  outline-offset: 4px;
}

.calendar-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-lg);
  background: var(--gray-light);
}

/* Placeholder until photos are added */
.calendar-card::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b0a898;
  background: repeating-linear-gradient(-45deg,
      var(--gray-light),
      var(--gray-light) 6px,
      #eeece8 6px,
      #eeece8 12px);
}

.calendar-card.loaded::after {
  display: none;
}

.calendar-card.loaded img {
  position: relative;
  z-index: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: rgba(26, 46, 59, .88);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  width: min(1120px, calc(100vw - 84px));
  height: min(760px, calc(100vh - 84px));
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.image-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.image-lightbox-close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .55);
  outline-offset: 4px;
}

@media(max-width:640px) {


  .image-lightbox {
    padding: 20px;
  }

  .image-lightbox img {
    width: calc(100vw - 40px);
    height: calc(100vh - 96px);
  }

  .image-lightbox-close {
    top: 14px;
    right: 14px;
  }
}

/* ─────────────── SHARED TEXT SECTION ─────────────── */
.text-section-body {
  margin-top: 36px;
  max-width: 760px;
}

.text-section-body .section-body {
  margin-bottom: 20px;
}

.text-section-body .section-body:last-child {
  margin-bottom: 0;
}

/* ─────────────── ENRICHMENT INTRO ─────────────── */
.enrichment-intro {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  max-width: 580px;
  margin-top: 14px;
}

/* ─────────────── IB ATTRIBUTION ─────────────── */
.ib-attribution {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .07);
  font-size: 12px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.75;
  max-width: 520px;
}

.ib-attribution a {
  color: var(--blue);
  text-decoration: none;
}

.ib-attribution a:hover {
  text-decoration: underline;
}

/* ─────────────── RESPONSIVE: NEW SECTIONS ─────────────── */
@media(max-width:960px) {
  .fact-tile.t-wide {
    flex-direction: column;
    gap: 16px;
  }
}

@media(max-width:768px) {

  .academics,
  .belongs,
  .leaders,
  .calendar {
    padding: 72px 0;
  }

  .academics-body,
  .text-section-body {
    max-width: 100%;
  }

  .academics-body .section-body,
  .text-section-body .section-body {
    font-size: 15px;
  }
}

/* Contact page */
.contact-page {
  background: var(--warm-bg);
}

.contact-page .site-container {
  max-width: min(var(--container), 100vw);
}

.contact-hero {
  padding: 180px 0 80px;
  background: var(--blue-pale);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--pink-pale);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(123, 193, 66, 0.1);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.contact-hero .site-container {
  position: relative;
  z-index: 1;
}

.contact-hero .section-label {
  color: var(--blue);
}

.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.contact-main {
  padding: 72px 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: 32px;
  align-items: start;
}

.contact-panel {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .07);
}

.contact-panel h2,
.contact-side h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.08;
  margin-bottom: 12px;
}

.contact-panel p,
.contact-side p {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(26, 46, 59, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: var(--radius-lg);
  background: var(--warm-bg);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(74, 144, 196, .14);
}

.contact-form .contact-full {
  grid-column: 1 / -1;
}

.contact-submit {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 14px 30px;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
}

.contact-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(74, 144, 196, .28);
}

.contact-status {
  min-height: 18px;
  color: var(--gray-text);
  font-size: 13px;
  line-height: 1.5;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .015em;
  border: 0;
  cursor: pointer;
}

.contact-action.secondary {
  color: var(--blue);
  background: var(--blue-pale);
}

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

.contact-info-item {
  display: flex;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius-lg);
}

.contact-info-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  color: var(--blue);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.contact-info-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 3px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--blue);
}

/* ── Campus map cards ── */
.contact-map-section {
  padding: 88px 0 72px;
}

.contact-map-header {
  max-width: 680px;
  margin-bottom: 32px;
}

.campus-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.campus-map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  border-top: 4px solid transparent;
}

.campus-map-card--blue {
  border-top-color: var(--blue);
}

.campus-map-card--pink {
  border-top-color: var(--pink);
}

.campus-map-card--green {
  border-top-color: var(--green);
}

.campus-map-card--orange {
  border-top-color: var(--orange);
}

.campus-map-label {
  padding: 10px 14px 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--dark);
}

.campus-map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

@media (max-width: 900px) {
  .campus-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .campus-map-grid {
    grid-template-columns: 1fr;
  }
}

/* ── End campus map cards ── */

.contact-campus-section {
  padding: 88px 0 100px;
  background: var(--blue-pale);
}

.contact-campus-header {
  max-width: 680px;
  margin-bottom: 34px;
}

.contact-campus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-campus-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.contact-campus-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
}

.contact-campus-card:nth-child(2)::before {
  background: var(--pink);
}

.contact-campus-card:nth-child(3)::before {
  background: var(--green);
}

.contact-campus-card:nth-child(4)::before {
  background: var(--orange);
}

.contact-campus-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-campus-card p {
  color: var(--gray-text);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-campus-card a {
  display: block;
  color: var(--gray-text);
  font-size: 13.5px;
  line-height: 1.7;
  text-decoration: none;
}

.contact-campus-card a:hover {
  color: var(--blue);
}

/* Age groups page */
.age-page .contact-hero {
  min-height: auto;
  align-items: center;
  background: var(--blue-pale);
  text-align: center;
}

.age-page .contact-hero::before {
  background: var(--blue-pale);
}

.age-page .contact-hero::after {
  display: none;
}

.age-page .contact-hero .site-container {
  padding-top: 88px;
  padding-bottom: 64px;
}

.age-page .contact-hero .section-label {
  color: var(--blue);
}

.age-page .contact-hero h1 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: var(--blue-deep);
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 0;
}

.age-page .contact-hero p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray-text);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.6;
}

.age-main {
  padding-bottom: 88px;
}

.age-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
}

.age-policy-panel {
  display: grid;
  gap: 22px;
}

.age-policy-panel h2 {
  margin-bottom: 0;
}

.age-callout {
  display: grid;
  gap: 6px;
  padding: 18px 20px 18px 22px;
  background: var(--blue-pale);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius-lg);
}

.age-callout strong {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.age-callout span {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.65;
}

.age-rule-block {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.age-rule-block h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.14;
  margin-bottom: 12px;
}

.age-rule-block ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0 20px;
}

.age-rule-block li {
  color: var(--gray-text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  padding-left: 4px;
}

.age-rule-block ul+p {
  margin-top: 14px;
}

.age-facts {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.age-facts div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.age-facts dt {
  color: rgba(26, 46, 59, .6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.age-facts dd {
  color: var(--dark);
  font-size: 14px;
  line-height: 1.55;
}

.age-table-section {
  padding: 88px 0 96px;
  background: var(--blue-pale);
}

.age-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .07);
}

.age-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.age-table th {
  background: #0D1E2C;
  color: var(--white);
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 20px 24px;
}

.age-table td {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.6;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.age-table tbody tr:nth-child(even) {
  background: var(--warm-bg);
}

.age-table tbody tr:last-child td {
  border-bottom: 0;
}

.age-table td:first-child {
  color: var(--blue-deep);
  font-weight: 800;
}

.age-table td:last-child {
  color: var(--dark);
  font-weight: 600;
}

.age-table-note {
  max-width: 760px;
  margin-top: 20px;
  color: var(--gray-text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.age-support-section {
  padding: 82px 0 96px;
  background: var(--warm-bg);
}

.age-support-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, .08);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.age-support-inner .section-body {
  max-width: 560px;
}

.age-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.age-support-actions .contact-action {
  min-width: 138px;
}

@media(max-width:1100px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-campus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .age-layout,
  .age-support-inner {
    grid-template-columns: 1fr;
  }

  .age-support-actions {
    justify-content: flex-start;
  }
}

@media(max-width:960px) {
  .enquiry-float {
    right: 16px;
    left: auto;
    transform: none;
  }

  .enquiry-float:hover {
    transform: translateY(-3px);
  }
}

@media(max-width:640px) {
  .contact-hero {
    padding: 140px 0 60px;
  }

  .contact-layout {
    justify-items: start;
  }

  .contact-panel {
    width: min(342px, 100%);
    max-width: calc(100vw - 48px);
  }

  .contact-main {
    padding: 48px 0 72px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-form-grid,
  .contact-campus-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }

  .age-page .contact-panel {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .age-table-section {
    padding: 58px 0 68px;
  }

  .age-table th,
  .age-table td {
    padding: 16px 18px;
  }

  .age-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .age-support-section {
    padding: 58px 0 72px;
  }

  .age-support-actions,
  .age-support-actions .contact-action {
    width: 100%;
  }
}

@media(max-width:480px) {
  .fact-tile.t-wide .fact-big {
    font-size: 28px;
  }
}
