/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #162040;
  --navy-light: #1e2e5c;
  --navy-mid: #233470;
  --gold: #E8A020;
  --gold-dark: #c98a10;
  --gold-light: #f5c45e;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-50: #f4f5f7;
  --gray-100: #e8eaed;
  --gray-200: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #111827;
  --text-muted: #6b7280;
  --green-bg: rgba(22, 163, 74, .1);
  --green-border: rgba(22, 163, 74, .3);
  --green-dark: #15803d;
  --green-dot: #16a34a;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════ */
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-gold { color: var(--gold); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-outline-nav {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-nav:hover { background: var(--navy); color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* Coming-soon program pre-book button */
.btn-coming {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(232,160,32,.5);
  font-weight: 600;
}
.btn-coming:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.btn-lg { padding: 14px 28px; font-size: 1rem; }

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}

.nav-header.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Nav logo: symbol + stacked brand text */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  gap: 10px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 4px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-name {
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--navy);
  text-transform: uppercase;
}

.nav-brand-sub {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}

.nav-links a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--navy); background: var(--gray-50); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.nav-phone:hover { color: var(--gold); }

.nav-right .btn {
  padding: 9px 16px;
  font-size: .82rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  padding: 16px 24px 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 10px 12px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--gray-600);
}
.mobile-menu a:hover { background: var(--gray-50); color: var(--navy); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding-top: 68px;
  background: var(--off-white);
  overflow: hidden;
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ── Green "Syllabus Aligned" badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.hero-badge-green {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  color: var(--green-dark);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-dot-green {
  background: var(--green-dot);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .6);
  animation: green-glow 2s ease-in-out infinite;
}

@keyframes green-glow {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, .65); }
  60%  { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* ── "Classes Active" green dot ── */
.active-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green-dot);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .6);
  animation: green-glow 2s ease-in-out infinite;
  vertical-align: middle;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

.rating-text { font-size: .82rem; color: var(--text-muted); font-weight: 500; }

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-sub strong { color: var(--navy); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-image-wrap { position: relative; }

.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.hero-card-top {
  top: 20px;
  right: -20px;
}

.hero-card-bottom {
  bottom: 24px;
  left: -20px;
}

.hcard-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.hcard-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.hcard-sub {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hcard-metric {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hcard-metric-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
}

.hcard-metric-sub {
  font-size: .73rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   TICKER / ROTATING KEYWORD BANNER
═══════════════════════════════════════════ */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 14px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  cursor: default;
  user-select: none;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 45s linear infinite;
}



.ticker-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 0 4px;
}

.ticker-sep {
  color: var(--gold);
  margin: 0 18px;
  font-size: .72rem;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-us {
  padding: 90px 0 0;
  background: var(--white);
}

.why-us .container { text-align: center; }

.why-us .section-sub { margin: 0 auto 52px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 0;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--gray-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.why-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--gray-400);
  transition: transform var(--transition);
}

.why-card.expanded .why-toggle { transform: rotate(180deg); }

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.why-expand-text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
  margin-bottom: 12px;
}

.why-card.expanded .why-expand-text { display: block; }

.why-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.why-link:hover { text-decoration: underline; }

/* Power Banner */
.power-banner {
  margin-top: 52px;
  background: var(--navy);
  color: var(--white);
  padding: 36px 0;
}

.power-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.power-label {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.power-text {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.7;
}

.power-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 99px;
  font-size: .83rem;
  font-weight: 600;
  white-space: nowrap;
}

.power-badge svg { color: var(--gold); }

/* ═══════════════════════════════════════════
   PROGRAMS
═══════════════════════════════════════════ */
.programs {
  padding: 90px 0;
  background: var(--off-white);
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}

.programs-header .section-title { margin-bottom: 0; }

.program-filters, .review-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover { border-color: var(--navy); color: var(--navy); }

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.programs .section-sub { margin-bottom: 40px; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.program-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.program-card.hidden { display: none; }

/* Coming-soon card — strong navy treatment */
.program-card--coming {
  background: var(--navy);
  border: 2px solid var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 46px;
}

.program-card--coming:hover { box-shadow: 0 10px 40px rgba(22,32,64,.35); transform: translateY(-4px); }

.program-card--coming .program-name,
.program-card--coming .outcomes-label { color: var(--white); }

.program-card--coming .program-quote { color: rgba(255,255,255,.65); border-left-color: var(--gold); }

.program-card--coming .program-desc { color: rgba(255,255,255,.7); }

.program-card--coming .program-outcomes li { color: rgba(255,255,255,.75); }

.program-card--coming .program-outcomes li::before { color: var(--gold); }

.coming-soon-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 9px 16px;
  text-align: center;
  white-space: nowrap;
}

.coming-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(232,160,32,.25);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}

.coming-note svg { flex-shrink: 0; color: var(--gold); margin-top: 1px; }

.program-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

.primary-tag { background: rgba(232, 160, 32, .12); color: var(--gold-dark); }
.high-tag { background: rgba(22, 32, 64, .08); color: var(--navy); }
.hsc-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }

.program-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.program-quote {
  font-size: .88rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  line-height: 1.5;
}

.program-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.program-outcomes { margin-top: 4px; }

.outcomes-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 8px;
}

.program-outcomes ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-outcomes li {
  font-size: .83rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}

.program-outcomes li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.program-card .btn { margin-top: auto; align-self: flex-start; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works {
  padding: 90px 0;
  background: var(--white);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.hiw-step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow var(--transition);
}

.hiw-step:hover { box-shadow: var(--shadow); }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.hiw-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hiw-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-dark);
}

.hiw-link:hover { text-decoration: underline; }

/* Mastery Banner */
.mastery-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: var(--white);
}

.mastery-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.mastery-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.mastery-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.mastery-text {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 480px;
}

.mastery-stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.mastery-stat { text-align: center; }

.mstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  min-width: 100px;
  display: block;
}

.mstat-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats-section {
  background: var(--navy);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}

.stat-metric {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-text {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   RESULTS — continuous carousel
═══════════════════════════════════════════ */
.results {
  padding: 90px 0 60px;
  background: var(--white);
}

.results .container { margin-bottom: 40px; }

.results .section-sub { margin-bottom: 0; }

/* ── Carousel wrapper + nav buttons ── */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 0 20px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 5;
}

.carousel-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.06);
}

.carousel-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.carousel-btn:active {
  background: var(--navy-mid);
  color: var(--white);
  transform: scale(0.97);
}

@media (max-width: 600px) {
  .carousel-btn { width: 40px; height: 40px; }
}

.carousel-outer {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  padding: 12px 0 20px;
  cursor: grab;
}

.carousel-outer:active { cursor: grabbing; }

/* Fade edges */
.carousel-outer::before,
.carousel-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.carousel-outer::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.carousel-outer::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 320px;
  flex-shrink: 0;
  transition: box-shadow var(--transition);
}

.review-card:hover { box-shadow: var(--shadow); }

.review-card--placeholder {
  border-style: dashed;
  border-color: var(--gray-200);
  background: var(--gray-50);
}

.review-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(232, 160, 32, .12);
  color: var(--gold-dark);
  padding: 3px 9px;
  border-radius: 4px;
  align-self: flex-start;
}

/* ✓ Verified Parent Review — green badge for confirmed submissions */
.review-badge--verified {
  background: rgba(22, 163, 74, .10);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, .25);
}

/* Internal marker — not for live publication */
.review-badge--sample {
  background: rgba(180, 130, 0, .10);
  color: #92640c;
  border: 1px solid rgba(180, 130, 0, .2);
  font-size: .63rem;
}

.review-avatar--sample {
  background: rgba(22, 32, 64, .55);
  font-size: .68rem;
}

.review-text {
  font-size: .87rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

.review-placeholder-text {
  font-style: italic;
  color: var(--gray-400);
  font-size: .82rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.review-avatar {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card--placeholder .review-avatar { background: var(--gray-200); color: var(--gray-400); }

.reviewer-name {
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
}

.reviewer-role {
  font-size: .74rem;
  color: var(--text-muted);
}

.verified-badge {
  margin-left: auto;
  font-size: .68rem;
  font-weight: 700;
  color: #2e7d32;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   ENVIRONMENTS
═══════════════════════════════════════════ */
.environments {
  padding: 90px 0;
  background: var(--off-white);
}

.environments .section-sub { margin-bottom: 40px; }

.env-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.env-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.env-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.env-card:hover img { transform: scale(1.04); }

.env-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(22,32,64,.85));
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 32px 16px 14px;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq {
  padding: 90px 0;
  background: var(--white);
}

.faq .container { max-width: 760px; }

.faq .section-sub { margin-bottom: 32px; }

.faq-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 32px;
  color: var(--gray-400);
}

.faq-search-wrap input {
  border: none;
  outline: none;
  flex: 1;
  font-size: .92rem;
  color: var(--text);
  font-family: inherit;
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--gold); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.faq-q > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q:hover { background: var(--gray-50); }

.faq-item.open .faq-q { background: rgba(232, 160, 32, .06); }

.faq-arrow { transition: transform var(--transition); flex-shrink: 0; }

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 20px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-a { display: block; }

.faq-meta {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  font-size: .72rem;
  color: var(--gray-400);
}

.faq-item.faq-hidden { display: none; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  padding: 90px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-prompt {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-block { margin-bottom: 28px; }

.cblock-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cblock-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: var(--gold);
}

.cblock-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--gray-400);
}

.citem-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.citem-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

a.citem-val:hover { color: var(--gold); }

.hours-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: var(--white);
}

.hours-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  margin-bottom: 6px;
  color: rgba(255,255,255,.8);
}

.hours-note {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: 12px;
  line-height: 1.5;
}

/* Form */
.form-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, .12);
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* Validation error messages */
.form-error {
  font-size: .75rem;
  color: #dc2626;
  font-weight: 500;
  min-height: 1rem;
  display: block;
}

.form-error--global {
  text-align: center;
  margin-top: 4px;
}

/* Honeypot — visually hidden from real users */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

.form-success {
  text-align: center;
  padding: 40px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-success p {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.7fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 48px;
}

/* Footer brand name (no image — text only) */
.footer-logo-link {
  display: block;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-company-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand-name {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand-sub {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.75;
  margin: 14px 0 20px;
  color: rgba(255,255,255,.6);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}

.footer-socials a:hover,
.footer-socials a:focus-visible { background: var(--gold); color: var(--navy); outline: none; }

.footer-accred {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
}

.footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li, .footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .83rem;
  color: rgba(255,255,255,.6);
}

.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════
   ANIMATIONS — fade-up on scroll
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links a { font-size: .8rem; padding: 6px 7px; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mastery-content { flex-direction: column; align-items: flex-start; gap: 24px; }
  .env-grid { grid-template-columns: 1fr 1fr; }
  .programs-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 32px; }
  .nav-brand-name { font-size: .76rem; }
  .nav-brand-sub { font-size: .52rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .env-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .power-banner-inner { flex-direction: column; align-items: flex-start; }
  .mastery-banner { padding: 28px 24px; }
  .mastery-stats { gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .review-card { width: 280px; }
  .ticker-item { font-size: .75rem; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .review-card { width: 260px; }
}

/* ═══════════════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════════════ */

.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,16,40,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  animation: bkOverlayIn .18s ease;
}
.bk-overlay[hidden] { display: none; }
@keyframes bkOverlayIn { from { opacity: 0; } to { opacity: 1; } }

.bk-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 36px 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.30);
  animation: bkModalIn .22s ease;
}
@keyframes bkModalIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.bk-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: background var(--transition), color var(--transition);
  font-family: inherit;
  flex-shrink: 0;
}
.bk-close:hover { background: var(--gray-200); color: var(--navy); }
.bk-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.bk-header { margin-bottom: 20px; padding-right: 44px; }
.bk-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.bk-subtitle { font-size: .88rem; color: var(--text-muted); line-height: 1.55; }

/* Step indicator */
.bk-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.bks-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bks-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.bks-lbl {
  font-size: .68rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .04em;
  transition: color .2s;
}
.bks-item.active .bks-num { background: var(--navy); color: var(--white); }
.bks-item.active .bks-lbl { color: var(--navy); }
.bks-item.done .bks-num   { background: var(--green-dot); color: var(--white); }
.bks-item.done .bks-lbl   { color: var(--green-dark); }
.bks-line {
  flex: 1;
  height: 2px;
  background: var(--gray-100);
  margin: 0 8px;
  margin-bottom: 20px;
  min-width: 24px;
  max-width: 56px;
  transition: background .2s;
}
.bks-line.done { background: var(--green-dot); }
.bk-steps.bk-hidden { display: none; }

/* Panels */
.bk-panel { }
.bk-hidden { display: none !important; }

/* Back row */
.bk-back-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.bk-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--navy);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  padding: 4px 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}
.bk-back-btn:hover { text-decoration-color: var(--navy); }
.bk-back-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 3px; }
.bk-sel-info {
  font-size: .86rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

/* Calendar */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-month-lbl { font-size: .98rem; font-weight: 700; color: var(--navy); }
.cal-arrow {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: inherit;
  transition: background var(--transition), border-color var(--transition);
}
.cal-arrow:hover:not(:disabled) { background: var(--gray-50); border-color: var(--navy); }
.cal-arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.cal-arrow:disabled { opacity: .32; cursor: not-allowed; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-dow {
  font-size: .70rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 0 6px;
  letter-spacing: .04em;
}
.cal-day {
  aspect-ratio: 1;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  padding: 0;
}
.cal-day:hover:not(:disabled):not(.cal-selected) { background: var(--gray-50); border-color: var(--gray-200); }
.cal-day:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.cal-day.cal-today { border-color: var(--gold); color: var(--navy); font-weight: 700; }
.cal-day.cal-selected { background: var(--navy); color: var(--white); border-color: var(--navy); font-weight: 700; }
.cal-day.cal-today.cal-selected { background: var(--navy); border-color: var(--navy); }
.cal-day.cal-disabled { color: var(--gray-200); cursor: not-allowed; border-color: transparent; }

/* Time slots */
.bk-slots-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: .88rem;
  padding: 14px 0;
}
.bk-slots-loading.bk-hidden { display: none !important; }
.bk-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: bkSpin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes bkSpin { to { transform: rotate(360deg); } }
.bk-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 2px;
}
.bk-slot {
  padding: 9px 4px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-size: .80rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--navy);
  text-align: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  line-height: 1.3;
}
.bk-slot:hover:not(:disabled) { background: var(--gray-50); border-color: var(--navy); }
.bk-slot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.bk-slot.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.bk-slot:disabled { background: var(--gray-50); color: var(--gray-200); cursor: not-allowed; border-color: var(--gray-100); }
.bk-slots-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  padding: 18px 0;
  line-height: 1.5;
}
.bk-slots-next { margin-top: 16px; }

/* Booking form */
.bk-form { }
.bk-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; }
.bk-field { margin-bottom: 15px; }
.bk-label { display: block; font-size: .84rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.bk-req { color: #dc2626; margin-left: 2px; }
.bk-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.bk-input:focus { outline: none; border-color: var(--navy); }
.bk-input.bk-field-err { border-color: #dc2626; }
.bk-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.bk-err { color: #dc2626; font-size: .79rem; margin-top: 4px; min-height: 1.1em; }
.bk-err-global { margin-bottom: 14px; font-size: .88rem; text-align: center; }
.bk-next-btn { margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Summary (step 4) */
.bk-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 18px;
}
.bk-sum-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
}
.bk-sum-row:last-child { margin-bottom: 0; }
.bk-sum-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: rgba(22,32,64,.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.bk-sum-lbl { font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 2px; }
.bk-sum-val { font-size: .9rem; font-weight: 600; color: var(--navy); }
.bk-confirm-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; }
.bk-confirm-btn:disabled { opacity: .6; cursor: not-allowed; }

/* Success */
.bk-success-wrap { text-align: center; padding: 8px 0; }
.bk-success-icon {
  width: 62px;
  height: 62px;
  background: var(--green-bg);
  border: 2px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.bk-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.3;
}
.bk-success-body {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 22px;
}
.bk-suc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 9px;
  font-size: .87rem;
  gap: 14px;
}
.bk-suc-row:last-child { margin-bottom: 0; }
.bk-suc-row.bk-suc-divider { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.bk-suc-lbl { color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.bk-suc-val { color: var(--navy); font-weight: 700; text-align: right; }
.bk-suc-ref { font-family: 'Courier New', monospace; font-size: .88rem; background: var(--gray-100); padding: 2px 7px; border-radius: 4px; }
.bk-done-btn { min-width: 130px; }

/* Mobile — bottom sheet */
@media (max-width: 580px) {
  .bk-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .bk-modal {
    padding: 24px 20px 28px;
    border-radius: 18px 18px 0 0;
    position: relative;
    max-width: 100%;
    max-height: 92dvh;
    width: 100%;
    animation: bkSheetIn .25s ease;
  }
  @keyframes bkSheetIn {
    from { transform: translateY(100%); }
    to   { transform: none; }
  }
  .bk-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .bks-lbl { display: none; }
  .bks-line { min-width: 16px; max-width: 36px; }
}
