/* ============================================================
   Foro Skills — Landing Page
   Display: Bebas Neue · Body: Barlow
   ============================================================ */

:root {
  /* Brand */
  --navy: #061f45;
  --navy-2: #0a2a5c;
  --black: #000000;
  --blue: #0077ff;
  --blue-bright: #1f93ff;
  --orange: #ff9900;
  --orange-deep: #f08800;
  --amber: #fbbf24;
  --green: #37ca37;
  --red: #e93d3d;

  /* Neutrals */
  --white: #ffffff;
  --band: #ededed;
  --ink: #141414;
  --muted: #575757;
  --muted-2: #8c8c8c;
  --line: #e2e5ea;

  /* Fonts */
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing & layout */
  --container: 1140px;
  --pad: clamp(1rem, 5vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 6rem);
  --radius: 10px;

  /* Effects */
  --cta-grad: linear-gradient(180deg, var(--blue-bright), var(--blue));
  --cta-glow: 0 10px 26px rgba(0, 119, 255, 0.42);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Z-index scale */
  --z-header: 100;
  --z-sticky: 200;
  --z-backdrop: 900;
  --z-modal: 1000;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.center { text-align: center; }

/* Offset in-page anchors for the sticky header */
section[id], [id="book"], [id="top"] { scroll-margin-top: 88px; }

/* ---------- Display headings ---------- */
h1, h2, h3, .stat-label, .age-badge, .btn {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.96;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.5rem); text-wrap: balance; }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); text-wrap: balance; }
h3 { font-size: clamp(1.45rem, 3vw, 2rem); }

section h2 { margin-bottom: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--white);
  background: var(--cta-grad);
  box-shadow: var(--cta-glow);
  transition: transform 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out), filter 0.16s var(--ease-out);
  text-align: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 119, 255, 0.5); filter: brightness(1.05); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 3px solid #ffd166; outline-offset: 3px; }
.btn-lg { font-size: 1.45rem; padding: 0.72em 1.9em; }
.btn-block { width: 100%; }

/* ---------- Reveal animation ----------
   Content is visible by default. Only when JS confirms it can animate
   (adds .js-reveal to <html>) do we hide-then-reveal. This keeps every
   section visible in no-JS / headless / prefers-reduced-motion renders. */
.js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { width: 52px; height: 52px; }
.brand-name { font-family: var(--display); font-size: 1.5rem; color: var(--white); letter-spacing: 0.02em; }
.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a {
  font-family: var(--display); font-size: 1.15rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white); opacity: 0.9;
  position: relative; padding-bottom: 4px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); transition: width 0.25s var(--ease-out);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }
.header-cta { font-size: 1.05rem; padding: 0.55em 1.2em; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: 0.25s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 0.25rem;
  background: var(--black); padding: 0 var(--pad);
  max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
.mobile-nav.open { max-height: 360px; padding: 0.5rem var(--pad) 1.25rem; }
.mobile-nav a { color: var(--white); font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav .btn { margin-top: 0.75rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,16,30,0.94) 0%, rgba(6,16,30,0.78) 42%, rgba(6,16,30,0.5) 100%),
    url("assets/img/action-1.jpg") center/cover no-repeat;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.badge {
  display: inline-block; background: var(--orange); color: var(--white);
  font-family: var(--display); font-size: 1.15rem; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.3em 0.9em; border-radius: 6px; margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 0.9rem; max-width: 13ch; line-height: 0.92; letter-spacing: 0.01em; }
.hl-accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #d7e0ee; font-weight: 500;
  max-width: 34ch; margin-bottom: 1.5rem; line-height: 1.45; text-wrap: pretty;
}
.hero-list { display: grid; gap: 0.7rem; margin-bottom: 1.75rem; }
.hero-list li {
  position: relative; padding-left: 2rem; font-weight: 500; font-size: 1.02rem;
}
.hero-list li::before {
  content: ""; position: absolute; left: 0; top: 0.18em; width: 20px; height: 20px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  border-radius: 50%;
}
.urgency { font-style: italic; font-size: 0.92rem; opacity: 0.85; margin-top: 1rem; line-height: 1.4; }
.urgency.dark { color: var(--muted); opacity: 1; }

/* Hero video — larger, autoplaying inline; click for sound/fullscreen */
.hero-media { display: flex; justify-content: center; }
.hero-video-wrap {
  position: relative; width: 100%; max-width: 620px;
  border-radius: 16px; overflow: hidden; line-height: 0;
  box-shadow: 0 26px 70px rgba(0,0,0,0.5);
}
.hero-video-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.14); border-radius: 16px;
}
.hero-video { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; background: #04101e; }
/* "Watch with sound" pill, bottom-left */
.video-trigger {
  position: absolute; left: 0.85rem; bottom: 0.85rem; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer; padding: 0.5rem 0.95rem 0.5rem 0.55rem;
  background: rgba(6,16,30,0.62); color: var(--white); border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-family: var(--display); font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out);
}
.video-trigger:hover { background: rgba(0,119,255,0.92); transform: translateY(-1px); }
.video-trigger:focus-visible { outline: 3px solid #ffd166; outline-offset: 2px; }
.play-btn {
  width: 30px; height: 30px; flex: 0 0 auto;
  display: grid; place-items: center; color: var(--white);
  background: var(--blue); border-radius: 50%;
}
.play-btn svg { width: 16px; height: 16px; margin-left: 2px; }
.video-trigger:hover .play-btn { background: var(--navy); }

/* ============================================================
   STAT BAR
   ============================================================ */
.statbar { background: var(--navy); color: var(--white); }
.statbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.5rem); padding-block: clamp(2rem, 4vw, 3rem); }
.stat { text-align: center; padding-bottom: 1rem; position: relative; }
.stat::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 56px; height: 3px; background: rgba(255,255,255,0.22); border-radius: 2px; }
.stat-label { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--orange); font-size: 1.85rem; margin-bottom: 0.5rem; }
.stat-label .ic-star { width: 26px; height: 26px; fill: var(--amber); }
.stat p { font-size: 0.92rem; color: #cfd6e4; max-width: 24ch; margin-inline: auto; }

/* ============================================================
   VALUE PROP
   ============================================================ */
.band { background: var(--band); }
.valueprop { padding-block: var(--section-y); }
.vp-inner { max-width: 820px; margin-inline: auto; text-align: center; }
.vp-graphic { width: clamp(220px, 40vw, 360px); margin: 0 auto 1.5rem; filter: drop-shadow(0 14px 26px rgba(0,0,0,0.18)); }
.valueprop h2 { color: var(--navy); }
.vp-problem { color: var(--muted); margin: 1.25rem auto 1.75rem; max-width: 60ch; }
.vp-lead { font-family: var(--display); font-size: 1.4rem; color: var(--navy); letter-spacing: 0.02em; margin-bottom: 1.25rem; }
.pill-list { display: grid; gap: 0.75rem; max-width: 640px; margin: 0 auto; text-align: left; }
.pill-list li {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--orange); color: var(--navy); font-weight: 600;
  padding: 0.85rem 1.25rem; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(240,136,0,0.25);
}
.pill-list .ic-check { width: 22px; height: 22px; fill: var(--navy); flex-shrink: 0; }

.ages { text-align: left; margin: 3rem auto 0; max-width: 65ch; }
.ages h3 { color: var(--ink); margin-bottom: 0.5rem; margin-top: 1.75rem; font-size: 1.5rem; }
.ages h3:first-child { margin-top: 0; }
.ages p { color: var(--muted); margin-bottom: 0.9rem; }
.section-cue { font-family: var(--display); font-size: 1.5rem; color: var(--ink); letter-spacing: 0.02em; margin: 3rem 0 1.75rem; }

/* Benefit chips */
.chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 760px; margin: 0 auto 2.5rem; }
.chips li {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--black); color: var(--white);
  font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.03em; text-transform: uppercase;
  text-align: center; padding: 1.4rem 1rem; border-radius: 8px; min-height: 130px;
  transition: transform 0.2s var(--ease-out);
}
.chips li:hover { transform: translateY(-3px); }
.chip-ic { display: grid; place-items: center; }
.chip-ic svg { width: 34px; height: 34px; fill: var(--blue-bright); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding-block: var(--section-y); background: var(--white); }
.testimonials h2 { color: var(--navy); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.75rem; box-shadow: 0 8px 24px rgba(6,31,69,0.06); display: flex; flex-direction: column;
}
.stars { color: var(--amber); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 0.85rem; }
.review blockquote { font-style: italic; color: var(--muted); font-size: 1.02rem; }
.review figcaption { margin-top: 1.1rem; font-weight: 700; color: var(--ink); }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { padding-block: var(--section-y); background: var(--white); }
.programs h2 { color: var(--navy); max-width: 22ch; margin-inline: auto; }
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
.program-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(6,31,69,0.08); display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(6,31,69,0.14); }
.program-photo { aspect-ratio: 16/10; overflow: hidden; }
.program-photo img { width: 100%; height: 100%; object-fit: cover; }
.program-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.age-badge { align-self: flex-start; background: var(--orange); color: var(--white); font-size: 1rem; letter-spacing: 0.04em; padding: 0.25em 0.7em; border-radius: 5px; }
.program-body h3 { color: var(--navy); }
.program-body > p { color: var(--muted); font-size: 0.98rem; }
.ticks { display: grid; gap: 0.55rem; margin-top: 0.25rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink); font-size: 0.95rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.15em; width: 18px; height: 18px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location { padding-block: var(--section-y); background: var(--white); }
.location h2 { color: var(--navy); }
.loc-sub { font-family: var(--display); font-size: 1.3rem; color: var(--navy); letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 2rem; }
.map-wrap { position: relative; max-width: 760px; margin: 0 auto 2.5rem; border-radius: 14px; overflow: hidden; box-shadow: 0 14px 40px rgba(6,31,69,0.18); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; }
.map-card { background: var(--navy); color: var(--white); text-align: left; padding: 1.1rem 1.4rem; }
.map-card-name { display: flex; align-items: center; gap: 0.5rem; font-family: var(--display); font-size: 1.4rem; letter-spacing: 0.03em; text-transform: uppercase; }
.map-card-name .ic-pin { width: 22px; height: 22px; fill: var(--orange); }
.map-card address { font-style: normal; font-size: 0.95rem; color: #cfd6e4; margin-top: 0.25rem; }

/* ============================================================
   6 REASONS
   ============================================================ */
.reasons { position: relative; color: var(--white); padding-block: var(--section-y); overflow: hidden; }
.reasons-bg {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(6,16,30,0.86), rgba(6,16,30,0.86)), url("assets/img/action-2.jpg") center/cover fixed no-repeat;
}
.reasons .container { position: relative; }
.reasons h2 { max-width: 26ch; margin-inline: auto; }
.reasons h2 .hl { color: var(--orange); }
.reason-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin: 2.5rem 0; }
.reason-card { background: var(--orange); border-radius: 12px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.3); display: flex; flex-direction: column; transition: transform 0.25s var(--ease-out); }
.reason-card:hover { transform: translateY(-4px); }
.reason-photo { aspect-ratio: 16/9; overflow: hidden; }
.reason-photo img { width: 100%; height: 100%; object-fit: cover; }
.reason-body { padding: 1.25rem 1.4rem 1.6rem; }
.reason-body h3 { color: var(--navy); margin-bottom: 0.5rem; }
.reason-body p { color: #3a2a06; font-size: 0.96rem; font-weight: 500; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.howitworks { padding-block: var(--section-y); background: var(--white); }
.howitworks h2 { color: var(--navy); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
.step { background: var(--navy); color: var(--white); border-radius: 14px; padding: 2rem 1.6rem; text-align: center; }
.step-num { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--orange); letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.step-ic { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 1rem; background: rgba(255,153,0,0.14); border-radius: 14px; }
.step-ic svg { width: 32px; height: 32px; fill: var(--orange); }
.step h3 { margin-bottom: 0.6rem; }
.step p { color: #cfd6e4; font-size: 0.96rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: var(--section-y); }
.faq h2 { color: var(--navy); }
.accordion { max-width: 760px; margin: 2rem auto 0; display: grid; gap: 0.75rem; }
.accordion details {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(6,31,69,0.05);
}
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; cursor: pointer; font-weight: 700; color: var(--ink); list-style: none; font-size: 1.05rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.chev { width: 12px; height: 12px; border-right: 2.5px solid var(--muted); border-bottom: 2.5px solid var(--muted); transform: rotate(45deg); transition: transform 0.25s var(--ease-out); flex-shrink: 0; }
.accordion details[open] .chev { transform: rotate(-135deg); }
.acc-body { padding: 0 1.3rem 1.3rem; }
.acc-body p { color: var(--muted); margin-bottom: 0.7rem; }
.acc-body p:last-child { margin-bottom: 0; }

/* ============================================================
   BOOK / FINAL CTA + FORM
   ============================================================ */
.book { position: relative; color: var(--white); padding-block: var(--section-y); overflow: hidden; }
.book-bg {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(6,16,30,0.82), rgba(6,16,30,0.9)), url("assets/img/field-aerial.jpg") center/cover no-repeat;
}
.book-inner { position: relative; max-width: 720px; margin-inline: auto; }
.book h2 { margin-bottom: 1.6rem; }

/* ---------- Booking wizard shell ---------- */
.booking-wizard {
  background: rgba(255,255,255,0.97); color: var(--ink); border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* Progress steps */
.wiz-steps {
  display: flex; gap: 0.4rem; margin: 0 0 1.6rem; padding: 0;
  counter-reset: none; flex-wrap: nowrap;
}
.wiz-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 600; color: var(--muted-2); text-align: center;
  position: relative; line-height: 1.2;
}
.wiz-step::before {
  content: ""; position: absolute; top: 14px; left: -50%; width: 100%; height: 2px;
  background: var(--line); z-index: 0;
}
.wiz-step:first-child::before { display: none; }
.wiz-dot {
  position: relative; z-index: 1; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; background: var(--band); color: var(--muted);
  font-weight: 700; font-size: 0.85rem; border: 2px solid var(--line);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.wiz-step.is-active .wiz-dot { background: var(--cta-grad); color: var(--white); border-color: transparent; }
.wiz-step.is-active { color: var(--navy); }
.wiz-step.is-done .wiz-dot { background: var(--green); color: var(--white); border-color: transparent; }
.wiz-step.is-done::before, .wiz-step.is-active::before { background: var(--blue); }

/* Panels */
.wiz-panel { display: none; }
.wiz-panel.is-active { display: block; animation: wizFade 0.32s var(--ease-out); }
@keyframes wizFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wiz-title { font-family: var(--body); font-weight: 700; font-size: 1.2rem; color: var(--navy); margin-bottom: 1.1rem; letter-spacing: 0; }

/* Fields (shared) */
.wiz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
#childAge { grid-column: 1 / -1; }
.booking-wizard label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.booking-wizard label span { color: var(--red); }
.booking-wizard input, .booking-wizard select {
  font-family: var(--body); font-size: 1rem; padding: 0.7rem 0.85rem; width: 100%;
  border: 1.5px solid var(--line); border-radius: 8px; background: var(--white); color: var(--ink);
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.booking-wizard input:focus, .booking-wizard select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,119,255,0.16); }
.booking-wizard .error { color: var(--red); font-size: 0.8rem; min-height: 1em; }
.field.invalid input, .field.invalid select { border-color: var(--red); }

/* Nav row */
.wiz-nav { display: flex; gap: 0.75rem; margin-top: 1.4rem; align-items: center; }
.wiz-nav .wiz-back { flex: 0 0 auto; }
.wiz-nav .wiz-next, .wiz-nav .wiz-submit { flex: 1; }
.btn-ghost {
  background: transparent; color: var(--navy); border: 1.5px solid var(--line);
  padding: 0.6em 1.2em; font-size: 1.05rem;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: none; box-shadow: none; }
.form-fineprint { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 0.9rem; }
.form-status { text-align: center; font-weight: 600; min-height: 1.2em; margin-top: 0.9rem; }
.form-status.success { color: #138a36; }
.form-status.fail { color: var(--red); }
.book .urgency { margin-top: 1.5rem; opacity: 0.9; }

/* Live urgency badge — used across the page (dark + light sections) */
.urgency-live {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.45rem;
  opacity: 1; color: #ffd9d9; font-weight: 600; font-style: normal;
}
.urgency-live em { font-style: italic; }
/* On light bands (.dark variant) use a readable deep red instead of light red. */
.urgency-live.dark { color: #c62828; }
/* Hero badge follows the left-aligned hero copy. */
.hero .urgency-live { justify-content: flex-start; }
/* Fire emoji draws the eye with a gentle flicker. */
.urgency-fire { font-size: 1.1em; line-height: 1; flex: 0 0 auto; transform-origin: center 70%; animation: firePulse 1.6s var(--ease-out) infinite; }
@keyframes firePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.16); } }
@media (prefers-reduced-motion: reduce) { .urgency-fire { animation: none; } }
/* Urgency banner inside the booking card */
.booking-urgency { margin: 0 0 1.4rem; padding: 0.6rem 1rem; background: rgba(233, 61, 61, 0.09); border-radius: 10px; font-size: 0.92rem; }

/* Program cards */
.program-cards { display: grid; gap: 0.85rem; }
.program-card {
  text-align: left; width: 100%; background: var(--white); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 1rem 1.1rem; cursor: pointer; display: flex; gap: 0.9rem;
  align-items: flex-start; transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), transform 0.12s var(--ease-out);
  font-family: var(--body);
}
.program-card:hover { border-color: var(--blue); box-shadow: 0 8px 20px rgba(0,119,255,0.12); }
.program-card:focus-visible { outline: 3px solid #ffd166; outline-offset: 2px; }
.program-card.is-selected { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,119,255,0.16); }
.program-card .pc-icon { font-size: 1.6rem; line-height: 1; flex: 0 0 auto; }
.program-card .pc-body { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.program-card .pc-name { display: block; font-weight: 700; color: var(--navy); font-size: 1.05rem; line-height: 1.25; }
.program-card .pc-ages { display: block; font-size: 0.82rem; color: var(--blue); font-weight: 600; }
.program-card .pc-blurb { display: block; font-size: 0.88rem; color: var(--muted); line-height: 1.4; }

/* Waiver step */
.waiver-intro { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.9rem; }
.waiver-doc {
  max-height: 260px; overflow-y: auto; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 1rem 1.1rem; background: #fafbfc; font-size: 0.86rem; color: var(--ink); line-height: 1.5;
}
.waiver-doc:focus-visible { outline: 3px solid #ffd166; outline-offset: 2px; }
.waiver-doc h4 { font-family: var(--body); font-size: 0.95rem; color: var(--navy); margin-bottom: 0.6rem; letter-spacing: 0.01em; }
.waiver-doc p { margin-bottom: 0.6rem; }
.waiver-doc ol { list-style: decimal; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.55rem; }
.waiver-doc li { padding-left: 0.2rem; }
.waiver-agree {
  display: flex; gap: 0.6rem; align-items: flex-start; margin: 1rem 0 0.4rem;
  font-size: 0.88rem; color: var(--ink); cursor: pointer; line-height: 1.4;
}
.waiver-agree input { width: 18px; height: 18px; margin-top: 0.15rem; flex: 0 0 auto; accent-color: var(--blue); cursor: pointer; }
.waiver-pdf-link { margin-top: 0.5rem; font-size: 0.85rem; }
.waiver-pdf-link a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.waiver-pdf-link a:hover { color: var(--navy); }
.waiver-sign-field { margin-top: 0.6rem; }
.waiver-sign-field input { font-family: var(--display); font-size: 1.4rem; letter-spacing: 0.03em; color: var(--navy); }
.waiver-meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; min-height: 1em; }

/* Calendar */
.cal-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.2rem; align-items: start; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.cal-title { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.cal-nav-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white);
  cursor: pointer; font-size: 1.1rem; color: var(--navy); display: grid; place-items: center; line-height: 1;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.cal-nav-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.cal-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { text-align: center; font-size: 0.7rem; font-weight: 700; color: var(--muted-2); padding-bottom: 0.3rem; text-transform: uppercase; }
.cal-cell {
  aspect-ratio: 1; border: none; background: transparent; border-radius: 50%; cursor: pointer;
  font-family: var(--body); font-size: 0.92rem; color: var(--ink); display: grid; place-items: center;
  transition: background 0.14s var(--ease-out), color 0.14s var(--ease-out);
}
.cal-cell.is-empty { cursor: default; }
.cal-cell.is-disabled { color: var(--muted-2); opacity: 0.4; cursor: not-allowed; }
.cal-cell.is-open:hover { background: rgba(0,119,255,0.12); }
.cal-cell.is-today { font-weight: 700; box-shadow: inset 0 0 0 1.5px var(--blue); }
.cal-cell.is-selected { background: var(--navy); color: var(--white); font-weight: 700; }

/* Time slots */
.slots-title { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.6rem; }
.slots-empty { color: var(--muted); font-size: 0.9rem; padding: 0.5rem 0; }
.slot-list { display: grid; gap: 0.5rem; max-height: 320px; overflow-y: auto; }
.slot-btn {
  width: 100%; padding: 0.65rem; border: 1.5px solid var(--line); border-radius: 8px; background: var(--white);
  cursor: pointer; font-family: var(--body); font-size: 0.95rem; font-weight: 600; color: var(--navy);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.slot-btn:hover { border-color: var(--blue); }
.slot-btn.is-selected { background: var(--cta-grad); color: var(--white); border-color: transparent; }
.cal-tz { font-size: 0.8rem; color: var(--muted); margin-top: 0.8rem; text-align: center; }

/* Confirm summary */
.confirm-summary { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem 1rem; margin: 0; }
.confirm-summary dt { font-weight: 700; color: var(--muted); font-size: 0.85rem; align-self: center; }
.confirm-summary dd { margin: 0; color: var(--navy); font-weight: 600; }
.confirm-summary dd.cs-highlight { color: var(--blue); font-size: 1.08rem; }

/* Success */
.booking-success { text-align: center; padding: 1rem 0; }
.booking-success .bs-check {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: var(--green);
  display: grid; place-items: center; color: var(--white); font-size: 2rem;
}
.booking-success .bs-head { font-family: var(--display); font-size: 2.2rem; color: #138a36; letter-spacing: 0.02em; }
.booking-success .bs-msg { color: var(--muted); margin-top: 0.5rem; }
.booking-success .bs-detail { margin-top: 1rem; font-weight: 700; color: var(--navy); }

/* Submit spinner */
.btn-spinner { display: none; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.4); border-top-color: var(--white); border-radius: 50%; animation: spin 0.7s linear infinite; }
.btn.loading .btn-label { opacity: 0.6; }
.btn.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: var(--white); padding-top: clamp(2.5rem, 5vw, 4rem); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; align-items: start; }
.footer-brand { display: flex; gap: 1.25rem; align-items: flex-start; }
.footer-brand img { width: 80px; height: 80px; flex-shrink: 0; }
.mission { color: #b9c1d0; font-size: 0.95rem; max-width: 48ch; }
.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-start; }
.footer-phone { font-family: var(--display); font-size: 1.9rem; color: var(--white); letter-spacing: 0.02em; }
.footer-phone:hover { color: var(--orange); }
.footer-contact address { font-style: normal; color: #b9c1d0; font-size: 0.95rem; }
.footer-base { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.25rem; }
.footer-base p { color: #8a92a3; font-size: 0.85rem; font-style: italic; text-align: center; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: var(--z-sticky);
  display: none; text-align: center; padding: 0.95rem; border-radius: 10px;
  background: var(--cta-grad); color: var(--white); box-shadow: var(--cta-glow);
  font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.04em; text-transform: uppercase;
  transform: translateY(150%); transition: transform 0.35s var(--ease-out);
}
.sticky-cta.show { transform: translateY(0); }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal { position: fixed; inset: 0; z-index: var(--z-modal); display: none; align-items: center; justify-content: center; padding: 1rem; }
.video-modal.open { display: flex; }
.video-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); z-index: var(--z-backdrop); }
.video-dialog { position: relative; z-index: var(--z-modal); width: min(960px, 96vw); }
.video-dialog video { width: 100%; border-radius: 12px; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.video-close { position: absolute; top: -3rem; right: 0; background: none; border: none; color: var(--white); font-size: 2.6rem; line-height: 1; cursor: pointer; }
.video-close:focus-visible { outline: 2px solid var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero h1 { max-width: none; }
  .statbar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .reasons-bg { background-attachment: scroll; }
  .sticky-cta { display: block; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .chips { grid-template-columns: 1fr 1fr; }
  .wiz-grid { grid-template-columns: 1fr; }
  .cal-layout { grid-template-columns: 1fr; }
  .slot-list { max-height: none; grid-template-columns: 1fr 1fr; }
  .wiz-step-label { display: none; }
  .map-wrap iframe { height: 320px; }
  .video-close { top: -2.6rem; }
}

@media (max-width: 380px) {
  .chips { grid-template-columns: 1fr; }
  .statbar-inner { grid-template-columns: 1fr; }
}
