:root {
  --brand-navy: #012356;
  --navy-950: #001a42;
  --navy-900: #012356;
  --navy-800: #082f68;
  --navy-700: #123e78;
  --navy-600: #27548a;
  --navy-300: #9fb2c9;
  --navy-200: #c5d0dd;
  --navy-100: #e8edf4;
  --navy-050: #f3f6fa;
  --brand-gold: #d3a31e;
  --gold-800: #8b6a17;
  --gold-600: #c49815;
  --gold-200: #f0dda5;
  --gold-100: #f8edd0;
  --gold-050: #fcf7ea;
  --ivory-050: #fcfaf5;
  --ivory-100: #f8f4e9;
  --white: #ffffff;
  --slate-900: #243140;
  --slate-700: #455363;
  --slate-600: #5f6b78;
  --slate-500: #77828d;
  --slate-300: #b9c1c8;
  --slate-200: #d5dbe0;
  --slate-100: #eceff2;
  --success: #287a54;
  --danger: #b33a3a;

  --font-display: "Bitter", Georgia, "Times New Roman", serif;
  --font-ui: "Nunito Sans", "Segoe UI", Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 44px;
  --radius-pill: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 96px;
  --space-12: 120px;

  --container: 1180px;
  --container-wide: 1320px;
  --shadow-xs: 0 2px 8px rgb(1 35 86 / 0.04);
  --shadow-sm: 0 8px 24px rgb(1 35 86 / 0.07);
  --shadow-md: 0 16px 40px rgb(1 35 86 / 0.10);
  --ease-standard: cubic-bezier(.2, .8, .2, 1);
  --ease-enter: cubic-bezier(.16, 1, .3, 1);
  --motion-fast: 140ms;
  --motion-base: 200ms;
  --motion-slow: 340ms;
  --motion-section: 460ms;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--slate-900);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold-100); color: var(--navy-950); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--navy-950);
  color: var(--white);
  font-weight: 800;
  transition: transform var(--motion-base) var(--ease-enter);
}
.skip-link:focus { transform: translateY(0); }

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

.container,
.container-wide {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.container-wide { max-width: var(--container-wide); }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--compact { padding-block: clamp(48px, 6vw, 80px); }
.section--pale { background: var(--navy-050); }
.section--warm { background: var(--ivory-050); }
.section--navy { background: var(--brand-navy); color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-800);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  content: "";
}
.section--navy .eyebrow { color: var(--brand-gold); }

h1, h2, h3, .display {
  margin: 0;
  color: var(--brand-navy);
  font-family: var(--font-display);
  letter-spacing: -.025em;
}
h1 { max-width: 16ch; font-size: clamp(2.65rem, 6vw, 4.4rem); line-height: 1.04; }
h2 { max-width: 18ch; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.12; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.25; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.accent { color: var(--gold-800); }
.section--navy .accent { color: var(--brand-gold); }
.lead {
  max-width: 50ch;
  margin: 20px 0 0;
  color: var(--slate-700);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}
.section--navy .lead { color: rgb(255 255 255 / .78); }
.body-copy { max-width: 62ch; }
.body-copy p { margin: 0 0 18px; }
.body-copy p:last-child { margin-bottom: 0; }
.muted { color: var(--slate-600); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / .93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color var(--motion-base), box-shadow var(--motion-base), background var(--motion-base);
}
.site-header.is-scrolled {
  border-bottom-color: var(--navy-100);
  box-shadow: var(--shadow-xs);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img { width: 68px; height: 68px; object-fit: contain; }
.brand-wordmark { display: grid; line-height: 1.05; }
.brand-wordmark strong { color: var(--navy-900); font-family: var(--font-display); font-size: 17px; }
.brand-wordmark span { margin-top: 4px; color: var(--slate-600); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { justify-self: center; }
.desktop-nav ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 13px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}
.nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 8px;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gold);
  content: "";
  opacity: 0;
  transform: scaleX(.5);
  transition: opacity var(--motion-fast), transform var(--motion-base) var(--ease-standard);
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--motion-base) var(--ease-standard), background var(--motion-base), border-color var(--motion-base), color var(--motion-base), box-shadow var(--motion-base);
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--brand-gold); color: var(--brand-navy); }
.btn--gold:hover { background: var(--gold-600); transform: translateY(-1px); }
.btn--navy { background: var(--brand-navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn--outline { border-color: var(--brand-navy); background: transparent; color: var(--brand-navy); }
.btn--outline:hover { background: var(--navy-050); transform: translateY(-1px); }
.btn--light { border-color: rgb(255 255 255 / .35); background: transparent; color: var(--white); }
.btn--light:hover { background: rgb(255 255 255 / .08); }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--brand-navy);
  font-weight: 800;
}
.text-link .arrow { transition: transform var(--motion-base) var(--ease-standard); }
.text-link:hover .arrow { transform: translateX(3px); }

.mobile-panel { display: none; }

.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, var(--ivory-050), var(--white) 68%);
}
.hero::before {
  position: absolute;
  top: 80px;
  right: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(211 163 30 / .2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  min-height: calc(100vh - 82px);
  min-height: calc(100svh - 82px);
  padding-block: clamp(56px, 8vw, 96px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lead { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 32px; }
.hero-note { margin-top: 24px; color: var(--slate-600); font-size: 14px; }
.hero-note a { color: var(--navy-900); font-weight: 800; text-decoration: underline; text-decoration-color: var(--gold-600); text-underline-offset: 4px; }
.hero-media { position: relative; min-width: 0; }
.hero-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 54px 54px 54px 14px;
  background: var(--navy-100);
  box-shadow: var(--shadow-md);
}
.hero-frame img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: center; }
.media-fallback { position: relative; background: linear-gradient(135deg, var(--navy-100), var(--ivory-100)); }
.media-fallback::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(1 35 86 / .08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.media-fallback img[data-load-error="true"] { opacity: 0; }
.hero-ring {
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 190px;
  height: 190px;
  border: 2px solid var(--brand-gold);
  border-radius: 50%;
  opacity: .8;
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -26px;
  width: min(260px, 56%);
  padding: 20px 22px;
  border: 1px solid rgb(255 255 255 / .55);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / .92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.hero-badge strong { display: block; color: var(--navy-900); font-family: var(--font-display); font-size: 22px; }
.hero-badge span { display: block; margin-top: 4px; color: var(--slate-600); font-size: 13px; font-weight: 700; }

.fact-strip { position: relative; margin-top: -14px; }
.fact-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.fact-item { min-width: 0; padding: 28px 26px; }
.fact-item + .fact-item { border-left: 1px solid var(--navy-100); }
.fact-item strong { display: block; color: var(--navy-900); font-family: var(--font-display); font-size: 22px; line-height: 1.2; }
.fact-item span { display: block; margin-top: 6px; color: var(--slate-600); font-size: 13px; font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}
.split--reverse { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.photo-stack { position: relative; min-height: 520px; }
.photo-main {
  position: absolute;
  inset: 0 13% 8% 0;
  overflow: hidden;
  border-radius: 46px 18px 46px 46px;
  background: var(--navy-100);
}
.photo-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-side {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 28px 28px 28px 10px;
  background: var(--gold-100);
  box-shadow: var(--shadow-sm);
}
.photo-side img { width: 100%; height: 100%; object-fit: cover; }
.photo-accent {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 96px;
  height: 96px;
  border: 2px solid var(--brand-gold);
  border-radius: 50%;
}
.feature-list { display: grid; gap: 18px; margin: 32px 0 0; padding: 0; list-style: none; }
.feature-item { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.feature-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
}
.feature-item strong { display: block; color: var(--navy-900); font-size: 16px; }
.feature-item p { margin: 3px 0 0; color: var(--slate-600); font-size: 14px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 40px; }
.section-heading .lead { margin: 0; }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.program-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--navy-100);
  border-radius: 30px;
  background: var(--white);
  transition: transform var(--motion-slow) var(--ease-enter), box-shadow var(--motion-slow), border-color var(--motion-slow);
}
.program-card:nth-child(2) { background: var(--gold-050); border-color: #f0dda5; }
.program-card--navy { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.program-card[data-href] { cursor: pointer; }
.program-card[data-href]:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.program-media { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-100); }
.program-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-enter); }
.program-card[data-href]:hover .program-media img { transform: scale(1.025); }
.program-content { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.program-age { color: var(--gold-800); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.program-card--navy .program-age { color: var(--brand-gold); }
.program-content h3 { margin-top: 8px; }
.program-card--navy h3 { color: var(--white); }
.program-content p { margin: 12px 0 0; color: var(--slate-600); font-size: 15px; }
.program-card--navy p { color: rgb(255 255 255 / .72); }
.program-meta { margin-top: auto; padding-top: 22px; color: var(--navy-900); font-size: 14px; font-weight: 800; }
.program-card--navy .program-meta { color: var(--white); }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.pillar {
  position: relative;
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.pillar:nth-child(2), .pillar:nth-child(3) { background: var(--ivory-050); }
.pillar::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 52px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--brand-gold);
  content: "";
}
.pillar-number { color: var(--gold-800); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.pillar h3 { margin-top: 28px; }
.pillar p { margin: 12px 0 0; color: var(--slate-600); }

.ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.ribbon span {
  padding: 10px 14px;
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(46px, 7vw, 90px);
  align-items: center;
}
.trust-copy p { max-width: 52ch; color: rgb(255 255 255 / .74); }
.trust-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.trust-point {
  padding: 24px;
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / .05);
}
.trust-point strong { display: block; color: var(--brand-gold); font-size: 14px; }
.trust-point span { display: block; margin-top: 8px; color: rgb(255 255 255 / .75); font-size: 14px; }

.parent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 38px; }
.parent-card { padding: 28px; border: 1px solid var(--navy-100); border-radius: var(--radius-lg); background: var(--white); }
.parent-card strong { display: block; color: var(--navy-900); font-size: 16px; }
.parent-card p { margin: 10px 0 0; color: var(--slate-600); font-size: 14px; }

.faq { display: grid; gap: 12px; max-width: 880px; margin: 40px auto 0; }
.faq-item { border: 1px solid var(--navy-100); border-radius: var(--radius-md); background: var(--white); overflow: hidden; }
.faq-question {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}
.faq-symbol { font-size: 20px; transition: transform var(--motion-base); }
.faq-question[aria-expanded="true"] .faq-symbol { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--slate-600); }
.faq-answer.is-open { display: block; }
.faq-answer p { margin: 0; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 7fr) auto;
  align-items: center;
  gap: 40px;
  padding: clamp(36px, 5vw, 60px);
  border-radius: var(--radius-2xl);
  background: var(--brand-navy);
  color: var(--white);
}
.cta-panel::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 2px solid rgb(211 163 30 / .4);
  border-radius: 50%;
  content: "";
}
.cta-panel h2 { color: var(--white); }
.cta-panel p { max-width: 56ch; margin: 14px 0 0; color: rgb(255 255 255 / .74); }
.cta-panel .btn { position: relative; z-index: 1; }

.page-hero { position: relative; overflow: clip; padding-block: clamp(72px, 10vw, 124px); background: var(--ivory-050); }
.page-hero::after {
  position: absolute;
  top: -160px;
  right: -140px;
  width: 440px;
  height: 440px;
  border: 2px solid rgb(211 163 30 / .2);
  border-radius: 50%;
  content: "";
}
.page-hero .lead { max-width: 58ch; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.detail-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(34px, 6vw, 84px); align-items: start; }
.detail-aside { position: sticky; top: 112px; padding: 26px; border: 1px solid var(--navy-100); border-radius: var(--radius-lg); background: var(--ivory-050); }
.detail-aside strong { color: var(--navy-900); }
.detail-aside ul { margin: 16px 0 0; padding: 0; list-style: none; }
.detail-aside li + li { margin-top: 10px; }
.detail-aside a { color: var(--navy-900); font-size: 14px; font-weight: 800; }
.content-section { scroll-margin-top: 110px; }
.content-section + .content-section { margin-top: 64px; }
.content-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.content-section p { max-width: 66ch; color: var(--slate-600); }
.content-list { display: grid; gap: 10px; margin: 20px 0 0; padding-left: 20px; color: var(--slate-700); }

.program-detail { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.program-detail + .program-detail { margin-top: 88px; }
.program-detail:nth-child(even) .detail-media { order: 2; }
.detail-media { overflow: hidden; aspect-ratio: 4/3; border-radius: 38px 16px 38px 38px; background: var(--navy-100); }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; color: var(--slate-700); }
.check-list li::before { position: absolute; left: 0; top: .68em; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-gold); content: ""; }

.event-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr); gap: 30px; align-items: start; }
.event-card { padding: 30px; border: 1px solid var(--navy-100); border-radius: var(--radius-xl); background: var(--white); }
.event-card--empty { min-height: 300px; display: grid; align-content: center; background: var(--navy-050); }
.event-card h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.event-card p { color: var(--slate-600); }
.event-kicker { color: var(--gold-800); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.event-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.event-list li { padding: 16px 18px; border-radius: var(--radius-md); background: var(--ivory-050); color: var(--navy-900); font-weight: 800; }

.booking-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.booking-card { display: flex; min-height: 360px; flex-direction: column; padding: 30px; border: 1px solid var(--navy-100); border-radius: var(--radius-xl); background: var(--white); }
.booking-card--featured { background: var(--gold-050); border-color: #f0dda5; }
.booking-card h2 { font-size: 1.8rem; }
.booking-meta { margin-top: 10px; color: var(--gold-800); font-size: 13px; font-weight: 900; }
.booking-card p { color: var(--slate-600); }
.booking-card .btn { margin-top: auto; align-self: flex-start; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 7vw, 90px); align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 28px; }
.contact-card { padding: 20px 22px; border: 1px solid var(--navy-100); border-radius: var(--radius-md); background: var(--ivory-050); }
.contact-card span { display: block; color: var(--slate-600); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-card a, .contact-card strong { display: inline-block; margin-top: 4px; color: var(--navy-900); font-weight: 800; }
.form-card { padding: clamp(26px, 4vw, 40px); border: 1px solid var(--navy-100); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: 14px; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  color: var(--slate-900);
  padding: 12px 15px;
  transition: border-color var(--motion-base), box-shadow var(--motion-base);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgb(211 163 30 / .28); outline-offset: 2px; border-color: var(--brand-navy); }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--slate-600); font-size: 14px; }
.form-status.is-error { color: var(--danger); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* Native booking system */
.booking-hero {
  border-bottom: 1px solid var(--navy-100);
  background:
    radial-gradient(circle at 92% 18%, rgb(211 163 30 / .10), transparent 22rem),
    linear-gradient(180deg, var(--navy-050), var(--white));
}
.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
  padding-block: clamp(64px, 8vw, 104px);
}
.booking-hero h1 { max-width: 13ch; font-size: clamp(2.8rem, 5.4vw, 4.8rem); }
.booking-hero .lead { max-width: 58ch; }
.booking-trust-line { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; color: var(--slate-600); font-size: 14px; font-weight: 700; }
.booking-trust-line span { position: relative; }
.booking-trust-line span + span::before { position: absolute; left: -11px; top: .68em; width: 4px; height: 4px; border-radius: 50%; background: var(--brand-gold); content: ""; }
.booking-hero-aside { padding: 28px; border-radius: var(--radius-md); background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-sm); }
.booking-hero-aside strong { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.booking-hero-aside p { margin: 10px 0 0; color: rgb(255 255 255 / .75); }
.booking-hero-aside a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.booking-section { padding-top: clamp(56px, 7vw, 88px); }
.booking-shell { display: grid; grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr); gap: clamp(42px, 6vw, 80px); align-items: start; }
.booking-app { min-width: 0; }
.booking-step { padding-bottom: 44px; border-bottom: 1px solid var(--navy-100); }
.booking-step + .booking-step { padding-top: 44px; }
.booking-step:last-child { border-bottom: 0; padding-bottom: 0; }
.booking-step-heading { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: start; margin-bottom: 26px; }
.booking-step-heading h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.15rem); }
.booking-step-heading p { margin: 5px 0 0; color: var(--slate-600); }
.step-number { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--gold-100); color: var(--navy-900); font-family: var(--font-display); font-weight: 700; }

.service-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; border: 0; }
.service-option { position: relative; display: block; min-width: 0; cursor: pointer; }
.service-option input { position: absolute; inset: 18px auto auto 18px; width: 20px; height: 20px; accent-color: var(--navy-900); z-index: 1; }
.service-option-body { display: grid; min-height: 182px; align-content: start; gap: 7px; padding: 22px 22px 22px 52px; border: 1px solid var(--navy-100); border-radius: var(--radius-md); background: var(--white); transition: border-color var(--motion-base), background var(--motion-base), transform var(--motion-base), box-shadow var(--motion-base); }
.service-option-body strong { color: var(--navy-900); font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; }
.service-option-body > span { color: var(--gold-800); font-size: 13px; font-weight: 900; }
.service-option-body small { color: var(--slate-600); font-size: 14px; line-height: 1.55; }
.service-option:hover .service-option-body { border-color: var(--navy-300); transform: translateY(-1px); }
.service-option input:focus-visible + .service-option-body { outline: 3px solid var(--brand-gold); outline-offset: 3px; }
.service-option.is-selected .service-option-body { border-color: var(--navy-900); background: var(--navy-050); box-shadow: 0 0 0 1px var(--navy-900); }
.booking-helper { margin: 14px 0 0; color: var(--slate-600); font-size: 14px; }

.booking-date-field { max-width: 360px; }
.booking-date-status { margin-top: 10px; }
.time-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.time-option { position: relative; cursor: pointer; }
.time-option input { position: absolute; opacity: 0; pointer-events: none; }
.time-option span { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 17px; border: 1px solid var(--navy-200); border-radius: var(--radius-pill); background: var(--white); color: var(--navy-900); font-weight: 800; transition: background var(--motion-base), border-color var(--motion-base), color var(--motion-base), transform var(--motion-base); }
.time-option:hover span { border-color: var(--navy-900); transform: translateY(-1px); }
.time-option input:focus-visible + span { outline: 3px solid var(--brand-gold); outline-offset: 3px; }
.time-option input:checked + span { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }
.availability-suggestion-title { margin: 20px 0 8px; color: var(--navy-900); font-size: 14px; font-weight: 900; }
.availability-suggestions { display: flex; flex-wrap: wrap; gap: 8px; }
.availability-suggestion { min-height: 42px; padding: 0 14px; border: 1px solid var(--navy-100); border-radius: var(--radius-pill); background: var(--navy-050); color: var(--navy-900); font-size: 13px; font-weight: 800; cursor: pointer; }
.availability-suggestion:hover { border-color: var(--navy-900); }

.fee-notice { margin-top: 20px; padding: 18px 20px; border: 1px solid var(--gold-200, #f0dda5); border-radius: var(--radius-md); background: var(--gold-050); }
.fee-notice strong { color: var(--navy-900); }
.fee-notice p { margin: 5px 0 0; color: var(--slate-700); font-size: 14px; }
.consent-check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 11px; align-items: start; margin-top: 22px; color: var(--slate-700); font-size: 14px; cursor: pointer; }
.consent-check input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--navy-900); }
[data-booking-submit][disabled], [data-reschedule-submit][disabled], [data-manage-cancel][disabled] { opacity: .58; cursor: wait; transform: none; }

.booking-side { position: sticky; top: 112px; display: grid; gap: 16px; }
.booking-side-block { padding: 26px; border-top: 3px solid var(--brand-gold); background: var(--navy-950); color: var(--white); }
.booking-side-block h2 { color: var(--white); font-size: 1.35rem; }
.booking-side-block ol { display: grid; gap: 20px; margin: 22px 0 0; padding: 0; list-style: none; counter-reset: booking-side; }
.booking-side-block li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 10px 12px; counter-increment: booking-side; }
.booking-side-block li::before { grid-row: 1 / span 2; content: counter(booking-side); display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgb(255 255 255 / .28); border-radius: 50%; color: var(--brand-gold); font-size: 12px; font-weight: 900; }
.booking-side-block li strong { color: var(--white); }
.booking-side-block li span { grid-column: 2; color: rgb(255 255 255 / .68); font-size: 14px; line-height: 1.5; }
.booking-side-block--warm { border-top-color: var(--navy-900); background: var(--ivory-100); color: var(--slate-900); }
.booking-side-block--warm h2 { color: var(--navy-900); }
.booking-side-block--warm p { color: var(--slate-700); }
.booking-side-block--warm a { color: var(--navy-900); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.booking-success { padding: clamp(30px, 5vw, 52px); border: 1px solid rgb(40 122 84 / .25); border-radius: var(--radius-lg); background: #f4fbf7; }
.success-mark { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--success); color: var(--white); font-size: 22px; font-weight: 900; }
.booking-success h2 { margin-top: 20px; }
.booking-reference { display: inline-block; margin-top: 8px; color: var(--navy-900); font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem); letter-spacing: .02em; }
.booking-success ul { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 20px 0; padding: 0; list-style: none; color: var(--slate-700); }
.booking-success li { position: relative; }
.booking-success li + li::before { position: absolute; left: -11px; top: .7em; width: 4px; height: 4px; border-radius: 50%; background: var(--brand-gold); content: ""; }

.manage-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 7vw, 88px); align-items: start; }
.manage-grid > div:first-child { padding-top: 14px; }
.manage-panel { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--navy-100); }
.manage-panel h3 { color: var(--navy-900); font-size: 1.25rem; }
.manage-detail-list { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 12px 0 0; padding: 0; list-style: none; color: var(--slate-600); font-size: 14px; }
.manage-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.reschedule-panel { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--navy-100); }
.reschedule-panel .field { max-width: 320px; margin-top: 16px; }
.reschedule-panel .btn { margin-top: 18px; }

.site-footer { background: var(--navy-950); color: var(--white); }
.footer-main { display: grid; grid-template-columns: minmax(260px, 1.5fr) repeat(3, 1fr); gap: 40px; padding-block: 64px 48px; }
.footer-brand img { width: 82px; height: 82px; object-fit: contain; border-radius: 50%; background: var(--white); }
.footer-brand p { max-width: 36ch; margin: 18px 0 0; color: rgb(255 255 255 / .66); font-size: 14px; }
.footer-column h2 { color: var(--brand-gold); font-family: var(--font-ui); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column ul { margin: 16px 0 0; padding: 0; list-style: none; }
.footer-column li + li { margin-top: 9px; }
.footer-column a, .footer-column span { color: rgb(255 255 255 / .76); font-size: 14px; }
.footer-column a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgb(255 255 255 / .1); color: rgb(255 255 255 / .55); font-size: 12px; }
.footer-bottom nav { display: flex; gap: 18px; }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity var(--motion-section) var(--ease-enter), transform var(--motion-section) var(--ease-enter); }
.reveal.is-visible { opacity: 1; transform: none; }

.motion-loaded .reveal { transition: none; }
.motion-loaded .hero-frame img,
.motion-loaded .hero-ring,
.motion-loaded .hero-badge,
.motion-loaded .photo-accent { backface-visibility: hidden; }
.motion-loaded .program-card,
.motion-loaded .parent-card,
.motion-loaded .pillar,
.motion-loaded .trust-point,
.motion-loaded .booking-card,
.motion-loaded .service-option { transform-style: preserve-3d; }
.motion-loaded .mobile-panel.is-open { transform-origin: top center; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { box-shadow: var(--shadow-xs); }
}

@media (max-width: 1080px) {
  .brand-wordmark { display: none; }
  .header-inner { gap: 16px; }
  .nav-link { padding-inline: 10px; }
  .nav-link::after { left: 10px; right: 10px; }
}

@media (max-width: 940px) {
  .desktop-nav, .header-actions .btn { display: none; }
  /* Mobile/tablet header: keep the brand and menu as separate edge anchors.
     The desktop nav is removed from layout at this breakpoint, so a two-column
     grid prevents the menu control from auto-placing immediately beside the logo. */
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; min-height: 74px; }
  .brand { grid-column: 1; justify-self: start; }
  .header-actions { grid-column: 2; justify-self: end; justify-content: flex-end; }
  .brand img { width: 56px; height: 56px; }
  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid var(--navy-100);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy-900);
    cursor: pointer;
  }
  .menu-icon { position: relative; width: 20px; height: 14px; }
  .menu-icon::before, .menu-icon::after, .menu-icon span { position: absolute; left: 0; width: 20px; height: 2px; border-radius: 2px; background: currentColor; content: ""; transition: transform var(--motion-base), top var(--motion-base), opacity var(--motion-base); }
  .menu-icon::before { top: 0; }
  .menu-icon span { top: 6px; }
  .menu-icon::after { top: 12px; }
  .menu-toggle[aria-expanded="true"] .menu-icon::before { top: 6px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon span { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-icon::after { top: 6px; transform: rotate(-45deg); }
  .mobile-panel {
    position: fixed;
    inset: 74px 0 0;
    z-index: 95;
    display: none;
    overflow-y: auto;
    background: var(--white);
    padding: 18px 20px 40px;
  }
  .mobile-panel.is-open { display: block; }
  .mobile-panel nav ul { margin: 0; padding: 0; list-style: none; }
  .mobile-panel nav a { display: flex; min-height: 54px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--navy-100); color: var(--navy-900); font-size: 18px; font-weight: 800; }
  .mobile-panel .btn { width: 100%; margin-top: 24px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 56px 72px; }
  .hero-copy { max-width: 700px; }
  .hero-media { width: 100%; max-width: none; }
  .hero-frame, .hero-frame img { min-height: 500px; }
  .hero-badge {
    position: relative;
    z-index: 3;
    inset: auto;
    width: auto;
    max-width: 440px;
    margin: -18px 18px 0;
    padding: 18px 20px;
    border-radius: 20px;
  }
  .fact-panel { grid-template-columns: repeat(2, 1fr); }
  .fact-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--navy-100); }
  .fact-item:nth-child(4) { border-top: 1px solid var(--navy-100); }
  .split, .split--reverse, .trust-grid, .contact-grid, .booking-shell, .manage-grid, .booking-hero-grid { grid-template-columns: 1fr; }
  .booking-side { position: static; }
  .split--reverse .photo-stack { order: 2; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .program-card--navy { grid-column: 1 / -1; }
  .parent-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .program-detail { grid-template-columns: 1fr; }
  .program-detail:nth-child(even) .detail-media { order: 0; }
  .event-layout { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .booking-card:last-child { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container, .container-wide { width: min(calc(100% - 40px), var(--container)); }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 16px; }
  .hero { overflow: hidden; }
  .hero::before { width: 340px; height: 340px; right: -220px; }
  .hero-grid { gap: 42px; padding-top: 44px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-frame, .hero-frame img { min-height: 420px; }
  .hero-frame { border-radius: 36px 36px 36px 12px; }
  .hero-badge { left: 14px; bottom: 14px; width: calc(100% - 28px); }
  .hero-ring { right: -50px; bottom: -52px; }
  .fact-strip { margin-top: 0; }
  .fact-panel { grid-template-columns: 1fr; }
  .fact-item + .fact-item { border-left: 0; border-top: 1px solid var(--navy-100); }
  .fact-item { padding: 22px; }
  .photo-stack { min-height: 430px; }
  .photo-main { right: 7%; }
  .photo-side { width: 42%; border-width: 6px; }
  .cards-3, .pillars, .parent-grid, .trust-points, .booking-grid, .service-options { grid-template-columns: 1fr; }
  .service-option-body { min-height: 0; }
  .booking-step-heading { grid-template-columns: 36px minmax(0, 1fr); }
  .step-number { width: 34px; height: 34px; }
  .program-card--navy, .booking-card:last-child { grid-column: auto; }
  .program-card { min-height: 0; }
  .pillar { min-height: 0; }
  .page-hero { padding-block: 64px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .container, .container-wide { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 50px; height: 50px; }
  .mobile-panel { inset-block-start: 68px; }
  .btn { width: 100%; padding-inline: 18px; }
  .text-link { width: auto; }
  .hero-frame, .hero-frame img { min-height: 360px; }
  .photo-stack { min-height: 360px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Mobile-first refinement pass: intentionally recompose desktop sections for phones. */
@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  body { font-size: 16px; line-height: 1.58; overflow-x: hidden; }
  img { height: auto; }
  button, a, input, select, textarea { touch-action: manipulation; }

  .container,
  .container-wide { width: min(calc(100% - 36px), var(--container)); }
  .section { padding-block: 56px; }
  .section--compact { padding-block: 44px; }

  h1 { max-width: none; font-size: clamp(2.2rem, 10.2vw, 2.75rem); line-height: 1.02; letter-spacing: -.032em; }
  h2 { max-width: none; font-size: clamp(1.82rem, 7.9vw, 2.18rem); line-height: 1.08; }
  h3 { font-size: clamp(1.28rem, 6vw, 1.55rem); }
  .lead { max-width: 100%; margin-top: 16px; font-size: 1rem; line-height: 1.62; }
  .eyebrow { gap: 8px; margin-bottom: 11px; font-size: 11px; letter-spacing: .13em; }
  .eyebrow::before { width: 22px; }

  .header-inner { min-height: 66px; }
  .brand img { width: 48px; height: 48px; }
  .menu-toggle { width: 44px; height: 44px; }
  .mobile-panel {
    inset: 66px 0 0;
    padding: 10px max(18px, env(safe-area-inset-right)) calc(28px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    overscroll-behavior: contain;
  }
  .mobile-panel nav a { min-height: 58px; font-size: 17px; }
  .mobile-panel .btn { min-height: 52px; margin-top: 18px; }

  .btn { min-height: 50px; padding-inline: 20px; }
  .text-link { min-height: 48px; }

  .hero-grid { gap: 30px; padding-block: 40px 50px; }
  .hero-copy .lead { margin-top: 18px; }
  .hero-actions { gap: 10px 14px; margin-top: 24px; }
  .hero-note { margin-top: 18px; font-size: 13px; }
  .hero-frame { min-height: 0; aspect-ratio: 4 / 3; border-radius: 30px 30px 30px 10px; }
  .hero-frame img { height: 100%; min-height: 0; object-fit: cover; }
  .hero-badge {
    position: relative;
    z-index: 3;
    inset: auto;
    width: auto;
    max-width: none;
    margin: -16px 14px 0;
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgb(1 35 86 / .09);
  }
  .hero-badge strong { font-size: 19px; }
  .hero-badge span { font-size: 12.5px; line-height: 1.5; }
  .hero-ring { display: none; }

  .fact-strip { margin-top: 0; }
  .fact-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 18px; }
  .fact-item { min-height: 94px; padding: 18px; }
  .fact-item + .fact-item { border-left: 0; border-top: 0; }
  .fact-item:nth-child(even) { border-left: 1px solid var(--navy-100); }
  .fact-item:nth-child(n+3) { border-top: 1px solid var(--navy-100); }
  .fact-item strong { font-size: 17px; }
  .fact-item span { margin-top: 4px; font-size: 12px; }

  .split > *,
  .trust-grid > *,
  .contact-grid > *,
  .booking-shell > *,
  .manage-grid > *,
  .booking-hero-grid > *,
  .detail-grid > *,
  .program-detail > *,
  .event-layout > * { min-width: 0; }

  .split,
  .split--reverse,
  .trust-grid,
  .contact-grid,
  .booking-shell,
  .manage-grid,
  .booking-hero-grid,
  .detail-grid,
  .program-detail,
  .event-layout { gap: 34px; }
  .split:not(.split--reverse) > .photo-stack { order: 2; }

  .photo-stack { min-height: 0; aspect-ratio: 4 / 3; }
  .photo-main { inset: 0 8% 9% 0; border-radius: 28px 12px 28px 28px; }
  .photo-side { width: 38%; border-width: 5px; border-radius: 20px 20px 20px 8px; }
  .photo-accent { top: -12px; left: -10px; width: 58px; height: 58px; }

  .feature-list { gap: 15px; margin-top: 24px; }
  .feature-item { grid-template-columns: 34px 1fr; gap: 12px; }
  .feature-index { width: 34px; height: 34px; }
  .feature-item p { font-size: 13.5px; line-height: 1.55; }

  .section-heading { margin-bottom: 28px; }
  .cards-3,
  .parent-grid,
  .booking-grid,
  .service-options { grid-template-columns: 1fr; gap: 14px; }
  .program-card { border-radius: 22px; }
  .program-media { aspect-ratio: 16 / 9; }
  .program-content { padding: 20px; }
  .program-content p { margin-top: 9px; font-size: 14px; line-height: 1.55; }
  .program-meta { padding-top: 16px; }

  .pillars { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .pillar { min-height: 0; padding: 22px; border-radius: 18px; }
  .pillar::before { left: 22px; }
  .pillar h3 { margin-top: 20px; }
  .pillar p { margin-top: 8px; font-size: 14px; line-height: 1.55; }

  .ribbon { gap: 8px; margin-top: 22px; }
  .ribbon span { padding: 8px 11px; font-size: 12px; }

  .trust-points { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .trust-point { padding: 17px; border-radius: 18px; }
  .trust-point strong { font-size: 13px; }
  .trust-point span { margin-top: 6px; font-size: 12.5px; line-height: 1.48; }

  .parent-grid { margin-top: 26px; }
  .parent-card { padding: 20px; border-radius: 18px; }
  .parent-card p { margin-top: 7px; }

  .faq { gap: 10px; margin-top: 28px; }
  .faq-item { border-radius: 14px; }
  .faq-question { min-height: 56px; padding: 14px 16px; font-size: 14px; line-height: 1.35; }
  .faq-answer { padding: 0 16px 16px; font-size: 14px; }

  .cta-panel { gap: 24px; padding: 28px 22px; border-radius: 26px; }
  .cta-panel::after { width: 190px; height: 190px; right: -82px; bottom: -92px; }
  .cta-panel p { margin-top: 10px; font-size: 14px; line-height: 1.58; }
  .cta-panel .btn { width: 100%; }

  .page-hero { padding-block: 48px 52px; }
  .page-hero::after { top: -120px; right: -180px; width: 330px; height: 330px; }
  .page-hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .page-hero-actions .btn { width: 100%; }

  .detail-aside {
    position: static;
    padding: 18px;
    border-radius: 18px;
    overflow: hidden;
  }
  .detail-aside ul {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .detail-aside ul::-webkit-scrollbar { display: none; }
  .detail-aside li,
  .detail-aside li + li { flex: 0 0 auto; margin: 0; scroll-snap-align: start; }
  .detail-aside a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--navy-100);
    border-radius: var(--radius-pill);
    background: var(--white);
    white-space: nowrap;
  }
  .content-section { scroll-margin-top: 82px; }
  .content-section + .content-section { margin-top: 44px; }
  .content-section h2 { font-size: clamp(1.75rem, 7.5vw, 2.05rem); }
  .content-list { gap: 9px; margin-top: 16px; padding-left: 18px; }

  .program-detail { align-items: start; }
  .program-detail + .program-detail { margin-top: 58px; }
  .program-detail > :not(.detail-media) { order: -1; }
  .program-detail:nth-child(even) .detail-media { order: 0; }
  .detail-media { aspect-ratio: 16 / 10; border-radius: 28px 12px 28px 28px; }
  .check-list { gap: 8px; margin-top: 17px; font-size: 14px; }

  .event-card { padding: 22px; border-radius: 22px; }
  .event-card--empty { min-height: 0; }
  .event-list { gap: 9px; margin-top: 17px; }
  .event-list li { padding: 13px 14px; }

  .booking-card { min-height: 0; padding: 22px; border-radius: 22px; }
  .booking-card h2 { font-size: 1.55rem; }
  .booking-card p { font-size: 14px; line-height: 1.55; }
  .booking-card .btn { width: 100%; margin-top: 18px; align-self: stretch; }

  .contact-grid { gap: 30px; }
  .contact-cards { gap: 9px; margin-top: 22px; }
  .contact-card { padding: 16px 17px; border-radius: 14px; }
  .contact-card a,
  .contact-card strong,
  a[href^="mailto:"] { max-width: 100%; overflow-wrap: anywhere; }
  .form-card { padding: 20px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .field--full { grid-column: auto; }
  .field { gap: 6px; }
  .field label { font-size: 13px; }
  .field input,
  .field textarea,
  .field select { min-height: 50px; padding: 11px 13px; border-radius: 12px; font-size: 16px; }
  .field textarea { min-height: 120px; }
  .form-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }
  .form-actions .btn { width: 100%; }
  .form-status { margin-top: 10px; }

  .booking-hero-grid { padding-block: 46px 40px; }
  .booking-hero h1 { max-width: none; font-size: clamp(2.25rem, 10vw, 2.75rem); }
  .booking-trust-line { gap: 7px; margin-top: 20px; }
  .booking-trust-line span {
    padding: 6px 10px;
    border: 1px solid var(--navy-100);
    border-radius: var(--radius-pill);
    background: rgb(255 255 255 / .62);
    font-size: 11px;
  }
  .booking-trust-line span + span::before { display: none; }
  .booking-hero-aside { padding: 20px; border-radius: 18px; }
  .booking-hero-aside strong { font-size: 1.18rem; }
  .booking-hero-aside p { font-size: 13.5px; }

  .booking-section { padding-top: 48px; }
  .booking-shell { gap: 36px; }
  .booking-step { padding-bottom: 34px; }
  .booking-step + .booking-step { padding-top: 34px; }
  .booking-step-heading { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; margin-bottom: 20px; }
  .booking-step-heading h2 { font-size: 1.55rem; }
  .booking-step-heading p { font-size: 13.5px; line-height: 1.5; }
  .step-number { width: 34px; height: 34px; }
  .service-option input { top: 17px; left: 16px; width: 18px; height: 18px; }
  .service-option-body { min-height: 0; gap: 5px; padding: 17px 16px 17px 46px; border-radius: 14px; }
  .service-option-body strong { font-size: 1.12rem; }
  .service-option-body > span { font-size: 12px; }
  .service-option-body small { font-size: 13px; line-height: 1.48; }
  .booking-date-field { max-width: none; }
  .time-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .time-option span { width: 100%; min-height: 46px; padding-inline: 10px; }
  .availability-suggestions { gap: 7px; }
  .availability-suggestion { min-height: 44px; }
  .fee-notice { padding: 15px 16px; }
  .consent-check { margin-top: 18px; }
  .booking-side { gap: 12px; }
  .booking-side-block { padding: 20px; border-radius: 18px; }
  .booking-side-block ol { gap: 16px; margin-top: 17px; }
  .booking-success { padding: 24px 20px; }
  .manage-grid > div:first-child { padding-top: 0; }
  .manage-actions { display: grid; grid-template-columns: 1fr; }
  .manage-actions .btn { width: 100%; }
  .reschedule-panel .field { max-width: none; }

  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 22px; padding-block: 48px 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { width: 70px; height: 70px; }
  .footer-brand p { margin-top: 14px; }
  .footer-column a,
  .footer-column span { overflow-wrap: anywhere; }
  .footer-bottom { gap: 14px; padding-block: 18px calc(18px + env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .container,
  .container-wide { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 50px; }
  .section--compact { padding-block: 40px; }

  .hero-grid { padding-top: 34px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn,
  .hero-actions .text-link { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-frame { aspect-ratio: 6 / 5; }
  .hero-badge { margin: -12px 10px 0; padding: 15px 16px; }

  .page-hero { padding-block: 44px 46px; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-column:first-of-type { grid-column: 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 350px) {
  .container,
  .container-wide { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.72rem; }
  .fact-panel,
  .trust-points,
  .time-options { grid-template-columns: 1fr; }
  .fact-item:nth-child(even) { border-left: 0; }
  .fact-item:nth-child(n+2) { border-top: 1px solid var(--navy-100); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* v1.3.6 — Mobile corner geometry cleanup.
   Keep the hero surface symmetrical and visually related to adjacent cards. */
/* v1.3.5 — Compact mobile hero redesign.
   Treat the hero as one integrated visual canvas on phones instead of a vertical
   stack of copy, actions, media and a separate information card. */
@media (max-width: 760px) {
  .hero {
    overflow: visible;
    padding-block: 8px 18px;
    background: var(--ivory-050);
  }

  .hero-grid {
    position: relative;
    display: grid;
    min-height: clamp(540px, 68svh, 610px);
    gap: 0;
    padding-block: 0;
    isolation: isolate;
  }

  .hero-media,
  .hero-copy {
    grid-area: 1 / 1;
  }

  .hero-media {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .hero-frame {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgb(1 35 86 / .14);
  }

  .hero-frame img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 52% 44%;
    transform: none;
  }

  .hero-media::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgb(1 35 86 / .01) 0%, rgb(1 35 86 / .025) 24%, rgb(1 35 86 / .19) 43%, rgb(1 35 86 / .82) 70%, rgb(1 35 86 / .98) 100%),
      linear-gradient(90deg, rgb(1 35 86 / .16), transparent 62%);
    content: "";
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    align-self: end;
    max-width: none;
    padding: 22px 22px 18px;
    color: var(--white);
  }

  .hero-copy .eyebrow {
    margin-bottom: 7px;
    color: rgb(255 255 255 / .84);
  }

  .hero-copy .eyebrow::before { background: var(--brand-gold); }

  .hero-copy h1 {
    max-width: 100%;
    color: var(--white);
    font-size: clamp(2.2rem, 9.2vw, 2.72rem);
    line-height: .94;
    letter-spacing: -.042em;
    text-wrap: balance;
  }

  .hero-copy h1 .accent { color: #f1c54a; }

  .hero-copy .lead {
    max-width: 41ch;
    margin-top: 10px;
    color: rgb(255 255 255 / .86);
    font-size: .88rem;
    line-height: 1.43;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 8px;
    margin-top: 14px;
  }

  .hero-actions .btn,
  .hero-actions .text-link {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    justify-content: center;
    border-radius: 999px;
    white-space: nowrap;
  }

  .hero-actions .btn {
    padding-inline: 12px;
    font-size: 13.25px;
  }

  .hero-actions .text-link {
    padding-inline: 10px;
    border: 1px solid rgb(255 255 255 / .42);
    background: rgb(1 35 86 / .20);
    color: var(--white);
    font-size: 12.75px;
    backdrop-filter: blur(8px);
  }

  .hero-actions .text-link:hover,
  .hero-actions .text-link:focus-visible {
    background: rgb(255 255 255 / .12);
    color: var(--white);
  }

  .hero-note {
    margin-top: 9px;
    color: rgb(255 255 255 / .72);
    font-size: 10.75px;
    line-height: 1.35;
  }

  .hero-note a {
    color: var(--white);
    text-decoration-color: #f1c54a;
  }

  .hero-badge {
    position: absolute;
    z-index: 4;
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
    display: inline-flex;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 7px 10px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgb(255 255 255 / .72);
    border-radius: 999px;
    background: rgb(255 255 255 / .92);
    box-shadow: 0 8px 22px rgb(1 35 86 / .12);
    backdrop-filter: blur(12px);
  }

  .hero-badge::before {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--brand-gold);
    content: "";
  }

  .hero-badge strong {
    color: var(--navy-900);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .01em;
  }

  .hero-badge span { display: none; }
  .hero-ring { display: none; }

  .fact-strip { margin-top: -10px; }
  .fact-strip .container { position: relative; z-index: 5; }
}

@media (max-width: 430px) {
  .hero { padding-top: 6px; }

  .hero-grid {
    min-height: clamp(520px, 67svh, 570px);
  }

  .hero-copy { padding: 19px 18px 16px; }

  .hero-copy .eyebrow { margin-bottom: 6px; font-size: 10px; }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.4vw, 2.45rem);
  }

  .hero-copy .lead {
    max-width: 38ch;
    margin-top: 9px;
    font-size: .84rem;
    line-height: 1.4;
  }

  .hero-actions {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 7px;
    margin-top: 12px;
  }

  .hero-actions .btn { min-height: 44px; padding-inline: 9px; font-size: 12.5px; }
  .hero-actions .text-link { min-height: 44px; padding-inline: 7px; font-size: 11.9px; }

  .hero-note { margin-top: 7px; font-size: 10px; }

  .hero-badge {
    top: 10px;
    right: 10px;
    padding: 7px 9px;
  }
}

@media (max-width: 350px) {
  .hero-grid { min-height: 520px; }
  .hero-copy { padding-inline: 15px; }
  .hero-copy h1 { font-size: 1.98rem; }
  .hero-copy .lead { font-size: .8rem; }
  .hero-actions { grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); }
  .hero-actions .btn,
  .hero-actions .text-link { min-height: 44px; font-size: 11.2px; }
}

/* v1.3.7 — mobile hero radius runtime guard.
   Motion previously left an inline rounded clip-path on the hero frame.
   On phones the CSS radius is now authoritative, including after animation. */
@media (max-width: 760px) {
  .hero-frame {
    border-radius: 18px !important;
    clip-path: none !important;
    overflow: hidden;
  }

  .hero-frame img {
    border-radius: inherit;
  }

  .hero-media::after {
    border-radius: 18px !important;
  }
}
