/* ---------- Fonts (self-hosted, SIL OFL) ---------- */
/* Fredoka has no Maltese letters (Ġ, Ħ, Ċ, Ż), so keep it for headings without them.
   Nunito and Oswald both cover Maltese. */
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/fredoka-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("/assets/fonts/nunito-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("/assets/fonts/nunito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("/assets/fonts/oswald-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("/assets/fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens (KidVenture brand colours) ---------- */
:root {
  --white: #FFFFFF;
  --cream: #FFF6EC;
  --ink: #1E2455;
  --ink-soft: #4A5070;

  --blue: #313C91;
  --blue-dark: #252D70;
  --blue-deep: #1C2359;
  --blue-soft: #E9EBF8;
  --snow: #BFC5E7;

  --orange: #F78820;
  --orange-text: #E07000;   /* orange for large text on white */
  --orange-light: #FFB45C;  /* orange for text on dark blue */
  --orange-soft: #FFEBD6;

  --red: #EA483C;
  --red-btn: #D93A2E;       /* red that passes contrast with white text */
  --red-soft: #FDE4E1;

  --sun: #F9B233;
  --whatsapp: #178C47;

  --font-display: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --font-label: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 1px 2px rgb(30 36 85 / .06), 0 10px 30px rgb(30 36 85 / .1);

  --gutter: clamp(16px, 4vw, 32px);
  --section-pad: clamp(64px, 9vw, 112px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .25vw, 1.125rem);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
}
/* Stop sliding-in animations from making phones zoom out */
html { overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  color: var(--blue);
}
h2 { font-size: clamp(2rem, 1.5rem + 2.3vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.1rem + .5vw, 1.45rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

[hidden] { display: none !important; }
.nowrap { white-space: nowrap; }
.i { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 8px; }

.container { width: min(1180px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 10px;
  text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 16px; }

.eyebrow {
  font: 600 1rem/1.2 var(--font-label);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red-btn);
  margin-bottom: .6rem;
}

/* Poster-style "burst" dashes either side of a heading */
.burst { display: inline-flex; align-items: center; gap: .35em; }
.burst::before, .burst::after {
  content: ""; flex: none; width: .9em; height: .9em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg stroke='%23F78820' stroke-width='4.5' stroke-linecap='round'%3E%3Cpath d='M26 7l9 7M20 20h16M26 33l9-7'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.burst::before { transform: scaleX(-1); }
@media (max-width: 560px) { .burst::before, .burst::after { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 54px;
  padding: .8em 1.6em;
  border: 2.5px solid transparent;
  border-radius: 999px;
  font: 600 1.1rem/1 var(--font-display);
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(2px); }
.btn-red { background: var(--red-btn); color: #fff; box-shadow: 0 4px 0 #A12A21; }
.btn-red:hover { background: #C9322A; box-shadow: 0 6px 0 #A12A21; }
.btn-red:active { box-shadow: 0 1px 0 #A12A21; }
.btn-ghost { background: var(--white); color: var(--blue); border-color: var(--blue); box-shadow: 0 4px 0 var(--blue); }
.btn-ghost:hover { background: var(--blue-soft); box-shadow: 0 6px 0 var(--blue); }
.btn-ghost:active { box-shadow: 0 1px 0 var(--blue); }
.btn-small { min-height: 44px; padding: .55em 1.2em; font-size: 1rem; }
.btn .icon { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linejoin: round; }

/* ---------- Announcement ---------- */
.announce { background: var(--blue); color: #fff; font-size: .95rem; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding-block: 10px; text-align: center; }
.announce p { margin: 0; }
.announce a { color: var(--orange-light); font-weight: 800; text-underline-offset: 3px; white-space: nowrap; }
.announce-flake { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--snow); stroke-width: 1.8; stroke-linecap: round; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(255 255 255 / .92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 2px 18px rgb(30 36 85 / .12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.brand img { height: 58px; width: auto; }

.site-nav > ul { display: flex; align-items: center; gap: clamp(12px, 1.7vw, 26px); }
.site-nav a:not(.btn) {
  font: 500 1.05rem/1 var(--font-display);
  color: var(--blue);
  text-decoration: none;
  padding: 8px 2px;
  background: linear-gradient(var(--orange), var(--orange)) left bottom / 0 3px no-repeat;
  transition: background-size .2s ease;
}
.site-nav a:not(.btn):hover, .site-nav a[aria-current="page"] { background-size: 100% 3px; }

/* Programmes dropdown */
.has-sub { position: relative; display: flex; align-items: center; gap: 2px; }
.has-sub::after { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 16px; }
.sub-toggle {
  width: 28px; height: 28px; padding: 0;
  border: 0; border-radius: 8px; background: none; color: var(--blue);
  display: grid; place-items: center; cursor: pointer;
}
.sub-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: rotate .2s ease; }
.sub-toggle[aria-expanded="true"] svg { rotate: 180deg; }
.sub {
  position: absolute; top: calc(100% + 12px); left: -18px; z-index: 5;
  min-width: 300px; padding: 10px;
  display: grid; gap: 2px;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 18px 40px rgb(30 36 85 / .18), 0 0 0 1px rgb(49 60 145 / .08);
  opacity: 0; visibility: hidden; translate: 0 8px; scale: .96; transform-origin: 20% 0;
  transition: opacity .18s ease, translate .18s ease, scale .18s ease, visibility 0s linear .18s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub, .sub.open { opacity: 1; visibility: visible; translate: 0 0; scale: 1; transition-delay: 0s; }
.site-nav .sub a:not(.btn) {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 12px; border-radius: 12px; background: none; font-size: 1rem; white-space: nowrap;
}
.site-nav .sub a:not(.btn):hover { background: var(--blue-soft); }
.sub small { font: 600 .74rem/1 var(--font-label); letter-spacing: .06em; text-transform: uppercase; color: var(--orange-text); white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border: 2.5px solid var(--blue); border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  position: absolute; left: 50%; width: 20px; height: 2.5px; margin-left: -10px;
  background: var(--blue); border-radius: 2px; content: "";
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle-bar { top: 50%; margin-top: -1.25px; }
.nav-toggle-bar::before { top: -7px; }
.nav-toggle-bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .brand img { height: 48px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    max-height: calc(100vh - 80px); overflow-y: auto;
    background: var(--white);
    box-shadow: 0 16px 24px rgb(30 36 85 / .12);
    padding: 8px var(--gutter) 24px;
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a:not(.btn) { display: block; padding: 14px 4px; font-size: 1.2rem; background: none; border-bottom: 1px solid var(--blue-soft); }
  .site-nav a[aria-current="page"] { color: var(--red-btn); }
  .has-sub { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid var(--blue-soft); }
  .has-sub > a:not(.btn) { border-bottom: 0; }
  .has-sub::after { display: none; }
  .sub-toggle { width: 48px; height: 48px; }
  .sub {
    position: static; grid-column: 1 / -1;
    min-width: 0; padding: 0 0 10px 14px;
    box-shadow: none; border-radius: 0;
    opacity: 1; visibility: visible; translate: none; scale: none;
    display: none;
  }
  .sub.open { display: grid; }
  .site-nav .sub a:not(.btn) { padding: 11px 4px; font-size: 1.05rem; border-bottom: 0; white-space: normal; line-height: 1.3; }
  .site-nav .btn { width: 100%; margin-top: 14px; min-height: 52px; font-size: 1.1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}
.hero-blob { position: absolute; z-index: -1; pointer-events: none; }
.hero-blob-blue { fill: var(--blue); width: clamp(220px, 34vw, 480px); left: clamp(-240px, -12vw, -90px); top: clamp(-200px, -10vw, -80px); }
.hero-blob-orange { fill: var(--orange); width: clamp(200px, 30vw, 420px); right: clamp(-220px, -11vw, -90px); top: clamp(80px, 12vw, 180px); transform: rotate(140deg); }
.squiggle { position: absolute; fill: none; stroke-width: 4; stroke-linecap: round; pointer-events: none; }
.squiggle-hero { stroke: var(--orange); width: clamp(120px, 16vw, 220px); left: clamp(-10px, 3vw, 60px); top: clamp(120px, 16vw, 230px); z-index: -1; }

.hero-inner { display: grid; justify-items: center; text-align: center; gap: clamp(28px, 4vw, 44px); }
.hero-copy { max-width: 920px; }

.pill {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 20px;
  background: var(--blue); color: #fff;
  border-radius: 999px;
  font: 600 clamp(1rem, .9rem + .5vw, 1.3rem)/1.2 var(--font-label);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pill-orange { color: var(--orange-light); }

.tagline {
  font-size: clamp(3rem, 1.6rem + 6.6vw, 6.4rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 .28em;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0 .28em;
}
.t-play { color: var(--orange-text); }
.t-learn { color: var(--blue); }
.t-grow { color: var(--red); }
.tagline span { display: inline-block; }

.lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); color: var(--ink-soft); max-width: 34em; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 26px; }

.hero-photo { position: relative; width: min(920px, 100%); }
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow), 0 0 0 5px #fff, 0 0 0 9px var(--blue-soft);
}
.photo-frame img { width: 100%; }
.badge-venues {
  position: absolute; right: clamp(-6px, 1vw, 16px); top: clamp(-40px, -3vw, -24px);
  width: clamp(92px, 11vw, 128px); aspect-ratio: 1;
  border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 5px var(--red), 0 8px 20px rgb(30 36 85 / .25);
  font: 600 clamp(.8rem, .7rem + .35vw, 1rem)/1 var(--font-label);
  text-transform: uppercase; letter-spacing: .04em;
  transform: rotate(8deg);
}
.badge-venues strong { font-size: 2.6em; line-height: .95; color: var(--orange-light); }
.flake { position: absolute; fill: none; stroke: var(--snow); stroke-width: 1.6; stroke-linecap: round; pointer-events: none; }
.flake-1 { width: clamp(36px, 5vw, 60px); left: clamp(-20px, -2vw, -8px); top: -34px; animation: float 6s ease-in-out infinite; }
.flake-2 { width: clamp(26px, 3.4vw, 42px); left: 30%; bottom: -30px; animation: float 7s ease-in-out infinite reverse; }

@media (max-width: 700px) {
  .hero-blob-blue { width: 170px; left: -110px; top: -80px; }
  .hero-blob-orange { width: 150px; right: -100px; top: 60px; }
  .squiggle-hero { display: none; }
  .badge-venues { display: none; }
  .flake-2 { display: none; }
}
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(20deg); } }

.facts {
  position: relative;
  margin: clamp(-34px, -3vw, -22px) auto 0;
  width: min(1000px, 100%);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--orange);
  border-radius: 999px;
  padding: 14px clamp(16px, 3vw, 36px);
  box-shadow: 0 6px 0 #C96A12;
}
.facts li { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 10px; }
.facts li + li { border-left: 2px dashed rgb(30 36 85 / .35); }
.facts svg { width: 36px; height: 36px; flex: none; fill: none; stroke: var(--ink); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.facts span { font: 600 clamp(1rem, .9rem + .35vw, 1.2rem)/1.15 var(--font-display); color: var(--ink); }
.facts small { display: block; font: 600 .78rem/1.2 var(--font-label); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }
.facts li:nth-child(3) span { font-family: var(--font-body); font-weight: 800; }

@media (max-width: 860px) {
  .facts { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); row-gap: 4px; margin-top: 20px; }
  .facts li { justify-content: flex-start; }
  .facts li + li { border-left: 0; }
  .facts li:nth-child(even) { border-left: 2px dashed rgb(30 36 85 / .35); }
  .facts svg { width: 30px; height: 30px; }
}
@media (max-width: 420px) {
  .facts { padding: 12px; }
  .facts li { gap: 8px; padding: 8px 6px; }
  .facts svg { width: 26px; height: 26px; }
}

/* ---------- Sections ---------- */
.section { padding: var(--section-pad) 0; position: relative; }
.section-head { max-width: 700px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.1rem; }

/* Activities */
.activities { padding-top: clamp(56px, 7vw, 88px); }
.acts { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px, 2vw, 24px); }
.act {
  flex: 1 1 240px; max-width: 270px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.act:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.act-icon {
  width: 76px; height: 76px; margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 0 5px #fff, 0 0 0 7px var(--c);
}
.act-icon svg { width: 38px; height: 38px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.act h3 {
  font: 600 1.2rem/1.2 var(--font-label);
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--ink);
  margin-bottom: .45em;
}
.act p { color: var(--ink-soft); margin: 0; font-size: 1rem; }

@media (max-width: 560px) {
  .act { flex-basis: 100%; max-width: none; display: grid; grid-template-columns: 64px 1fr; text-align: left; gap: 0 16px; align-items: start; padding: 20px; }
  .act-icon { grid-row: span 2; width: 60px; height: 60px; margin: 2px 0 0; box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--c); }
  .act-icon svg { width: 30px; height: 30px; }
}

/* Pillars */
.pillars { background: var(--cream); }
.pillars-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.pillars-photos { position: relative; min-height: 460px; }
.pillars-photos::before {
  content: ""; position: absolute; inset: 6% 12% 10% 4%;
  background: var(--blue);
  border-radius: 58% 42% 55% 45% / 48% 52% 48% 52%;
  transform: rotate(-8deg);
}
.pillars-photos::after {
  content: ""; position: absolute; width: 34%; aspect-ratio: 1; right: 4%; bottom: 0;
  background: var(--orange);
  border-radius: 50%;
}
.ph { position: absolute; filter: drop-shadow(0 12px 20px rgb(30 36 85 / .2)); }
.ph-smile { width: 72%; left: 0; top: 4%; z-index: 1; }
.ph-hang { width: 50%; right: 0; bottom: 2%; z-index: 2; }
.squiggle-photos { stroke: var(--red); width: 34%; left: 6%; bottom: -2%; z-index: 3; transform: rotate(-6deg); }

.pillar-list { display: grid; gap: 4px; margin-top: 20px; }
.pillar-list li {
  display: grid; grid-template-columns: minmax(96px, 120px) 1fr; gap: 18px; align-items: baseline;
  padding: 18px 0;
  border-top: 2px dashed rgb(49 60 145 / .2);
}
.pillar-list h3 { font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.5rem); margin: 0; font-weight: 700; }
.pillar-list p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.p-play { color: var(--orange-text); }
.p-learn { color: var(--blue); }
.p-grow { color: var(--red); }

@media (max-width: 860px) {
  .pillars-inner { grid-template-columns: 1fr; }
  .pillars-photos { min-height: 0; aspect-ratio: 1.15; max-width: 480px; width: 100%; margin: 0 auto; }
}

/* Venues */
.venues { background: var(--blue); color: #fff; padding: calc(var(--section-pad) + 30px) 0 calc(var(--section-pad) + 40px); }
.venues h2 { color: #fff; }
.venues .eyebrow { color: var(--orange-light); }
.venues .section-head p:not(.eyebrow) { color: rgb(255 255 255 / .85); }
.burst-light::before, .burst-light::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg stroke='%23FFB45C' stroke-width='4.5' stroke-linecap='round'%3E%3Cpath d='M26 7l9 7M20 20h16M26 33l9-7'/%3E%3C/g%3E%3C/svg%3E");
}
.wave { position: absolute; left: 0; width: 100%; height: clamp(36px, 5vw, 72px); pointer-events: none; }
.wave-top { top: -1px; fill: var(--cream); }
.wave-bottom { bottom: -1px; fill: var(--white); }

.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 32px); max-width: 980px; margin: 0 auto; }
.venue {
  position: relative;
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
  padding-top: clamp(40px, 4.5vw, 52px);
  box-shadow: 0 8px 0 var(--blue-dark);
}
.venue-pin {
  position: absolute; top: -26px; left: clamp(26px, 3.5vw, 40px);
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-btn);
  box-shadow: 0 0 0 5px var(--white);
}
.venue-pin svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linejoin: round; }
.venue-town { font: 600 1.05rem/1 var(--font-label); letter-spacing: .1em; text-transform: uppercase; color: var(--red-btn); margin-bottom: 10px; }
.venue h3 { font-family: var(--font-body); font-weight: 900; font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); line-height: 1.2; color: var(--blue); }
.venue-time { color: var(--ink-soft); margin-bottom: 18px; }
.venue-link { font-weight: 800; color: var(--blue); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.venue-link:hover { color: var(--red-btn); }

@media (max-width: 760px) { .venue-grid { grid-template-columns: 1fr; row-gap: 44px; } }

/* How to apply */
.how { padding-top: calc(var(--section-pad) - 20px); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 36px); counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 70px 28px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 28px; top: -24px;
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: var(--ink);
  box-shadow: 0 0 0 5px #fff;
  font: 700 1.9rem/1 var(--font-display);
}
.steps li:nth-child(2)::before { background: var(--blue); color: #fff; }
.steps li:nth-child(3)::before { background: var(--red-btn); color: #fff; }
.steps h3 { color: var(--ink); }
.steps p { color: var(--ink-soft); margin: 0; }

.steps li:nth-child(4)::before { background: var(--whatsapp); color: #fff; }
.step-icon { position: absolute; top: 22px; right: 22px; color: var(--snow); }
.step-icon .i { width: 34px; height: 34px; stroke-width: 1.8; }
@media (max-width: 1000px) { .steps { grid-template-columns: 1fr 1fr; row-gap: 48px; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* Apply */
.apply { background: var(--cream); }
.apply-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.apply-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.1rem; }
.contact-list { display: grid; gap: 10px; margin-top: 26px; }
.contact-list a {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 1px 2px rgb(30 36 85 / .06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.contact-list a:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact-list strong { display: block; font: 600 .82rem/1.2 var(--font-label); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.contact-list span:last-child { font-weight: 800; overflow-wrap: anywhere; }
.contact-icon { flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; }
.contact-icon svg { width: 23px; height: 23px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-green { background: var(--whatsapp); }
.ci-orange { background: var(--orange); }
.ci-orange svg { stroke: var(--ink); }
.ci-blue { background: var(--blue); }

.enquiry {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 8px 0 var(--blue), var(--shadow);
}
.enquiry h3 { font-size: clamp(1.5rem, 1.3rem + .8vw, 1.9rem); margin-bottom: .3em; }
.form-note { color: var(--ink-soft); font-size: .95rem; }
.field { margin: 0 0 18px; border: 0; padding: 0; min-width: 0; }
.field label, .field legend { display: block; font-weight: 800; margin-bottom: 6px; padding: 0; }
.optional { font-weight: 600; color: var(--ink-soft); }
.field input[type="text"], .field textarea {
  width: 100%;
  font: inherit; color: inherit;
  padding: 12px 14px;
  border: 2px solid #CDD1E4;
  border-radius: 14px;
  background: #FBFBFE;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input[type="text"]:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgb(49 60 145 / .18); }
.field input[aria-invalid="true"] { border-color: var(--red-btn); }
.field textarea { resize: vertical; min-height: 96px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; margin: 0 !important; font-weight: 700 !important; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  display: inline-block; padding: 9px 18px;
  border: 2px solid #CDD1E4; border-radius: 999px;
  background: #FBFBFE;
  transition: background-color .15s ease, border-color .15s ease;
}
.chip input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }
.form-error { color: var(--red-btn); font-weight: 800; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-actions .btn { flex: 1 1 230px; white-space: nowrap; }

@media (max-width: 860px) { .apply-inner { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--blue-deep); color: rgb(255 255 255 / .8); padding: 56px 0 28px; font-size: .98rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.15fr .9fr; gap: 36px 40px; }
.footer-logo { display: inline-block; background: #fff; border-radius: 18px; padding: 10px 16px; }
.footer-logo img { height: 56px; width: auto; }
.footer-tag { margin: 12px 0 0; font: 600 1.05rem/1 var(--font-label); letter-spacing: .1em; text-transform: uppercase; }
.footer-tag span:nth-child(1) { color: var(--orange-light); }
.footer-tag span:nth-child(2) { color: var(--snow); }
.footer-tag span:nth-child(3) { color: #FF8A7E; }
.footer-about { margin: 14px 0 0; max-width: 34ch; font-size: .95rem; }
.footer-title { font: 600 1rem/1.2 var(--font-label); letter-spacing: .1em; text-transform: uppercase; color: var(--orange-light); margin: 8px 0 14px; }
.footer-list { display: grid; gap: 11px; }
.footer-list a { display: inline-flex; align-items: flex-start; gap: 10px; color: #fff; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.footer-list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-list .i { width: 18px; height: 18px; flex: none; margin-top: 3px; stroke: var(--snow); }
.footer-venues strong { display: block; }
.footer-venues span span, .footer-venues a > span { font-weight: 600; color: rgb(255 255 255 / .8); }
.footer-venues strong { color: #fff; }
.footer-links a { font-weight: 600; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / .12); font-size: .9rem; }
.footer-bottom p { margin: 0; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 800px) { .site-footer { padding-bottom: 110px; } }

/* Sticky Apply bar (phones) */
.sticky-apply {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 45;
  display: none; align-items: center; gap: 10px;
  padding: 8px; border-radius: 999px;
  background: rgb(255 255 255 / .94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgb(30 36 85 / .25), 0 0 0 1px rgb(49 60 145 / .08);
  translate: 0 140%;
  transition: translate .4s cubic-bezier(.34, 1.56, .64, 1);
}
.sticky-apply.show { translate: 0 0; }
.sticky-apply .btn { flex: 1; min-height: 50px; }
.sticky-wa { position: relative; flex: none; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--whatsapp); color: #fff; }
.sticky-wa svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linejoin: round; }
@media (max-width: 800px) { .sticky-apply { display: flex; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
