:root {
  --navy: #3f5066;
  --navy-deep: #20324a;
  --blue: #5b9cc8;
  --blue-strong: #1767ad;
  --blue-light: #9fcbe5;
  --mist: #ecf7fd;
  --orange: #ec691f;
  --orange-dark: #bd4610;
  --orange-deep: #8f3208;
  --orange-light: #ffd2b6;
  --white: #ffffff;
  --ink: #20324a;
  --muted: #5c6f82;
  --line: #cfdfeb;
  --success: #1f7753;
  --error: #a72f2f;
  --shadow-sm: 0 8px 24px rgb(32 50 74 / 10%);
  --shadow-lg: 0 28px 70px rgb(32 50 74 / 18%);
  --radius-sm: 0.75rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.5rem;
  --container: 76rem;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section-space: clamp(4.5rem, 9vw, 8.5rem);
  --announcement-height: 2.75rem;
  --header-height: 5.5rem;
  --chrome-height: calc(var(--announcement-height) + var(--header-height));
  --display: "Commissioner", "Trebuchet MS", sans-serif;
  --body: "Fira Sans", system-ui, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--chrome-height) + 1.5rem);
  background: var(--white);
}

body {
  margin: 0;
  padding-top: var(--chrome-height);
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--blue-strong);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--orange-dark);
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--navy-deep);
  background: var(--blue-light);
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--navy-deep);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.5rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 0.5rem;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 50rem);
}

.announcement {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  min-height: var(--announcement-height);
  color: var(--white);
  background: var(--orange-dark);
}

.announcement__link {
  display: flex;
  min-height: var(--announcement-height);
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.5rem var(--gutter);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.025em;
}

.announcement__link:hover {
  color: var(--white);
  background: var(--orange-deep);
}

.announcement__arrow {
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.announcement__link:hover .announcement__arrow {
  transform: translateX(0.2rem);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: var(--announcement-height);
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(63 80 102 / 10%);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgb(32 50 74 / 6%);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--navy-deep);
  text-decoration: none;
}

.brand img {
  width: clamp(3.6rem, 5vw, 4.65rem);
  aspect-ratio: 1;
  object-fit: contain;
}

.brand__wordmark {
  display: grid;
  margin-left: 0.65rem;
  font-family: var(--display);
  font-weight: 780;
  line-height: 0.95;
}

.brand__wordmark small {
  margin-top: 0.2rem;
  color: var(--orange-dark);
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}

.site-nav__list,
.site-nav__sublist {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.2rem, 1vw, 1rem);
}

.site-nav__item {
  position: relative;
}

.site-nav__link,
.programme-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.55rem;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__link:hover,
.programme-toggle:hover {
  color: var(--blue-strong);
}

.site-nav__link[aria-current="page"] {
  color: var(--blue-strong);
}

.site-nav__link[aria-current="page"]::after {
  position: absolute;
  right: 0.55rem;
  bottom: 0.25rem;
  left: 0.55rem;
  height: 0.18rem;
  background: var(--orange);
  border-radius: 999px;
  content: "";
}

.programme-toggle svg {
  width: 0.75rem;
  transition: transform 180ms ease;
}

.programme-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.site-nav__sublist {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  width: 19rem;
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
}

.site-nav__sublist a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--navy);
  border-radius: 0.7rem;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav__sublist a:hover,
.site-nav__sublist a[aria-current="page"] {
  color: var(--blue-strong);
  background: var(--mist);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0.2rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0.35rem;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
}

.language-switcher button.is-active {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.menu-toggle svg {
  width: 1.35rem;
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: var(--chrome-height) 0 0;
  overflow: auto;
  padding: 2rem var(--gutter) 3rem;
  background: var(--white);
}

.mobile-menu__nav {
  display: grid;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-menu__nav a {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  color: var(--navy-deep);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.25rem, 5vw, 1.7rem);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu__subnav {
  padding: 0.25rem 0 0.8rem 1rem;
  margin: 0;
  list-style: none;
  border-left: 3px solid var(--orange);
}

.mobile-menu__subnav a {
  min-height: 2.75rem;
  border: 0;
  font-family: var(--body);
  font-size: 1rem;
}

.mobile-menu__meta {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.page-progress {
  position: fixed;
  z-index: 1002;
  top: calc(var(--chrome-height) - 3px);
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress__bar {
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.cursor-bubble-layer {
  position: fixed;
  z-index: 1100;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cursor-bubble {
  position: absolute;
  left: var(--bubble-x);
  top: var(--bubble-y);
  width: var(--bubble-size);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(circle at 28% 24%, rgb(255 255 255 / 94%) 0 8%, transparent 9%),
    radial-gradient(circle at 63% 70%, rgb(159 203 229 / 58%), rgb(91 156 200 / 24%) 58%, transparent 72%);
  box-shadow: inset -2px -3px 4px rgb(23 103 173 / 16%), inset 2px 2px 4px rgb(255 255 255 / 72%);
  pointer-events: none;
  will-change: transform, opacity;
  animation: cursor-bubble-rise var(--bubble-duration) cubic-bezier(0.18, 0.68, 0.24, 1) forwards;
}

.cursor-bubble::after {
  position: absolute;
  inset: 20% 27% auto auto;
  width: 18%;
  aspect-ratio: 1;
  content: "";
  background: rgb(255 255 255 / 88%);
  border-radius: inherit;
}

@keyframes cursor-bubble-rise {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.55);
  }

  12% {
    opacity: var(--bubble-opacity);
    transform: translate3d(-50%, calc(-50% - 1.25rem), 0) scale(1);
  }

  44% {
    opacity: calc(var(--bubble-opacity) * 0.9);
    transform: translate3d(calc(-50% + var(--bubble-drift-one)), calc(-50% - 3.75rem), 0) scale(0.95);
  }

  72% {
    opacity: calc(var(--bubble-opacity) * 0.62);
    transform: translate3d(calc(-50% + var(--bubble-drift-two)), calc(-50% - 6.5rem), 0) scale(0.88);
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(-50% + var(--bubble-drift-three)), calc(-50% - var(--bubble-rise)), 0) scale(0.7);
  }
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(50rem, calc(100svh - var(--chrome-height)));
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--navy-deep);
}

.hero__media,
.hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

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

@media (min-width: 48rem) {
  .hero__media {
    overflow: hidden;
  }

  .hero__media img {
    transform: scale(1.2);
    transform-origin: center;
  }

  .page-hero__media {
    overflow: hidden;
  }

  .page-hero__media img {
    transform: scale(1.2);
    transform-origin: center;
  }

  .wave-image img[data-parallax] {
    transform: scale(1.2);
    transform-origin: center;
  }

  .programme-card__image img[data-parallax] {
    transform: scale(1.2);
    transform-origin: center;
  }
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(25 54 82 / 88%) 0%, rgb(25 54 82 / 48%) 58%, rgb(25 54 82 / 18%) 100%),
    linear-gradient(0deg, rgb(25 54 82 / 68%) 0%, transparent 55%);
}

.hero__content {
  display: grid;
  min-width: 0;
  max-width: 52rem;
  align-content: end;
  padding-block: clamp(5.5rem, 12vw, 9.5rem);
}

.hero__content > * {
  min-width: 0;
  max-width: 100%;
}

.hero__eyebrow,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero__eyebrow {
  color: var(--white);
}

.hero__eyebrow::before,
.eyebrow::before {
  width: 2rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-hero h1,
.section-title,
.display-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3.25rem, 7.5vw, 7.2rem);
}

.hero__lead {
  max-width: 42rem;
  margin: 1.6rem 0 0;
  font-size: clamp(1.08rem, 1rem + 0.55vw, 1.5rem);
  line-height: 1.55;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.35rem;
  color: var(--white);
  background: var(--orange-dark);
  border: 2px solid var(--orange-dark);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgb(236 105 31 / 24%);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translateY(-2px);
}

.button--secondary {
  color: var(--navy-deep);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--navy-deep);
  background: var(--mist);
  border-color: var(--mist);
}

.button--outline {
  color: var(--navy-deep);
  background: transparent;
  border-color: var(--navy);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.hero__waterline {
  position: absolute;
  bottom: -1px;
  left: -4vw;
  width: 108vw;
  max-width: none;
  height: clamp(2.5rem, 8vw, 7rem);
  color: var(--white);
  pointer-events: none;
}

.hero__waterline path {
  fill: currentColor;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--mist {
  background: var(--mist);
}

.section--blue {
  color: var(--white);
  background: var(--blue-strong);
}

.section--navy {
  color: var(--white);
  background: var(--navy-deep);
}

.section-heading {
  display: grid;
  gap: 1.15rem;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading--center {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  margin-inline: auto;
}

.section-title {
  max-width: 18ch;
  color: var(--navy-deep);
  font-size: clamp(2.35rem, 5.2vw, 5rem);
}

.section--blue .section-title,
.section--navy .section-title {
  color: var(--white);
}

.section-intro {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.3rem);
}

.section--blue .section-intro,
.section--navy .section-intro {
  color: rgb(255 255 255 / 78%);
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.split--reverse .split__media {
  order: 2;
}

.split__content > :first-child {
  margin-top: 0;
}

.split__content > :last-child {
  margin-bottom: 0;
}

.split__content .section-title + .prose {
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
}

.prose {
  color: var(--muted);
}

.prose p {
  max-width: 68ch;
  margin: 0 0 1.25rem;
}

.prose strong {
  color: var(--ink);
}

.wave-image {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  border-radius: 45% 55% 42% 58% / 34% 38% 62% 66%;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.wave-image::after {
  position: absolute;
  inset: auto -10% -2.5rem;
  height: 6rem;
  background: rgb(255 255 255 / 24%);
  border-radius: 50%;
  content: "";
  transform: rotate(-5deg);
}

.wave-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.fact-strip {
  display: grid;
  overflow: hidden;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact__value {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--blue-strong);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 770;
  line-height: 1;
}

.fact__label {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.programme-grid,
.card-grid,
.benefit-grid,
.level-grid {
  display: grid;
  gap: 1.25rem;
}

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

.programme-card {
  position: relative;
  min-height: 35rem;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.programme-card__image,
.programme-card__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.programme-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.programme-card__overlay {
  z-index: -1;
  background: linear-gradient(0deg, rgb(20 43 66 / 96%) 0%, rgb(20 43 66 / 18%) 80%);
}

.programme-card__content {
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.programme-card__age {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  color: var(--navy-deep);
  background: var(--blue-light);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
}

.programme-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.programme-card p {
  max-width: 42ch;
  margin: 1rem 0 1.4rem;
  color: rgb(255 255 255 / 82%);
}

.programme-card:hover .programme-card__image img {
  transform: scale(1.035);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--orange-light);
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.quote-band {
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background: var(--blue-strong);
}

.quote-band blockquote {
  max-width: 22ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(2.25rem, 5.5vw, 5.5rem);
  font-weight: 760;
  line-height: 1.02;
  text-align: center;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.quote-band em {
  color: var(--blue-light);
  font-style: normal;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.benefit-card,
.level-card,
.contact-card {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card__icon,
.benefit-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy-deep);
  background: var(--blue-light);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
}

.info-card h3,
.benefit-card h3,
.contact-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.info-card p,
.benefit-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.schedule {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(3, 1fr);
}

.schedule__item {
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.schedule__item + .schedule__item {
  border-left: 1px solid var(--line);
}

.schedule__day {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--blue-strong);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 740;
}

.schedule__time {
  color: var(--navy-deep);
  font-size: 1.1rem;
  font-weight: 650;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(27rem, 58vw, 43rem);
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--navy-deep);
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgb(23 45 70 / 91%) 0%, rgb(23 45 70 / 55%) 58%, rgb(23 45 70 / 10%) 100%);
}

.page-hero__content {
  max-width: 55rem;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.page-hero p {
  max-width: 45rem;
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 86%);
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.35rem);
}

.breadcrumbs {
  padding: 0;
  margin: 0 0 1.25rem;
  list-style: none;
}

.breadcrumbs li {
  display: inline;
  color: rgb(255 255 255 / 78%);
  font-size: 0.82rem;
  font-weight: 650;
}

.breadcrumbs li + li::before {
  margin-inline: 0.5rem;
  content: "/";
}

.breadcrumbs a {
  color: inherit;
}

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

.check-list,
.credential-list,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.credential-list {
  counter-reset: credential;
  display: grid;
  gap: 1rem;
}

.credential-list li {
  position: relative;
  padding: 1.15rem 1.2rem 1.15rem 4.3rem;
  background: var(--mist);
  border-radius: 1rem;
  counter-increment: credential;
}

.credential-list li::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  color: var(--white);
  background: var(--blue-strong);
  border-radius: 50%;
  content: counter(credential, decimal-leading-zero);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
  place-items: center;
}

.level-grid {
  counter-reset: level;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.level-card {
  counter-increment: level;
}

.level-card::before {
  display: block;
  margin-bottom: 1rem;
  color: var(--orange-dark);
  content: "0" counter(level);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.level-card h3 {
  margin: 0 0 0.8rem;
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.level-card p {
  margin: 0;
  color: var(--muted);
}

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

.requirements__panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--white);
  background: var(--blue-strong);
  border-radius: var(--radius-md);
}

.requirements__panel:nth-child(2) {
  background: var(--navy-deep);
}

.requirements__panel h3 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.requirements__panel .check-list li::before {
  background: var(--blue-light);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgb(32 50 74 / 6%);
}

.faq-item summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.35rem;
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  color: var(--white);
  background: var(--blue-strong);
  border-radius: 50%;
  content: "+";
  font-family: var(--body);
  transform: translateY(-50%);
  place-items: center;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  max-width: 70ch;
  padding: 0 1.35rem 1.35rem;
  color: var(--muted);
}

.faq-item__answer p {
  margin: 0;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-auto-rows: 14rem;
  grid-template-columns: repeat(12, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--mist);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  grid-column: span 4;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(9) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5),
.gallery-item:nth-child(10) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(32 50 74 / 58%), transparent 45%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.lightbox {
  width: min(92vw, 78rem);
  max-height: 92vh;
  padding: 0;
  color: var(--white);
  background: var(--navy-deep);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
  background: rgb(12 24 38 / 84%);
  backdrop-filter: blur(8px);
}

.lightbox__figure {
  display: grid;
  margin: 0;
}

.lightbox__image-wrap {
  min-height: 18rem;
  max-height: 72vh;
  display: grid;
  background: #122236;
  place-items: center;
}

.lightbox__image {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.lightbox__caption {
  padding: 1rem 4.5rem 1.2rem 1.25rem;
  color: rgb(255 255 255 / 84%);
}

.lightbox__close,
.lightbox__control {
  position: absolute;
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  padding: 0;
  color: var(--navy-deep);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  place-items: center;
}

.lightbox__close {
  top: 0.8rem;
  right: 0.8rem;
}

.lightbox__control {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__control--prev {
  left: 0.8rem;
}

.lightbox__control--next {
  right: 0.8rem;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: 1fr;
}

.contact-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card a {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 720;
}

.contact-card a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.contact-map {
  width: 100%;
  min-height: clamp(22rem, 45vw, 31rem);
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cta-band {
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background: var(--orange-dark);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.cta-band p {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 85%);
}

.cta-band .button {
  flex: 0 0 auto;
  color: var(--navy-deep);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.site-footer {
  padding-block: clamp(4rem, 8vw, 6rem) 2rem;
  color: var(--white);
  background: var(--navy-deep);
}

.site-footer__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer__intro {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: rgb(255 255 255 / 70%);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.social-link {
  display: inline-grid;
  width: 2.8rem;
  aspect-ratio: 1;
  color: var(--navy-deep);
  text-decoration: none;
  background: var(--white);
  border-radius: 50%;
  place-items: center;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--white);
  background: var(--orange-dark);
}

.social-link:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

.social-link--labelled {
  width: auto;
  padding: 0 1rem;
  font-weight: 700;
  border-radius: 999px;
  grid-auto-flow: column;
  gap: 0.45rem;
}

.social-links--footer .social-link {
  color: var(--navy-deep);
  background: var(--blue-light);
}

.social-links--footer .social-link:hover,
.social-links--footer .social-link:focus-visible {
  color: var(--white);
  background: var(--orange-dark);
}

.site-footer h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.site-footer__links {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__links a {
  color: rgb(255 255 255 / 76%);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--blue-light);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 3rem;
  color: rgb(255 255 255 / 55%);
  border-top: 1px solid rgb(255 255 255 / 14%);
  font-size: 0.82rem;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
  place-items: center;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 70rem) {
  .site-nav,
  .site-header .site-header__inner > .language-switcher {
    display: none;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 52rem) {
  :root {
    --header-height: 4.75rem;
  }

  .brand img {
    width: 3.6rem;
  }

  .brand__wordmark {
    font-size: 0.9rem;
  }

  .hero {
    min-height: min(44rem, calc(100svh - var(--chrome-height)));
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgb(25 54 82 / 92%) 0%, rgb(25 54 82 / 22%) 90%),
      linear-gradient(90deg, rgb(25 54 82 / 40%), transparent);
  }

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

  .split--reverse .split__media {
    order: initial;
  }

  .wave-image {
    min-height: 22rem;
  }

  .programme-grid,
  .benefit-grid,
  .requirements,
  .level-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-stack {
    grid-template-columns: 1fr;
  }

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

  .fact-strip,
  .schedule {
    grid-template-columns: 1fr;
  }

  .fact + .fact,
  .schedule__item + .schedule__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .gallery-grid {
    grid-auto-rows: 12rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .cta-band__inner {
    display: grid;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 36rem) {
  :root {
    --announcement-height: 3.4rem;
  }

  .announcement__link {
    font-size: 0.74rem;
  }

  .brand__wordmark {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12.5vw, 4rem);
  }

  .hero__actions,
  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .programme-card {
    min-height: 29rem;
  }

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

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

  .gallery-item,
  .gallery-item:nth-child(n) {
    min-height: 15rem;
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-bubble-layer {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .button,
  .language-switcher,
  .menu-toggle,
  .info-card,
  .benefit-card,
  .level-card,
  .contact-card,
  .faq-item {
    border: 1px solid currentColor;
  }
}
