/* ============================================================
   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;
}

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.85);
  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: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.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: 36px; padding: 0 20px; }
}

.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(48px, 6.5vw, 88px);
  line-height: 0.95;
  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(36px, 4.5vw, 56px);
  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: white;
  border-radius: var(--r-md);
  padding: 36px 28px;
  border: 1px solid var(--line);
  position: relative;
  text-align: left;
}
.how-card .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  color: var(--pink-600);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  margin-bottom: 16px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ink);
}
.how-card p { color: var(--ink-2); margin: 0; font-size: 15px; line-height: 1.6; }

/* ============================================================
   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;
}
.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); }

/* ============================================================
   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: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .2s, transform .2s;
}
.addon-card: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: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  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: 26px 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: 22px;
  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(40px, 5.5vw, 72px);
  line-height: 1;
  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;
}

/* ============================================================
   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: 38px;
  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; }
