@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Serif:wght@600;700&display=swap');

:root {
  --charcoal: #0B1220;
  --slate: #152238;
  --slate-deep: #0F1A2E;
  --mint: #2DD4BF;
  --mint-deep: #14B8A6;
  --mint-light: #5EEAD4;
  --frost: #E8F4F2;
  --white: #FFFFFF;
  --amber: #F59E0B;
  --muted: #94A3B8;
  --link-on-dark: #2DD4BF;
  --link-on-panel: #5EEAD4;
  --border: rgba(255, 255, 255, 0.12);
  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  background: var(--charcoal);
  color: var(--frost);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--link-on-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
a:hover { color: var(--mint-light); }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }

.surface-dark { background: var(--charcoal); color: var(--frost); }
.surface-panel { background: var(--slate); color: var(--frost); }
.surface-accent { background: var(--mint); color: var(--charcoal); }
.surface-amber { background: linear-gradient(160deg, #1a2740 0%, #243552 100%); color: var(--frost); }
.surface-dark a:not(.btn),
.surface-panel a:not(.btn),
.surface-amber a:not(.btn) { color: var(--link-on-dark); }
.surface-accent a:not(.btn) { color: var(--charcoal); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 4000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  min-height: var(--header-h);
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
body:not(.has-cinematic-hero) .site-header {
  background: rgba(11, 18, 32, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  position: relative;
  z-index: 1002;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: var(--frost) !important;
  flex-shrink: 0;
}
.logo:hover { color: var(--white) !important; }
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1a2b45, #0f1a2e);
  border: 1px solid rgba(45, 212, 191, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mint);
}
.logo-text {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
.nav-desktop a {
  color: rgba(232, 244, 242, 0.88) !important;
  text-decoration: none !important;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.94rem;
}
.nav-desktop a:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.06);
}
.nav-desktop a.nav-active {
  color: var(--mint) !important;
  background: rgba(45, 212, 191, 0.12);
}

.header-cta { margin-left: auto; flex-shrink: 0; }

/* Buttons — white text on mint */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
a.btn-primary,
button.btn-primary,
.btn-primary {
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--mint) 55%, var(--mint-deep) 100%);
  color: var(--white) !important;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(45, 212, 191, 0.28);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}
a.btn-primary:hover,
button.btn-primary:hover,
.btn-primary:hover {
  background: linear-gradient(180deg, #7EEADB 0%, var(--mint-light) 50%, var(--mint) 100%);
  color: var(--white) !important;
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.38);
}
a.btn-outline,
.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--frost) !important;
  border-color: rgba(232, 244, 242, 0.45);
}
a.btn-outline:hover,
.btn-outline:hover {
  border-color: var(--frost);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
}
.surface-accent a.btn-primary,
.surface-accent .btn-primary {
  background: var(--charcoal);
  color: var(--white) !important;
  box-shadow: none;
  text-shadow: none;
}
.surface-accent a.btn-primary:hover {
  background: #152238;
  color: var(--white) !important;
}
.surface-accent a.btn-outline,
.surface-accent .btn-outline {
  border-color: rgba(11, 18, 32, 0.45);
  color: var(--charcoal) !important;
  background: rgba(255, 255, 255, 0.35);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(21, 34, 56, 0.75);
  padding: 12px 11px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--frost);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s ease;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.drawer-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block;
}
.drawer-overlay[hidden] { display: none !important; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 92vw);
  height: 100%;
  height: 100dvh;
  z-index: 1500;
  padding: 20px 18px 32px;
  transform: translateX(110%);
  transition: transform .3s var(--ease);
  border-left: 1px solid var(--border);
  overflow-y: auto;
  background: #122033 !important;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--frost);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px 14px;
  font-weight: 600;
}
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
}
.mobile-drawer nav a {
  color: var(--frost) !important;
  text-decoration: none !important;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid transparent;
}
.mobile-drawer nav a.nav-active,
.mobile-drawer nav a:hover {
  background: rgba(45, 212, 191, 0.12);
  color: var(--mint-light) !important;
  border-color: rgba(45, 212, 191, 0.22);
}
.mobile-drawer .drawer-cta {
  margin-top: auto;
  padding-top: 24px;
}
.mobile-drawer .drawer-cta .btn {
  width: 100%;
}

.no-js-nav { display: none; }

/* ——— Layout ——— */
main { position: relative; z-index: 1; isolation: isolate; }
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
}
.section {
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.section-tight { padding: 56px 0; position: relative; }
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(45, 212, 191, 0.12), transparent 55%),
    var(--charcoal);
}
.page-hero h1 {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 18ch;
}
.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 0;
}

h1, h2, h3, h4 {
  font-family: 'IBM Plex Serif', serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--frost);
}
h2 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); margin: 0 0 14px; }
h3 { font-size: 1.22rem; margin: 0 0 10px; }
p { margin: 0 0 1em; }
.mono-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 12px;
}
.muted { color: var(--muted); }
.disclaimer {
  font-size: 0.94rem;
  color: var(--muted);
  border-left: 3px solid var(--mint);
  padding: 12px 0 12px 16px;
  margin: 28px 0 0;
  background: rgba(45, 212, 191, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ——— Hero ——— */
.has-cinematic-hero main > .hero-cinematic { margin-top: 0; }
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--frost);
  overflow: hidden;
  isolation: isolate;
}
.hero-cinematic__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-cinematic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.55) 0%, rgba(11, 18, 32, 0.35) 35%, rgba(11, 18, 32, 0.94) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.4) 58%, rgba(11, 18, 32, 0.2) 100%);
  z-index: 1;
}
/* All text lives here — always starts BELOW the fixed header */
.hero-cinematic__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 24px) 24px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.hero-cinematic__badge {
  position: static;
  align-self: flex-end;
  flex-shrink: 0;
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  border: 1px solid rgba(45, 212, 191, 0.45);
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.72);
  color: var(--mint);
  backdrop-filter: blur(8px);
  width: fit-content;
  max-width: 100%;
}
.hero-cinematic__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: end;
  width: 100%;
  margin-top: auto;
}
.hero-cinematic__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.hero-cinematic__content h1 {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(2.05rem, 4.2vw, 3.25rem);
  max-width: 18ch;
  margin: 0 0 18px;
  line-height: 1.1;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.hero-cinematic__content .sub {
  max-width: 48ch;
  font-size: 1.1rem;
  color: rgba(232, 244, 242, 0.92);
  margin-bottom: 28px;
}
.hero-cinematic__side {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  background: rgba(11, 18, 32, 0.35);
  max-width: 520px;
  width: 100%;
  justify-self: end;
}
.hero-cinematic__side img {
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 380px;
  object-fit: cover;
  display: block;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-trust {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ——— Grids / cards ——— */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.grid-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.grid-programmes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  background: rgba(15, 26, 46, 0.92);
  transition: border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  max-width: 100%;
}
.card:hover {
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}
.card > img,
.card .card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 160px;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}
.card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.card-body h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
}
.card-body p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 8px;
  color: rgba(232, 244, 242, 0.88);
}
.card-body p:last-of-type { margin-bottom: 10px; }
.card-body > a {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.card-body > a::after { content: ' →'; }
.card.card-plain,
.card:not(:has(img)):not(:has(.card-media)) {
  padding: 16px;
}
.card:not(:has(.card-body)) > h3,
.card:not(:has(.card-body)) > p,
.card:not(:has(.card-body)) > .track-pill,
.card:not(:has(.card-body)) > a {
  margin-left: 14px;
  margin-right: 14px;
}
.card:not(:has(.card-body)) > h3:first-child,
.card:not(:has(.card-body)) > .track-pill:first-child {
  margin-top: 14px;
}
.card:not(:has(.card-body)) > p:last-child,
.card:not(:has(.card-body)) > a:last-child {
  margin-bottom: 14px;
}

.track-pill {
  display: inline-flex;
  align-self: flex-start;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.15);
  color: var(--mint);
  margin-bottom: 6px;
}
.track-pill.income {
  background: rgba(245, 158, 11, 0.18);
  color: #FBBF24;
}

.stat-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  background: rgba(11, 18, 32, 0.35);
}
.stat-block .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2rem;
  color: var(--mint);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.stat-block p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.track-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 28px;
}
.track-tabs button {
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--frost);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}
.track-tabs button.is-active {
  background: linear-gradient(180deg, var(--mint-light), var(--mint));
  color: var(--white);
  border-color: transparent;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.25);
}
.track-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(11, 18, 32, 0.4);
}
.track-panel[hidden] { display: none !important; }
.track-panel ul { margin: 0; padding-left: 1.15em; }
.track-panel li { margin-bottom: 0.5em; color: rgba(232, 244, 242, 0.9); }

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}
.split-band img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  justify-self: center;
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  background: rgba(11, 18, 32, 0.45);
  transition: border-color .2s ease;
}
.accordion details:hover { border-color: rgba(45, 212, 191, 0.3); }
.accordion summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: var(--frost);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  float: right;
  color: var(--mint);
  font-weight: 700;
}
.accordion details[open] summary::after { content: '–'; }
.accordion details[open] summary {
  color: var(--mint);
  margin-bottom: 12px;
}

.cta-band {
  text-align: center;
  padding: 56px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: rgba(255, 255, 255, 0.18);
}
.surface-dark .cta-band,
.surface-panel .cta-band {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.22);
}
.cta-band h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}
.cta-band p {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1em; }
.prose li { margin-bottom: 0.45em; }

.programme-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(11, 18, 32, 0.35);
  display: grid;
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  gap: 0;
}
.programme-block .programme-media {
  min-height: 100%;
}
.programme-block .programme-media img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-height: 220px;
  object-fit: cover;
}
.programme-block .programme-copy {
  padding: 16px 18px;
}
.programme-block .programme-copy h3 {
  font-size: 1.08rem;
}
.programme-block .programme-copy p {
  font-size: 0.94rem;
  margin-bottom: 0.75em;
}
.programme-block .meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.programme-block.no-media {
  grid-template-columns: 1fr;
}
.programme-block.no-media .programme-copy { padding: 18px; }

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 0 0 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  max-width: 560px;
}
.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 280px;
  object-fit: cover;
}

/* Dark form shell + dark fields */
.form-card {
  background: #0F1A2E;
  color: var(--frost);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-card label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
  color: var(--frost);
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #152238;
  color: var(--frost);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: 2px solid var(--mint);
  outline-offset: 1px;
  border-color: rgba(45, 212, 191, 0.55);
}
.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #94A3B8;
}
.form-card select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394A3B8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-card select option {
  background: #152238;
  color: var(--frost);
}
.form-card .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(232, 244, 242, 0.88);
}
.form-card .consent input { width: auto; margin-top: 4px; accent-color: var(--mint); }
.form-card .btn-primary {
  width: 100%;
  margin-top: 8px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px 32px;
}
.footer-grid h2, .footer-grid h3 {
  font-size: 1.05rem;
  margin: 0 0 12px;
}
.footer-grid nav a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
  color: var(--link-on-panel) !important;
}
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 22px 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-bottom .legal-links a {
  color: var(--link-on-panel);
  margin-right: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1600;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  background: #152238;
}
.cookie-banner p { margin: 0; flex: 1 1 280px; font-size: 0.92rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions button {
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--frost);
  cursor: pointer;
  font-weight: 600;
}
.cookie-actions #cookieAccept {
  background: linear-gradient(180deg, var(--mint-light), var(--mint));
  color: var(--white);
  border-color: transparent;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.js .fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.js .fade-up.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .fade-up { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .grid-3,
  .grid-programmes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .programme-block { grid-template-columns: minmax(0, 140px) minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .split-band,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .split-band img { max-width: 100%; max-height: 260px; }
  .nav-desktop { gap: 0; }
  .nav-desktop a { padding: 8px 10px; font-size: 0.88rem; }
  .section { padding: 64px 0; }
  .hero-cinematic__stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-cinematic__side {
    max-width: 420px;
    justify-self: start;
  }
  .hero-cinematic__side img { max-height: 240px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav-desktop,
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-drawer { display: flex !important; }
  .drawer-overlay { display: block; }

  /* Hero: text always below fixed header via .hero-cinematic__inner padding */
  .hero-cinematic {
    min-height: auto;
  }
  .hero-cinematic__inner {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + 16px) 16px 32px;
    gap: 16px;
    max-width: none;
  }
  .hero-cinematic__stage {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .hero-cinematic__badge {
    align-self: flex-end;
    font-size: 0.62rem;
    padding: 7px 10px;
  }
  .hero-cinematic__content {
    max-width: none;
    order: 1;
  }
  .hero-cinematic__side {
    order: 2;
    max-width: none;
    justify-self: stretch;
  }
  .hero-cinematic__side img {
    max-height: 200px;
    aspect-ratio: 16 / 9;
  }
  .hero-cinematic__content .mono-label {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }
  .hero-cinematic__content h1 {
    max-width: none;
    font-size: clamp(1.55rem, 6.5vw, 1.95rem);
    margin-bottom: 10px;
    line-height: 1.18;
  }
  .hero-cinematic__content .sub {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: none;
  }
  .hero-actions {
    gap: 8px;
    margin-bottom: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.92rem;
    white-space: normal;
    text-align: center;
  }
  .hero-trust {
    font-size: 0.72rem;
    line-height: 1.45;
    word-break: break-word;
  }

  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }
  .page-hero { padding: calc(var(--header-h) + 28px) 0 28px; }
  .page-hero h1 { max-width: none; font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .grid-2,
  .grid-3,
  .grid-stats,
  .grid-programmes {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .track-panel { padding: 16px; }
  .programme-block {
    grid-template-columns: 1fr;
  }
  .programme-block .programme-media img {
    min-height: 0;
    max-height: 160px;
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .programme-block .programme-copy { padding: 14px 16px 16px; }
  .card > img,
  .card .card-media img {
    max-height: 140px;
  }
  .media-frame {
    max-width: 100%;
  }
  .media-frame img { max-height: 200px; }
  .split-band { gap: 20px; }
  .split-band img { max-height: 200px; }
  .cta-band { padding: 36px 18px; }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .logo-text { font-size: 1rem; }
  .wrap { padding: 0 16px; }
  .form-card { padding: 18px; }
  .stat-block { padding: 18px 14px; }
  .stat-block .num { font-size: 1.55rem; }
  .footer-grid { gap: 20px; padding-bottom: 24px; }

  html:not(.js) .no-js-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--slate);
  }
  html:not(.js) .no-js-nav a {
    color: var(--frost) !important;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.88rem;
  }
}

/* Short phones: keep hero compact so content never collides */
@media (max-width: 768px) and (max-height: 720px) {
  .hero-cinematic__inner {
    min-height: auto;
    padding-top: calc(var(--header-h) + 12px);
  }
  .hero-cinematic__content h1 {
    font-size: 1.45rem;
  }
  .hero-cinematic__content .sub {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .hero-cinematic__badge {
    align-self: stretch;
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }
  .grid-stats { gap: 10px; }
}

@media (min-width: 769px) {
  .no-js-nav { display: none !important; }
  .menu-toggle { display: none !important; }
  .mobile-drawer {
    display: none !important;
    transform: none;
  }
  .drawer-overlay { display: none !important; }
}
