/* ─────────────────────────────────────────────────────────────
   Popup Parties — Website Redesign
   Dark luxe nightclub. Pink + gold. Desktop-first.
   ───────────────────────────────────────────────────────────── */

:root {
  --bg-0: #08030F;
  --bg-1: #110624;
  --bg-2: #1A0A36;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.07);
  --surface-3: rgba(255,255,255,0.10);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);

  --ink-0: #FFFFFF;
  --ink-1: #F4ECFF;
  --ink-2: #B9A8D4;
  --ink-3: #7E6D9B;

  --pink: #FF2E8A;
  --pink-glow: #FF66B0;
  --gold: #FFD15C;
  --gold-warm: #FF8B3D;
  --cyan: #4DE3FF;
  --green: #22C55E;

  --grad-pink: linear-gradient(135deg, #FF2E8A 0%, #B416E0 100%);
  --grad-gold: linear-gradient(135deg, #FFD15C 0%, #FF8B3D 100%);
  --grad-hero:
    radial-gradient(60% 50% at 20% 20%, rgba(255,46,138,0.35) 0%, rgba(255,46,138,0) 60%),
    radial-gradient(50% 40% at 85% 15%, rgba(180,22,224,0.30) 0%, rgba(180,22,224,0) 60%),
    radial-gradient(70% 60% at 60% 100%, rgba(255,139,61,0.18) 0%, rgba(255,139,61,0) 70%),
    linear-gradient(180deg, #1A0A36 0%, #08030F 100%);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  --font-display: "Bricolage Grotesque", "SF Pro Display", system-ui, sans-serif;
  --font-body: "Manrope", "SF Pro Text", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;

  --shadow-card: 0 30px 80px -30px rgba(0,0,0,0.5);
  --shadow-pink: 0 24px 60px -20px rgba(255,46,138,0.45);
  --shadow-gold: 0 20px 50px -15px rgba(255,209,92,0.35);

  --nav-h: 72px;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  font-family: var(--font-body);
  color: var(--ink-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }

/* ============ TYPOGRAPHY ============ */
.h-display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; line-height: 0.98; }
.h-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.h-eyebrow.pink { color: var(--pink-glow); }
.h-eyebrow.cyan { color: var(--cyan); }
.h-eyebrow.muted { color: var(--ink-3); }
.t-mono { font-family: var(--font-mono); font-weight: 500; }

.txt-pink { background: linear-gradient(135deg, #FF66B0 0%, #FF2E8A 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.txt-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============ LAYOUT ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 60;
  background: rgba(8,3,15,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-pink);
  box-shadow: 0 0 20px rgba(255,46,138,0.55);
  position: relative;
}
.nav-mark::before, .nav-mark::after {
  content: ""; position: absolute; border-radius: 50%;
}
.nav-mark::before { inset: 6px; background: #08030F; }
.nav-mark::after  { inset: 11px; background: var(--gold); }
.nav-name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
}
.nav-name span { color: var(--pink-glow); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-1);
  white-space: nowrap;
  transition: background 160ms, color 160ms;
}
.nav-links a:hover { background: var(--surface-2); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; height: 52px; padding: 0 24px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 200ms ease, background 160ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary {
  background: var(--grad-pink); color: #fff;
  box-shadow: var(--shadow-pink), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { box-shadow: 0 30px 60px -20px rgba(255,46,138,0.6), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost { background: var(--surface-2); color: var(--ink-0); border: 1px solid var(--line); backdrop-filter: blur(20px); }
.btn-ghost:hover { background: var(--surface-3); border-color: var(--line-strong); }
.btn-gold { background: var(--grad-gold); color: #2A1500; box-shadow: var(--shadow-gold); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 60px; padding: 0 32px; font-size: 16px; }

/* ============ PILLS / BADGES ============ */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  white-space: nowrap;
}
.pill-glass { background: var(--surface-2); color: var(--ink-1); border: 1px solid var(--line); }
.pill-gold { background: rgba(255,209,92,0.14); color: var(--gold); border: 1px solid rgba(255,209,92,0.35); }
.pill-pink { background: rgba(255,46,138,0.16); color: var(--pink-glow); border: 1px solid rgba(255,46,138,0.4); }
.pill-cyan { background: rgba(77,227,255,0.14); color: var(--cyan); border: 1px solid rgba(77,227,255,0.35); }
.pill-live { background: rgba(34,197,94,0.14); color: var(--green); border: 1px solid rgba(34,197,94,0.35); }

.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pp-pulse 1.8s infinite;
}
@keyframes pp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* ============ CARDS ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 200ms, transform 200ms, background 200ms;
}
.card-hover:hover { border-color: var(--line-strong); transform: translateY(-3px); background: var(--surface-2); }

.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,3,15,0) 30%, rgba(8,3,15,0.92) 100%);
}

.grain::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay; opacity: 0.4; pointer-events: none;
}

.shimmer {
  background: linear-gradient(110deg, #2A1B47 8%, #3A2660 18%, #2A1B47 33%);
  background-size: 200% 100%;
  animation: shimmer 1.8s linear infinite;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

.neon-ring { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: min(100vh, 880px);
  padding-top: calc(var(--nav-h) + 32px);
  padding-bottom: 100px;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
  min-height: calc(min(100vh, 880px) - var(--nav-h) - 132px);
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95; letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: #FFFFFF;
  position: relative; z-index: 2;
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.hero h1 .txt-pink {
  filter: drop-shadow(0 0 20px rgba(255,46,138,0.45));
}
.hero p.lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-1); max-width: 520px; line-height: 1.55;
  margin: 0 0 36px;
  position: relative; z-index: 2;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.hero-trust-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.hero-collage {
  position: relative; height: 620px;
}
.hero-tile {
  position: absolute; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.hero-tile-1 { width: 62%; aspect-ratio: 3 / 4; top: 0; right: 0; }
.hero-tile-2 { width: 46%; aspect-ratio: 1; bottom: 20px; left: 0; }
.hero-tile-3 {
  width: 40%; aspect-ratio: 1.4; bottom: 40px; right: 18%;
  border: 1px solid rgba(255,209,92,0.4);
  background: linear-gradient(135deg, rgba(255,209,92,0.18), rgba(255,139,61,0.10));
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
  box-shadow: var(--shadow-gold);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-collage { height: 480px; }
}
@media (max-width: 560px) {
  .hero { padding-bottom: 60px; }
  .hero-collage { height: 360px; }
  .hero-tile-3 { display: none; }
}

/* ============ SECTION HEADERS ============ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.sec-head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 8px 0 0; max-width: 720px;
}
.sec-head p {
  color: var(--ink-2); max-width: 380px; margin: 0;
  font-size: 15px; line-height: 1.55;
}

/* ============ FIT-FINDER ============ */
.fits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fit {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 460px;
  display: flex; flex-direction: column;
  transition: transform 240ms, border-color 240ms;
  cursor: pointer;
}
.fit:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.fit-img { position: relative; height: 240px; flex-shrink: 0; }
.fit-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,3,15,0) 30%, rgba(8,3,15,0.85) 100%);
}
.fit-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.fit h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 8px 0 8px; }
.fit-bullets { margin: 14px 0 18px; padding: 0; list-style: none; display: grid; gap: 8px; }
.fit-bullets li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-1); align-items: flex-start; }
.fit-bullets li::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad-pink); flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 0 8px rgba(255,46,138,0.5);
}
.fit-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.fit-from { display: flex; flex-direction: column; gap: 2px; }
.fit-from .label { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.fit-from .num { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1; }

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

/* ============ VENUES GRID ============ */
.venues {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.venue {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  transition: transform 240ms, border-color 240ms;
  display: flex; flex-direction: column;
}
.venue:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.venue-img { position: relative; aspect-ratio: 4 / 3; }
.venue-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(8,3,15,0.7) 100%);
}
.venue-price {
  position: absolute; top: 12px; right: 12px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(8,3,15,0.65); backdrop-filter: blur(8px);
  font-size: 12px; font-weight: 700; color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.venue-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.venue-name { font-weight: 700; font-size: 15px; line-height: 1.25; }
.venue-meta { font-size: 12px; color: var(--ink-2); display: flex; gap: 12px; }
.venue-meta span { display: inline-flex; gap: 5px; align-items: center; }

@media (max-width: 1100px) { .venues { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .venues { grid-template-columns: repeat(2, 1fr); } }

/* ============ PACKAGES ============ */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pkg {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px 30px 30px;
  display: flex; flex-direction: column;
  transition: transform 240ms, border-color 240ms;
}
.pkg:hover { transform: translateY(-4px); }
.pkg.featured {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(255,46,138,0.22) 0%, rgba(255,46,138,0) 70%),
    var(--surface);
  border-color: rgba(255,46,138,0.45);
  box-shadow: 0 40px 80px -40px rgba(255,46,138,0.5);
}
.pkg-badge { position: absolute; top: 18px; right: 18px; }
.pkg h3 { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -0.02em; margin: 14px 0 8px; }
.pkg .tag { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin: 0 0 22px; }
.pkg-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.pkg-price .label { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.pkg-price .num { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -0.025em; line-height: 1; }
.pkg-price .num .plus { font-size: 24px; color: var(--ink-2); }
.pkg .min { font-size: 12px; color: var(--ink-3); margin-bottom: 22px; }
.pkg .min strong { color: var(--gold); font-weight: 600; }
.pkg-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.pkg-list li { display: flex; gap: 12px; font-size: 14px; color: var(--ink-1); line-height: 1.45; }
.pkg-list li svg { flex-shrink: 0; margin-top: 2px; }
.pkg-cta { margin-top: auto; }

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

/* ============ PROOF / REVIEWS ============ */
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: start;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.review p {
  font-size: 17px; color: var(--ink-1); line-height: 1.55; margin: 0;
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.005em;
}
.review-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-3); }
.review-meta strong { color: var(--ink-1); font-weight: 700; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-tile {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.gallery-tile.tall { aspect-ratio: 1 / 1.6; grid-row: span 2; }

@media (max-width: 980px) {
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ FINAL CTA ============ */
.cta-block {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(255,46,138,0.45) 0%, rgba(255,46,138,0) 60%),
    radial-gradient(80% 100% at 100% 100%, rgba(180,22,224,0.40) 0%, rgba(180,22,224,0) 60%),
    linear-gradient(135deg, #2A0F4E 0%, #0E0420 100%);
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
}
.cta-block h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.025em; line-height: 1.0;
  margin: 12px 0 18px;
}
.cta-block p { color: var(--ink-1); font-size: 17px; line-height: 1.55; margin: 0 0 28px; max-width: 480px; }

.cta-side {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 26px;
  backdrop-filter: blur(20px);
}
.cta-side h4 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin: 6px 0 8px; }
.cta-side p { font-size: 13.5px; color: var(--ink-2); margin: 0 0 18px; line-height: 1.5; }
.cta-side .row { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13.5px; }
.cta-side .row:last-child { border-bottom: 0; }
.cta-side .row .ic { width: 32px; height: 32px; border-radius: 10px; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; }

@media (max-width: 980px) {
  .cta-block { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .cta-block > * { min-width: 0; }
}

/* ============ FOOTER ============ */
.footer { padding: 80px 0 36px; border-top: 1px solid var(--line); margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer h5 { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--ink-1); font-size: 14px; }
.footer ul a:hover { color: var(--pink-glow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-3); flex-wrap: wrap; gap: 16px; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ WIZARD MODAL ============ */
.modal-shroud {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 220ms;
}
.modal-shroud.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 880px; max-height: 92vh;
  background: linear-gradient(180deg, #150828 0%, #08030F 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(20px);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.modal-shroud.open .modal { transform: translateY(0); }
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}
.modal-head .label { font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
.modal-head .step-count { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }
.modal-steps { display: flex; gap: 6px; padding: 0 28px 16px; }
.modal-steps span { flex: 1; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.10); transition: background 200ms; }
.modal-steps span.on { background: var(--pink); }
.modal-steps span.done { background: var(--pink-glow); opacity: 0.55; }
.modal-body { flex: 1; overflow-y: auto; padding: 28px 36px 36px; }
.modal-foot { display: flex; justify-content: space-between; align-items: center; padding: 18px 28px; border-top: 1px solid var(--line); background: rgba(8,3,15,0.7); }

.modal-body h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -0.025em; line-height: 1.05;
  margin: 0 0 8px;
}
.modal-body .lede { color: var(--ink-2); font-size: 15px; margin: 0 0 28px; }

/* ============ FORM TILES ============ */
.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.tile-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.tile {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 160ms, background 160ms, transform 160ms;
  text-align: left; width: 100%;
}
.tile:hover { background: var(--surface-2); border-color: var(--line-strong); }
.tile.on { border-color: var(--pink); background: rgba(255,46,138,0.10); }
.tile-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.tile.on .tile-icon { background: rgba(255,46,138,0.18); border-color: rgba(255,46,138,0.5); }
.tile-text { flex: 1; min-width: 0; }
.tile-text .name { font-weight: 700; font-size: 15px; line-height: 1.25; }
.tile-text .sub { font-size: 12.5px; color: var(--ink-2); margin-top: 3px; }
.tile-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 160ms, border-color 160ms;
  flex-shrink: 0;
}
.tile.on .tile-check { background: var(--pink); border-color: var(--pink); }

@media (max-width: 640px) {
  .tile-grid, .tile-grid.cols-3, .tile-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ============ FIELDS ============ */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--ink-0);
  font: inherit; font-size: 15px;
  outline: none;
  transition: border-color 160ms, background 160ms;
}
.field input:focus, .field textarea:focus { border-color: var(--pink); background: var(--surface-2); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-runnable-track { height: 6px; background: rgba(255,255,255,0.10); border-radius: 999px; }
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink); border: 3px solid #08030F;
  box-shadow: 0 0 12px rgba(255,46,138,0.6);
  margin-top: -8px; cursor: grab;
}
input[type=range]::-moz-range-track { height: 6px; background: rgba(255,255,255,0.10); border-radius: 999px; }
input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink); border: 3px solid #08030F;
  box-shadow: 0 0 12px rgba(255,46,138,0.6); cursor: grab;
}

/* ============ BUDGET ESTIMATE PANEL ============ */
.estimate {
  margin: 28px 0 0;
  padding: 24px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(60% 100% at 0% 0%, rgba(255,209,92,0.20) 0%, rgba(255,209,92,0) 60%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,209,92,0.35);
}
.estimate .row { display: flex; justify-content: space-between; align-items: baseline; }
.estimate .label { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.estimate .num { font-family: var(--font-display); font-weight: 800; font-size: 38px; letter-spacing: -0.025em; margin: 6px 0 0; }
.estimate .num .sub { font-size: 16px; color: var(--ink-2); font-weight: 600; margin-left: 6px; }
.estimate .note { font-size: 13px; color: var(--ink-2); margin: 10px 0 0; line-height: 1.5; }
.estimate.warn {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}
.estimate.warn .label { color: var(--ink-3); }

/* ============ STARS / TRUST INLINE ============ */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }

/* ============ ACCESSIBILITY ============ */
:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; border-radius: 4px; }

/* anchor scroll offset for fixed nav */
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ─────────────────────────────────────────────────────────────
   MOBILE OPTIMIZATIONS
   ───────────────────────────────────────────────────────────── */

/* ============ MOBILE NAV ============ */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink-0);
  border-radius: 2px;
  transition: transform 200ms, opacity 200ms;
}
.nav-burger.open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-3.25px) rotate(-45deg); }

.nav-phone-mobile { display: none; }

.nav-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,3,15,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  z-index: 55;
  padding: 20px var(--gutter) 28px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: transform 220ms cubic-bezier(0.32, 0.72, 0, 1), opacity 200ms;
}
.nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-drawer a.drawer-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-0);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-drawer a.drawer-link span { color: var(--ink-3); font-size: 14px; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; }
.nav-drawer .drawer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.nav-drawer .drawer-contact a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
}
.nav-drawer .drawer-contact a .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============ MOBILE STICKY BOTTOM BAR ============ */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(8,3,15,0) 0%, rgba(8,3,15,0.92) 30%, rgba(8,3,15,0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-bar .btn { height: 50px; flex: 1; padding: 0 18px; font-size: 14.5px; }
.mobile-bar .btn-wa {
  flex: 0 0 50px; padding: 0;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 30px -8px rgba(37,211,102,0.6);
}

/* ─── Shared WhatsApp CTA (footer + final CTA + anywhere else) ─── */
.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px -10px rgba(37,211,102,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 160ms, box-shadow 160ms, filter 160ms;
}
.wa-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px -12px rgba(37,211,102,0.7), inset 0 1px 0 rgba(255,255,255,0.22);
}
.wa-cta-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  flex-shrink: 0;
}
.wa-cta-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.wa-cta-title { font-family: var(--font-body); font-weight: 700; font-size: 15px; line-height: 1.2; }
.wa-cta-sub { font-size: 12px; line-height: 1.2; color: rgba(255,255,255,0.82); font-weight: 500; }
.wa-cta-arrow { flex-shrink: 0; opacity: 0.9; }

/* Compact footer variant */
.wa-cta-footer {
  margin-bottom: 14px;
  padding: 12px 14px;
  gap: 12px;
}
.wa-cta-footer .wa-cta-icon { width: 32px; height: 32px; }
.wa-cta-footer .wa-cta-title { font-size: 14px; }

/* Footer WhatsApp inline link — sized like the other contact list items */
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4FE0A0;
}
.footer-wa-link svg {
  flex-shrink: 0;
  opacity: 0.95;
}
.footer-wa-link:hover { color: #25D366; }

/* Footer Phone inline link — matches the WhatsApp link but gold-tinted */
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}
.footer-phone-link svg {
  flex-shrink: 0;
  opacity: 0.95;
}
.footer-phone-link:hover { color: #FFE38A; }

/* Footer Email inline link — cyan-tinted to complete the trio */
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
}
.footer-email-link svg {
  flex-shrink: 0;
  opacity: 0.95;
}
.footer-email-link:hover { color: #8FF0FF; }

/* Footer socials — square icon row, brand-tinted on hover */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-1);
  transition: background 180ms, border-color 180ms, color 180ms, transform 180ms;
}
.footer-social:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.footer-social-instagram:hover { color: var(--pink-glow); border-color: rgba(255,46,138,0.45); }
.footer-social-tiktok:hover    { color: var(--cyan);      border-color: rgba(77,227,255,0.45); }
.footer-social-facebook:hover  { color: #6FA8FF;          border-color: rgba(111,168,255,0.45); }
.footer-social-youtube:hover   { color: var(--gold-warm); border-color: rgba(255,139,61,0.45); }

/* Final-CTA secondary contact rows — match the WhatsApp button's silhouette
   but lower-weight, with phone in gold and email in cyan */
.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  margin-top: 10px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-0);
  text-decoration: none;
  transition: border-color 160ms, background 160ms, transform 160ms;
}
.cta-contact-row:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.cta-contact-row .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  flex-shrink: 0;
}
.cta-contact-body {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 0;
}
.cta-contact-title {
  font-weight: 700; font-size: 14px; line-height: 1.2;
  color: var(--ink-0);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cta-contact-sub {
  font-size: 12px; line-height: 1.2;
  color: var(--ink-3);
}
.cta-contact-arrow {
  flex-shrink: 0;
  color: var(--ink-3);
  transition: color 160ms, transform 160ms;
}
.cta-contact-row:hover .cta-contact-arrow {
  transform: translateX(2px);
}

/* Phone variant — gold */
.cta-contact-phone .ic {
  background: rgba(255,209,92,0.14);
  color: var(--gold);
  border: 1px solid rgba(255,209,92,0.3);
}
.cta-contact-phone:hover { border-color: rgba(255,209,92,0.4); }
.cta-contact-phone:hover .cta-contact-arrow { color: var(--gold); }

/* Email variant — cyan */
.cta-contact-email .ic {
  background: rgba(77,227,255,0.14);
  color: var(--cyan);
  border: 1px solid rgba(77,227,255,0.3);
}
.cta-contact-email:hover { border-color: rgba(77,227,255,0.4); }
.cta-contact-email:hover .cta-contact-arrow { color: var(--cyan); }

/* Mobile drawer variant — same green button look for the drawer */
.nav-drawer .drawer-contact a.drawer-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(37,211,102,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.nav-drawer .drawer-contact a.drawer-wa .ic {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* show bar + nav-burger only on phones */
@media (max-width: 880px) {
  .nav-burger { display: flex; }
  .nav-cta .btn-primary { display: none; }
  .nav-cta .pill { display: none; }
  body { padding-bottom: 80px; }
  .mobile-bar { display: flex; }
}

/* ============ HERO — MOBILE ============ */
@media (max-width: 768px) {
  .hero { padding-bottom: 48px; min-height: 0; }
  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
    margin-bottom: 18px;
  }
  .hero p.lede {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-grid { gap: 28px; }
  .hero-cta-row { gap: 10px; margin-bottom: 22px; }
  .hero-cta-row .btn-lg { height: 54px; padding: 0 22px; font-size: 15px; }
  .hero-cta-row .btn-lg:first-child { flex: 1; min-width: 0; }
  .hero-trust-row { gap: 8px; }
  .hero-trust-row .pill { font-size: 11px; height: 28px; }
}

/* ============ HERO COLLAGE — MOBILE REDESIGN ============ */
@media (max-width: 768px) {
  .hero-collage {
    height: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 200px 140px;
    gap: 10px;
  }
  .hero-tile-1, .hero-tile-2, .hero-tile-3 {
    position: static; width: auto; aspect-ratio: auto;
  }
  .hero-tile-1 { grid-row: span 2; height: 100%; }
  .hero-tile-2 { height: 100%; }
  .hero-tile-3 {
    display: flex !important; height: 100%; padding: 12px;
  }
  .hero-tile-3 > div:last-child > div:first-child { font-size: 18px; }
  .hero-tile-3 > div:last-child > div:last-child { font-size: 10.5px; }
  .hero-tile-3 .h-eyebrow { font-size: 9px; }
}
@media (max-width: 400px) {
  .hero-collage {
    grid-template-rows: 180px 120px;
  }
}

/* ============ SECTIONS — MOBILE ============ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .sec-head { margin-bottom: 28px; gap: 12px; flex-direction: column; align-items: flex-start; }
  .sec-head h2 { font-size: clamp(30px, 8vw, 40px); margin-top: 6px; }
  .sec-head p { font-size: 14px; max-width: none; }
}

/* ============ FITS — MOBILE ============ */
@media (max-width: 880px) {
  .fits { gap: 14px; }
  .fit { min-height: 0; border-radius: var(--r-lg); }
  .fit-img { height: 200px; }
  .fit-body { padding: 22px 22px 24px; }
  .fit h3 { font-size: 22px; }
  .fit-bullets li { font-size: 13.5px; }
  .fit-from .num { font-size: 22px; }
}

/* ============ VENUES — MOBILE ============ */
@media (max-width: 760px) {
  .venues { gap: 12px; }
  .venue-body { padding: 14px 14px 16px; }
  .venue-name { font-size: 14px; }
  .venue-meta { font-size: 11.5px; gap: 8px; }
  .venue-price { font-size: 11px; padding: 4px 8px; }
}
@media (max-width: 400px) {
  .venues { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ============ PACKAGES — MOBILE ============ */
@media (max-width: 768px) {
  .packages { gap: 16px; }
  .pkg { padding: 26px 22px 24px; border-radius: var(--r-lg); }
  .pkg h3 { font-size: 26px; }
  .pkg-price .num { font-size: 38px; }
  .pkg-list li { font-size: 13.5px; }
}

/* ============ PROOF — MOBILE ============ */
@media (max-width: 768px) {
  .proof-grid { gap: 28px; }
  .review { padding: 22px; }
  .review p { font-size: 15.5px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery-tile.tall { aspect-ratio: 1; grid-row: span 1; }
}

/* ============ FINAL CTA — MOBILE ============ */
@media (max-width: 768px) {
  .cta-block { padding: 40px 20px; gap: 24px; border-radius: var(--r-lg); }
  .cta-block h2 { font-size: clamp(28px, 7.5vw, 40px); overflow-wrap: anywhere; }
  .cta-block p { font-size: 15px; max-width: none; overflow-wrap: anywhere; }
  .cta-side { padding: 20px; }
}

/* ============ FOOTER — MOBILE ============ */
@media (max-width: 768px) {
  .footer { padding: 56px 0 28px; margin-top: 40px; }
  .footer-grid { gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 11.5px; }
}

/* ============ WIZARD — MOBILE FULLSCREEN ============ */
@media (max-width: 768px) {
  .modal-shroud { padding: 0; align-items: stretch; }
  .modal {
    max-width: none; max-height: none;
    height: 100dvh; border-radius: 0;
    border: 0;
  }
  .modal-head { padding: 14px 18px; }
  .modal-head .label { font-size: 11px; }
  .modal-head > div:first-child > div:last-child { font-size: 15px; }
  .modal-steps { padding: 0 18px 12px; gap: 4px; }
  .modal-body { padding: 18px 20px 24px; }
  .modal-body h2 { font-size: 28px; }
  .modal-body .lede { font-size: 14px; margin-bottom: 22px; }
  .modal-foot {
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    position: sticky; bottom: 0;
  }
  .modal-foot .btn { height: 48px; padding: 0 20px; font-size: 14.5px; }
  .modal-foot .btn-sm { height: 44px; }

  .tile { padding: 14px 14px; gap: 12px; }
  .tile-icon { width: 40px; height: 40px; font-size: 20px; }
  .tile-text .name { font-size: 14.5px; }
  .tile-text .sub { font-size: 12px; }

  /* Step Occasion: 2 cols on mobile feels tight; tighten tiles instead */
  .estimate { padding: 18px; }
  .estimate .num { font-size: 30px; }
  .estimate .num .sub { font-size: 13px; }
}

@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; gap: 12px; }
  .modal-foot .btn-sm { padding: 0 14px; font-size: 13px; }
  .modal-foot .btn-sm svg { width: 14px; height: 14px; }
}

/* ============ TYPOGRAPHY DEFAULTS — MOBILE TIGHTENING ============ */
@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .btn { height: 48px; padding: 0 18px; font-size: 14px; }
  .btn-lg { height: 52px; padding: 0 22px; font-size: 15px; }
  .btn-sm { height: 36px; padding: 0 14px; font-size: 12.5px; }
}

/* ============ NAV LOGO SHRINK ============ */
@media (max-width: 480px) {
  .nav-name { font-size: 17px; }
  .nav-mark { width: 28px; height: 28px; }
  .nav-mark::before { inset: 5px; }
  .nav-mark::after { inset: 9px; }
}

/* Prevent scroll when drawer open */
body.drawer-locked { overflow: hidden; }

/* ─────────────────────────────────────────────────────────────
   FIT FINDER
   ───────────────────────────────────────────────────────────── */
.ff-section { padding-top: clamp(48px, 7vw, 88px); }
.ff-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(70% 60% at 0% 0%, rgba(255,46,138,0.10) 0%, rgba(255,46,138,0) 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(255,209,92,0.08) 0%, rgba(255,209,92,0) 60%),
    var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.ff-step + .ff-step { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.ff-step-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 14px;
}
.ff-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--pink-glow); letter-spacing: 0.1em;
}
.ff-q {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.6vw, 26px); letter-spacing: -0.02em;
  line-height: 1.1;
}
.ff-pop {
  margin-left: auto;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px); color: var(--pink-glow);
  letter-spacing: -0.025em; line-height: 1;
}
.ff-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ff-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600;
  transition: border-color 160ms, background 160ms, transform 160ms;
}
.ff-chip:hover { border-color: var(--line-strong); background: var(--surface-3); }
.ff-chip.on {
  background: rgba(255,46,138,0.16);
  border-color: var(--pink); color: var(--ink-0);
}
.ff-chip-emo { font-size: 16px; line-height: 1; }
.ff-range { margin-top: 4px; }
.ff-range-ticks {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--ink-3); margin-top: 8px;
  font-family: var(--font-mono);
}
.ff-space { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ff-space-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 16px 18px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: left;
  transition: border-color 160ms, background 160ms;
}
.ff-space-tile:hover { border-color: var(--line-strong); background: var(--surface-3); }
.ff-space-tile.on { background: rgba(255,46,138,0.12); border-color: var(--pink); }
.ff-space-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.015em; }
.ff-space-sub { font-size: 12px; color: var(--ink-3); }

.ff-result {
  margin-top: 28px; padding: 24px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(255,209,92,0.14) 0%, rgba(255,209,92,0) 70%),
    rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  transition: border-color 220ms, background 220ms;
}
.ff-result.on {
  border-style: solid;
  border-color: rgba(255,209,92,0.45);
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(255,209,92,0.20) 0%, rgba(255,209,92,0) 70%),
    rgba(255,255,255,0.04);
}
.ff-result-empty {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-2); font-size: 14px;
}
.ff-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255,209,92,0.7);
  animation: pp-pulse 1.8s infinite;
}
.ff-result-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1; letter-spacing: -0.03em;
  margin-top: 8px;
}
.ff-dash { color: var(--ink-3); margin: 0 8px; font-weight: 600; }
.ff-result-sub { color: var(--ink-2); font-size: 14px; margin-top: 8px; line-height: 1.55; }
.ff-result-cta { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.ff-result-cta .btn { flex: 1; min-width: 160px; }
.ff-result-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); line-height: 1.55; }

@media (max-width: 540px) {
  .ff-space { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .ff-space-tile { padding: 12px 12px; }
  .ff-space-name { font-size: 15px; }
  .ff-space-sub { font-size: 11px; }
  .ff-chip { padding: 9px 12px; font-size: 13px; }
}

/* ─────────────────────────────────────────────────────────────
   SETUPS CAROUSEL
   ───────────────────────────────────────────────────────────── */
.setups-section { padding-top: clamp(48px, 7vw, 88px); }
.setups-nav { display: flex; gap: 8px; }
.setups-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-1);
  transition: border-color 160ms, background 160ms;
}
.setups-nav button:hover { background: var(--surface-3); border-color: var(--line-strong); }

.setups-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 24px;
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
}
.setups-track::-webkit-scrollbar { display: none; }
.setup-spacer { flex: 0 0 var(--gutter); }

.setup-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: border-color 220ms, transform 220ms;
}
.setup-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.setup-img { position: relative; aspect-ratio: 4 / 3; }
.setup-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(8,3,15,0.7) 100%);
}
.setup-tag {
  position: absolute; top: 12px; left: 12px;
  height: 26px; padding: 0 10px;
  font-size: 10.5px; letter-spacing: 0.14em;
}
.setup-cap {
  position: absolute; bottom: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(8,3,15,0.7); backdrop-filter: blur(8px);
  height: 26px; padding: 0 10px;
  border-radius: 999px; font-size: 11.5px; font-weight: 600;
  color: var(--ink-0);
  border: 1px solid rgba(255,255,255,0.12);
}
.setup-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.setup-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.setup-tagline { font-size: 13px; color: var(--ink-2); line-height: 1.45; flex: 1; }
.setup-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line);
}
.setup-from { display: flex; flex-direction: column; gap: 2px; }
.setup-from .label { font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
.setup-from .num { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1; }
.setup-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pink-glow); font-weight: 700; font-size: 12.5px;
}

.setups-dots {
  display: flex; gap: 6px; justify-content: center; margin-top: 12px;
}
.setups-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.18); transition: background 200ms, width 200ms;
}
.setups-dot.on { background: var(--pink); width: 22px; border-radius: 999px; }

@media (max-width: 540px) {
  .setup-card { flex: 0 0 78%; }
}

/* ─────────────────────────────────────────────────────────────
   REVIEW CAROUSEL
   ───────────────────────────────────────────────────────────── */
.rev-stage { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
.rev-stage > * { min-width: 0; }
.rev-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 240px;
}
.rev-stars { display: inline-flex; gap: 3px; color: var(--gold); }
.rev-quote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.25; letter-spacing: -0.015em;
  color: var(--ink-0); margin: 0;
  text-wrap: pretty;
}
.rev-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-3); margin-top: auto;
  flex-wrap: wrap; gap: 8px;
}
.rev-meta strong { color: var(--ink-1); font-weight: 700; }
.rev-controls {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.rev-controls > button {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-1);
  transition: border-color 160ms, background 160ms;
  flex-shrink: 0;
}
.rev-controls > button:hover { background: var(--surface-3); border-color: var(--line-strong); }
.rev-dots { min-width: 0; flex-wrap: wrap; justify-content: center; }
.rev-dots { display: flex; gap: 6px; align-items: center; padding: 0 4px; }
.rev-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: background 200ms, width 200ms;
  cursor: pointer;
}
.rev-dot.on { background: var(--pink); width: 22px; border-radius: 999px; }

.rev-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 18px;
}
.rev-photo {
  aspect-ratio: 1; border-radius: var(--r-md);
  overflow: hidden; border: 1px solid var(--line);
  position: relative;
}
@media (max-width: 640px) {
  .rev-strip { grid-template-columns: 1fr 1fr; }
  .rev-card { min-height: 200px; padding: 24px; }
}

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 200ms, background 200ms;
}
.faq-item.open { border-color: rgba(255,46,138,0.4); background: var(--surface-2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%;
  padding: 20px 22px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(16px, 2vw, 19px); letter-spacing: -0.01em;
  text-align: left;
  color: var(--ink-0);
}
.faq-plus {
  position: relative;
  width: 22px; height: 22px; flex-shrink: 0;
}
.faq-plus span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--ink-1); border-radius: 1px;
  transition: transform 220ms, background 220ms;
}
.faq-plus span:nth-child(1) { width: 14px; height: 1.5px; }
.faq-plus span:nth-child(2) { width: 1.5px; height: 14px; }
.faq-item.open .faq-plus span { background: var(--pink-glow); }
.faq-item.open .faq-plus span:nth-child(2) { transform: translate(-50%,-50%) rotate(90deg); }

.faq-a-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-wrap > .faq-a { overflow: hidden; min-height: 0; }
.faq-a {
  margin: 0; padding: 0 22px;
  color: var(--ink-2); line-height: 1.6; font-size: 15px;
  max-width: 680px;
}
.faq-item.open .faq-a { padding: 0 22px 22px; }

/* ─── FAQ mobile: pill chips + bottom sheet (hidden on desktop) ─── */
.faq-chips { display: none; }
.faq-sheet-shroud { display: none; }

@media (max-width: 768px) {
  /* Hide accordion on mobile, show chips */
  .faq-list { display: none; }
  .faq-chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    max-width: 880px; margin: 0 auto;
  }
  .faq-chip {
    appearance: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 16px; border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink-1);
    font-family: var(--font-body);
    font-size: 14px; font-weight: 600;
    line-height: 1;
    transition: border-color 160ms, background 160ms, color 160ms, transform 160ms;
  }
  .faq-chip svg {
    color: var(--ink-3);
    transition: color 160ms, transform 160ms;
  }
  .faq-chip:hover, .faq-chip:active {
    background: var(--surface-2);
    border-color: var(--line-strong);
  }
  .faq-chip:hover svg { color: var(--pink-glow); transform: translateX(2px); }
  .faq-chip.on {
    background: rgba(255,46,138,0.14);
    border-color: rgba(255,46,138,0.5);
    color: var(--ink-0);
  }
  .faq-chip.on svg { color: var(--pink-glow); }

  /* Bottom sheet shroud */
  .faq-sheet-shroud {
    display: block;
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none;
    transition: opacity 220ms;
  }
  .faq-sheet-shroud.open { opacity: 1; pointer-events: auto; }

  /* Bottom sheet */
  .faq-sheet {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--line-strong);
    border-radius: 24px 24px 0 0;
    padding: 12px 22px 28px;
    transform: translateY(100%);
    transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
    max-height: 80vh;
    overflow-y: auto;
  }
  .faq-sheet-shroud.open .faq-sheet { transform: translateY(0); }

  .faq-sheet-grip {
    width: 44px; height: 4px; border-radius: 2px;
    background: var(--line-strong);
    margin: 0 auto 18px;
  }
  .faq-sheet-eyebrow {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
  }
  .faq-sheet-close {
    appearance: none; border: 0; cursor: pointer;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--surface-2);
    color: var(--ink-1);
    font-size: 22px; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .faq-sheet-q {
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; letter-spacing: -0.02em; line-height: 1.2;
    margin: 6px 0 14px;
    color: var(--ink-0);
  }
  .faq-sheet-a {
    margin: 0;
    color: var(--ink-1);
    font-size: 15.5px; line-height: 1.6;
  }
  .faq-sheet-nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    margin-top: 22px; padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .faq-sheet-nav button {
    appearance: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: 0;
    color: var(--ink-2);
    font: 600 13px/1 var(--font-body);
    padding: 8px 10px; border-radius: 8px;
  }
  .faq-sheet-nav button:hover { color: var(--pink-glow); background: var(--surface-2); }
  .faq-sheet-count {
    font: 500 12px/1 var(--font-mono);
    color: var(--ink-3);
    letter-spacing: 0.06em;
  }
}

/* ─────────────────────────────────────────────────────────────
   HERO — simplified to single image (mobile-first refresh)
   ───────────────────────────────────────────────────────────── */
.hero-image {
  position: relative;
  width: 100%; aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card), 0 40px 100px -40px rgba(255,46,138,0.4);
}
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,3,15,0) 40%, rgba(8,3,15,0.85) 100%),
    linear-gradient(20deg, rgba(255,46,138,0.12), rgba(255,46,138,0) 50%);
  pointer-events: none;
  z-index: 1;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  z-index: 2;
}
.hero-image-overlay .stat {
  background: rgba(8,3,15,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-image-overlay .stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; line-height: 1; letter-spacing: -0.02em;
}
.hero-image-overlay .stat .lbl {
  font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-image-overlay .stat-pink .num { color: var(--pink-glow); }
.hero-image-overlay .stat-gold .num { color: var(--gold); }
.hero-pre {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--ink-1);
  margin-bottom: 22px;
}
.hero-pre .stars { color: var(--gold); display: inline-flex; gap: 1px; }
.hero-pre strong { color: var(--ink-0); font-weight: 700; }

@media (max-width: 768px) {
  .hero-image { aspect-ratio: 4 / 5; max-height: 540px; }
  .hero-image-overlay { padding: 16px; }
  .hero-image-overlay .stat { padding: 10px 12px; }
  .hero-image-overlay .stat .num { font-size: 18px; }
  .hero-pre { margin-bottom: 16px; font-size: 11.5px; }
}

/* ─────────────────────────────────────────────────────────────
   VARIED CTA helpers
   ───────────────────────────────────────────────────────────── */
.cta-context-strip {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-top: 16px; font-size: 13px; color: var(--ink-3);
}
.cta-context-strip .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); opacity: 0.5; }


/* ─────────────────────────────────────────────────────────────
   PROMOTER STRIP — inline teaser after Packages
   Catches users at price-shock moment with the discount offer
   ───────────────────────────────────────────────────────────── */
.promoter-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
  padding: 22px 26px;
  background:
    radial-gradient(50% 100% at 0% 50%, rgba(255,46,138,0.12) 0%, transparent 60%),
    radial-gradient(50% 100% at 100% 50%, rgba(255,209,92,0.10) 0%, transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 200ms, transform 200ms, background 200ms;
  color: inherit;
  cursor: pointer;
}
.promoter-strip::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-pink);
  opacity: 0.7;
}
.promoter-strip:hover {
  border-color: rgba(255,46,138,0.4);
  transform: translateY(-2px);
}
.promoter-strip:hover::before { opacity: 1; }
.promoter-strip:hover .btn-ghost {
  background: var(--grad-pink);
  color: #fff;
  border-color: transparent;
}

.promoter-strip-mark {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  padding: 14px 12px;
  background: rgba(8,3,15,0.5);
  border: 1px solid rgba(255,46,138,0.3);
  border-radius: 12px;
  min-width: 64px;
}
.promoter-strip-mark .rec {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
}
.promoter-strip-mark .rec i {
  width: 12px; height: 12px; border-radius: 50%;
  background: #FF2E8A;
  box-shadow: 0 0 8px rgba(255,46,138,0.8);
  animation: pp-pulse 1.4s infinite;
}
.promoter-strip-mark .lbl {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.18em; color: var(--pink-glow);
  font-weight: 600;
}

.promoter-strip-copy h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.015em; line-height: 1.15;
  margin: 0 0 6px;
  color: var(--ink-0);
}
.promoter-strip-copy p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px; line-height: 1.5;
  max-width: 560px;
}
.promoter-strip-cta { flex-shrink: 0; }
.promoter-strip-cta .btn {
  height: 48px; padding: 0 22px; font-size: 14.5px;
  transition: background 200ms, color 200ms, border-color 200ms;
}

@media (max-width: 780px) {
  .promoter-strip {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 20px;
  }
  .promoter-strip-cta {
    grid-column: 1 / -1;
  }
  .promoter-strip-cta .btn { width: 100%; }
}
@media (max-width: 480px) {
  .promoter-strip-mark { padding: 10px 8px; min-width: 54px; }
  .promoter-strip-mark .lbl { font-size: 9.5px; }
}

/* ─────────────────────────────────────────────────────────────
   OFF-MENU strip — venue-only + bespoke, side by side
   Lives below the tier package grid; gold-accented to read as
   "off the menu" vs the pink-accented tier cards.
   ───────────────────────────────────────────────────────────── */
.offmenu-strip {
  margin-top: 40px;
  padding: 32px 36px;
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(255,209,92,0.06) 0%, transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.offmenu-strip::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  opacity: 0.6;
}
.offmenu-head {
  margin-bottom: 22px;
}
.offmenu-head .h-eyebrow { margin-bottom: 8px; color: var(--gold); }
.offmenu-head h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0;
  color: var(--ink-0);
}
.offmenu-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}
.offmenu-card {
  display: flex; flex-direction: column;
  gap: 12px;
}
.offmenu-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.offmenu-card-head .lbl {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; letter-spacing: -0.015em;
  color: var(--ink-0);
}
.offmenu-card-head .price {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--gold); letter-spacing: 0.04em;
}
.offmenu-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px; line-height: 1.55;
  flex: 1;
}
.offmenu-card .btn {
  align-self: flex-start;
  margin-top: 4px;
}
.offmenu-divider {
  position: relative;
  width: 1px;
  background: var(--line);
  display: flex; align-items: center; justify-content: center;
}
.offmenu-divider span {
  position: absolute;
  background: var(--surface);
  padding: 6px 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.12em;
}
@media (max-width: 780px) {
  .offmenu-strip { padding: 24px 22px; }
  .offmenu-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .offmenu-divider {
    width: 100%; height: 1px;
    background: var(--line);
  }
  .offmenu-divider span {
    background: var(--bg-0);
  }
}

/* ─────────────────────────────────────────────────────────────
   NAV — Promoter Pass link gets a subtle gold accent
   ───────────────────────────────────────────────────────────── */
.nav-links a.nav-promoter {
  color: var(--gold);
  position: relative;
}
.nav-links a.nav-promoter::after {
  content: "";
  position: absolute;
  top: 8px; right: 4px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 6px rgba(255,46,138,0.6);
}
.nav-links a.nav-promoter:hover {
  background: rgba(255,209,92,0.12);
}


/* ─────────────────────────────────────────────────────────────
   BESPOKE INDOOR — "the kit comes inside" pivot section
   ───────────────────────────────────────────────────────────── */
.bespoke {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(180,22,224,0.14) 0%, transparent 60%),
    radial-gradient(60% 50% at 20% 80%, rgba(77,227,255,0.10) 0%, transparent 60%),
    var(--bg-0);
  overflow: hidden;
}
.bespoke-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.bespoke-img {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card), 0 40px 100px -40px rgba(180,22,224,0.45);
}
.bespoke-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bespoke-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,3,15,0) 60%, rgba(8,3,15,0.5) 100%);
  pointer-events: none;
}
.bespoke-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--ink-1);
  background: rgba(8,3,15,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  text-transform: uppercase;
}

.bespoke-body { padding: 8px 0; }
.bespoke-body h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0; letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--ink-0);
}
.bespoke-lede {
  font-size: clamp(16px, 1.5vw, 18.5px);
  color: var(--ink-1); line-height: 1.6;
  margin: 0 0 32px;
  max-width: 540px;
}

.bespoke-list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.bespoke-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 200ms, background 200ms;
}
.bespoke-list li:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
}
.bespoke-list .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,46,138,0.18), rgba(180,22,224,0.18));
  border: 1px solid rgba(255,46,138,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.bespoke-list li > div:last-child { display: flex; flex-direction: column; gap: 3px; padding-top: 4px; }
.bespoke-list strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15.5px; letter-spacing: -0.015em;
  color: var(--ink-0);
}
.bespoke-list span {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

.bespoke-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}

@media (max-width: 980px) {
  .bespoke-inner { grid-template-columns: 1fr; gap: 32px; }
  .bespoke-img { aspect-ratio: 4 / 5; max-height: 560px; }
}
@media (max-width: 560px) {
  .bespoke { padding: 56px 0; }
  .bespoke-list li { padding: 12px 14px; }
}

/* ═══════════════════════════════════════════════════════════════════
   TRIMMED MOBILE FLOW (body.layout-trimmed) — mobile-only
   Cuts ~3-4 phone-screen-heights of scroll. Hides FitFinder + Bespoke,
   makes Packages a horizontal swipe deck, limits FAQ to 4 items.
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body.layout-trimmed #fit-finder,
  body.layout-trimmed #bespoke {
    display: none !important;
  }

  body.layout-trimmed .faq-list > .faq-item:nth-child(n+5) {
    display: none;
  }
  /* On mobile the FAQ is chips (always shows all 7) — no cap needed there.
     The chips don't take meaningful vertical space. */

  /* Packages → horizontal swipe deck */
  body.layout-trimmed .packages {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* bleed edge-to-edge so cards peek */
    margin: 0 calc(var(--gutter, 20px) * -1);
    padding: 4px calc(var(--gutter, 20px) - 4px) 18px;
  }
  body.layout-trimmed .packages::-webkit-scrollbar { display: none; }
  body.layout-trimmed .pkg {
    flex: 0 0 84%;
    min-width: 84%;
    scroll-snap-align: center;
  }
  body.layout-trimmed .pkg.featured {
    transform: none; /* don't lift while scrolling */
  }

  /* Sentinel hint under the deck */
  body.layout-trimmed .packages + .promoter-strip {
    margin-top: 12px;
  }
}

/* The badge that appears in the meta panel — debugging aid */
body.layout-trimmed::before {
  content: "TRIMMED MOBILE FLOW";
  position: fixed;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 209, 92, 0.92);
  color: #1a0f08;
  font: 700 10px/1 "JetBrains Mono", monospace;
  letter-spacing: 0.14em;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
@media (min-width: 769px) {
  body.layout-trimmed::before { display: none; }
}
