/* =========================================================
   Components for the home page sections and inner pages.
   Base styles, tokens and the header/footer live in styles.css.
   ========================================================= */

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn-row-center { justify-content: center; }
.btn-light { background: var(--white); color: var(--blue); box-shadow: 0 4px 0 rgb(0 0 0 / .18); }
.btn-light:hover { background: var(--blue-soft); box-shadow: 0 6px 0 rgb(0 0 0 / .18); }
.btn-light-outline { background: transparent; color: var(--blue); border-color: var(--snow); }
.btn-big { min-height: 62px; padding-inline: 2.2em; font-size: 1.2rem; }
.btn .i { width: 1.15em; height: 1.15em; stroke-width: 2.4; }

/* ---------- Detail lists (icon + label + text) ---------- */
.detail-list { display: grid; gap: 14px; margin: 24px 0 0; }
.detail-list li { display: flex; gap: 14px; align-items: flex-start; }
.detail-list .i { width: 42px; height: 42px; padding: 9px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); stroke-width: 2; flex: none; }
.detail-list strong { display: block; font: 600 .8rem/1.3 var(--font-label); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.detail-list span { font-weight: 700; }

/* ---------- What is KidVenture? ---------- */
.discover-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.discover-lead { font: 600 clamp(1.2rem, 1.05rem + .6vw, 1.5rem)/1.45 var(--font-body); color: var(--blue); }
.discover-copy > p:not(.eyebrow):not(.discover-lead) { color: var(--ink-soft); font-size: 1.08rem; }
.discover-copy .btn { margin-top: 10px; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value {
  display: grid; grid-template-columns: 52px 1fr; column-gap: 14px; align-items: center;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 1px 2px rgb(30 36 85 / .06), 0 8px 24px rgb(30 36 85 / .08);
  border: 2px solid color-mix(in srgb, var(--c) 30%, transparent);
}
.value:last-child { grid-column: 1 / -1; width: min(100%, 320px); justify-self: center; }
.value .i { grid-row: span 2; width: 52px; height: 52px; padding: 12px; border-radius: 50%; background: var(--c); color: #fff; stroke-width: 2.2; }
.value strong { font: 600 1.2rem/1.1 var(--font-display); color: var(--ink); }
.value span { font-size: .92rem; color: var(--ink-soft); line-height: 1.35; }
@media (max-width: 860px) { .discover-inner { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .values { grid-template-columns: 1fr; } .value:last-child { width: 100%; } }

/* ---------- Age groups ---------- */
.groups { background: var(--cream); padding-bottom: calc(var(--section-pad) + 20px); }
.group-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); max-width: 1000px; margin: 0 auto; }
.group-card {
  --tone: var(--orange); --tone-soft: var(--orange-soft);
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 0 var(--tone), var(--shadow);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}
.group-blue { --tone: var(--blue); --tone-soft: var(--blue-soft); }
.group-orange { --tone: var(--orange); --tone-soft: var(--orange-soft); }
.group-card:hover { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px); }
.group-photo { position: relative; aspect-ratio: 16 / 10; background: var(--tone-soft); overflow: hidden; }
.group-photo img { width: 100%; height: 100%; object-fit: cover; transition: scale .6s ease; }

.group-card:hover .group-photo img { scale: 1.06; }
.group-ages {
  position: absolute; right: 18px; bottom: -1px;
  display: grid; place-items: center;
  width: 96px; height: 96px; border-radius: 50% 50% 0 0;
  padding-top: 8px;
  background: var(--white); color: var(--ink-soft);
  font: 600 .8rem/1 var(--font-label); letter-spacing: .08em; text-transform: uppercase;
}
.group-ages strong { font: 700 1.9rem/1 var(--font-display); color: var(--tone); letter-spacing: 0; }
.group-orange .group-ages strong { color: var(--orange-text); }
.group-body { padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.group-body h3 { font-size: clamp(2rem, 1.6rem + 1.4vw, 2.6rem); margin: 0; color: var(--tone); font-weight: 700; }
.group-orange .group-body h3 { color: var(--orange-text); }
.group-body p { color: var(--ink-soft); flex: 1; }
.group-body .btn { align-self: flex-start; }
@media (max-width: 760px) { .group-grid { grid-template-columns: 1fr; } }

/* ---------- Why parents choose ---------- */
.reasons { display: grid; gap: 14px; margin-top: 22px; }
.reasons li {
  display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: start;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgb(30 36 85 / .06);
}
.reason-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--c); color: #fff; }
.reason-icon .i { width: 28px; height: 28px; stroke-width: 2.1; }
.reasons h3 { font: 800 1.12rem/1.3 var(--font-body); color: var(--ink); margin: 2px 0 4px; letter-spacing: 0; }
.reasons p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.why-list .reasons { max-width: 820px; margin-inline: auto; }
.why-list .reasons li { background: var(--cream); }
.safeguard-note { display: flex; gap: 12px; align-items: center; justify-content: center; margin: 30px auto 0; color: var(--ink-soft); font-weight: 700; text-align: center; }
.safeguard-note .i { color: var(--whatsapp); width: 28px; height: 28px; }

/* ---------- Venues (home) ---------- */
.venue-address { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.venue-time { margin-bottom: 14px; }
.venue-highlight {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; margin-bottom: 14px;
  border-radius: 16px;
  background: #E4F5EA; color: #145C33;
}
.venue-highlight .i { width: 28px; height: 28px; flex: none; }
.venue-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 14px; }

/* Click-to-load Google map */
.map-embed { position: relative; border-radius: 18px; overflow: hidden; background: var(--blue-soft); }
.map-embed iframe { display: block; width: 100%; height: 240px; border: 0; }
.map-load {
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center;
  min-height: 48px; padding: 10px 16px;
  border: 0; border-radius: 18px;
  background: var(--blue-soft); color: var(--blue);
  font: 600 1rem/1 var(--font-display); cursor: pointer;
  transition: background-color .15s ease;
}
.map-load:hover { background: #DADDF3; }
.map-load .i { width: 22px; height: 22px; }
.map-embed-large { min-height: 360px; display: grid; place-items: center; align-content: center; gap: 12px; padding: 24px; }
.map-embed-large.is-loaded { padding: 0; display: block; min-height: 0; }
.map-embed-large iframe { height: 420px; }
.map-embed-large .map-load { width: auto; background: var(--white); box-shadow: 0 4px 0 var(--blue); border: 2.5px solid var(--blue); border-radius: 999px; }
.map-placeholder { display: grid; justify-items: center; gap: 4px; color: var(--blue); font: 600 1.4rem/1 var(--font-display); }
.map-placeholder .i { width: 64px; height: 64px; color: var(--red-btn); stroke-width: 1.8; }
.map-embed-large::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    linear-gradient(90deg, transparent 49%, rgb(49 60 145 / .12) 49%, rgb(49 60 145 / .12) 51%, transparent 51%) 0 0 / 60px 60px,
    linear-gradient(0deg, transparent 49%, rgb(49 60 145 / .12) 49%, rgb(49 60 145 / .12) 51%, transparent 51%) 0 0 / 60px 60px;
}
.map-embed-large > * { position: relative; }
.map-note { margin: 0; font-size: .85rem; color: var(--ink-soft); text-align: center; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.quote { margin: 0; padding: 26px; background: var(--cream); border-radius: var(--radius-lg); position: relative; }
.quote blockquote { margin: 0 0 14px; font: 500 1.15rem/1.45 var(--font-body); color: var(--ink); }
.quote figcaption { font-weight: 800; color: var(--blue); }
.quote figcaption span { display: block; font-weight: 600; color: var(--ink-soft); font-size: .9rem; }

/* ---------- Final call to apply ---------- */
.apply-cta { padding-top: calc(var(--section-pad) - 30px); }
.cta-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px 48px; align-items: center;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 40px;
  background: var(--blue); color: #fff;
  box-shadow: 0 10px 0 var(--blue-dark);
}
.cta-blob { position: absolute; z-index: -1; width: 560px; right: -200px; top: -240px; fill: #3E4BA5; }
.cta-card::after { content: ""; position: absolute; z-index: -1; width: 110px; height: 110px; left: -44px; bottom: -44px; border-radius: 50%; background: var(--orange); }
.cta-card h2 { color: #fff; font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem); }
.cta-card .eyebrow { color: var(--orange-light); }
.cta-copy > p:not(.eyebrow) { color: rgb(255 255 255 / .9); font-size: 1.15rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.cta-facts { display: grid; gap: 12px; }
.cta-facts li { display: flex; gap: 14px; align-items: center; padding: 14px 16px; border-radius: 20px; background: rgb(255 255 255 / .1); }
.cta-facts .i { width: 40px; height: 40px; padding: 8px; border-radius: 12px; background: var(--white); color: var(--blue); }
.cta-facts strong { display: block; font: 600 .8rem/1.3 var(--font-label); letter-spacing: .08em; text-transform: uppercase; color: var(--orange-light); }
.cta-facts span { font-weight: 700; }
.cta-note { grid-column: 1 / -1; display: flex; gap: 10px; align-items: center; margin: 0; font-size: .95rem; color: rgb(255 255 255 / .85); }
.cta-note .i { width: 22px; height: 22px; color: var(--orange-light); }
.cta-card .sparkle { fill: var(--orange-light); }
.cta-card .sp-1 { left: 44%; top: 12%; }
.cta-card .sp-2 { right: 6%; top: auto; bottom: 14%; fill: #fff; }
.cta-card .sp-3 { left: 6%; top: auto; bottom: 8%; fill: var(--snow); }
@media (max-width: 860px) { .cta-card { grid-template-columns: 1fr; } }

/* ---------- Inner page banner ---------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(48px, 7vw, 96px) 0 clamp(80px, 10vw, 130px);
  background: var(--blue); color: #fff; text-align: center;
}
.page-hero-orange { background: var(--orange); color: var(--ink); }
.ph-blob { position: absolute; z-index: -1; pointer-events: none; }
.ph-blob-1 { width: clamp(200px, 30vw, 420px); left: clamp(-200px, -10vw, -80px); top: clamp(-180px, -9vw, -70px); fill: var(--orange); }
.ph-blob-2 { width: clamp(180px, 26vw, 360px); right: clamp(-180px, -9vw, -70px); bottom: clamp(-160px, -8vw, -60px); fill: #4452A8; transform: rotate(140deg); }
.page-hero-orange .ph-blob-1 { fill: var(--blue); }
.page-hero-orange .ph-blob-2 { fill: #FFA24D; }
.squiggle-page { stroke: var(--orange-light); width: clamp(100px, 13vw, 180px); right: clamp(10px, 8vw, 140px); top: clamp(20px, 4vw, 50px); z-index: -1; }
.page-hero-orange .squiggle-page { stroke: #fff; }
.page-hero-inner { position: relative; max-width: 860px; }
.page-eyebrow { font: 600 1rem/1.2 var(--font-label); letter-spacing: .1em; text-transform: uppercase; color: var(--orange-light); margin: 0 0 12px; }
.page-hero-orange .page-eyebrow { color: var(--blue); }
.page-title { color: #fff; font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.8rem); font-weight: 700; margin: 0 0 .25em; }
.page-hero-orange .page-title { color: var(--ink); }
.page-lead { font-size: clamp(1.1rem, 1rem + .45vw, 1.3rem); color: rgb(255 255 255 / .9); max-width: 40em; margin: 0 auto; }
.page-hero-orange .page-lead { color: var(--ink); }
.page-hero-wave { position: absolute; left: 0; bottom: -1px; width: 100%; height: clamp(36px, 5vw, 72px); fill: var(--white); }
.page-hero .sparkle { fill: var(--orange-light); }
.page-hero .sp-1 { left: 2%; top: 18%; }
.page-hero .sp-2 { right: 2%; top: 60%; fill: #fff; }
.page-hero .sp-3 { left: 12%; top: 78%; fill: var(--snow); }
.page-hero-orange .sparkle { fill: #fff; }

.chip-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.chip-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: rgb(255 255 255 / .14); color: #fff;
  border: 2px solid rgb(255 255 255 / .35);
  font: 600 1rem/1 var(--font-display); text-decoration: none;
  transition: background-color .15s ease, translate .15s ease;
}
.chip-nav a:hover { background: rgb(255 255 255 / .26); translate: 0 -2px; }
.chip-nav .i { width: 20px; height: 20px; }

.age-sticker {
  display: inline-grid; place-items: center;
  width: 118px; height: 118px; margin: 22px auto 0; border-radius: 50%;
  background: var(--white); color: var(--ink-soft);
  box-shadow: 0 0 0 6px var(--red), 0 10px 24px rgb(30 36 85 / .25);
  font: 600 .85rem/1 var(--font-label); letter-spacing: .08em; text-transform: uppercase;
  rotate: -8deg;
}
.age-sticker strong { display: block; font: 700 2.2rem/1 var(--font-display); color: var(--blue); letter-spacing: 0; }

/* ---------- Programmes ---------- */
.programme-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.programme-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.1rem; }
.programme-groups { display: grid; gap: 16px; }
.mini-group {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 18px; align-items: center;
  padding: 12px 20px 12px 12px;
  border-radius: 26px; text-decoration: none; color: var(--ink);
  background: var(--tone-soft, var(--blue-soft));
  box-shadow: 0 6px 0 var(--tone, var(--blue));
  transition: translate .2s ease;
}
.mini-group:hover { translate: 0 -4px; }
.mini-group img { width: 96px; height: 96px; object-fit: cover; border-radius: 20px; }
.mini-group-text strong { display: block; font: 700 1.8rem/1 var(--font-display); color: var(--tone); }
.group-orange.mini-group .mini-group-text strong { color: var(--orange-text); }
.mini-group-text span { font-weight: 700; color: var(--ink-soft); }
.mini-group .i { width: 30px; height: 30px; color: var(--tone); }
.programme-others { background: var(--cream); }
.other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.other {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white); border-radius: var(--radius-lg);
  border-top: 8px solid var(--c);
  scroll-margin-top: 110px;
}
.other h2 { font-size: clamp(1.4rem, 1.2rem + .7vw, 1.75rem); margin: 8px 0 4px; }
.other p { color: var(--ink-soft); margin: 0; }
.other .other-status { font-weight: 800; color: var(--ink); margin: 6px 0 14px; flex: 1; }
.other-icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: var(--c); color: #fff; }
.other-icon .i { width: 32px; height: 32px; }
#winter { scroll-margin-top: 90px; }
@media (max-width: 960px) { .programme-inner, .other-grid { grid-template-columns: 1fr; } }

/* ---------- Minis / Juniors pages ---------- */
.group-page-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.group-page-photo img {
  width: 100%;
  border-radius: 46% 54% 48% 52% / 52% 44% 56% 48%;
  box-shadow: 0 0 0 10px var(--white), 0 0 0 16px var(--orange-soft), var(--shadow);
  aspect-ratio: 1; object-fit: cover;
}
.group-page > .container p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
.check-list { display: grid; gap: 10px; margin-top: 18px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; }
.check-list .i { width: 30px; height: 30px; padding: 5px; border-radius: 50%; background: var(--whatsapp); color: #fff; stroke-width: 3; flex: none; }
.group-session { background: var(--cream); }
.group-session .container { display: grid; gap: 22px; max-width: 900px; }
.session-card { padding: clamp(26px, 4vw, 44px); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 8px 0 var(--blue), var(--shadow); }
.session-card h2 { margin-bottom: 0; }
.session-card .detail-list { grid-template-columns: 1fr 1fr; }
.other-group {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 20px;
  padding: 20px 26px; border-radius: 24px; text-decoration: none;
  background: var(--tone); color: #fff;
}
.other-group.group-orange { background: var(--orange); color: var(--ink); }
.other-group.group-blue { --tone: var(--blue); }
.other-group span { font-weight: 700; }
.other-group strong { display: inline-flex; align-items: center; gap: 8px; font: 600 1.3rem/1 var(--font-display); }
.other-group:hover strong .i { translate: 4px 0; }
.other-group .i { transition: translate .2s ease; }
@media (max-width: 860px) { .group-page-inner { grid-template-columns: 1fr; } .group-page-photo { max-width: 420px; margin: 0 auto; } }
@media (max-width: 560px) { .session-card .detail-list { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.coaches { background: var(--white); }
.coaches-inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; max-width: 980px; }
.coach-photo { position: relative; width: clamp(200px, 26vw, 300px); }
.coach-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 10px var(--white), 0 0 0 18px var(--orange-soft); }
.coach-badge {
  position: absolute; right: -6px; bottom: 4px;
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: var(--ink);
  box-shadow: 0 0 0 6px var(--white);
}
.coach-badge .i { width: 50%; height: 50%; stroke-width: 1.8; }
.coaches-inner p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.1rem; }
.why-list { background: var(--white); padding-top: 0; }
@media (max-width: 700px) { .coaches-inner { grid-template-columns: 1fr; justify-items: start; } }

/* ---------- Locations ---------- */
.location { scroll-margin-top: 80px; }
.location:nth-of-type(even) { background: var(--cream); }
.location-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.location-town { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: var(--red-btn); color: #fff; font: 600 1rem/1 var(--font-label); letter-spacing: .1em; text-transform: uppercase; }
.location-town .i { width: 20px; height: 20px; }
.location-copy h2 { font-family: var(--font-body); font-weight: 900; margin-top: 14px; }
.location-copy h3 { font: 800 1.1rem/1.3 var(--font-body); color: var(--ink); margin: 26px 0 10px; }
.facility-list { display: flex; flex-wrap: wrap; gap: 8px; }
.facility-list li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--blue-soft); font-weight: 700; }
.facility-list li.is-highlight { background: #E4F5EA; color: #145C33; }
.facility-list .i { width: 20px; height: 20px; }
.highlight-card { display: flex; gap: 16px; align-items: flex-start; margin-top: 18px; padding: 18px 20px; border-radius: 22px; background: #E4F5EA; color: #145C33; }
.highlight-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: #1F8A4C; color: #fff; flex: none; }
.highlight-icon .i { width: 30px; height: 30px; }
.highlight-card strong { font: 600 1.2rem/1.2 var(--font-display); }
.highlight-card p { margin: 4px 0 0; }
.location-media { display: grid; gap: 16px; }
.location-photo { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 900px) { .location-inner { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-auto-rows: 300px; gap: 16px; grid-auto-flow: dense; }
.gallery-item { border-radius: 26px; overflow: hidden; background: var(--blue-soft); }
.gallery-item.is-wide { grid-column: span 2; }
.gallery-open { position: relative; display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.gallery-open img { width: 100%; height: 100%; object-fit: cover; transition: scale .5s ease; }
.gallery-open:hover img { scale: 1.06; }
.gallery-zoom { position: absolute; right: 14px; bottom: 14px; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgb(255 255 255 / .92); color: var(--blue); opacity: 0; translate: 0 8px; transition: opacity .2s ease, translate .2s ease; }
.gallery-open:hover .gallery-zoom, .gallery-open:focus-visible .gallery-zoom { opacity: 1; translate: 0 0; }
.gallery-more a { display: grid; place-content: center; justify-items: center; gap: 8px; height: 100%; padding: 24px; text-align: center; text-decoration: none; background: var(--blue); color: #fff; }
.gallery-more .i { width: 48px; height: 48px; }
.gallery-more strong { font: 600 1.5rem/1.1 var(--font-display); }
.gallery-note { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 28px; color: var(--ink-soft); font-weight: 700; text-align: center; }
.gallery-note .i { color: var(--whatsapp); }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; gap: 10px; } .gallery-item { border-radius: 18px; } }
.lightbox { padding: 0; border: 0; border-radius: 26px; background: transparent; max-width: min(96vw, 1100px); max-height: 92vh; overflow: visible; }
.lightbox::backdrop { background: rgb(28 35 89 / .85); }
.lightbox img { display: block; max-width: 100%; max-height: 90vh; border-radius: 26px; }
.lightbox-close { position: absolute; top: -18px; right: -12px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--white); color: var(--blue); font: 700 1.8rem/1 var(--font-display); cursor: pointer; box-shadow: 0 6px 16px rgb(0 0 0 / .25); }

/* ---------- FAQs ---------- */
.faq-inner { display: grid; grid-template-columns: 1fr 320px; gap: clamp(24px, 4vw, 48px); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--cream); border-radius: 22px; overflow: hidden; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font: 600 1.15rem/1.3 var(--font-display); color: var(--blue);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { position: relative; flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 3px; margin: -1.5px 0 0 -7px; border-radius: 2px; background: var(--ink); transition: rotate .25s ease; }
.faq-toggle::after { rotate: 90deg; }
.faq-item[open] .faq-toggle::after { rotate: 0deg; }
.faq-item[open] summary { color: var(--red-btn); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--ink-soft); }
.faq-answer a { color: var(--blue); font-weight: 800; }
.faq-aside { position: sticky; top: 100px; display: grid; gap: 12px; padding: 28px; border-radius: var(--radius-lg); background: var(--blue); color: #fff; text-align: center; justify-items: center; }
.faq-aside h2 { color: #fff; font-size: 1.8rem; margin: 0; }
.faq-aside p { margin: 0 0 6px; color: rgb(255 255 255 / .9); }
.faq-aside .btn { width: 100%; }
.faq-aside-icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: var(--ink); }
.faq-aside-icon .i { width: 40px; height: 40px; }
@media (max-width: 900px) { .faq-inner { grid-template-columns: 1fr; } .faq-aside { position: static; } }

/* ---------- Contact ---------- */
.contact-venues { background: var(--white); }
.mini-venues { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.mini-venue { position: relative; display: grid; gap: 4px; padding: 44px 26px 24px; border-radius: 26px; background: var(--cream); text-decoration: none; color: var(--ink); transition: translate .2s ease; }
.mini-venue:hover { translate: 0 -4px; }
.mini-venue .venue-pin { top: -24px; left: 24px; }
.mini-venue strong { font: 600 1.4rem/1.1 var(--font-display); color: var(--blue); }
.mini-venue span { font-weight: 700; }
.mini-venue small { color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 700px) { .mini-venues { grid-template-columns: 1fr; row-gap: 40px; } }

/* ---------- Application form ---------- */
.apply-page-inner { display: grid; grid-template-columns: 1fr 330px; gap: clamp(24px, 4vw, 48px); align-items: start; }
.apply-side { position: sticky; top: 100px; display: grid; gap: 16px; }
.side-card { padding: 24px; border-radius: 24px; background: var(--blue); color: #fff; }
.side-card h2 { display: flex; align-items: center; gap: 8px; font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.side-card-soft { background: var(--cream); color: var(--ink); }
.side-card-soft h2 { color: var(--blue); }
.side-card-soft p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.side-card a { color: inherit; font-weight: 800; }
.side-card-soft a { color: var(--blue); }
.mini-steps { display: grid; gap: 12px; }
.mini-steps li { display: flex; gap: 12px; align-items: center; font-weight: 700; }
.mini-steps span { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: var(--ink); font: 700 1.1rem/1 var(--font-display); }
@media (max-width: 960px) { .apply-page-inner { grid-template-columns: 1fr; } .apply-side { position: static; } }

.notice { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-radius: 20px; margin-bottom: 22px; }
.notice p { margin: 0; }
.notice .i { width: 28px; height: 28px; flex: none; margin-top: 1px; }
.notice-important { background: var(--orange-soft); border: 2px solid var(--orange); color: var(--ink); }
.notice-important .i { color: var(--orange-text); }
.notice-soft { background: var(--blue-soft); color: var(--ink); }
.notice-soft .i { color: var(--blue); }

.error-summary { padding: 20px 24px; margin-bottom: 22px; border-radius: 20px; border: 3px solid var(--red-btn); background: var(--red-soft); }
.error-summary h2 { font-size: 1.4rem; color: var(--red-btn); margin-bottom: 8px; }
.error-summary ul { list-style: disc; padding-left: 1.2em; }
.error-summary a { color: var(--red-btn); font-weight: 800; }

.application { background: var(--white); }
.form-step { margin: 0 0 22px; padding: clamp(20px, 3vw, 30px); border: 0; border-radius: 26px; background: var(--cream); min-width: 0; }
.form-step > legend { display: flex; align-items: center; gap: 12px; float: left; width: 100%; margin-bottom: 16px; padding: 0; font: 600 1.45rem/1.2 var(--font-display); color: var(--blue); }
.form-step > legend + * { clear: both; }
.step-num { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex: none; background: var(--orange); color: var(--ink); font-size: 1.2rem; }
.form-step:nth-of-type(2) .step-num { background: var(--blue); color: #fff; }
.form-step:nth-of-type(3) .step-num { background: var(--red-btn); color: #fff; }
.form-step:nth-of-type(4) .step-num { background: var(--whatsapp); color: #fff; }
.form-step:nth-of-type(5) .step-num { background: var(--sun); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field-wide { grid-column: 1 / -1; }
@media (max-width: 640px) { .field-grid { grid-template-columns: 1fr; } }
.hint { display: block; margin: -2px 0 8px; color: var(--ink-soft); font-size: .92rem; }
.field input[type="tel"], .field input[type="email"], .field input[type="date"], .field select {
  width: 100%; min-height: 50px;
  font: inherit; color: inherit;
  padding: 12px 14px;
  border: 2px solid #CDD1E4; border-radius: 14px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.application .field input[type="text"], .application .field textarea { background: #fff; }
.field select { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23313C91' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 14px center / 20px no-repeat; padding-right: 44px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgb(49 60 145 / .18); }
.field-error { display: flex; align-items: center; gap: 6px; margin: -2px 0 8px; color: var(--red-btn); font-weight: 800; font-size: .95rem; }
.field-error::before { content: "!"; flex: none; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--red-btn); color: #fff; font-size: .8rem; }
.has-error input, .has-error select, .has-error textarea { border-color: var(--red-btn) !important; }
.has-error .choice-body, .has-error .pill-choice span { border-color: var(--red-btn); }
.age-note { margin: 8px 0 0; padding: 8px 12px; border-radius: 12px; font-weight: 700; font-size: .95rem; }
.age-note.is-ok { background: #E4F5EA; color: #145C33; }
.age-note.is-warn { background: var(--orange-soft); color: var(--ink); }

.choice-group { margin-bottom: 20px; }
.choice-group > legend { font-weight: 800; margin-bottom: 8px; }
.choice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .choice-cards { grid-template-columns: 1fr; } }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice-body {
  display: grid; gap: 2px; height: 100%;
  padding: 16px 18px 16px 70px; position: relative;
  border: 2.5px solid #CDD1E4; border-radius: 20px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease, translate .15s ease;
}
.choice-card:hover .choice-body { translate: 0 -2px; }
.choice-body strong { font: 600 1.35rem/1.1 var(--font-body); font-weight: 900; color: var(--ink); }
.choice-body span { font-weight: 700; color: var(--ink-soft); }
.choice-body small { color: var(--ink-soft); }
.choice-icon { position: absolute; left: 16px; top: 16px; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); }
.choice-icon .i { width: 24px; height: 24px; }
.choice-card input:checked + .choice-body { border-color: var(--blue); box-shadow: 0 5px 0 var(--blue); background: var(--blue-soft); }
.choice-card input:checked + .choice-body .choice-icon { background: var(--blue); color: #fff; }
.choice-card input:checked + .choice-body::after {
  content: ""; position: absolute; right: 14px; top: 14px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--whatsapp) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.choice-card input:focus-visible + .choice-body { outline: 3px solid var(--orange); outline-offset: 3px; }
.choice-orange .choice-icon { background: var(--orange-soft); color: var(--orange-text); }

.pill-choices { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-choice { position: relative; cursor: pointer; }
.pill-choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pill-choice span { display: inline-block; padding: 12px 20px; border: 2.5px solid #CDD1E4; border-radius: 999px; background: #fff; font-weight: 800; transition: background-color .15s ease, border-color .15s ease; }
.pill-choice input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.pill-choice input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }

.check-field { margin-bottom: 18px; }
.check { display: flex !important; gap: 12px; align-items: flex-start; font-weight: 600 !important; cursor: pointer; }
.check input { flex: none; width: 24px; height: 24px; margin: 1px 0 0; accent-color: var(--blue); cursor: pointer; }
.check a { color: var(--blue); font-weight: 800; }

/* Live Google Form questions */
.field input[type="datetime-local"], .field input[type="time"] {
  width: 100%; min-height: 50px; font: inherit; color: inherit; padding: 12px 14px;
  border: 2px solid #CDD1E4; border-radius: 14px; background: #fff;
}
.req { color: var(--red-btn); }
.gform-intro { margin-bottom: 22px; padding: 20px 22px; border-radius: 20px; background: var(--blue-soft); border-left: 6px solid var(--blue); }
.gform-intro p { margin: 0; }
.gform-intro a, .gform-text a, .hint a { color: var(--blue); font-weight: 800; overflow-wrap: anywhere; }
.section-hint { margin: 0 0 18px; font-size: 1rem; }
.gform-text { margin: 0 0 18px; padding: 16px 18px; border-radius: 16px; background: #fff; border: 2px dashed #CDD1E4; }
.gform-text h3 { font: 800 1.05rem/1.35 var(--font-body); margin: 0 0 4px; color: var(--ink); }
.gform-text p { margin: 0; color: var(--ink-soft); }
.choice-group > legend.q-long {
  font-weight: 600; font-size: .95rem; line-height: 1.55;
  max-height: 15em; overflow-y: auto;
  padding: 14px 16px; margin-bottom: 12px;
  background: #fff; border: 2px solid #CDD1E4; border-radius: 16px;
}
.choice-group > legend.q-long strong { color: var(--blue); }
.option-list { display: grid; gap: 8px; }
.check.option {
  padding: 12px 14px; border: 2.5px solid #CDD1E4; border-radius: 16px; background: #fff;
  transition: border-color .15s ease, background-color .15s ease;
}
.check.option:has(input:checked) { border-color: var(--blue); background: var(--blue-soft); }
.has-error .check.option { border-color: var(--red-btn); }
.choice-cards .choice-body { align-content: center; min-height: 72px; padding-right: 48px; }
.other-input { margin-top: 10px; }
.q-grid { border: 0; padding: 0; margin: 0 0 20px; min-width: 0; }
.q-grid > legend { font-weight: 800; margin-bottom: 10px; }
.q-grid .choice-group { margin-bottom: 12px; }
.q-grid .choice-group > legend { font-weight: 700; }
.scale-labels { display: flex; justify-content: space-between; margin: 8px 0 0; color: var(--ink-soft); font-size: .9rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.js .application[data-live="true"] .static-fields { display: none; }
.application.is-waiting { display: none; }
.gform-loading { display: flex; align-items: center; gap: 16px; padding: 26px; border-radius: 26px; background: var(--cream); font-weight: 800; color: var(--blue); }
.gform-loading p { margin: 0; }
.gform-spinner { width: 34px; height: 34px; border-radius: 50%; border: 4px solid var(--blue-soft); border-top-color: var(--orange); animation: kv-spin .8s linear infinite; flex: none; }
@keyframes kv-spin { to { rotate: 360deg; } }
@media (prefers-reduced-motion: reduce) { .gform-spinner { animation: none; border-top-color: var(--blue); } }
.form-unavailable { display: grid; justify-items: center; gap: 6px; text-align: center; padding: clamp(28px, 5vw, 56px); border-radius: var(--radius-lg); background: var(--cream); box-shadow: 0 8px 0 var(--blue); }
.form-unavailable[hidden] { display: none; }
.form-unavailable h2 { margin: 6px 0; }
.form-unavailable p { max-width: 560px; margin: 0 0 8px; }
.form-soon .apply-done-icon { background: var(--sun); }
.btn.is-sending { opacity: .75; cursor: progress; }

.form-actions-submit { margin-top: 6px; }
.form-actions-submit .btn { flex: 1 1 100%; }
.form-failed { margin-top: 14px; color: var(--red-btn); font-weight: 800; }

.apply-done, .thanks-card {
  display: grid; justify-items: center; gap: 6px; text-align: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 0 8px 0 var(--blue);
}
.thanks-card { background: var(--white); color: var(--ink); max-width: 720px; margin: 10px auto 0; }
.apply-done h2 { margin: 6px 0; }
.apply-done p, .thanks-card p { max-width: 560px; margin: 0 0 8px; }
.apply-done-small { color: var(--ink-soft); font-size: .95rem; }
.apply-done-icon { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: var(--ink); }
.apply-done-icon .i { width: 44px; height: 44px; }

/* ---------- Policy pages ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.5rem, 1.3rem + .8vw, 2rem); margin: 1.6em 0 .5em; }
.prose p, .prose li { color: var(--ink); }
.prose ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1em; }
.prose li { margin-bottom: .45em; }
.prose a { color: var(--blue); font-weight: 800; }
.prose mark.tbc { background: #FFF2B8; color: var(--ink); padding: .1em .35em; border-radius: 6px; font-weight: 700; }
.draft-note { padding: 14px 18px; border-radius: 16px; background: #FFF2B8; font-size: .95rem; }
.prose-contact { margin-top: 2.5em; padding-top: 1.5em; border-top: 2px dashed var(--snow); font-weight: 700; }

/* ---------- Scrolling photo strip (home) ---------- */
.photo-strip { overflow: hidden; padding: 8px 0 clamp(40px, 6vw, 72px); }
.photo-track { display: flex; gap: 18px; width: max-content; padding: 14px 0; }
.photo-track img {
  flex: none; width: clamp(140px, 16vw, 200px); height: auto; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: 24px;
  border: 5px solid var(--white);
  box-shadow: 0 10px 24px rgb(30 36 85 / .15);
  rotate: -2.5deg;
}
.photo-track img:nth-child(even) { rotate: 2.5deg; translate: 0 12px; }

/* ---------- Programmes: cards and programme pages ---------- */
.prog-blue { --tone: var(--blue); --tone-soft: var(--blue-soft); --tone-ink: #fff; }
.prog-orange { --tone: var(--orange); --tone-soft: var(--orange-soft); --tone-ink: var(--ink); }
.prog-red { --tone: var(--red-btn); --tone-soft: var(--red-soft); --tone-ink: #fff; }
.prog-sun { --tone: var(--sun); --tone-soft: #FFF1D1; --tone-ink: var(--ink); }

.prog-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 36px); max-width: 1100px; margin: 0 auto; }
.prog-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 8px 0 var(--tone), var(--shadow);
  transition: translate .25s ease, box-shadow .25s ease;
}
.prog-card:hover { translate: 0 -6px; box-shadow: 0 14px 0 var(--tone), var(--shadow); }
.prog-card:focus-within { outline: 3px solid var(--orange); outline-offset: 4px; }
.prog-card-photo { overflow: hidden; aspect-ratio: 4 / 3; background: var(--tone-soft); }
.prog-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: scale .6s ease; }
.prog-card:hover .prog-card-photo img { scale: 1.06; }
.prog-card-top { position: relative; }
.prog-card-body { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 44px clamp(22px, 3vw, 32px) clamp(24px, 3vw, 32px); }
.prog-badge {
  position: absolute; bottom: -34px; left: clamp(22px, 3vw, 32px); z-index: 2; pointer-events: none;
  width: 68px; height: 68px; border-radius: 22px; display: grid; place-items: center;
  background: var(--tone); color: var(--tone-ink); rotate: -6deg;
  box-shadow: 0 0 0 6px var(--white);
}
.prog-badge .i { width: 34px; height: 34px; }
.prog-card:hover .prog-badge { animation: wobble 1s ease-in-out; }
.prog-tag { margin: 0; font: 600 .8rem/1.3 var(--font-label); letter-spacing: .08em; text-transform: uppercase; color: var(--orange-text); }
.prog-card h3 { font-size: clamp(1.45rem, 1.25rem + .8vw, 1.9rem); margin: 6px 0 8px; }
.prog-link { color: var(--blue); text-decoration: none; }
.prog-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.prog-link:focus-visible { outline: none; }
.prog-card-body > p:not(.prog-tag) { color: var(--ink-soft); margin: 0 0 18px; flex: 1; }
.prog-more .i { width: 18px; height: 18px; transition: translate .2s ease; }
.prog-card:hover .prog-more .i { translate: 4px 0; }
@media (max-width: 760px) { .prog-cards { grid-template-columns: 1fr; } }

.prog-intro-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.prog-intro-photo { position: relative; }
.prog-intro-photo img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 36px 36px 36px 110px; rotate: -2deg;
  box-shadow: 0 0 0 10px var(--white), 0 0 0 16px var(--tone-soft), var(--shadow);
}
.prog-sticker {
  position: absolute; right: -8px; bottom: 18px; rotate: 5deg;
  padding: 10px 18px; border-radius: 999px;
  background: var(--tone); color: var(--tone-ink);
  font: 600 .9rem/1.1 var(--font-label); letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 5px 0 rgb(30 36 85 / .2);
}
.prog-intro-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.1rem; }
@media (max-width: 900px) { .prog-intro-inner { grid-template-columns: 1fr; } .prog-intro-photo { max-width: 560px; } }

.prog-includes { background: var(--cream); }
.tick-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 1100px; margin: 0 auto; }
.tick-grid li {
  flex: 0 1 255px;
  display: flex; gap: 12px; align-items: center;
  padding: 14px 18px; border-radius: 18px; background: var(--white);
  font-weight: 800; box-shadow: 0 4px 0 rgb(49 60 145 / .12);
}
.tick-grid .i { width: 30px; height: 30px; padding: 5px; border-radius: 50%; background: var(--whatsapp); color: #fff; stroke-width: 3; flex: none; }
.tick-grid li:nth-child(3n+2) .i { background: var(--blue); }
.tick-grid li:nth-child(3n) .i { background: var(--orange); color: var(--ink); }
.prog-two-lists { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.prog-two-lists .section-head { margin-bottom: 26px; }
.prog-two-lists .tick-grid li { flex: 1 1 100%; }
@media (max-width: 600px) { .tick-grid li { flex: 1 1 100%; } }
@media (max-width: 860px) { .prog-two-lists { grid-template-columns: 1fr; } }
.prog-closing { max-width: 720px; margin: clamp(28px, 4vw, 44px) auto 0; padding: 0 var(--gutter); text-align: center; font-weight: 800; font-size: 1.1rem; color: var(--blue); }

.prog-groups { background: var(--white); }
.prog-info .mini-venues { max-width: none; }
.prog-info .mini-venue { background: var(--white); box-shadow: var(--shadow); }
.mini-venue strong { font-family: var(--font-body); font-weight: 900; }

.prog-aim-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.prog-aim-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
.session-card .detail-list-single { grid-template-columns: 1fr; }
.prog-note { display: flex; gap: 10px; align-items: flex-start; margin: 22px 0 0; padding: 14px 16px; border-radius: 16px; background: var(--orange-soft); font-weight: 700; }
.prog-note .i { width: 24px; height: 24px; flex: none; color: var(--orange-text); }
@media (max-width: 900px) { .prog-aim-inner { grid-template-columns: 1fr; } }

.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.format {
  display: grid; justify-items: center; gap: 10px; text-align: center;
  padding: 26px 20px; border-radius: 26px; background: var(--cream);
  border-bottom: 6px solid var(--c);
}
.format .i { width: 56px; height: 56px; padding: 12px; border-radius: 18px; background: var(--c); color: #fff; }
.format strong { font: 600 1.2rem/1.2 var(--font-display); color: var(--blue); }
@media (max-width: 700px) { .format-grid { grid-template-columns: 1fr; } }

.prog-partners { background: var(--cream); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); align-items: start; }
.partner {
  position: relative; padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-lg);
  background: var(--white); border-top: 8px solid var(--c); box-shadow: var(--shadow);
}
.partner h3 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); margin: 14px 0 10px; }
.partner p { color: var(--ink-soft); margin: 0 0 10px; }
.partner p:last-child { margin-bottom: 0; }
.partner-icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: var(--c); color: #fff; }
.partner-icon .i { width: 30px; height: 30px; }
.partner-flag {
  position: absolute; top: 22px; right: 22px; margin: 0 !important;
  padding: 6px 12px; border-radius: 999px; background: var(--sun); color: var(--ink) !important;
  font: 600 .78rem/1 var(--font-label) !important; letter-spacing: .08em; text-transform: uppercase;
}
@media (max-width: 1000px) { .partner-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; } }

.prog-previous-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.prog-previous-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
@media (max-width: 860px) { .prog-previous-inner { grid-template-columns: 1fr; } }

.prog-gallery { padding-top: clamp(48px, 7vw, 80px); padding-bottom: 0; }
.prog-photos { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: clamp(12px, 2vw, 22px); max-width: 1000px; margin: 0 auto; }
.prog-photos figure { margin: 0; }
.prog-photos img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 28px; box-shadow: 0 0 0 6px var(--white), var(--shadow); }
.prog-photos figure:nth-child(odd) img { rotate: -2deg; }
.prog-photos figure:nth-child(even) img { rotate: 2deg; translate: 0 14px; }
@media (max-width: 600px) { .prog-photos { gap: 10px; } .prog-photos img { border-radius: 18px; } }

.cta-card-simple { grid-template-columns: 1fr; text-align: left; }
.cta-card-simple .cta-copy { max-width: 720px; }

.enquire-page .choice-body span:not(.choice-icon) { font-weight: 600; }
.enquiry-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.enquiry-actions .btn { flex: 1 1 240px; }
.enquire-page .form-note { margin-top: 12px; }
