/* ============================================================
   Little Stars Party Bus — site styles
   ============================================================ */

:root {
  --pink-900: #5a0a39;
  --pink-700: #b8186b;
  --pink-600: #e91e80;
  --pink-500: #f43e9a;
  --pink-400: #ff6fb3;
  --pink-200: #ffd1e4;
  --pink-100: #ffe6f0;
  --pink-50:  #fff5fa;
  --cream:    #fff8f3;
  --cream-2:  #fdeee4;
  --ink:      #2a1b2e;
  --ink-2:    #4a3a4f;
  --ink-3:    #7a6b80;
  --line:     #ecd8e2;
  --gold:     #d4a04e;

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script:  "Caveat", "Brush Script MT", cursive;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(90, 10, 57, 0.06);
  --shadow-md: 0 10px 30px rgba(90, 10, 57, 0.10);
  --shadow-lg: 0 30px 80px rgba(90, 10, 57, 0.18);

  --maxw: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   Promo announcement bar (scrolling marquee)
   ============================================================ */
.promo-bar {
  display: block;
  background: linear-gradient(90deg, var(--ink) 0%, #3d2842 50%, var(--ink) 100%);
  color: white;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .2s;
}
.promo-bar:hover {
  background: linear-gradient(90deg, var(--pink-700) 0%, var(--pink-600) 50%, var(--pink-700) 100%);
}
.promo-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(233, 30, 128, 0.25), transparent 35%),
              radial-gradient(circle at 80% 50%, rgba(233, 30, 128, 0.25), transparent 35%);
  pointer-events: none;
  z-index: 1;
}
.promo-bar-inner {
  padding: 11px 0;
  position: relative;
  z-index: 2;
}
.promo-bar-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.promo-bar-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: promo-scroll 24s linear infinite;
}
.promo-bar:hover .promo-bar-track { animation-play-state: paused; }
@keyframes promo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
.promo-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  flex-shrink: 0;
}
.promo-bar-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-400);
  flex-shrink: 0;
  animation: pulse-dot 1.8s infinite;
  box-shadow: 0 0 0 0 rgba(255, 111, 179, 0.7);
}
.promo-bar-badge {
  background: var(--pink-600);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.promo-bar-text {
  font-weight: 500;
  font-size: 14px;
}
.promo-bar-cta {
  font-weight: 800;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}
@media (max-width: 720px) {
  .promo-bar-track { animation-duration: 18s; }
  .promo-bar-item { font-size: 12.5px; padding: 0 22px; gap: 10px; }
  .promo-bar-text { font-size: 12.5px; }
  .promo-bar-badge { font-size: 9px; padding: 3px 8px; letter-spacing: 0.14em; }
}

/* per-package promo badge */
/* mid-page promo band */
.promo-band {
  display: block;
  background: linear-gradient(135deg, #ff3b9a 0%, #e91e80 55%, #b8186b 100%);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.promo-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: promo-shine 3.5s infinite;
}
.promo-band-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 22px;
  position: relative;
  z-index: 1;
}
.promo-band-emoji {
  font-size: 34px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  animation: promo-bounce 1.6s infinite;
}
.promo-band-text { flex: 1; min-width: 0; color: white; }
.promo-band-head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.promo-band-head strong { font-weight: 700; }
.promo-band-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
  font-weight: 500;
}
.promo-band-btn {
  background: white;
  color: var(--pink-700);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform .15s;
}
.promo-band:hover .promo-band-btn { transform: translateY(-2px); }
@media (max-width: 640px) {
  .promo-band-inner { flex-wrap: wrap; gap: 12px; }
  .promo-band-emoji { font-size: 28px; }
  .promo-band-head { font-size: 20px; }
  .promo-band-btn { width: 100%; text-align: center; }
}

/* hero promo banner */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding: 12px 20px 12px 14px;
  background: linear-gradient(135deg, #ff3b9a 0%, #e91e80 55%, #b8186b 100%);
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(233, 30, 128, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  animation: hero-promo-glow 2.4s ease-in-out infinite;
}
@keyframes hero-promo-glow {
  0%, 100% { box-shadow: 0 12px 30px rgba(233, 30, 128, 0.35), inset 0 1px 0 rgba(255,255,255,0.25); }
  50% { box-shadow: 0 16px 40px rgba(233, 30, 128, 0.6), inset 0 1px 0 rgba(255,255,255,0.25); }
}
.hero-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: promo-shine 3s infinite;
}
.hero-promo-tag {
  background: rgba(255,255,255,0.95);
  color: var(--pink-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.hero-promo-text {
  color: white;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.hero-promo-text strong { font-weight: 800; }
@media (max-width: 540px) {
  .hero-promo { flex-direction: column; align-items: flex-start; gap: 8px; border-radius: var(--r-md); padding: 14px 18px; }
  .hero-promo-text { font-size: 14px; }
}

/* per-package promo badge */
.pkg-promo {
  position: relative;
  background: linear-gradient(135deg, #ff3b9a 0%, #e91e80 50%, #b8186b 100%);
  color: white;
  padding: 14px 14px 14px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(233, 30, 128, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  overflow: hidden;
  animation: promo-pulse 2s ease-in-out infinite;
}
@keyframes promo-pulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(233, 30, 128, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 14px 36px rgba(233, 30, 128, 0.7), inset 0 1px 0 rgba(255,255,255,0.25);
    transform: scale(1.02);
  }
}
.pkg-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  animation: promo-shine 3s infinite;
}
@keyframes promo-shine {
  0% { left: -50%; }
  100% { left: 150%; }
}
.pkg-promo-emoji {
  font-size: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: promo-bounce 1.4s infinite;
}
@keyframes promo-bounce {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg) scale(1.1); }
}
.pkg-promo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.pkg-promo-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.pkg-promo-amount em {
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 26px;
  margin-right: 2px;
  vertical-align: -2px;
}
.pkg-promo-sub {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

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

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

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--pink-200); color: var(--pink-900); }

/* ============================================================
   Type
   ============================================================ */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.h-script {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--pink-600);
  line-height: 1;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-600);
}
.body-lg { font-size: 19px; line-height: 1.6; color: var(--ink-2); }
.body-md { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.body-sm { font-size: 14px; line-height: 1.55; color: var(--ink-3); }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink-600);
  color: white;
  box-shadow: 0 8px 20px rgba(233, 30, 128, 0.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(233, 30, 128, 0.40); background: var(--pink-500); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: white; }
.btn-light {
  background: white;
  color: var(--pink-700);
  border: 1.5px solid var(--pink-200);
}
.btn-light:hover { border-color: var(--pink-600); color: var(--pink-600); }
.btn-lg { padding: 20px 36px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 248, 243, 0.92);
  border-bottom: 1px solid rgba(236, 216, 226, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 720px) { .nav-inner { padding: 14px 20px; } }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-script);
  color: var(--pink-600);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  position: relative;
  transition: color .15s;
}
.nav-links a:hover { color: var(--pink-600); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--pink-600);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover::after { transform: scaleX(1); }

@media (max-width: 880px) { .nav-links { display: none; } }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.nav-phone span { color: var(--pink-600); }
@media (max-width: 540px) { .nav-phone { display: none; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 48px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  /* On mobile/tablet: show the video FIRST, then the headline/CTAs */
  .hero-copy { order: 2; }
  .hero-visual { order: 1; aspect-ratio: 4 / 4.2; }
}

.hero-copy .eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-copy .eyebrow-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34c759; box-shadow: 0 0 0 3px rgba(52, 199, 89, .18);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero h1 .pink {
  color: var(--pink-600);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
}
.hero h1 .script {
  font-family: var(--font-script);
  color: var(--pink-600);
  font-style: normal;
  font-size: 0.85em;
  line-height: 1;
  display: inline-block;
  transform: translateY(0.04em) rotate(-3deg);
}

.hero p.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 52ch;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.stars-row {
  color: var(--pink-600);
  letter-spacing: 2px;
  font-size: 14px;
}

/* hero visual stack */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--pink-200);
}
.hero-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(90, 10, 57, 0.55) 0%, transparent 35%);
  pointer-events: none;
  z-index: 2;
}
.hero-visual .live-label {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  color: white;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-visual .live-label .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff3b73; box-shadow: 0 0 0 0 rgba(255, 59, 115, 0.7);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 115, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 59, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 115, 0); }
}
.hero-visual .mute-btn {
  position: absolute;
  bottom: 18px; right: 18px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s;
}
.hero-visual .mute-btn:hover { background: var(--pink-600); }
.hero-visual .mute-btn svg { width: 18px; height: 18px; }

.hero-visual .badge-floater {
  position: absolute;
  z-index: 4;
  background: white;
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-floater .icon { font-size: 14px; }

.float-1 { top: 24px; left: -20px; transform: rotate(-4deg); }
.float-2 { bottom: 36px; right: -16px; transform: rotate(3deg); }
.float-3 { top: 50%; right: -28px; transform: translateY(-50%) rotate(-2deg); background: var(--pink-600); color: white; }

@media (max-width: 540px) {
  .float-1 { left: 12px; top: 12px; }
  .float-2 { right: 12px; bottom: 20px; }
  .float-3 { display: none; }
}

/* hero deco */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--pink-100), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--cream-2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid { position: relative; z-index: 1; }

/* Sparkles */
.sparkle {
  position: absolute;
  pointer-events: none;
  color: var(--pink-400);
  animation: twinkle 3s infinite ease-in-out;
}
.sparkle.s1 { top: 10%; left: 8%; font-size: 24px; animation-delay: 0s; }
.sparkle.s2 { top: 30%; right: 5%; font-size: 18px; animation-delay: 0.8s; color: var(--gold); }
.sparkle.s3 { bottom: 18%; left: 12%; font-size: 30px; animation-delay: 1.6s; }
.sparkle.s4 { bottom: 30%; right: 14%; font-size: 14px; animation-delay: 2.2s; color: var(--gold); }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 0.7; }
  50% { transform: scale(1.3) rotate(15deg); opacity: 1; }
}

/* ============================================================
   "Logo strip" / press / trust bar
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 22px 0;
}
.trust-strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.trust-item .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink-100);
  display: grid; place-items: center;
  color: var(--pink-600);
  font-size: 14px;
}
@media (max-width: 720px) {
  .trust-strip-inner { justify-content: center; gap: 16px 24px; }
  .trust-item { font-size: 13px; }
}

/* ============================================================
   How it works
   ============================================================ */
.how {
  background: var(--cream);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-head h2 .script {
  font-family: var(--font-script);
  color: var(--pink-600);
  font-size: 1.05em;
  display: inline-block;
  line-height: 0.8;
  transform: rotate(-2deg);
}
.section-head p { color: var(--ink-2); font-size: 18px; margin: 0; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  background: var(--ink);
  border-radius: var(--r-md);
  padding: 32px 28px;
  border: none;
  position: relative;
  text-align: left;
  color: white;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  max-height: 440px;
}
@media (max-width: 880px) {
  .how-card { max-height: none; aspect-ratio: 3 / 4; min-height: 320px; }
}
.how-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .4s ease;
}
.how-card:hover video { transform: scale(1.05); }
.how-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,27,46,0.10) 0%, rgba(42,27,46,0.35) 45%, rgba(42,27,46,0.92) 100%);
  z-index: 1;
}
.how-card > .num,
.how-card > h3,
.how-card > p { position: relative; z-index: 2; }
.how-card .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  color: white;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.how-card .num::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1.5px;
  background: var(--pink-400);
  margin-left: 14px;
  vertical-align: middle;
}
.how-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: white;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.how-card p {
  color: rgba(255,255,255,0.92);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ============================================================
   Packages
   ============================================================ */
.packages {
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-50) 100%);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pkg-card.is-featured {
  border: 2px solid var(--pink-600);
  box-shadow: var(--shadow-md);
}
.pkg-card.is-new::after {
  content: 'NEW';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.pkg-card.is-limited::after {
  content: '✨ LIMITED TIME';
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, #e91e80, #b8186b);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  z-index: 2;
  box-shadow: 0 4px 14px rgba(233, 30, 128, 0.4);
  animation: limited-pulse 2.4s infinite ease-in-out;
}
@keyframes limited-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.pkg-card.is-featured .pkg-flag {
  position: absolute;
  top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--pink-600);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  z-index: 2;
  white-space: nowrap;
}

.pkg-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pkg-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(90, 10, 57, 0.55), transparent 50%);
}
.pkg-img .pkg-name {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  color: white;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.pkg-img .pkg-name .small {
  display: block;
  font-family: var(--font-script);
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: -2px;
}

.pkg-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.pkg-price-was {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--pink-400);
  margin-right: 4px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
}
.pkg-price-was .cur { font-size: 13px; }
.pkg-price .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pkg-price .cur { color: var(--ink-3); font-size: 18px; font-weight: 600; }
.pkg-price .unit { color: var(--ink-3); font-size: 13px; margin-left: 4px; }

.pkg-meta {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 18px;
  line-height: 1.4;
}

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-features li {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.4;
}
.pkg-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pink-100);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path d='M4 8.5L7 11L12 5.5' stroke='%23e91e80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.pkg-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-details-link {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 4px;
}
.pkg-details-link:hover { color: var(--pink-600); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  background: var(--ink);
  color: white;
  overflow: hidden;
  position: relative;
}
.gallery .section-head h2,
.gallery .section-head { color: white; }
.gallery .section-head h2 { color: white; }
.gallery .section-head .eyebrow { color: var(--pink-400); }
.gallery .section-head p { color: rgba(255,255,255,0.7); }

.marquee {
  display: flex;
  gap: 18px;
  animation: marquee 50s linear infinite;
  width: max-content;
  padding: 0 9px;
}
.marquee-row.r2 { margin-top: 18px; animation-direction: reverse; animation-duration: 60s; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.gal-card {
  width: 280px; height: 360px;
  border-radius: var(--r-md);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.gal-card.tall { height: 360px; }
.gal-card .tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* ============================================================
   Travel Fees
   ============================================================ */
.travel {
  background: linear-gradient(180deg, var(--pink-50) 0%, var(--cream) 100%);
}
.travel-search {
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px 4px 4px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, box-shadow .15s;
}
.travel-search:focus-within {
  border-color: var(--pink-600);
  box-shadow: 0 0 0 4px var(--pink-100);
}
.travel-search svg { color: var(--pink-600); flex-shrink: 0; }
.travel-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 14px;
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.travel-search input::placeholder { color: var(--ink-3); }
.travel-clear {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 18px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.travel-clear:hover { background: var(--pink-600); color: white; }

.travel-no-match {
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
}
.travel-no-match p { margin: 0 0 14px; color: var(--ink-2); }

.travel-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.travel-tier {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.travel-tier:hover {
  border-color: var(--pink-300, var(--pink-200));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .travel-tier {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 22px;
  }
}

.travel-tier-head {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
@media (max-width: 720px) {
  .travel-tier-head {
    border-right: none;
    padding-right: 0;
    padding-bottom: 4px;
  }
}

.travel-fee {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}
.travel-fee .cur {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-3);
  margin-right: 2px;
}
.travel-fee .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pink-600);
}

.travel-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.travel-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.travel-range {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
}

.travel-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.travel-chip {
  display: inline-block;
  background: var(--pink-50);
  color: var(--pink-700);
  border: 1px solid var(--pink-100);
  padding: 6px 13px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.travel-chip mark {
  background: var(--pink-600);
  color: white;
  padding: 0 4px;
  margin: 0 -2px;
  border-radius: 4px;
}

.travel-note {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.travel-note a {
  color: var(--pink-600);
  font-weight: 700;
  border-bottom: 1px solid var(--pink-200);
}
.travel-note a:hover { border-color: var(--pink-600); }

/* ============================================================
   Superstar Entrance feature section
   ============================================================ */
.superstar {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.superstar::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 128, 0.25), transparent 60%);
  pointer-events: none;
}
.superstar-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .superstar-grid { grid-template-columns: 1fr; gap: 36px; }
  .superstar-video { order: 1; }
  .superstar-copy { order: 2; }
}

.superstar-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--pink-400);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.superstar-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: white;
}
.superstar-copy h2 .script {
  font-family: var(--font-script);
  color: var(--pink-400);
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 0.7;
}

.superstar-copy p.lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 50ch;
}

.superstar-includes {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.superstar-includes .price-pill {
  background: var(--pink-600);
  color: white;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.superstar-includes strong { color: white; }

.superstar-video {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.superstar-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.superstar-video::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 30%);
  pointer-events: none;
}
.superstar-video .live-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  color: white;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.superstar-video .live-tag .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff3b73;
  animation: pulse-dot 1.8s infinite;
}
.superstar-video .mute-btn {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}
.superstar-video .mute-btn:hover { background: var(--pink-600); }
.superstar-video .mute-btn svg { width: 16px; height: 16px; fill: white; }

/* ============================================================
   Video reel / gallery
   ============================================================ */
.reel {
  background: var(--ink);
  color: white;
  overflow: hidden;
  position: relative;
}
.reel .section-head h2,
.reel .section-head .eyebrow,
.reel .section-head p { color: white; }
.reel .section-head .eyebrow { color: var(--pink-400); }
.reel .section-head p { color: rgba(255,255,255,0.7); }

.reel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 32px 24px;
  margin: 0 -32px;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-500) transparent;
}
.reel-track::-webkit-scrollbar { height: 8px; }
.reel-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.reel-track::-webkit-scrollbar-thumb { background: var(--pink-500); border-radius: 4px; }

.reel-card {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: var(--pink-900);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform .25s ease;
}
.reel-card:hover { transform: translateY(-4px); }
.reel-card video, .reel-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.reel-card .reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}
.reel-card .reel-label {
  position: absolute;
  bottom: 14px;
  left: 14px; right: 14px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  z-index: 2;
}
.reel-card .reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  z-index: 2;
  opacity: 0;
  transition: opacity .2s;
}
.reel-card:hover .reel-play { opacity: 1; }
.reel-card .reel-play svg { width: 20px; height: 20px; fill: var(--pink-600); margin-left: 3px; }

/* ============================================================
   Social TikTok strip
   ============================================================ */
.social {
  background: var(--cream);
}
.social-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.social-header .eyebrow { display: block; margin-bottom: 10px; }
.social-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.social-header h2 .at { color: var(--pink-600); font-style: italic; }
.social-follow {
  display: flex; gap: 10px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: all .15s;
}
.social-pill:hover { border-color: var(--pink-600); color: var(--pink-600); transform: translateY(-2px); }
.social-pill svg { width: 16px; height: 16px; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }

.social-tile {
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--pink-200);
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.social-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.social-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   Add-ons
   ============================================================ */
.addons {
  background: var(--cream);
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .addons-grid { grid-template-columns: 1fr; } }

.addon-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .2s, transform .2s;
}
.addon-card.has-image { padding: 14px 18px 14px 14px; }
.addon-photo {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px var(--line);
}
.addon-card.has-image h4 {
  font-size: 15px;
}
.addon-card.has-image .addon-blurb {
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 4px 0 0;
  line-height: 1.35;
}
.addon-card.is-highlight {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--ink) 0%, #3d2842 100%);
  color: white;
  border: none;
  padding: 32px 36px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.addon-card.is-highlight::before {
  content: '✨ SIGNATURE MOMENT';
  position: absolute;
  top: 16px; right: 24px;
  background: var(--pink-600);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.addon-card.is-highlight::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 128, 0.25), transparent 65%);
  pointer-events: none;
}
@media (max-width: 880px) { .addon-card.is-highlight { grid-column: span 2; } }
@media (max-width: 540px) { .addon-card.is-highlight { grid-column: span 1; padding: 24px; } }

.addon-card.is-highlight .addon-emoji {
  width: 64px;
  height: 64px;
  background: var(--pink-600);
  color: white;
  flex-shrink: 0;
}
.addon-card.is-highlight .addon-emoji svg { width: 32px; height: 32px; }
.addon-card.is-highlight h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 4px;
  color: white;
  letter-spacing: -0.01em;
}
.addon-card.is-highlight .addon-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--pink-400);
  margin-bottom: 12px;
}
.addon-card.is-highlight .addon-blurb {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 60ch;
}
.addon-card.is-highlight.has-image .addon-blurb {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}
.addon-card.is-highlight .addon-photo {
  width: 96px;
  height: 96px;
}
.addon-card:not(.is-highlight):hover { border-color: var(--pink-600); transform: translateY(-2px); }
.addon-emoji {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--pink-600);
}
.addon-emoji svg { width: 28px; height: 28px; }
.addon-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1.2;
}
.addon-price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--pink-600);
  line-height: 1;
}

/* ============================================================
   Testimonials
   ============================================================ */
.reviews {
  background: var(--pink-50);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: white;
  border-radius: var(--r-md);
  padding: 32px 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-stars {
  color: var(--pink-600);
  letter-spacing: 3px;
  font-size: 16px;
}
.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pink-200);
  display: grid;
  place-items: center;
  color: var(--pink-700);
  font-weight: 700;
  font-size: 14px;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-meta { font-size: 12px; color: var(--ink-3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q:hover { color: var(--pink-600); }
.faq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--pink-600);
  transition: transform .2s;
  font-size: 20px;
  font-weight: 300;
}
.faq-q.is-open .faq-icon { transform: rotate(45deg); background: var(--pink-600); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-q.is-open + .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-bottom: 26px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 90%;
}

/* ============================================================
   Booking CTA
   ============================================================ */
.cta {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233, 30, 128, 0.25), transparent 60%);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 209, 228, 0.10), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: white;
}
.cta h2 .script {
  font-family: var(--font-script);
  color: var(--pink-400);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg);
  line-height: 0.7;
}
.cta p {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px;
  max-width: 540px;
  margin-inline: auto;
}
.cta .btn-primary { background: var(--pink-500); box-shadow: 0 14px 40px rgba(244, 62, 154, 0.45); }
.cta .btn-primary:hover { background: var(--pink-400); }

.cta-direct {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.cta-direct a {
  color: white;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: border-color .15s;
}
.cta-direct a:hover { border-color: var(--pink-400); color: var(--pink-400); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.footer-col a:hover { color: var(--pink-400); }

.footer-brand .brand-name { color: white; font-size: 24px; }
.footer-brand p { max-width: 30ch; margin-top: 14px; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  margin: 0;
  transition: background .2s, transform .2s;
}
.footer-socials a:hover { background: var(--pink-600); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; fill: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

.contact-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}
.contact-copy h2 .script {
  font-family: var(--font-script);
  color: var(--pink-600);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 0.7;
}
.contact-copy p {
  color: var(--ink-2);
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.5;
  max-width: 40ch;
}
.contact-direct {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 16px;
}
.contact-direct-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.contact-direct-row + .contact-direct-row { border-top: 1px solid var(--line); }
.contact-direct-row .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-direct-row .ico svg { width: 18px; height: 18px; }
.contact-direct-row .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
}
.contact-direct-row .val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
}
.contact-direct-row a.val { color: var(--pink-600); }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 540px) { .contact-form { padding: 24px 22px; } }

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) { .contact-form .row { grid-template-columns: 1fr; } }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.form-field label .required { color: var(--pink-600); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pink-600);
  background: white;
  box-shadow: 0 0 0 4px var(--pink-100);
}
.form-field textarea {
  min-height: 100px;
  resize: vertical;
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%237a6b80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-submit {
  background: var(--pink-600);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(233, 30, 128, 0.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover:not(:disabled) {
  background: var(--pink-500);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 30, 128, 0.40);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-fineprint {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

.form-success {
  text-align: center;
  padding: 40px 24px;
}
.form-success .ico-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--ink);
}
.form-success p { color: var(--ink-2); margin: 0; }

.form-error {
  background: #ffeaea;
  border: 1px solid #f5a3a3;
  color: #b81818;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ============================================================
   Floating Chat Widget
   ============================================================ */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  border: 3px solid white;
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(233, 30, 128, 0.5), 0 6px 16px rgba(0,0,0,0.15);
  z-index: 95;
  transition: transform .2s ease, box-shadow .2s ease;
}
.chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 50px rgba(233, 30, 128, 0.6), 0 8px 20px rgba(0,0,0,0.2);
}
.chat-fab.is-open {
  background: var(--ink);
  border-color: white;
}
.chat-fab svg { position: relative; z-index: 2; }
.chat-fab-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--pink-500);
  opacity: 0;
  animation: chat-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.chat-fab-pulse.delay { animation-delay: 1.2s; }
@keyframes chat-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0;   }
}
.chat-fab.is-open .chat-fab-pulse { display: none; }

/* Tease bubble */
.chat-tease {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 280px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(42, 27, 46, 0.25), 0 4px 12px rgba(0,0,0,0.1);
  z-index: 94;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 14px 14px;
  cursor: pointer;
  animation: chat-tease-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--line);
}
.chat-tease::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
@keyframes chat-tease-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.chat-tease-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.chat-tease-avatar img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}
.chat-tease-text { min-width: 0; }
.chat-tease-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.chat-tease-msg {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}
.chat-tease-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink-3);
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.chat-tease-close:hover { background: var(--ink); color: white; }

/* Panel */
.chat-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 130px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(42, 27, 46, 0.30), 0 8px 20px rgba(0,0,0,0.1);
  z-index: 96;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: chat-panel-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--line);
}
@keyframes chat-panel-in {
  from { transform: translateY(16px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.chat-panel-head {
  background: linear-gradient(135deg, var(--pink-600) 0%, var(--pink-700) 100%);
  color: white;
  padding: 18px 56px 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.chat-panel-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.chat-panel-avatar img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}
.chat-panel-id { flex: 1; min-width: 0; }
.chat-panel-name {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.chat-panel-status {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7);
  animation: pulse-dot 1.8s infinite;
}
.chat-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.chat-panel-close:hover { background: rgba(255,255,255,0.35); }

.chat-panel-body {
  padding: 20px 18px;
  background: var(--cream);
  flex-shrink: 0;
}
.chat-msg { display: flex; align-items: flex-start; }
.chat-bubble {
  background: white;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 88%;
  box-shadow: 0 2px 8px rgba(42, 27, 46, 0.06);
  border: 1px solid var(--line);
}

.chat-panel-actions {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  flex: 1;
}
.chat-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.chat-action:hover {
  border-color: var(--pink-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 30, 128, 0.15);
  color: var(--ink);
}
.chat-action-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.chat-action-text { flex: 1; min-width: 0; }
.chat-action-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 2px;
}
.chat-action-sub {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-action svg { color: var(--ink-3); flex-shrink: 0; }
.chat-action:hover svg { color: var(--pink-600); }

.chat-panel-foot {
  padding: 12px 18px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* Mobile: pull the FAB above the sticky CTA */
@media (max-width: 720px) {
  .chat-fab { bottom: 88px; right: 16px; width: 54px; height: 54px; }
  .chat-tease { bottom: 152px; right: 16px; }
  .chat-panel { bottom: 152px; right: 16px; left: 16px; width: auto; }
}

/* ============================================================
   Sticky mobile Book Now bar
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink);
  color: white;
  padding: 12px 16px 12px 20px;
  border-radius: var(--r-pill);
  box-shadow: 0 14px 40px rgba(42, 27, 46, 0.45), 0 0 0 4px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  animation: stickyCtaIn 0.4s ease-out;
}
@keyframes stickyCtaIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.sticky-cta-text {
  flex: 1;
  min-width: 0;
}
.sticky-cta-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}
.sticky-cta-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
}
.sticky-cta-btn {
  background: var(--pink-600);
  color: white;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(233, 30, 128, 0.45);
}
.sticky-cta-btn:hover { background: var(--pink-500); }

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  /* Add padding to bottom of page so sticky doesn't cover footer */
  body { padding-bottom: 72px; }
}

/* ============================================================
   Modal
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 27, 46, 0.6);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.modal {
  background: white;
  border-radius: var(--r-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  animation: slideUp .3s ease;
  box-shadow: var(--shadow-lg);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 18px;
  z-index: 2;
  color: var(--ink-2);
}
.modal-close:hover { background: var(--ink); color: white; border-color: var(--ink); }
.modal-hero {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
}
.modal-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(90,10,57,0.6), transparent 60%);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.modal-body {
  padding: 32px 36px 40px;
}
.modal-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.modal-body .modal-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.modal-body .modal-price .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--pink-600);
}
.modal-body .modal-price .extras { font-size: 13px; color: var(--ink-3); }

.modal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
@media (max-width: 600px) { .modal-cols { grid-template-columns: 1fr; gap: 18px; } }
.modal-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-600);
  margin: 0 0 12px;
}
.modal-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-col li {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
  line-height: 1.45;
}
.modal-col li::before { content: '✦'; color: var(--pink-600); flex-shrink: 0; }

.modal-actions {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* hero video drop hint */
.video-hint {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  z-index: 5;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* sparkle scattered helpers */
.tape {
  display: inline-block;
  padding: 2px 14px;
  background: var(--pink-200);
  color: var(--pink-700);
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

/* utility */
.hidden { display: none !important; }
