:root {
  --cream: #fff8f4;
  --cream-2: #fff1ea;
  --surface: #ffffff;
  --mint: #e7f7f3;
  --mint-2: #d4f0ea;
  --lavender: #f3ecff;
  --blush: #ffe6f0;
  --sun: #ffe8b0;
  --peach: #ffd8c4;
  --ink: #2b2340;
  --ink-soft: #4a4060;
  --ink-mute: #6e6580;
  --coral: #ff7a8a;
  --coral-deep: #e54d6a;
  --peach-hot: #ff9d70;
  --sun-hot: #ffc24b;
  --teal: #2eb8c4;
  --teal-deep: #0e4a5c;
  --lavender-hot: #9b7dff;
  --pink: #ff6eb4;
  --sky: #7ec8ff;
  --line: rgba(43, 35, 64, 0.10);
  --shadow: 0 22px 50px -22px rgba(229, 77, 106, 0.38);
  --shadow-teal: 0 22px 50px -22px rgba(46, 184, 196, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
  --font-d: "Fredoka", system-ui, sans-serif;
  --font-s: "Nunito", system-ui, sans-serif;
  --font-script: "Fraunces", Georgia, serif;
  --radius: 28px;
  --radius-sm: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: clip; }
::selection { background: var(--coral); color: #fff; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-s);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open { overflow: hidden; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }
ul { list-style: none; }

.magic-sky {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  animation: blob 14s ease-in-out infinite;
}
.blob.b1 { width: 420px; height: 420px; background: #ffc2d4; top: -80px; left: -80px; }
.blob.b2 { width: 360px; height: 360px; background: #c9b6ff; top: 20%; right: -90px; animation-delay: -4s; }
.blob.b3 { width: 480px; height: 480px; background: #b8f0e8; bottom: -140px; left: 20%; animation-delay: -8s; }
.blob.b4 { width: 280px; height: 280px; background: #ffe08a; bottom: 10%; right: 8%; animation-delay: -2s; }
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -30px) scale(1.12); }
}

.float-svg {
  position: fixed;
  pointer-events: none;
  z-index: 4;
  animation: floaty 7s ease-in-out infinite;
}
.float-svg.s2 { animation-duration: 9s; animation-delay: -2s; }
.float-svg.s3 { animation-duration: 6s; animation-delay: -3.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes twinkle {
  0%, 100% { opacity: .35; transform: scale(.85) rotate(0); }
  50% { opacity: 1; transform: scale(1.15) rotate(18deg); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(10deg); }
}

.cursor {
  position: fixed; top: 0; left: 0;
  width: 16px; height: 16px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(255, 122, 138, 0.18);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
}
.cursor.hover {
  width: 48px; height: 48px;
  background: transparent;
  border: 2px solid var(--coral);
  box-shadow: none;
}
.cursor-label {
  position: fixed; pointer-events: none; z-index: 10001;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-d); font-weight: 600;
  color: #fff; background: var(--coral-deep);
  padding: 8px 12px; border-radius: 999px;
  opacity: 0; transform: translate(-50%, 18px);
  transition: opacity .25s var(--ease);
}
.cursor-label.show { opacity: 1; }
@media (pointer: coarse) {
  .cursor, .cursor-label { display: none !important; }
}

.loader {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, #fff8f4, #ffe6f0 40%, #e7f7f3);
  color: var(--coral-deep);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark { width: 72px; height: 72px; margin: 0 auto 20px; animation: spin-slow 4s linear infinite; color: var(--coral); }
.loader p {
  font-family: var(--font-d); font-weight: 600;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-deep);
}

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  color: var(--ink);
  background: rgba(255, 248, 244, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled, .nav.dark-force.scrolled, .nav.dark-force {
  background: rgba(255, 248, 244, 0.94);
  color: var(--ink);
}
.logo { display: flex; align-items: center; z-index: 2; }
.logo-img { height: 32px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--font-d); font-weight: 500;
  font-size: 15px;
}
.nav-links a { position: relative; opacity: 0.78; transition: opacity .25s, color .25s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--coral-deep); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 3px; border-radius: 3px;
  background: var(--coral);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger {
  display: none; width: 44px; height: 44px; position: relative;
  background: none; border: 0; z-index: 91; border-radius: 50%;
  font-size: 0;
}
.burger::after {
  content: "☰";
  font-size: 22px;
  line-height: 44px;
  color: inherit;
}
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2.5px; border-radius: 4px;
  background: currentColor;
  transition: transform .4s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.is-menu-open .nav { z-index: 210; }
.is-menu-open .burger { display: none !important; }
.is-menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-menu-open .burger span:nth-child(2) { opacity: 0; }
.is-menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, #fff4ea, #ffe0ef 50%, #d8f4ef);
  color: var(--teal-deep);
  z-index: 200;
  display: flex; flex-direction: column; justify-content: center;
  padding: 12vh 8vw 10vh;
  transform: translateY(-101%);
  transition: transform .7s var(--ease);
}
.menu-overlay.open { transform: translateY(0); }
.menu-close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 202;
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow);
}
.menu-overlay a {
  font-family: var(--font-d); font-weight: 600;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1.15;
}
.menu-overlay a:nth-child(2n) { color: var(--coral-deep); }
.menu-overlay a:nth-child(3n) { color: var(--lavender-hot); }
.menu-meta {
  margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 14px; color: var(--ink-mute);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 24px; border-radius: 999px;
  border: 2px solid transparent;
  background: var(--coral); color: #fff;
  font-family: var(--font-d); font-weight: 600; font-size: 15px;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), filter .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.05); }
.btn-ghost {
  background: transparent; border-color: var(--ink); color: var(--ink); box-shadow: none;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--coral-deep); }
.btn-teal { background: var(--teal); box-shadow: var(--shadow-teal); }
.btn-sun { background: var(--sun-hot); color: var(--teal-deep); }
.btn-outline-light {
  background: transparent; border-color: rgba(255,255,255,.7); color: #fff; box-shadow: none;
}
.btn-outline-light:hover { background: #fff; color: var(--coral-deep); }

.wrap { width: min(1200px, calc(100% - 8vw)); margin: 0 auto; position: relative; z-index: 1; }
.section { padding: clamp(4rem, 3rem + 6vw, 7.5rem) 0; position: relative; }
.section-tight { padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) 0; }

.kicker, .eyebrow {
  font-family: var(--font-d); font-weight: 600;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral-deep);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.kicker::before, .eyebrow::before {
  content: ""; width: 22px; height: 4px; border-radius: 4px; background: var(--sun-hot);
}
h1, h2, h3 {
  font-family: var(--font-d); font-weight: 650; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--teal-deep); text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 1.4rem + 5vw, 5.4rem); }
h2 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.7rem); }
h1 em, h2 em, h3 em {
  font-family: var(--font-script); font-style: italic; font-weight: 500;
  color: var(--coral-deep); letter-spacing: 0;
}
.lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
  color: var(--ink-mute); max-width: min(560px, 100%);
  margin-top: 18px;
}
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.row { display: flex; gap: 12px; flex-wrap: wrap; }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: 52px; }

.band-peach { background: linear-gradient(180deg, #fff1ea, #ffe0d2); }
.band-mint { background: linear-gradient(180deg, #e7f7f3, #d4f0ea); }
.band-lav { background: linear-gradient(180deg, #f6efff, #ebe0ff); }
.band-sun { background: linear-gradient(180deg, #fff6d8, #ffe8b0); }
.band-blush { background: linear-gradient(180deg, #fff0f5, #ffdceb); }
.band-dark {
  background: linear-gradient(135deg, #0e4a5c 0%, #2eb8c4 55%, #9b7dff 100%);
  color: #fff;
}
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .lede { color: rgba(255,255,255,.86); }
.band-dark .kicker { color: var(--sun-hot); }
.band-dark .kicker::before { background: var(--sun-hot); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: calc(var(--nav-h) + 32px) 6vw 48px;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-lead { margin-top: 22px; font-size: 18px; color: var(--ink-soft); max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta {
  margin-top: 28px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute); font-family: var(--font-d); font-weight: 600;
}
.hero-meta strong {
  display: inline-block; font-size: 28px; color: var(--coral-deep); margin-right: 8px;
}
.hero-media {
  position: relative; z-index: 2;
  border-radius: 36px; overflow: hidden;
  height: min(72vh, 640px);
  box-shadow: 0 30px 70px -28px rgba(229, 77, 106, 0.45);
  transform: rotate(1.5deg);
}
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 3; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-d); color: var(--ink-mute);
}
.scroll-hint i {
  display: block; width: 2px; height: 36px; margin: 8px auto 0;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip {
  0%, 100% { transform: scaleY(0.4); opacity: .3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}

.page-hero {
  min-height: 58vh;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  position: relative; overflow: hidden;
  display: grid; align-items: end;
}
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img, .page-hero .bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,248,244,.08) 0%, rgba(255,248,244,.35) 42%, rgba(255,248,244,.94) 88%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { text-shadow: 0 8px 30px rgba(255,248,244,.8); }

.vid {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: #1a1228;
}
.vid video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-unmute {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  height: 40px; padding: 0 14px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.92); color: var(--teal-deep);
  font-family: var(--font-d); font-weight: 600; font-size: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.vid-unmute:hover { background: var(--coral); color: #fff; }

.marquee {
  background: #fff;
  overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex; gap: 36px; width: max-content;
  animation: marquee 32s linear infinite;
  padding: 16px 0;
  font-family: var(--font-d); font-weight: 600; font-size: 15px;
}
.marquee-track span { white-space: nowrap; }
.marquee-track span:nth-child(4n+1) { color: var(--coral-deep); }
.marquee-track span:nth-child(4n+3) { color: var(--teal); }
.marquee-track em { color: var(--sun-hot); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.filmstrip { overflow: hidden; padding: 10px 0; background: var(--blush); }
.filmstrip-track {
  display: flex; gap: 12px; width: max-content;
  animation: marquee 48s linear infinite;
}
.filmstrip-track img {
  height: 180px; width: 140px; object-fit: cover;
  border-radius: 18px; box-shadow: 0 8px 20px rgba(229,77,106,.18);
}

.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }
.frame {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: 0 24px 50px -24px rgba(43, 35, 64, 0.28);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.frame:hover img { transform: scale(1.06); }
.frame-tall { height: 560px; }
.frame-mid { height: 440px; }
.caption {
  margin-top: 12px; font-size: 13px; color: var(--ink-mute);
  font-family: var(--font-d); font-weight: 500;
}
.neon-frame { box-shadow: 0 0 0 6px #fff, 0 0 0 10px var(--coral), 0 24px 50px -20px rgba(229,77,106,.4); }
.neon-frame.magenta { box-shadow: 0 0 0 6px #fff, 0 0 0 10px var(--lavender-hot), 0 24px 50px -20px rgba(155,125,255,.4); }
.neon-frame.mint { box-shadow: 0 0 0 6px #fff, 0 0 0 10px var(--teal), 0 24px 50px -20px rgba(46,184,196,.4); }

.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 48px;
}
.offer {
  position: relative; min-height: 480px; overflow: hidden;
  border-radius: var(--radius); color: #fff; isolation: isolate;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease);
}
.offer:hover { transform: translateY(-10px) rotate(-0.6deg); }
.offer img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.1s var(--ease);
}
.offer:hover img { transform: scale(1.08); }
.offer::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(14, 74, 92, .88));
}
.offer-body {
  position: relative; z-index: 2; height: 100%; min-height: 480px;
  padding: 28px 24px; display: flex; flex-direction: column; justify-content: flex-end;
}
.offer .tag {
  font-family: var(--font-d); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sun-hot); margin-bottom: 8px;
}
.offer h3 { color: #fff; font-size: 36px; margin-bottom: 8px; }
.offer p { color: rgba(255,255,255,.88); font-size: 15px; max-width: 300px; }
.offer .link { margin-top: 16px; font-family: var(--font-d); font-weight: 600; color: #fff; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 18px 40px -24px rgba(43,35,64,.2);
  overflow: hidden;
}
.stat { padding: 36px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat:nth-child(1) { background: var(--blush); }
.stat:nth-child(2) { background: var(--sun); }
.stat:nth-child(3) { background: var(--mint); }
.stat:nth-child(4) { background: var(--lavender); }
.stat b {
  display: block; font-family: var(--font-d); font-size: 48px; font-weight: 650;
  color: var(--teal-deep); line-height: 1;
}
.stat span { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-mute); font-weight: 700; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.pillar {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  box-shadow: 0 16px 36px -24px rgba(43,35,64,.22);
  transition: transform .4s var(--ease);
}
.pillar:hover { transform: translateY(-8px); }
.pillar:nth-child(1) { border-top: 6px solid var(--coral); }
.pillar:nth-child(2) { border-top: 6px solid var(--teal); }
.pillar:nth-child(3) { border-top: 6px solid var(--sun-hot); }
.pillar .num { font-family: var(--font-d); font-size: 13px; color: var(--coral-deep); letter-spacing: 0.08em; text-transform: uppercase; }
.pillar h3 { margin: 12px 0 10px; }
.pillar p { color: var(--ink-mute); }

.quotes { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.quote-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  margin-bottom: 16px;
  box-shadow: 0 16px 36px -24px rgba(43,35,64,.2);
}
.quote-card:nth-child(2) { background: var(--blush); }
.quote-card:nth-child(3) { background: var(--mint); }
.quote-card p { font-family: var(--font-script); font-style: italic; font-size: 24px; color: var(--teal-deep); line-height: 1.3; }
.quote-card cite { display: block; margin-top: 12px; font-style: normal; font-size: 13px; color: var(--ink-mute); }
.stars { color: var(--coral); letter-spacing: 3px; margin-bottom: 8px; }

.sched-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  border: 2px solid var(--line); background: #fff; height: 40px; padding: 0 16px;
  border-radius: 999px; font-family: var(--font-d); font-weight: 600; font-size: 13px; color: var(--ink);
}
.filter.active, .filter:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.day {
  background: #fff; min-height: 380px; padding: 18px 12px;
  border-radius: 20px; box-shadow: 0 12px 30px -20px rgba(43,35,64,.2);
}
.day:nth-child(odd) { background: var(--blush); }
.day:nth-child(3n) { background: var(--mint); }
.day:nth-child(5n) { background: var(--lavender); }
.day h4 {
  font-family: var(--font-d); font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid rgba(229,77,106,.2); color: var(--teal-deep);
}
.class-row { padding: 10px 0; border-bottom: 1px solid var(--line); }
.class-row .time { font-size: 12px; color: var(--coral-deep); font-weight: 800; }
.class-row .name { font-size: 14px; font-weight: 700; margin-top: 2px; }
.class-row .who { font-size: 12px; color: var(--ink-mute); }
.class-row.hide { display: none; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.price {
  background: #fff; border-radius: var(--radius); padding: 36px 28px;
  position: relative; box-shadow: 0 16px 40px -24px rgba(43,35,64,.22);
  transition: transform .4s var(--ease);
}
.price:hover { transform: translateY(-8px); }
.price.featured {
  background: linear-gradient(160deg, var(--coral), var(--pink));
  color: #fff;
}
.price.featured h3, .price.featured .kicker { color: #fff; }
.price .amount { font-family: var(--font-d); font-size: 56px; line-height: 1; margin: 14px 0 8px; color: var(--teal-deep); }
.price.featured .amount { color: #fff; }
.price .amount small { font-size: 16px; }
.price ul { margin: 22px 0; }
.price li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
.price.featured li { border-bottom-color: rgba(255,255,255,.22); }
.badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-d); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--sun-hot); color: var(--teal-deep); padding: 6px 10px; border-radius: 999px;
}

.gallery {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px; gap: 12px;
}
.gallery .g1 { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery a, .gallery figure { overflow: hidden; border-radius: 22px; }
.gallery a:hover img, .gallery figure:hover img { transform: scale(1.06); }

.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.map { min-height: 420px; border: 0; width: 100%; border-radius: var(--radius); }
.info-list dt {
  font-family: var(--font-d); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral-deep); margin-top: 18px;
}
.info-list dd { font-size: 17px; margin-top: 4px; }

.form { display: grid; gap: 14px; }
.form.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-family: var(--font-d); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
input, select, textarea {
  background: #fff; border: 2px solid var(--line); padding: 12px 14px;
  font-size: 16px; color: var(--ink); outline: none; border-radius: 14px;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--coral); }
.form-note { font-size: 13px; color: var(--ink-mute); }
.success { display: none; padding: 24px; background: var(--mint); border-radius: 18px; }
.success.show { display: block; }
.form.hide { display: none; }

.faq + .faq { border-top: 1px solid var(--line); }
.faq button {
  width: 100%; background: none; border: 0; text-align: left; padding: 18px 0;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 20px; font-family: var(--font-d); font-weight: 600; color: var(--teal-deep);
}
.faq .plus { font-size: 22px; color: var(--coral); }
.faq .a { display: none; padding: 0 0 18px; color: var(--ink-mute); max-width: 680px; }
.faq.open .a { display: block; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.step {
  padding: 24px; background: #fff; border-radius: 22px; min-height: 200px;
  box-shadow: 0 14px 32px -22px rgba(43,35,64,.2);
}
.step:nth-child(1) { background: var(--blush); }
.step:nth-child(2) { background: var(--sun); }
.step:nth-child(3) { background: var(--mint); }
.step:nth-child(4) { background: var(--lavender); }
.step .n { font-family: var(--font-d); font-size: 32px; color: var(--coral-deep); }

.team { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.portrait { height: 560px; object-fit: cover; width: 100%; border-radius: var(--radius); }

.h-scroll { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.h-scroll::-webkit-scrollbar { height: 4px; }
.h-scroll::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 4px; }
.h-card { min-width: min(300px, 78vw); scroll-snap-align: start; }
.h-card img { height: 340px; width: 100%; object-fit: cover; border-radius: 22px; }
.h-card h4 { margin-top: 12px; font-family: var(--font-d); font-size: 22px; color: var(--teal-deep); }
.h-card p { color: var(--ink-mute); font-size: 14px; margin-top: 4px; }

.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.social-card {
  display: block; padding: 24px; border-radius: 22px; background: #fff; min-height: 140px;
  box-shadow: 0 14px 32px -22px rgba(43,35,64,.18);
  transition: transform .35s var(--ease);
}
.social-card:hover { transform: translateY(-6px); }
.social-card:nth-child(3n+1) { background: var(--blush); }
.social-card:nth-child(3n+2) { background: var(--mint); }
.social-card:nth-child(3n) { background: var(--lavender); }
.social-card .tag { color: var(--coral-deep); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-d); font-weight: 600; }
.social-card h3 { margin: 8px 0 6px; }
.social-card p { color: var(--ink-mute); font-size: 14px; }

.embed-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; margin-top: 40px; }
.embed-row iframe { width: 100%; min-height: 352px; border: 0; border-radius: 22px; }

.reel-row { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.reel-poster {
  position: relative; min-width: min(220px, 68vw); height: 360px; overflow: hidden;
  scroll-snap-align: start; border-radius: 24px; display: block; color: #fff;
}
.reel-poster video, .reel-poster img { width: 100%; height: 100%; object-fit: cover; }
.reel-poster b {
  position: absolute; left: 12px; right: 12px; bottom: 14px;
  font-family: var(--font-d); font-size: 18px; font-weight: 600;
  text-shadow: 0 6px 16px rgba(0,0,0,.45);
}

.overlap { display: grid; grid-template-columns: 1.1fr 0.9fr 1fr; gap: 16px; align-items: end; }
.overlap figure { overflow: hidden; border-radius: 24px; }
.overlap figure:nth-child(2) { transform: translateY(-28px); }
.overlap img { width: 100%; height: 380px; object-fit: cover; }

.full-bleed {
  position: relative; min-height: 72vh; display: flex; align-items: flex-end;
  overflow: hidden; color: #fff;
}
.full-bleed img, .full-bleed video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.full-bleed::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,74,92,.1), rgba(14,74,92,.78));
}
.full-bleed .wrap { position: relative; z-index: 2; padding-bottom: 64px; }
.full-bleed h2 { color: #fff; }
.full-bleed .lede { color: rgba(255,255,255,.88); }

.cta-slab {
  padding: 56px 40px; border-radius: 32px;
  background: linear-gradient(135deg, #ff7a8a, #ff9d70 40%, #ffc24b 80%);
  color: #fff;
}
.cta-slab h2, .cta-slab .kicker { color: #fff; }
.cta-slab .lede { color: rgba(255,255,255,.92); }
.cta-slab .kicker::before { background: #fff; }

.footer {
  background: var(--teal-deep); color: #eaf7f6;
  padding: 72px 0 36px; position: relative; overflow: hidden;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h3 {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px; color: var(--sun-hot); font-family: var(--font-d);
}
.footer a { opacity: 0.82; display: block; margin: 8px 0; }
.footer a:hover { opacity: 1; color: var(--sun-hot); }
.footer-brand p { max-width: 280px; color: rgba(234,247,246,.72); margin-top: 14px; }
.footer .logo-img { filter: brightness(0) invert(1); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 22px; font-size: 13px; color: rgba(234,247,246,.5);
}

.mobile-bar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 70; background: #fff; color: var(--ink); border-radius: 999px;
  padding: 8px; gap: 4px; box-shadow: var(--shadow); align-items: center;
}
.mobile-bar a {
  text-align: center; font-size: 12px; font-family: var(--font-d); font-weight: 600;
  padding: 12px 6px; border-radius: 999px;
  min-width: 0;
  overflow: hidden;
}
.mobile-bar a.primary { background: var(--coral); color: #fff; }

.modal {
  position: fixed; inset: 0; background: rgba(43,35,64,.55);
  z-index: 200; display: none; place-items: center; padding: 24px;
}
.modal.open { display: grid; }
.modal-card {
  width: min(540px, 100%); background: #fff; color: var(--ink);
  padding: 36px 32px; position: relative; max-height: 90vh; overflow: auto;
  border-radius: 28px;
}
.modal-close {
  position: absolute; top: 12px; right: 16px; background: none; border: 0;
  font-size: 28px; color: var(--ink); line-height: 1;
}

.note { font-size: 13px; color: var(--ink-mute); margin-top: 16px; }

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal[data-from="left"] { transform: translateX(-56px); }
.reveal[data-from="right"] { transform: translateX(56px); }
.reveal[data-from="scale"] { transform: scale(.88); }
.reveal[data-from="tilt"] { transform: translateY(40px) rotate(-5deg); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

@supports (animation-timeline: view()) {
  .magic-move {
    animation: rise linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 38%;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(48px) rotate(-2deg); }
    to { opacity: 1; transform: none; }
  }
}

.wave {
  display: block; width: 100%; height: 72px; color: var(--cream);
}
.wave path { fill: currentColor; }

.ico-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px; }
.ico {
  width: 72px; height: 72px; border-radius: 22px;
  display: grid; place-items: center; background: #fff;
  box-shadow: 0 10px 24px -16px rgba(43,35,64,.3);
}
.ico svg { width: 36px; height: 36px; }

.story-row { display: none; }
.swipe-note { display: none; }
.rail { position: relative; min-width: 0; max-width: 100%; }
.rail-controls {
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 8px 0 0;
}
.rail-btn {
  width: 42px; height: 42px;
  border: 0; border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.menu-fab {
  display: none;
}
.pillar p, .h-card h4, .h-card p, .quote-card p, .offer p {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

@media (max-width: 980px) {
  :root { --nav-h: 64px; }
  .nav { height: 64px; padding: 0 16px; }
  .logo-img { height: 26px; }
  .nav-links { display: none; }
  .nav .btn { display: none; }
  .nav .burger { display: none !important; }
  .nav { padding-right: 64px; overflow: visible; }
  .menu-fab {
    display: grid !important;
    place-items: center;
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    z-index: 400;
    width: 48px; height: 48px;
    border: 0; border-radius: 50%;
    background: var(--coral);
    color: #fff;
    font-size: 0;
    box-shadow: 0 10px 28px rgba(229, 77, 106, 0.5);
  }
  .menu-fab::after { content: "☰"; font-size: 22px; line-height: 1; color: #fff; }
  .is-menu-open .menu-fab { background: var(--teal-deep); }
  .is-menu-open .menu-fab::after { content: "✕"; }
  .is-menu-open .burger { display: none !important; }

  /* Full-bleed video hero — one screen, not a stack */
  .hero {
    display: block;
    min-height: 100svh;
    padding: 0;
    position: relative;
  }
  .hero-media {
    position: absolute; inset: 0;
    height: 100%;
    border-radius: 0;
    transform: none;
    box-shadow: none;
    z-index: 0;
  }
  .hero-content {
    position: relative; z-index: 2;
    min-height: 100svh;
    max-width: none;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: calc(var(--nav-h) + 8px) 20px 92px;
    background: linear-gradient(180deg, rgba(14,74,92,.08) 0%, rgba(14,74,92,.2) 42%, rgba(14,74,92,.82) 100%);
  }
  .hero h1 { color: #fff; font-size: clamp(2.2rem, 10vw, 3.1rem); }
  .hero h1 em { color: #ffd0dc; }
  .hero .eyebrow { color: #ffc24b; }
  .hero .eyebrow::before { background: #ffc24b; }
  .hero-lead { color: rgba(255,255,255,.92); font-size: 15px; margin-top: 12px; max-width: 34em; }
  .hero-meta { color: rgba(255,255,255,.8); margin-top: 16px; }
  .hero-meta strong { color: #ffc24b; font-size: 22px; }
  .hero-actions { flex-direction: row; gap: 8px; margin-top: 18px; }
  .hero-actions .btn { width: auto; flex: 1; height: 46px; padding: 0 8px; font-size: 13px; }
  .hero-actions .btn-ghost { border-color: #fff; color: #fff; }
  .hero-actions .btn-ghost:hover { background: #fff; color: var(--coral-deep); }
  .hero .vid-unmute,
  .page-hero .vid-unmute {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: 96px;
    z-index: 85;
    width: 44px; height: 44px; padding: 0;
    font-size: 0;
  }
  .hero .vid-unmute::after,
  .page-hero .vid-unmute::after { content: "♪"; font-size: 18px; line-height: 44px; }
  .scroll-hint { display: none; }

  .story-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 14px 16px 6px;
    scrollbar-width: none;
    background: var(--cream);
    position: relative; z-index: 2;
  }
  .story-row::-webkit-scrollbar { display: none; }
  .story-row a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 74px;
    text-align: center;
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 12px;
    color: var(--teal-deep);
  }
  .story-row img {
    width: 68px; height: 68px; object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--coral);
    box-shadow: 0 8px 18px -10px rgba(229,77,106,.5);
    margin: 0 auto 6px;
  }
  .story-row a:nth-child(2) img { border-color: var(--lavender-hot); }
  .story-row a:nth-child(3) img { border-color: var(--teal); }
  .story-row a:nth-child(4) img { border-color: var(--sun-hot); }
  .story-row a:nth-child(5) img { border-color: var(--pink); }

  .swipe-note {
    display: block;
    font-family: var(--font-d); font-weight: 600;
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--coral-deep);
    margin: 8px 0 0;
  }

  .split, .split.reverse, .quotes, .visit-grid, .team, .footer-top, .embed-row,
  .quotes > *, .split > *, .wrap, .rail, .section {
    min-width: 0;
    max-width: 100%;
  }
  .split, .split.reverse, .quotes, .visit-grid, .team, .footer-top, .embed-row {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lede, p, h1, h2, h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }
  .split.reverse .split-copy { order: 0; }
  .split .lede + .lede { display: none; }
  .split .media-pair { order: -1; }

  /* Swipe rails instead of stacked cards */
  .offer-grid, .pillars, .steps, .price-grid, .week, .quotes-track, .overlap, .h-scroll, .reel-row, .media-pair {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: -16px;
    padding: 6px 16px 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .offer-grid::-webkit-scrollbar, .pillars::-webkit-scrollbar, .steps::-webkit-scrollbar,
  .price-grid::-webkit-scrollbar, .week::-webkit-scrollbar, .quotes-track::-webkit-scrollbar,
  .overlap::-webkit-scrollbar, .h-scroll::-webkit-scrollbar, .reel-row::-webkit-scrollbar,
  .media-pair::-webkit-scrollbar { display: none; }

  .offer, .pillar, .step, .price, .day, .quote-card, .h-card, .overlap figure {
    min-width: min(86vw, 340px);
    max-width: min(86vw, 340px);
    scroll-snap-align: start;
    flex: 0 0 auto;
    overflow: visible;
  }
  .pillar p { display: block; -webkit-line-clamp: unset; }
  .offer { min-height: 360px; }
  .offer-body { min-height: 360px; padding: 22px 18px; }
  .offer h3 { font-size: 30px; }
  .step { min-height: 180px; }
  .day { min-height: 340px; }
  .quote-card { margin-bottom: 0; }
  .h-card img { height: 240px; }
  .overlap figure:nth-child(2) { transform: none; }
  .overlap img { height: 280px; }
  .reel-poster { min-width: min(52vw, 210px); height: 320px; }

  .media-pair > .frame, .media-pair > .vid {
    min-width: min(78vw, 310px);
    height: 240px !important;
    scroll-snap-align: start;
    flex: 0 0 auto;
    margin-top: 0 !important;
  }
  .frame-tall, .frame-mid { height: 220px; }
  .portrait { height: 280px; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px 12px; }
  .stat b { font-size: 32px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .social-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .social-card { min-height: 0; padding: 16px; }
  .social-card h3 { font-size: 1.15rem; }

  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; gap: 8px; }
  .gallery .g1 { grid-row: auto; grid-column: 1 / -1; height: 200px; }

  .form.two { grid-template-columns: 1fr; }
  .mobile-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .mobile-bar a { flex: unset; min-width: 0; }
  .split ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }
  .split ul li {
    border: 0 !important;
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px !important;
    font-size: 13px;
    line-height: 1.3;
  }
  .section { padding: 44px 0; }
  .section-tight { padding: 28px 0; }
  body { padding-bottom: 80px; }
  .cta-slab { padding: 28px 20px; }
  .full-bleed { min-height: 62vh; }
  .page-hero { min-height: 48vh; padding: calc(var(--nav-h) + 16px) 0 28px; }
  .page-hero h1 { font-size: clamp(2.1rem, 11vw, 2.8rem); }
  .wrap { width: min(1200px, calc(100% - 32px)); }
  .filmstrip-track img { height: 150px; width: 114px; }
  .sched-head { flex-direction: column; align-items: start; }
  .ico { width: 56px; height: 56px; }
  .float-svg { opacity: .4; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .lede { font-size: 15.5px; margin-top: 12px; }
  .rail-controls { display: flex; }
  .rail-btn { position: static; transform: none; }
  .story-row { padding-right: 16px; padding-left: 16px; }
}

@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

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