/* Website UI kit — page-level styles. Tokens come from ../../colors_and_type.css */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); color: var(--fg-1); font-family: var(--font-body); }

/* container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* sections */
section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

/* utility */
.eyebrow {
  font-family: var(--font-body); font-weight: 800; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-blue); margin: 0 0 12px;
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05;
  color: var(--brand-navy); margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.red-rule { display: block; height: 3px; width: 56px; background: var(--brand-red); border-radius: 2px; margin: 14px 0 24px; }
.lede { font-size: 18px; line-height: 1.6; color: var(--fg-2); max-width: 60ch; margin: 0; text-wrap: pretty; }

/* buttons (mirrors preview/buttons.html) */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 220ms var(--ease-out); letter-spacing: 0.01em;
  text-decoration: none;
}
.btn .lucide { width: 16px; height: 16px; stroke-width: 2; }
.btn-primary { background: var(--brand-blue); color: #fff; box-shadow: 0 6px 16px -6px rgba(25,62,107,0.30); }
.btn-primary:hover { background: var(--blue-500); transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(25,62,107,0.35); }
.btn-hero { background: var(--brand-navy); color: #fff; box-shadow: var(--shadow-pop); }
.btn-hero:hover { transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--brand-navy); border: 1.5px solid var(--border-strong); }
.btn-secondary:hover { border-color: var(--brand-blue); color: var(--brand-blue); background: var(--blue-50); }
.btn-ghost { background: transparent; color: var(--brand-blue); padding: 8px 12px; }
.btn-ghost:hover { color: var(--blue-500); }
.btn-lg { font-size: 16px; padding: 16px 28px; }
.btn-sm { font-size: 13px; padding: 9px 16px; }

/* ═══════════════ FONT PAIRING (client fonts) ═══════════════
   Solway = display + bold UI (real 700/800 weights).
   Crete Round = body prose (regular + italic; no true bold, so bold
   UI elements are routed to Solway instead of faux-bold). */
.btn, .nav-link, .nav-drop-link, .nav-mobile-link, .eyebrow, .legacy-badge,
.field label, .pod-age, .ws-title, .team-role, .award-year, .hes-tag {
  font-family: var(--font-display);
}

/* sticky nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(140%);
}
.nav > .container { max-width: 1340px; padding: 0 24px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 12px; }
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; }
.nav-logo > img:first-child { height: 42px; width: auto; }
.nav-wordmark { height: 22px; width: auto; display: block; }
@media (max-width: 479px) { .nav-wordmark { display: none; } }
.nav-links { display: none; gap: 1px; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  padding: 8px 9px; border-radius: 999px;
  color: var(--fg-1); text-decoration: none; cursor: pointer;
  transition: all 140ms var(--ease-out);
}
.nav-link:hover { background: var(--blue-50); color: var(--brand-blue); }
.nav-link.active { color: var(--brand-blue); }
.nav-cta { margin-left: 8px; }

/* hero */
.hero { background: linear-gradient(180deg, #DCEEFB 0%, #EAF4FC 45%, #FBFDFF 100%); padding-top: 56px; padding-bottom: 96px; position: relative; overflow: visible; }

/* Warm, playful Why section */
.why-section { background: linear-gradient(180deg, #EAF4FC 0%, #F6FAFE 100%); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; padding-block: 32px; } }
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5.6vw, 58px); line-height: 1.16; color: var(--brand-navy); margin: 12px 0 20px; letter-spacing: -0.015em; }
.hero h1 em { font-style: normal; color: var(--brand-blue); }
.hero-accent { font-size: 1.08em; padding: 0 0.04em; transform: rotate(-2deg); display: inline-block; line-height: 1; }
/* Generous line-height whenever an accent rides inside a section title,
   so Caveat's tall ascenders don't crash into the line above/below. */
.section-title:has(.aj-accent),
h1:has(.aj-accent) { line-height: 1.2; }
.hero .lede { font-size: 19px; max-width: 50ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-image { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image img { width: 92%; max-width: 480px; }
.hero-bubbles { position: absolute; pointer-events: none; }
.hero-meta { display: flex; gap: 24px; margin-top: 36px; }
.hero-meta .stat-num { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 28px; line-height: 1; }
.hero-meta .stat-lbl { font-size: 13px; color: var(--fg-3); margin-top: 4px; line-height: 1.3; }

/* philosophy 3-up */
.phil { background: var(--bg-cream); }
.phil-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
@media (min-width: 768px) { .phil-grid { grid-template-columns: repeat(3, 1fr); } }
.phil-card { background: #fff; border-radius: 20px; border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow-md); }
.phil-card .icon-bubble { width: 56px; height: 56px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: var(--blue-50); color: var(--brand-blue); margin-bottom: 18px; }
.phil-card .icon-bubble .lucide { width: 28px; height: 28px; stroke-width: 1.75; }
.phil-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 26px; margin: 0 0 6px; letter-spacing: -0.01em; }
.phil-card .word { letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; font-weight: 800; color: var(--brand-red); margin-bottom: 14px; display: block; }
.phil-card p { font-size: 16px; line-height: 1.6; color: var(--fg-1); margin: 0; }

/* programs */
.prog-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
@media (min-width: 800px) { .prog-grid { grid-template-columns: repeat(3, 1fr); } }
.prog-card { background: #fff; border-radius: 18px; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-md); transition: transform 220ms var(--ease-out), box-shadow 220ms; cursor: pointer; }
.prog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.prog-card .swatch { height: 110px; position: relative; display: flex; align-items: flex-end; padding: 16px 20px; color: #fff; }
.prog-card .swatch-1 { background: linear-gradient(135deg, #2F629F, #1E4068); }
.prog-card .swatch-2 { background: linear-gradient(135deg, #6FA3D6, #2F629F); color: var(--brand-navy); }
.prog-card .swatch-3 { background: linear-gradient(135deg, #193E6B, #0B1C32); }
.prog-card .swatch .ages { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; opacity: 0.85; }
.prog-card .body-pad { padding: 22px 22px 24px; }
.prog-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 24px; margin: 0 0 10px; letter-spacing: -0.01em; }
.prog-card p { font-size: 15px; line-height: 1.55; color: var(--fg-1); margin: 0 0 16px; }
.prog-card .meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--fg-3); }
.prog-card .meta span { display: inline-flex; align-items: center; gap: 5px; }
.prog-card .meta .lucide { width: 14px; height: 14px; }

/* testimonials */
.test { background: var(--brand-navy); color: #fff; }
.test .section-title { color: #fff; }
.test .eyebrow { color: var(--sky-light); }
.test .quote-row { margin-top: 36px; display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 800px) { .test .quote-row { grid-template-columns: repeat(2, 1fr); } }
.quote-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 28px; }
.quote-card .stars { color: var(--brand-red); display: flex; gap: 2px; margin-bottom: 14px; }
.quote-card .stars .lucide { width: 16px; height: 16px; fill: var(--brand-red); }
.quote-card .q { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.5; color: #fff; margin: 0 0 18px; }
.quote-card .by { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); }
.quote-card .avatar { width: 40px; height: 40px; border-radius: 999px; background: var(--brand-blue); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-family: var(--font-display); }

/* about page */
.about-hero { background: var(--bg-cream); padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.2fr; } }
.about-img { background: var(--blue-50); border-radius: 20px; aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-legacy-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .about-legacy-grid { grid-template-columns: 1.15fr 0.85fr; gap: 48px; } }
.about-slideshow { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); background: var(--blue-50); }
.about-slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 900ms ease; }
.about-slideshow img.active { opacity: 1; }
.about-slideshow .slide-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; gap: 7px; justify-content: center; z-index: 1; }
.about-slideshow .slide-dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.6); cursor: pointer; transition: all 200ms; }
.about-slideshow .slide-dots span.on { background: #fff; width: 22px; }
.ace-stack { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.ace-row { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; }
.ace-letter { font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 0.9; color: var(--brand-red); letter-spacing: -0.02em; }
.ace-row h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 22px; margin: 0 0 4px; letter-spacing: 0.02em; text-transform: uppercase; }
.ace-row p { font-size: 16px; line-height: 1.55; color: var(--fg-1); margin: 0; }

/* CTA band */
.cta-band { padding: 80px 0; background: linear-gradient(180deg, #FFFFFF 0%, #F6FAFE 100%); }
.cta-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 56px 48px; box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 800px) { .cta-card { grid-template-columns: 1.4fr 1fr; padding: 64px; } }
.cta-card h2 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: clamp(28px, 4vw, 40px); margin: 0 0 12px; letter-spacing: -0.01em; line-height: 1.05; }
.cta-card .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .cta-card .actions { justify-content: flex-start; } }

/* footer — light shade so the full-colour logo reads clearly */
.footer { background: var(--blue-50); color: var(--brand-navy); padding: 56px 0 32px; position: relative; }
.footer-top { padding-top: 8px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img { height: 72px; display: block; }
.footer-wordmark { height: 26px !important; margin-top: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.5; color: var(--fg-2); margin: 16px 0 0; max-width: 32ch; }
.footer h5 { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-blue); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--fg-1); text-decoration: none; font-size: 14px; cursor: pointer; }
.footer a:hover { color: var(--brand-blue); }
.marquee { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; padding: 28px 0 0; margin: 40px 0 0; border-top: 1px solid var(--border); font-family: var(--font-display); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; color: var(--brand-navy); }
.marquee .star { color: var(--brand-red); }
.copy { text-align: center; font-size: 12px; color: var(--fg-3); margin-top: 16px; }

/* enroll flow */
.enroll { background: var(--bg-tinted); min-height: calc(100vh - 72px); padding: 56px 0 96px; }
.enroll-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-md); max-width: 720px; margin: 0 auto; padding: 36px 36px 32px; }
.stepper { display: flex; align-items: center; gap: 8px; margin: 0 0 28px; }
.stepper .step { display: flex; align-items: center; gap: 8px; color: var(--fg-3); font-size: 13px; font-weight: 700; }
.stepper .step.active { color: var(--brand-blue); }
.stepper .step.done { color: var(--brand-navy); }
.stepper .dot { width: 28px; height: 28px; border-radius: 999px; background: var(--surface-muted); display: flex; align-items: center; justify-content: center; color: var(--fg-3); font-weight: 800; font-size: 13px; }
.stepper .step.active .dot { background: var(--brand-blue); color: #fff; }
.stepper .step.done .dot { background: var(--brand-navy); color: #fff; }
.stepper .bar { flex: 1; height: 2px; background: var(--border); }
.stepper .bar.done { background: var(--brand-navy); }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 700; font-size: 13px; color: var(--brand-navy); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; padding: 13px 14px;
  border: 1.5px solid var(--border-strong); border-radius: 12px;
  background: #fff; color: var(--fg-1);
  transition: border-color 140ms, box-shadow 140ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-blue); box-shadow: 0 0 0 4px rgba(47,98,159,0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row .field { margin: 0; }
.success-tick { width: 84px; height: 84px; border-radius: 999px; background: var(--blue-50); display: flex; align-items: center; justify-content: center; color: var(--brand-blue); margin: 0 auto 18px; }
.success-tick .lucide { width: 40px; height: 40px; stroke-width: 2.5; }

.choice-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice {
  border: 1.5px solid var(--border-strong); border-radius: 12px;
  padding: 14px 16px; cursor: pointer; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--brand-navy); background: #fff;
  transition: all 140ms;
}
.choice:hover { border-color: var(--brand-blue); }
.choice.selected { border-color: var(--brand-blue); background: var(--blue-50); }
.choice .lucide { width: 18px; height: 18px; color: var(--brand-blue); opacity: 0; transition: opacity 120ms; }
.choice.selected .lucide { opacity: 1; }

.actions-row { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--divider); }

/* ───── team ───── */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-md); display: flex; gap: 18px; align-items: flex-start; transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.team-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.team-card.is-placeholder { background: #fafcff; border-style: dashed; box-shadow: none; }
.team-photo { width: 64px; height: 64px; border-radius: 999px; background: var(--blue-50); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--brand-blue); font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.team-card.is-placeholder .team-photo { background: #eef2f7; color: var(--fg-3); }
.team-card.is-placeholder .team-photo .lucide { width: 28px; height: 28px; stroke-width: 1.5; }
.team-meta { flex: 1; }
.team-role { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-red); margin-bottom: 4px; }
.team-card.is-placeholder .team-role { color: var(--fg-3); }
.team-name { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 20px; line-height: 1.25; margin: 0 0 8px; letter-spacing: -0.005em; }
.team-card.is-placeholder .team-name { color: var(--fg-3); }
.team-meta p { font-size: 14px; line-height: 1.55; color: var(--fg-1); margin: 0; }
.team-card.is-placeholder .team-meta p { color: var(--fg-3); }

/* ───── gallery ───── */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-tile { aspect-ratio: 1; border-radius: 16px; overflow: hidden; background: var(--blue-50); position: relative; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms var(--ease-out); }
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-label { position: absolute; left: 10px; bottom: 10px; background: rgba(255,255,255,0.9); color: var(--brand-navy); font-family: var(--font-display); font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.gallery-tile.tall { aspect-ratio: 1 / 1.4; }
@media (max-width: 700px) { .gallery-tile.tall { aspect-ratio: 1; } }
.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; color: var(--brand-blue); border: 1.5px dashed var(--brand-blue); border-radius: 16px; background: linear-gradient(135deg, var(--blue-50), #fff); }
.gallery-placeholder .lucide { width: 32px; height: 32px; stroke-width: 1.5; opacity: 0.7; }
.gallery-placeholder span { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--brand-navy); letter-spacing: 0.04em; }

/* ───── contact ───── */
.contact-split { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .contact-split { grid-template-columns: 1fr 1.1fr; gap: 32px; } }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-block { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 14px; background: var(--blue-50); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon .lucide { width: 22px; height: 22px; }
.contact-block h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 17px; margin: 0 0 4px; }
.contact-block p { margin: 0; font-size: 15px; color: var(--fg-1); line-height: 1.5; }
.contact-map { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); min-height: 360px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
@media (min-width: 900px) { .contact-map { min-height: 100%; } }
.contact-map-link { position: absolute; bottom: 12px; right: 12px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700; color: var(--brand-navy); display: inline-flex; align-items: center; gap: 6px; text-decoration: none; box-shadow: var(--shadow-md); white-space: nowrap; }
.contact-map-link .lucide { width: 14px; height: 14px; }
.contact-map-link:hover { color: var(--brand-blue); }

.enquiry-card { margin-top: 56px; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-md); padding: 40px 32px; max-width: 820px; }
@media (min-width: 700px) { .enquiry-card { padding: 48px 56px; } }

/* ═══════════════ WAVES, BUBBLES & PATTERNS ═══════════════ */
.wave-divider { width: 100%; overflow: hidden; }

/* Universal wavy section break: every <section> gets a gentle wavy
   BOTTOM edge that drips into the next section as scallops, so EVERY
   transition is a wave (never a straight line) and the troughs reveal
   the next section's colour — no white gap. Each section sets --wv to
   its own bottom colour. */
body.aj section { position: relative; }
body.aj section::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 24px;
  background: var(--wv, #ffffff);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='24' viewBox='0 0 160 24' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0,0 H160 C120,30 40,30 0,0 Z'/%3E%3C/svg%3E") top left / 160px 24px repeat-x;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='24' viewBox='0 0 160 24' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0,0 H160 C120,30 40,30 0,0 Z'/%3E%3C/svg%3E") top left / 160px 24px repeat-x;
  transform: translateY(100%);
  z-index: 6;
  pointer-events: none;
}
body.aj section.no-wave::after { display: none; }
/* Per-section wave colour (matches each section's own bottom colour) */
.hero { --wv: #FBFDFF; }
.founder-video { --wv: #FFF8EE; }
.trust { --wv: #FFFFFF; }
.pathways { --wv: #F6FAFE; }
.brainquote-old { --wv: #1E4068; }
.test { --wv: #193E6B; }
.cta-band { --wv: #F6FAFE; }
.why-section { --wv: #F6FAFE; }
.pods-section { --wv: #EFF7FE; }
.mission { --wv: #2F629F; }
.about-hero { --wv: #FFF8EE; }
.stub { --wv: #F6FAFE; }
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.bubble { position: absolute; border-radius: 999px; transform: translate(-50%, -50%); animation: bob 6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 14px)); } }
.dolphin-bob { animation: bob-d 4.5s ease-in-out infinite; }
@keyframes bob-d { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(-1.5deg); } }

/* Dotted pattern band (e.g. behind a section). */
.dot-pattern {
  background-image: radial-gradient(var(--blue-200) 2px, transparent 2px);
  background-size: 26px 26px;
}

/* section needs position context for bubbles */
.has-motif { position: relative; }
.has-motif > .container { position: relative; z-index: 1; }

/* ═══════════════ VISION BAND ═══════════════ */
.vision { background: var(--brand-navy); color: #fff; position: relative; overflow: hidden; }
.vision .eyebrow { color: var(--sunny); }
.vision-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.32; color: #fff; max-width: 22ch; margin: 16px 0 0; letter-spacing: -0.01em; }
.vision-quote .hl { color: var(--sunny); }
.vision-quote .hl-coral { color: #FFB39A; }
.vision-dolphin { position: absolute; right: -40px; bottom: -30px; width: 360px; opacity: 0.9; pointer-events: none; }
@media (max-width: 900px) { .vision-dolphin { display: none; } }

/* ═══════════════ WHY / FEATURE CHIPS ═══════════════ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: #fff; border-radius: 20px; border: 1px solid var(--border); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-icon .lucide { width: 26px; height: 26px; stroke-width: 1.75; }
.why-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 20px; line-height: 1.25; margin: 0 0 6px; }
.why-card p { font-size: 15px; line-height: 1.55; color: var(--fg-1); margin: 0; }

/* ═══════════════ POD CARDS (colorful) ═══════════════ */
.pods-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 36px; }
.pods-section { background: linear-gradient(180deg, #FFFFFF 0%, #EFF7FE 100%); }
@media (min-width: 620px) { .pods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pods-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .pods-grid.pods-4 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-left: auto; margin-right: auto; } }
.pod-card { border-radius: 22px; overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md); transition: transform 220ms var(--ease-out), box-shadow 220ms; display: flex; flex-direction: column; }
.pod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pod-sign { padding: 18px 18px 14px; display: flex; align-items: center; justify-content: center; }
.pod-sign img { width: 100%; height: auto; display: block; filter: drop-shadow(0 6px 12px rgba(25,62,107,0.12)); }
.pod-body { padding: 4px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pod-head { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; margin-bottom: 12px; }
.pod-stage-title { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--brand-navy); margin: 0; letter-spacing: -0.01em; line-height: 1.15; }
.pod-age { font-family: var(--font-body); font-weight: 800; font-size: 11.5px; letter-spacing: 0.04em; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.pod-body p { font-size: 14px; line-height: 1.55; color: var(--fg-1); margin: 0; }
.pod-tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; align-self: flex-start; font-size: 12px; font-weight: 800; padding: 7px 13px; border-radius: 999px; background: var(--blue-50); color: var(--brand-blue); }
.pod-tag .lucide { width: 14px; height: 14px; }

/* ═══════════════ CURRICULUM ═══════════════ */
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
@media (min-width: 600px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar { border-radius: 20px; padding: 26px 24px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm); }
.pillar .p-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.pillar .p-icon .lucide { width: 24px; height: 24px; }
.pillar h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 18px; line-height: 1.25; margin: 0 0 6px; }
.pillar p { font-size: 14px; line-height: 1.5; color: var(--fg-2); margin: 0; }

.themes-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
@media (min-width: 700px) { .themes-grid { grid-template-columns: repeat(2, 1fr); } }
.theme-card { border-radius: 22px; overflow: hidden; color: #fff; padding: 28px 26px; position: relative; min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow-md); }
.theme-card .q-num { position: absolute; top: 18px; left: 24px; font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.theme-card h4 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); margin: 0 0 8px; line-height: 1.1; letter-spacing: -0.01em; }
.theme-card p { font-size: 14px; line-height: 1.5; margin: 0; opacity: 0.92; }

/* Program summary table */
.summary-table { margin-top: 36px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: #fff; }
.summary-row { display: grid; grid-template-columns: 1.4fr 1.2fr 1fr; gap: 0; }
.summary-row > div { padding: 16px 20px; border-bottom: 1px solid var(--divider); font-size: 15px; }
.summary-row.head > div { background: var(--brand-navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; border-bottom: 0; }
.summary-row .pod-dot { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; color: var(--brand-navy); font-family: var(--font-display); }
.summary-row .pod-dot span.d { width: 12px; height: 12px; border-radius: 999px; }
.summary-foot { padding: 16px 20px; background: var(--sunny-soft); font-size: 14px; color: var(--brand-navy); font-weight: 700; text-align: center; }
@media (max-width: 640px) { .summary-row { grid-template-columns: 1fr 1fr; } .summary-row .col-dur { display: none; } }

/* Typical week table */
.week-table { margin-top: 36px; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: #fff; overflow-x: auto; }
.week-row { display: grid; grid-template-columns: 120px repeat(5, 1fr); min-width: 720px; }
.week-row > div { padding: 14px 14px; border-bottom: 1px solid var(--divider); border-right: 1px solid var(--divider); font-size: 13.5px; color: var(--fg-1); line-height: 1.35; }
.week-row > div:last-child { border-right: 0; }
.week-row.week-head > div { background: var(--brand-navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 13px; border-bottom: 0; }
.week-time { font-weight: 800; color: var(--brand-blue) !important; background: var(--blue-50); font-family: var(--font-mono); font-size: 12px !important; }
.week-row.week-head .week-time { background: var(--navy-800); color: #fff !important; font-family: var(--font-display) !important; }
.week-row.snack .snack-cell { grid-column: 2 / -1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--sunny-soft); color: #9A6B12; font-weight: 800; font-family: var(--font-display); border-right: 0; }
.week-row.snack .snack-cell .lucide { width: 18px; height: 18px; }

/* Founder */
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 860px) { .founder-grid { grid-template-columns: 300px 1fr; gap: 48px; } }
.founder-photo { position: relative; aspect-ratio: 1; max-width: 300px; border-radius: 28px; overflow: hidden; background: var(--blue-50); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); overflow: hidden; }
.founder-photo::before { display: none; }
.founder-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-initials { font-family: var(--font-display); font-weight: 800; font-size: 96px; color: #fff; position: relative; }
.founder-badge { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); background: #fff; color: var(--brand-navy); font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow-md); white-space: nowrap; }
.honours { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.honour { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700; color: var(--brand-navy); box-shadow: var(--shadow-sm); }
.honour .lucide { width: 15px; height: 15px; color: var(--sunny); }

/* Mission band — vertical gradient so the bottom edge is one flat colour
   that the scallop wave (--wv) can match exactly. */
.mission { background: linear-gradient(180deg, var(--pod-splash), var(--brand-blue)); color: #fff; text-align: center; position: relative; overflow: visible; }
.mission > .container { position: relative; z-index: 1; max-width: 920px; }
.mission > .container > .lucide { width: 48px; height: 48px; color: rgba(255,255,255,0.5); margin: 0 auto 8px; stroke-width: 1.5; }
.mission-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 32px); line-height: 1.4; margin: 0 auto; letter-spacing: -0.01em; }
.mission-by { margin-top: 22px; font-weight: 700; font-size: 15px; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }

/* ═══════════════ NAV: dropdowns, right side, mobile ═══════════════ */
.nav-inner { gap: 12px; }
.nav-links { gap: 1px; flex-wrap: nowrap; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.nav-link .lucide { width: 14px; height: 14px; opacity: 0.6; }
.nav-dropdown { position: absolute; top: 100%; left: 0; min-width: 230px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; display: flex; flex-direction: column; gap: 2px; z-index: 60; }
.nav-drop-link { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--fg-1); padding: 9px 12px; border-radius: 9px; cursor: pointer; white-space: nowrap; transition: all 120ms; }
.nav-drop-link:hover { background: var(--blue-50); color: var(--brand-blue); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-burger { display: inline-flex; background: none; border: 0; cursor: pointer; color: var(--brand-navy); padding: 6px; }
.nav-burger .lucide { width: 26px; height: 26px; }
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-mobile { background: #fff; border-top: 1px solid var(--border); padding: 12px 0 18px; max-height: 75vh; overflow-y: auto; }
.nav-mobile-group { border-bottom: 1px solid var(--divider); }
.nav-mobile-link { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--brand-navy); padding: 13px 24px; cursor: pointer; }
.nav-mobile-link.active { color: var(--brand-blue); }
.nav-mobile-sub { display: block; font-size: 14px; color: var(--fg-2); padding: 8px 24px 8px 38px; cursor: pointer; }
.nav-mobile-sub:hover, .nav-mobile-link:hover { color: var(--brand-blue); }

/* ═══════════════ HERO refinements (pastel, logo never clipped) ═══════════════ */
.hero { background: linear-gradient(180deg, #DCEEFB 0%, #EAF4FC 45%, #FBFDFF 100%); }
.legacy-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--blue-200); color: var(--brand-navy); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.legacy-badge .lucide { width: 15px; height: 15px; color: var(--brand-red); }
.hero-sub { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.2vw, 24px); color: var(--brand-blue); margin: 0 0 16px; line-height: 1.3; }
.hero-dolphin-stage { width: 100%; max-width: 460px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 50% 40%, #FFFFFF 0%, #EAF4FC 55%, #D6ECFB 100%); display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 12px rgba(255,255,255,0.5), var(--shadow-md); position: relative; }
.hero-dolphin-stage img { width: 78%; height: auto; max-height: 78%; object-fit: contain; }

/* ═══════════════ FOUNDER VIDEO ═══════════════ */
.founder-video { background: var(--bg-cream); }
.fv-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 860px) { .fv-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; } }
.fv-player { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/10; background: var(--navy-800); }
.fv-player img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.fv-play { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 999px; background: rgba(255,255,255,0.92); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform 180ms var(--ease-out); }
.fv-play:hover { transform: scale(1.08); }
.fv-play .lucide { width: 30px; height: 30px; color: var(--brand-red); fill: var(--brand-red); margin-left: 3px; }
.fv-tag { position: absolute; bottom: 12px; left: 12px; background: rgba(11,28,50,0.7); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; padding: 5px 11px; border-radius: 999px; }

/* ═══════════════ TRUST / IIM ═══════════════ */
.trust { background: #fff; }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
@media (min-width: 620px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card { display: flex; gap: 16px; align-items: flex-start; background: var(--blue-50); border: 1.5px solid var(--blue-100); border-radius: 18px; padding: 22px; transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-icon { width: 52px; height: 52px; border-radius: 15px; background: #fff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.trust-icon .lucide { width: 26px; height: 26px; stroke-width: 1.75; }
.trust-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 18px; line-height: 1.25; margin: 0 0 5px; }
.trust-card p { font-size: 14px; line-height: 1.5; color: var(--fg-1); margin: 0; }

/* ═══════════════ LEARNING PATHWAYS ═══════════════ */
.pathways { background: var(--bg-tinted); }
.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px; }
@media (min-width: 760px) { .path-grid { grid-template-columns: repeat(3, 1fr); } }
.path-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.path-sign { padding: 14px 14px 8px; display: flex; align-items: center; justify-content: center; }
.path-sign img { width: 100%; height: auto; display: block; }
.path-meta { padding: 0 16px 16px; text-align: center; }
.path-stage { font-size: 13px; color: var(--fg-2); font-weight: 700; }

/* ═══════════════ BRAIN QUOTE ═══════════════ */
/* Quote band — light pastel per brand tones (was navy) */
.brainquote { background: linear-gradient(180deg, #DCEEFB, #EAF4FC); color: var(--brand-navy); --wv: #EAF4FC; }
.bq-text > .lucide { width: 44px; height: 44px; color: var(--blue-300); stroke-width: 1.5; margin-bottom: 8px; }
.bq-q { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.2vw, 36px); line-height: 1.3; margin: 0; letter-spacing: -0.01em; color: var(--brand-navy); }
.bq-hl { color: var(--brand-red); }
.bq-by { margin-top: 20px; font-weight: 700; font-size: 15px; color: var(--fg-2); }
.bq-note { margin: 14px 0 0; font-size: 13px; color: var(--fg-3); line-height: 1.5; }
.bq-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 820px) { .bq-grid { grid-template-columns: 0.8fr 1.2fr; gap: 48px; } }
.bq-photo { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; max-width: 360px; }
.bq-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════ STUB PAGE ═══════════════ */
.stub { display: flex; align-items: center; }
.stub-icon { width: 76px; height: 76px; border-radius: 999px; background: #fff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; box-shadow: var(--shadow-md); }
.stub-icon .lucide { width: 36px; height: 36px; stroke-width: 1.75; }

/* ═══════════════ GAMDEVI CAMPUS ═══════════════ */
.gamdevi-hero { background: linear-gradient(180deg, #EAF4FC 0%, #FFF8EE 100%); }
.transport { background: #fff; }
.transport-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 560px) { .transport-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .transport-grid { grid-template-columns: repeat(4, 1fr); } }
.transport-card { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 18px; padding: 24px 20px; text-align: center; }
.transport-icon { width: 56px; height: 56px; border-radius: 16px; background: #fff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: var(--shadow-sm); }
.transport-icon .lucide { width: 28px; height: 28px; stroke-width: 1.75; }
.transport-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 16px; line-height: 1.25; margin: 0 0 6px; }
.transport-card p { font-size: 13.5px; line-height: 1.5; color: var(--fg-2); margin: 0; }

.infra-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
@media (min-width: 760px) { .infra-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.infra-tile { position: relative; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.infra-tile img { width: 100%; height: 100%; object-fit: cover; }
.infra-cap { position: absolute; left: 10px; bottom: 10px; background: rgba(11,28,50,0.72); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.infra-ph { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center; color: var(--brand-blue); border: 1.5px dashed var(--brand-blue); border-radius: 16px; background: linear-gradient(135deg, var(--blue-50), #fff); }
.infra-ph .lucide { width: 28px; height: 28px; stroke-width: 1.5; opacity: 0.7; }
.infra-ph span { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--brand-navy); }

.admissions { background: #fff; }
.adm-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 560px) { .adm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .adm-grid { grid-template-columns: repeat(5, 1fr); } }
.adm-step { background: var(--bg-cream); border: 1px solid var(--border); border-radius: 18px; padding: 24px 20px; position: relative; }
.adm-num { width: 40px; height: 40px; border-radius: 999px; background: var(--brand-blue); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.adm-step h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 17px; margin: 0 0 5px; }
.adm-step p { font-size: 14px; line-height: 1.5; color: var(--fg-2); margin: 0; }
.adm-checklist { margin-top: 28px; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 18px; padding: 24px 28px; }
.adm-checklist ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 620px) { .adm-checklist ul { grid-template-columns: repeat(2, 1fr); } }
.adm-checklist li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--brand-navy); font-size: 14.5px; }
.adm-checklist li .lucide { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; }

/* Pull the Why section back to a soft pastel-blue (was cream/peach) */
.why-section { background: linear-gradient(180deg, #EAF4FC 0%, #F6FAFE 100%); }

/* ═══════════════ THE COVE ═══════════════ */
.cove-hero { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 860px) { .cove-hero { grid-template-columns: 1.1fr 1fr; gap: 40px; } }
.cove-hero-sign img { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 16px rgba(25,62,107,0.14)); }
.cove-cg { background: #fff; }
.cg-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 880px) { .cg-grid { grid-template-columns: 0.85fr 1.15fr; gap: 48px; } }
.cg-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; max-width: 380px; }
.cg-photo img { width: 100%; height: 100%; object-fit: cover; }

.cove-ws .ws-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; }
.ws-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: box-shadow 180ms var(--ease-out); }
.ws-item.open { box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.ws-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: 0; cursor: pointer; padding: 16px 20px; text-align: left; }
.ws-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--brand-navy); }
.ws-head .lucide { width: 20px; height: 20px; color: var(--brand-blue); flex-shrink: 0; }
.ws-body { padding: 0 20px 18px; }
.ws-body p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--fg-1); max-width: 64ch; }

.cove-cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .cove-cards { grid-template-columns: repeat(3, 1fr); } }
.cove-card { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 18px; padding: 26px 24px; }
.cove-card-icon { width: 52px; height: 52px; border-radius: 15px; background: #fff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.cove-card-icon .lucide { width: 26px; height: 26px; stroke-width: 1.75; }
.cove-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 19px; margin: 0 0 6px; }
.cove-card p { font-size: 14px; line-height: 1.55; color: var(--fg-1); margin: 0 0 14px; }
.cove-soon { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-blue); background: #fff; border-radius: 999px; padding: 4px 12px; }
.townhall-banner { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; background: var(--bg-cream); border: 1px solid var(--border); border-radius: 22px; padding: 24px; margin-bottom: 32px; }
@media (min-width: 760px) { .townhall-banner { grid-template-columns: 1.2fr 1fr; } }
.townhall-banner img { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 16px rgba(25,62,107,0.12)); }
.townhall-banner h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 24px; margin: 0 0 8px; }
.townhall-banner p { font-size: 15px; line-height: 1.6; color: var(--fg-1); margin: 0; }

/* ═══ MOTION ═══ */
.moving-wave { position: absolute; bottom: -2px; left: 0; right: 0; height: 52px; overflow: hidden; pointer-events: none; z-index: 0; }
.moving-wave svg { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .moving-wave svg { animation: wave-drift 16s linear infinite; }
  .moving-wave svg.w2 { animation-duration: 26s; animation-direction: reverse; opacity: 0.55; }
  @keyframes wave-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .hero-image img, .podpage-sign img, .cove-hero-sign img { animation: gentle-float 5.5s ease-in-out infinite; }
  .path-sign img { animation: gentle-float 6.5s ease-in-out infinite; }
  @keyframes gentle-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
  section.reveal-init { opacity: 0; transform: translateY(26px); transition: opacity 600ms ease, transform 600ms var(--ease-out); }
  section.reveal-init.in-view { opacity: 1; transform: none; }
}

/* ═══ SEA LIFE (shells, starfish, seaweed, fish) ═══ */
.sealife { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.sea-item { position: absolute; display: block; animation: sea-bob 5.5s ease-in-out infinite; }
.sea-item svg { width: 100%; height: 100%; display: block; }
@keyframes sea-bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@media (prefers-reduced-motion: reduce) { .sea-item { animation: none; } }
@media (max-width: 700px) { .sea-item { scale: 0.75; } }
.has-motif > .container { position: relative; z-index: 1; }

/* ═══════════════ WHY ACE — HES & HERS + mascot ═══════════════ */
.hes-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
@media (min-width: 820px) { .hes-grid { grid-template-columns: 1fr 1fr; } }
.hes-card { border: 1.5px solid; border-radius: 22px; padding: 30px 28px; }
.hes-tag { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.14em; padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.hes-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 21px; line-height: 1.3; margin: 0 0 16px; }
.hes-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hes-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--fg-1); }
.hes-card li .lucide { width: 18px; height: 18px; color: var(--brand-blue); flex-shrink: 0; margin-top: 2px; stroke-width: 2.5; }

.mascot-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 860px) { .mascot-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.mascot-img { display: flex; justify-content: center; }
.mascot-img img { width: 100%; max-width: 360px; filter: drop-shadow(0 16px 28px rgba(25,62,107,0.16)); }

/* Mikhail + Miraya flip cards with Daffy floating between */
.mascot-trio { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 0; padding-top: 30px; }
.mascot-flip { width: 47%; max-width: 230px; aspect-ratio: 478 / 1311; border: 0; background: none; padding: 0; cursor: pointer; position: relative; z-index: 1; perspective: 1200px; }
.mascot-flip-inner { position: relative; display: block; width: 100%; height: 100%; transition: transform 700ms var(--ease-out); transform-style: preserve-3d; }
.mascot-flip.flipped .mascot-flip-inner { transform: rotateY(180deg); }
.mascot-face { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: bottom; backface-visibility: hidden; -webkit-backface-visibility: hidden; filter: drop-shadow(0 14px 22px rgba(25,62,107,0.18)); }
.mascot-back { transform: rotateY(180deg); }
.mascot-mikhail { margin-right: -6%; }
.mascot-miraya { margin-left: -6%; z-index: 2; }
.mascot-flip:hover .mascot-flip-inner { filter: drop-shadow(0 0 0 transparent); }
.mascot-daffy { position: absolute; top: -6px; left: 50%; width: 124px; transform: translateX(-50%); z-index: 3; filter: drop-shadow(0 8px 14px rgba(25,62,107,0.22)); pointer-events: none; }
@media (prefers-reduced-motion: no-preference) {
  .mascot-mikhail { animation: gentle-float 5.4s ease-in-out infinite; }
  .mascot-miraya { animation: gentle-float 5.4s ease-in-out infinite 0.7s; }
  .mascot-daffy { animation: gentle-float 4.6s ease-in-out infinite 0.3s; }
}
@media (max-width: 520px) { .mascot-daffy { width: 92px; } }
.mascot-tip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--brand-blue); background: var(--blue-50); border-radius: 999px; padding: 7px 14px; margin: 0 0 16px; }
.mascot-tip .lucide { width: 15px; height: 15px; }

/* ═══════════════ CURRICULUM — chips, progress checks, specialists ═══════════════ */
.pillar-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pillar-chips span { font-size: 12px; font-weight: 700; color: var(--brand-navy); background: #fff; border-radius: 999px; padding: 4px 11px; box-shadow: var(--shadow-sm); }

.pc-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 880px) { .pc-grid { grid-template-columns: 1.2fr 0.8fr; gap: 48px; } }
.pc-cards { display: flex; flex-direction: column; gap: 14px; }
.pc-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); }
.pc-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--blue-50); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pc-icon .lucide { width: 22px; height: 22px; stroke-width: 1.75; }
.pc-card h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 16px; margin: 0 0 3px; }
.pc-card p { font-size: 13.5px; line-height: 1.45; color: var(--fg-2); margin: 0; }

.spec-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 620px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .spec-grid { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin-left: auto; margin-right: auto; } }

/* ═══════════ FRANCHISE — animated USP cards ═══════════ */
.usp-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
@media (min-width: 560px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }
.usp-card { position: relative; border: 1.5px solid; border-radius: 22px; padding: 30px 26px 26px; overflow: hidden; }
.usp-num { position: absolute; top: 10px; right: 20px; font-family: var(--font-display); font-weight: 800; font-size: 54px; line-height: 1; opacity: 0.32; pointer-events: none; }
.usp-icon { width: 56px; height: 56px; border-radius: 16px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); margin-bottom: 16px; position: relative; transition: transform 300ms var(--ease-bounce); }
.usp-icon .lucide { width: 28px; height: 28px; stroke-width: 1.75; }
.usp-card h3 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 18px; margin: 0 0 8px; position: relative; }
.usp-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--fg-1); position: relative; }
.usp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.usp-card:hover .usp-icon { transform: scale(1.12) rotate(-6deg); }
@media (prefers-reduced-motion: no-preference) {
  .usp-card { animation: usp-rise 560ms var(--ease-out) both; }
  @keyframes usp-rise { from { transform: translateY(22px); } to { transform: none; } }
}

/* ═══════════ FRANCHISE — trust ledger (expandable list) ═══════════ */
.trust-ledger { list-style: none; margin: 30px 0 0; padding: 0; position: relative; max-width: 860px; }
.trust-ledger::before { content: ""; position: absolute; left: 33px; top: 18px; bottom: 18px; width: 2px; background: var(--blue-100); }
@media (max-width: 560px) { .trust-ledger::before { left: 25px; } }
.ledger-item { position: relative; border: 1.5px solid var(--border); border-radius: 18px; background: #fff; margin-bottom: 14px; overflow: hidden; transition: border-color 220ms, box-shadow 220ms, background 220ms; }
.ledger-item.open { border-color: color-mix(in srgb, var(--c) 45%, #fff); background: var(--soft); box-shadow: var(--shadow-md); }
.ledger-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: none; border: 0; cursor: pointer; text-align: left; }
.ledger-num { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--c); width: 34px; flex-shrink: 0; text-align: center; }
.ledger-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--soft); color: var(--c); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; box-shadow: 0 0 0 4px #fff; transition: transform 300ms var(--ease-bounce); }
.ledger-item.open .ledger-icon { background: #fff; transform: scale(1.08) rotate(-6deg); }
.ledger-icon .lucide { width: 23px; height: 23px; stroke-width: 1.75; }
.ledger-title { flex: 1; font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 17px; }
.ledger-chevron { color: var(--c); display: flex; transition: transform 260ms var(--ease-out); flex-shrink: 0; }
.ledger-item.open .ledger-chevron { transform: rotate(180deg); }
.ledger-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms var(--ease-out); }
.ledger-item.open .ledger-body { grid-template-rows: 1fr; }
.ledger-body > p { overflow: hidden; margin: 0; padding: 0 24px 0 88px; font-size: 14.5px; line-height: 1.6; color: var(--fg-1); }
.ledger-item.open .ledger-body > p { padding-bottom: 20px; }
@media (max-width: 560px) { .ledger-body > p { padding-left: 24px; } .ledger-head { gap: 12px; padding: 16px 16px; } .ledger-title { font-size: 15.5px; } }
@media (prefers-reduced-motion: no-preference) {
  .ledger-item { animation: ledger-rise 520ms var(--ease-out) both; }
  @keyframes ledger-rise { from { transform: translateY(18px); } to { transform: none; } }
}
.spec-card { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 18px; padding: 24px 22px; text-align: center; }
.spec-icon { width: 54px; height: 54px; border-radius: 999px; background: #fff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: var(--shadow-sm); }
.spec-icon .lucide { width: 26px; height: 26px; stroke-width: 1.75; }
.spec-logo { width: 72px; height: 72px; border-radius: 999px; background: #fff; margin: 0 auto 14px; box-shadow: var(--shadow-sm); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.spec-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.spec-photo img { object-fit: cover; object-position: top; padding: 0; }
.spec-dark { background: #000; }
.spec-dark img { padding: 6px; }
.spec-card h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 16.5px; margin: 0 0 6px; }
.spec-card p { font-size: 13.5px; line-height: 1.5; color: var(--fg-2); margin: 0; }

/* ═══════════════ LEARNING & DEVELOPMENT ═══════════════ */
.course-banner { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; background: var(--bg-cream); border: 1px solid var(--border); border-radius: 22px; padding: 32px; box-shadow: var(--shadow-sm); }
@media (max-width: 640px) { .course-banner { grid-template-columns: 1fr; } }
.course-icon { width: 64px; height: 64px; border-radius: 18px; background: #fff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.course-icon .lucide { width: 32px; height: 32px; stroke-width: 1.6; }
.course-banner h2 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 10px; }
.course-banner p { font-size: 15.5px; line-height: 1.6; color: var(--fg-1); margin: 0 0 18px; max-width: 64ch; }

/* ═══════════════ COVE — engagement grid ═══════════════ */
.engage-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
@media (min-width: 620px) { .engage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .engage-grid { grid-template-columns: repeat(3, 1fr); } }
.engage-card { display: flex; gap: 14px; align-items: center; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 16px; padding: 18px 20px; }
.engage-icon { width: 46px; height: 46px; border-radius: 14px; background: #fff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.engage-icon .lucide { width: 23px; height: 23px; stroke-width: 1.75; }
.engage-card h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 15.5px; margin: 0; }
.engage-card p { font-size: 12.5px; color: var(--fg-3); margin: 2px 0 0; font-weight: 600; }

/* ═══════════════ ACE SHOPPE ═══════════════ */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 760px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1020px) { .shop-grid { grid-template-columns: repeat(4, 1fr); } }
.shop-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.shop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.shop-img { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; position: relative; }
.shop-img .lucide { width: 52px; height: 52px; stroke-width: 1.4; }
.shop-soon { font-size: 10.5px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--fg-3); background: rgba(255,255,255,0.85); border-radius: 999px; padding: 4px 11px; }
.shop-card h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 16px; margin: 14px 16px 4px; }
.shop-price { display: block; font-size: 12.5px; color: var(--fg-3); font-weight: 700; margin: 0 16px 16px; }

/* ═══════════════ AWARDS ═══════════════ */
.awards-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
@media (min-width: 620px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .awards-grid { grid-template-columns: repeat(4, 1fr); } }
.award-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.award-year { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--brand-blue); background: var(--blue-50); border-radius: 999px; padding: 5px 13px; margin-bottom: 12px; }
.award-year .lucide { width: 15px; height: 15px; }
.award-card p { font-size: 13.5px; line-height: 1.5; color: var(--fg-1); margin: 0; font-weight: 600; }
.milestones-banner { margin-top: 26px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); background: #fff; }
.milestones-banner img { width: 100%; height: auto; display: block; }
.award-photos { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 26px; }
@media (min-width: 700px) { .award-photos { grid-template-columns: 1fr 1fr; } }
.award-photo { border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.award-photo img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; object-position: top; display: block; }
.award-photo figcaption { padding: 12px 16px; font-size: 13px; color: var(--fg-2); font-weight: 600; }

/* Crew rows (Gamdevi) */
.crew-row { margin-top: 26px; }
.crew-row-label { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-blue); margin: 0 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--blue-100); }
.crew-row .team-grid { margin-top: 0; }

/* Featured curator profile (Hema) */
.hema-card { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 20px; padding: 26px 28px; margin-top: 28px; }
.hema-head { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.team-photo-img { overflow: hidden; }
.team-photo-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* ═══════════════ POD JOURNEY (scroll-driven dolphin) ═══════════════ */
.journey { background: var(--bg-tinted); --wv: #F6FAFE; }
.journey-track { position: relative; max-width: 900px; margin: 36px auto 0; padding: 0 16px; }
.journey-stage { position: relative; width: 100%; }
.journey-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.journey-dolphin { position: absolute; top: 0; left: 0; width: 74px; will-change: transform; filter: drop-shadow(0 8px 14px rgba(25,62,107,0.22)); pointer-events: none; z-index: 1; }
.journey-dolphin svg { width: 100%; height: auto; display: block; }
@media (max-width: 700px) { .journey-dolphin { width: 54px; } }
.jstop { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; z-index: 2; }
.jdot { width: 18px; height: 18px; border-radius: 999px; background: #fff; border: 4px solid var(--blue-200); transition: all 300ms var(--ease-out); }
.jstop.passed .jdot { background: var(--brand-red); border-color: #fff; box-shadow: 0 0 0 3px var(--brand-red); transform: scale(1.05); }
.jcard { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 10px 16px; text-align: center; box-shadow: var(--shadow-sm); transition: all 300ms var(--ease-out); opacity: 0.75; max-width: 200px; }
.jstop.passed .jcard { opacity: 1; box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.jstop:hover .jcard { transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 1; }
.jname { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--brand-navy); white-space: nowrap; }
.jmeta { font-size: 11.5px; color: var(--fg-3); font-weight: 700; white-space: nowrap; }
.jsoon { font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-blue); background: var(--blue-50); border-radius: 999px; padding: 2px 8px; margin-top: 3px; }
@media (max-width: 700px) {
  .jcard { padding: 7px 10px; }
  .jname { font-size: 12px; white-space: normal; }
  .jmeta { font-size: 10px; white-space: normal; }
}

/* ═══════════════ POD DETAIL PAGE ═══════════════ */
.podpage-hero { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 880px) { .podpage-hero { grid-template-columns: 1.15fr 0.85fr; gap: 48px; } }
.podpage-sign img { width: 100%; max-width: 440px; display: block; margin: 0 auto; filter: drop-shadow(0 14px 24px rgba(25,62,107,0.16)); }
.podpage-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.podpage-photo { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); }
.podpage-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.podpage-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.podpage-highlights span { display: flex; align-items: center; gap: 8px; background: var(--blue-50); border-radius: 12px; padding: 10px 14px; font-weight: 700; font-size: 14px; color: var(--brand-navy); font-family: var(--font-display); }
.podpage-highlights .lucide { width: 16px; height: 16px; color: var(--brand-blue); stroke-width: 2.5; flex-shrink: 0; }

/* Pod focus-area photo tiles (wireframe layout) */
.pod-focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 720px) { .pod-focus-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.pod-focus-tile { display: flex; flex-direction: column; gap: 12px; }
.pod-focus-img { border-radius: 18px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--blue-50); box-shadow: var(--shadow-md); }
.pod-focus-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 420ms var(--ease-out); }
.pod-focus-tile:hover .pod-focus-img img { transform: scale(1.05); }
.pod-focus-cap { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 15px; text-align: center; background: #fff; border: 1.5px solid var(--border); border-radius: 999px; padding: 9px 16px; box-shadow: var(--shadow-sm); }

/* Empty gallery (coming soon) */
.gallery-empty { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg-tinted), #fff); border: 1.5px dashed var(--border-strong); border-radius: 28px; padding: 56px 28px; text-align: center; }
.gallery-empty-inner { position: relative; z-index: 1; max-width: 540px; margin: 0 auto; }
.gallery-empty-mark { width: 120px; height: auto; margin: 0 auto 18px; display: block; filter: drop-shadow(0 12px 22px rgba(25,62,107,0.18)); animation: gentle-float 5.5s ease-in-out infinite; }
.gallery-empty h2 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: clamp(22px, 3vw, 30px); margin: 0 0 12px; }
.gallery-empty p { color: var(--fg-2); font-size: 16px; line-height: 1.6; margin: 0 auto 14px; max-width: 46ch; }
.gallery-empty .gallery-tour { color: var(--fg-1); font-weight: 700; margin-bottom: 22px; }

/* CV upload control */
.cv-upload { display: flex; align-items: center; gap: 12px; border: 1.5px dashed var(--border-strong); border-radius: 14px; padding: 16px 18px; cursor: pointer; color: var(--fg-2); font-weight: 600; transition: border-color 160ms, background 160ms; background: var(--bg-tinted); }
.cv-upload:hover { border-color: var(--brand-blue); background: var(--blue-50); }
.cv-upload .lucide { width: 22px; height: 22px; color: var(--brand-blue); flex-shrink: 0; }

/* ═══════════════ LEARNING LENS CIRCLE ═══════════════ */
.lens-wrap { position: relative; width: min(560px, 92vw); aspect-ratio: 1; margin: 36px auto 8px; }
.lens-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 38%; aspect-ratio: 1; border-radius: 999px; background: var(--brand-blue); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px; box-shadow: 0 18px 36px -12px rgba(25,62,107,0.35); z-index: 2; }
.lens-center h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(16px, 2.4vw, 21px); margin: 0; line-height: 1.2; }
.lens-center p { font-size: clamp(10px, 1.4vw, 12px); margin: 6px 0 0; opacity: 0.85; font-weight: 600; }
.lens-center-photo { overflow: hidden; padding: 0; background: var(--brand-blue); box-shadow: 0 0 0 5px #fff, 0 10px 26px -8px rgba(25,62,107,0.4); }
.lens-center-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ═══════════════ WHY ACE — floating bubbles ═══════════════ */
.why-bubbles-wrap { margin-top: 26px; }
.why-bubbles { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.why-bubble { width: 134px; height: 134px; border-radius: 999px; border: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 14px; color: var(--brand-navy); box-shadow: var(--shadow-sm); transition: transform 220ms var(--ease-out), box-shadow 220ms; }
.why-bubble .lucide { width: 26px; height: 26px; color: var(--bub); stroke-width: 1.75; }
.why-bubble span { font-family: var(--font-display); font-weight: 800; font-size: 12.5px; line-height: 1.15; }
.why-bubble:hover { transform: translateY(-4px) scale(1.04); box-shadow: var(--shadow-md); }
.why-bubble.active { box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--bub), var(--shadow-md); transform: scale(1.05); }
@media (prefers-reduced-motion: no-preference) {
  .why-bubble { animation: gentle-float 5s ease-in-out infinite; }
  .why-bubble:nth-child(2n) { animation-duration: 6s; animation-delay: .4s; }
  .why-bubble:nth-child(3n) { animation-duration: 6.6s; animation-delay: .8s; }
  .why-bubble:nth-child(4n) { animation-duration: 5.4s; animation-delay: .2s; }
}
.why-detail { display: flex; gap: 18px; align-items: flex-start; margin: 26px auto 0; max-width: 780px; border: 1.5px solid; border-radius: 20px; padding: 24px 26px; transition: background 240ms ease; }
.why-detail-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.why-detail-icon .lucide { width: 26px; height: 26px; stroke-width: 1.75; }
.why-detail h4 { font-family: var(--font-display); font-weight: 800; font-size: 18px; margin: 0 0 6px; }
.why-detail p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--fg-1); }
@media (max-width: 520px) { .why-bubble { width: 106px; height: 106px; } .why-bubble span { font-size: 11px; } .why-detail { flex-direction: column; gap: 12px; } }

/* ═══════════════ CURRICULUM — framework cards (S19) ═══════════════ */
.framework-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
@media (min-width: 640px) { .framework-grid { grid-template-columns: 1fr 1fr; } }
.framework-card { position: relative; border: 1.5px solid; border-radius: 22px; padding: 28px 26px 26px; overflow: hidden; }
.fw-num { position: absolute; top: 4px; right: 18px; font-family: var(--font-display); font-weight: 800; font-size: 76px; line-height: 1; color: #fff; opacity: 0.7; pointer-events: none; }
.fw-icon { width: 52px; height: 52px; border-radius: 14px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); margin-bottom: 16px; position: relative; }
.fw-icon .lucide { width: 26px; height: 26px; stroke-width: 1.75; }
.framework-card h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 19px; margin: 0 0 8px; position: relative; }
.framework-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--fg-1); position: relative; }

/* ═══════════════ ABOUT — vision image aside ═══════════════ */
.vision-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vision-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-md); }
.vision-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vision-hes { border-radius: 18px; padding: 18px; display: flex; flex-direction: column; justify-content: center; gap: 10px; border: 1.5px solid; aspect-ratio: 1; }
.vision-hes .hes-tag { align-self: flex-start; font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.12em; padding: 5px 12px; border-radius: 999px; background: #fff; }
.vision-hes h4 { font-family: var(--font-display); font-weight: 700; color: var(--brand-navy); font-size: 14px; line-height: 1.3; margin: 0; }
@media (max-width: 420px) { .vision-hes, .vision-photo { aspect-ratio: auto; } .vision-hes { min-height: 120px; } }
/* Elliptical ring that actually passes through the spoke centres
   (x-radius 36%, y-radius 44%). */
.lens-ring { position: absolute; left: 14%; right: 14%; top: 6%; bottom: 6%; border: 2.5px dashed var(--blue-200); border-radius: 50%; }
.lens-spoke { position: absolute; transform: translate(-50%, -50%); background: #fff; border: 1.5px solid var(--blue-100); border-radius: 18px; padding: 9px 14px; font-family: var(--font-display); font-weight: 700; font-size: clamp(10.5px, 1.6vw, 13.5px); color: var(--brand-navy); text-align: center; max-width: 150px; line-height: 1.3; box-shadow: var(--shadow-sm); z-index: 1; }
.lens-spoke .lucide { width: 14px; height: 14px; color: var(--brand-blue); margin-right: 5px; vertical-align: -2px; }
/* On small screens the ring collapses into a simple chip grid under the centre */
@media (max-width: 700px) {
  .lens-wrap { width: 100%; aspect-ratio: auto; display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .lens-ring { display: none; }
  .lens-center { position: static; transform: none; width: 200px; }
  .lens-spokes-sm { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
  .lens-spoke { position: static; transform: none; max-width: none; white-space: normal; }
}
@media (min-width: 701px) {
  .lens-spokes-sm { display: contents; }
}

/* ═══════════════ NUMBERED PILLARS (Unique Curriculum S19) ═══════════════ */
.numbered-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 820px) { .numbered-grid { grid-template-columns: 1fr 1fr; } }
.num-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start; }
.num-badge { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--brand-red); background: var(--red-50); border-radius: 14px; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.num-card h4 { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 17.5px; margin: 0 0 8px; line-height: 1.3; }
.num-card p { font-size: 14.5px; line-height: 1.6; color: var(--fg-1); margin: 0; }

/* Strand expandable detail */
.pillar-more { margin-top: 14px; }
.pillar-more summary { cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--brand-blue); list-style: none; display: inline-flex; align-items: center; gap: 6px; }
.pillar-more summary::-webkit-details-marker { display: none; }
.pillar-more summary::after { content: "+"; font-size: 16px; }
.pillar-more[open] summary::after { content: "–"; }
.pillar-more p { font-size: 14px; line-height: 1.6; color: var(--fg-1); margin: 10px 0 0; }

/* ═══════════════ CREW PROFILE MODAL ═══════════════ */
.pm-overlay { position: fixed; inset: 0; background: rgba(11,28,50,0.55); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.pm-card { position: relative; background: #fff; border-radius: 24px; max-width: 680px; width: 100%; max-height: min(82vh, 720px); display: flex; flex-direction: column; box-shadow: 0 32px 64px -16px rgba(11,28,50,0.45); animation: pm-in 240ms var(--ease-out); }
@keyframes pm-in { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.pm-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--brand-navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 140ms; z-index: 1; }
.pm-close:hover { background: var(--blue-50); color: var(--brand-blue); }
.pm-close .lucide { width: 18px; height: 18px; }
.pm-head { display: flex; gap: 18px; align-items: center; padding: 28px 28px 18px; border-bottom: 1px solid var(--divider); flex-wrap: wrap; }
.pm-photo { width: 92px; height: 92px; font-size: 28px; flex-shrink: 0; }
.pm-name { font-family: var(--font-display); font-weight: 800; color: var(--brand-navy); font-size: 26px; margin: 2px 0 0; }
.pm-sub { margin: 4px 0 0; font-size: 14px; color: var(--fg-2); }
.pm-body { padding: 20px 28px 28px; overflow-y: auto; }
.pm-body p { font-size: 15px; line-height: 1.65; color: var(--fg-1); margin: 0 0 14px; }
.pm-body p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .pm-head { padding: 22px 20px 14px; } .pm-body { padding: 16px 20px 22px; } .pm-name { font-size: 22px; } }

.profile-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--brand-blue); background: none; border: 0; padding: 0; cursor: pointer; margin-top: 12px; }
.profile-link:hover { color: var(--blue-500); text-decoration: underline; text-underline-offset: 3px; }
.profile-link .lucide { width: 15px; height: 15px; }
