/* ─────────────────────────────────────────────────────────
   STARS PARTY BUS — Cinematic Noir Luxury
   Type: Italiana (display) + Cormorant Garamond Italic (accent) + Inter (body)
   ───────────────────────────────────────────────────────── */

:root {
  /* color */
  --noir: #0a0707;
  --noir-2: #14100e;
  --noir-3: #1c1715;
  --line: rgba(212, 184, 138, 0.18);
  --line-strong: rgba(212, 184, 138, 0.35);

  --champagne: #d4b88a;
  --champagne-bright: #e8cea0;
  --rose-gold: #c89b7b;

  --pink: #ff3d8a;
  --pink-soft: #ff8fb8;
  --pink-glow: rgba(255, 61, 138, 0.55);

  --ivory: #f6f1ea;
  --white: #fffdfa;
  --muted: rgba(246, 241, 234, 0.62);
  --muted-2: rgba(246, 241, 234, 0.42);

  /* type */
  --f-display: "Italiana", "Cormorant Garamond", serif;
  --f-script: "Cormorant Garamond", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 10vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--noir);
  color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

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

/* film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ──────── TYPE ──────── */
.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--ivory);
}
.h-script {
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--champagne);
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink);
  vertical-align: middle;
  margin: 0 14px 3px;
  box-shadow: 0 0 12px var(--pink-glow);
}

/* gold gradient text */
.gold {
  background: linear-gradient(180deg, #f3dcb1 0%, #d4b88a 45%, #b08a5e 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ──────── BUTTONS ──────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--pink-glow), 0 12px 32px -10px rgba(255, 61, 138, 0.45);
}
.btn--primary:hover {
  background: #ff5599;
  box-shadow: 0 0 40px 4px var(--pink-glow), 0 18px 40px -10px rgba(255, 61, 138, 0.6);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  background: rgba(212, 184, 138, 0.04);
}
.btn--gold {
  background: linear-gradient(180deg, #e8cea0 0%, #c89b7b 100%);
  color: #1a0f10;
}
.btn--gold:hover {
  background: linear-gradient(180deg, #f3dcb1 0%, #d4b88a 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(212, 184, 138, 0.6);
}

/* ──────── NAV ──────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 8px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s ease;
  background: linear-gradient(180deg, rgba(10,7,7,0.85) 0%, rgba(10,7,7,0) 100%);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(10, 7, 7, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--gutter);
}
.nav__brand-mark {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--champagne);
  line-height: 1;
}
.nav__brand-mark sup {
  color: var(--pink);
  font-size: 14px;
  margin-left: -2px;
}
.nav__brand-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav__brand-stack { display: flex; flex-direction: column; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav__links a:hover { color: var(--champagne); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width .35s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__phone {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ivory);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__phone:hover { color: var(--champagne); }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.nav__burger span {
  display: block;
  width: 18px; height: 1px;
  background: var(--ivory);
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1px;
  background: var(--ivory);
  transition: all .3s;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top:  6px; }
.nav__burger.open span { background: transparent; }
.nav__burger.open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.open span::after  { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 90;
  padding: 100px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.65,0,.35,1);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--ivory);
  text-decoration: none;
  line-height: 1;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.mobile-menu a:active { color: var(--champagne); }
.mobile-menu .mobile-foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.mobile-menu .mobile-foot a {
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none; padding: 0;
}

/* ──────── HERO ──────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 0 var(--gutter) clamp(50px, 7vw, 110px);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowZoom 24s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(255, 61, 138, 0.15), transparent 55%),
    linear-gradient(180deg, rgba(10,7,7,0.55) 0%, rgba(10,7,7,0.35) 40%, rgba(10,7,7,0.92) 100%);
}
.hero__content {
  max-width: 920px;
  width: 100%;
}
.hero__eyebrow {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s .2s forwards;
}
.hero__title {
  font-size: clamp(48px, 8.4vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero__title .row {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.1s forwards;
}
.hero__title .row:nth-child(1) { animation-delay: .35s; }
.hero__title .row:nth-child(2) { animation-delay: .5s; }
.hero__title .row:nth-child(3) { animation-delay: .65s; }
.hero__title em {
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
}
.hero__sub {
  max-width: 580px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(246, 241, 234, 0.78);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s .85s forwards;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.hero__phone {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
  text-decoration: none;
  padding-left: 8px;
}
.hero__phone .label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__phone .num {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.hero__marquee {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 60px;
  font-family: var(--f-script);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: rgba(246, 241, 234, 0.45);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.hero__marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  padding-left: 60px;
}
.hero__marquee-track span::before {
  content: "✦";
  color: var(--pink);
  margin-right: 60px;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* scroll-cue */
.hero__cue {
  position: absolute;
  right: var(--gutter);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__cue .bar {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--champagne));
  position: relative; overflow: hidden;
}
.hero__cue .bar::after {
  content: "";
  position: absolute;
  top: -30px; left: 0;
  width: 1px; height: 30px;
  background: var(--ivory);
  animation: cueSlide 2.2s ease-in-out infinite;
}
@keyframes cueSlide {
  0%   { top: -30px; }
  100% { top: 90px; }
}

/* ──────── SECTION CHROME ──────── */
section {
  position: relative;
  padding: var(--section-y) 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 88px);
  flex-wrap: wrap;
}
.section-head__title {
  font-size: clamp(40px, 6vw, 84px);
  max-width: 720px;
}
.section-head__title em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--champagne);
}
.section-head__meta {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.section-head__eyebrow {
  margin-bottom: 20px;
}

/* divider rule with star */
.rule-star {
  display: flex; align-items: center; gap: 14px;
  color: var(--champagne);
  margin: 0 auto;
  width: fit-content;
}
.rule-star::before, .rule-star::after {
  content: "";
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ──────── EXPERIENCE ──────── */
.experience {
  background: var(--noir);
  position: relative;
}
.experience::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.exp-text h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  margin-bottom: 32px;
}
.exp-text h2 em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--champagne);
  display: block;
}
.exp-text p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 40px;
}
.exp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.exp-pills li {
  list-style: none;
  border: 1px solid var(--line-strong);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: all .3s;
}
.exp-pills li:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 24px -8px var(--pink-glow);
}
.exp-quote {
  font-family: var(--f-script);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--champagne);
  line-height: 1.4;
  border-left: 1px solid var(--line-strong);
  padding-left: 24px;
}

.exp-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.exp-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}
.exp-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,7,7,0.55));
  pointer-events: none;
}
.exp-visual__chip {
  position: absolute;
  left: -16px; bottom: 32px;
  background: var(--noir);
  border: 1px solid var(--line-strong);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.exp-visual__chip .num {
  font-family: var(--f-display);
  font-size: 38px;
  line-height: 1;
  color: var(--champagne);
}
.exp-visual__chip .lbl {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 110px;
}

/* ──────── OCCASIONS ──────── */
.occ-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.occ-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  isolation: isolate;
}
.occ-card:nth-child(1) { grid-column: span 5; }
.occ-card:nth-child(2) { grid-column: span 4; }
.occ-card:nth-child(3) { grid-column: span 3; }
.occ-card:nth-child(4) { grid-column: span 4; }
.occ-card:nth-child(5) { grid-column: span 8; aspect-ratio: 16/10; }

.occ-card__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.occ-card:hover .occ-card__img { transform: scale(1.08); }
.occ-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,7,7,0) 30%, rgba(10,7,7,0.92) 100%);
  z-index: 1;
}
.occ-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.occ-card__num {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--champagne);
  margin-bottom: 6px;
}
.occ-card__name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  color: var(--white);
}
.occ-card__hint {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s;
}
.occ-card:hover .occ-card__hint {
  opacity: 1; transform: translateY(0);
}
.occ-card__pink {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  z-index: 3;
  transition: border-color .35s;
  pointer-events: none;
}
.occ-card:hover .occ-card__pink {
  border-color: var(--pink);
  box-shadow: inset 0 0 60px -10px var(--pink-glow);
}

/* ──────── GALLERY ──────── */
.gallery {
  background: linear-gradient(180deg, var(--noir) 0%, var(--noir-2) 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
}
.g-cell {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: filter .4s;
}
.g-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,7,7,0.6));
  opacity: 0; transition: opacity .35s;
}
.g-cell:hover::after { opacity: 1; }
.g-cell:hover { filter: brightness(1.1); }
.g-cell .tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--f-script);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s;
  z-index: 1;
}
.g-cell:hover .tag { opacity: 1; transform: translateY(0); }

.g-a { grid-column: span 3; grid-row: span 3; }
.g-b { grid-column: span 2; grid-row: span 2; }
.g-c { grid-column: span 1; grid-row: span 2; }
.g-d { grid-column: span 2; grid-row: span 2; }
.g-e { grid-column: span 1; grid-row: span 2; }
.g-f { grid-column: span 3; grid-row: span 2; }
.g-g { grid-column: span 3; grid-row: span 2; }

.gallery__handle {
  margin-top: 32px;
  text-align: center;
  font-family: var(--f-script);
  font-style: italic;
  color: var(--champagne);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.gallery__handle a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
}
.gallery__handle a:hover { color: var(--pink); border-color: var(--pink); }

/* ──────── ABOUT ──────── */
.about {
  background: var(--noir);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-mark {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--noir-3), var(--noir-2));
  overflow: hidden;
}
.about-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-mark__quote {
  position: absolute;
  top: -1px; left: -1px;
  background: var(--noir);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 28px;
  font-family: var(--f-script);
  font-style: italic;
  font-size: 22px;
  color: var(--champagne);
}
.about-mark__quote sup {
  font-family: var(--f-display);
  font-size: 50px;
  vertical-align: -28px;
  margin-right: 4px;
  color: var(--pink);
}
.about-text h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  margin-bottom: 32px;
}
.about-text h2 em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--champagne);
}
.about-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
}
.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.about-stats div .n {
  font-family: var(--f-display);
  font-size: 48px;
  color: var(--champagne);
  line-height: 1;
}
.about-stats div .l {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ──────── PRICING ──────── */
.pricing {
  background: var(--noir-2);
  text-align: center;
}
.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 60px);
  background: linear-gradient(180deg, rgba(212,184,138,0.04) 0%, transparent 100%);
  position: relative;
}
.pricing-card::before,
.pricing-card::after {
  content: "✦";
  color: var(--champagne);
  position: absolute;
  top: -10px;
  font-size: 18px;
  background: var(--noir-2);
  padding: 0 14px;
}
.pricing-card::before { left: 50%; transform: translateX(-50%); }
.pricing-card::after { content: ""; }

.pricing-card .label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}
.pricing-card .price {
  font-family: var(--f-display);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.pricing-card .price .currency {
  font-size: 0.4em;
  color: var(--champagne);
  vertical-align: top;
  margin-right: 8px;
  letter-spacing: 0;
}
.pricing-card .per {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 24px;
  color: var(--champagne);
  margin-top: 8px;
}
.pricing-card .minimum {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  letter-spacing: 0.06em;
}
.pricing-card .rule {
  width: 60px; height: 1px;
  background: var(--line-strong);
  margin: 36px auto;
}
.pricing-card .incs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  margin-bottom: 36px;
  text-align: left;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.pricing-card .incs li {
  list-style: none;
  font-size: 14px;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-card .incs li::before {
  content: "✦";
  color: var(--champagne);
  font-size: 12px;
}

/* ──────── FAQ ──────── */
.faq {
  background: var(--noir);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(40px, 6vw, 100px);
}
.faq-grid h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
}
.faq-grid h2 em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--champagne);
}
.faq-grid .blurb {
  color: var(--muted);
  margin-top: 20px;
  font-size: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-item__q {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ivory);
  line-height: 1.2;
  flex: 1;
}
.faq-item__toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all .35s;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  background: var(--champagne);
  transition: transform .35s;
}
.faq-item__toggle::before { width: 12px; height: 1px; }
.faq-item__toggle::after  { width: 1px; height: 12px; }
.faq-item.open .faq-item__toggle {
  background: var(--champagne);
  border-color: var(--champagne);
}
.faq-item.open .faq-item__toggle::before,
.faq-item.open .faq-item__toggle::after {
  background: var(--noir);
}
.faq-item.open .faq-item__toggle::after {
  transform: rotate(90deg);
}
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, margin-top .35s;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
}
.faq-item.open .faq-item__body {
  max-height: 500px;
  margin-top: 16px;
}

/* ──────── CONTACT ──────── */
.contact {
  background: linear-gradient(180deg, var(--noir) 0%, #080404 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -300px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(40px);
  opacity: 0.4;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  position: relative;
  z-index: 1;
}
.contact-grid h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  margin-bottom: 28px;
}
.contact-grid h2 em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--champagne);
}
.contact-side p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 16px;
  max-width: 420px;
}
.contact-side .quick {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact-side .quick a {
  color: var(--ivory);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}
.contact-side .quick a:hover { color: var(--champagne); }
.contact-side .quick .l {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.contact-side .quick .v {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--white);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form .full { grid-column: 1 / -1; }
.field {
  position: relative;
}
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 12px 0;
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--champagne);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23d4b88a' stroke-width='1.2' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
}
.field select option { background: var(--noir); color: var(--ivory); }
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }

.field.error input,
.field.error select,
.field.error textarea {
  border-bottom-color: var(--pink);
}
.field .err-msg {
  position: absolute;
  bottom: -22px;
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.05em;
}

.form-submit {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.form-submit .fine {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.form-success {
  border: 1px solid var(--champagne);
  padding: 40px;
  text-align: center;
  background: rgba(212,184,138,0.04);
}
.form-success .glyph {
  font-family: var(--f-display);
  font-size: 48px;
  color: var(--champagne);
  margin-bottom: 12px;
}
.form-success h3 {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 400;
}
.form-success p { color: var(--muted); }

/* ──────── FOOTER ──────── */
.footer {
  background: #060303;
  padding: 60px var(--gutter) 30px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto 50px;
}
.footer h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .25s;
}
.footer a:hover { color: var(--ivory); }
.footer .brand-block .nav__brand-mark { font-size: 36px; }
.footer .brand-block p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
  max-width: 320px;
}
.footer-bot {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ──────── REVEAL ANIMS ──────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ──────── MOBILE ──────── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__phone .desktop-num { display: none; }

  .exp-grid,
  .about-inner,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .occ-card:nth-child(1),
  .occ-card:nth-child(2),
  .occ-card:nth-child(3),
  .occ-card:nth-child(4) { grid-column: span 6; }
  .occ-card:nth-child(5) { grid-column: span 12; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .hero__cue { display: none; }
  .hero { padding-bottom: 60px; }
  .nav__cta .btn { display: none; }
  .nav__phone { display: none; }

  .occ-card { grid-column: span 12 !important; aspect-ratio: 4/5; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g-a { grid-column: span 2; grid-row: span 2; }
  .g-b, .g-d, .g-f, .g-g { grid-column: span 2; grid-row: span 1; }
  .g-c, .g-e { grid-column: span 1; grid-row: span 1; }

  .form { grid-template-columns: 1fr; }
  .pricing-card .incs { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }

  .hero__title { font-size: clamp(42px, 12vw, 64px); }

  .about-stats { gap: 28px; }
  .about-stats div .n { font-size: 36px; }
}

/* selection */
::selection { background: var(--pink); color: var(--white); }


@media (max-width: 768px) {
  }

/* ═══════════════════════════════════════════
   VIP HOSTESS ADD-ON SECTION
═══════════════════════════════════════════ */
.hostess { padding: var(--section-pad) 0; background: var(--surface); }

.hostess-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hostess-text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hostess-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.hostess-card {
  background: var(--bg);
  border: 1px solid rgba(212,166,110,0.15);
  border-radius: 12px;
  padding: 20px 18px;
}

.hostess-card__icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.hostess-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.hostess-card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.hostess-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.hostess-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hostess-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--champagne);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hostess-badge__price {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--champagne);
  line-height: 1;
}

.hostess-badge__price span {
  font-size: 16px;
  color: var(--muted);
}

.hostess-badge__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hostess-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hostess-visual {
    aspect-ratio: 4/3;
    order: -1;
  }
  .hostess-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Logo ── */
.nav__brand { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
.nav__logo-img { height: 52px !important; max-height: 52px !important; width: auto !important; max-width: 160px !important; display: block !important; object-fit: contain !important; }
@media (max-width: 768px) { .nav__logo-img { height: 38px !important; max-height: 38px !important; max-width: 120px !important; } }

/* ── Branded CTA background ── */
.contact {
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/cta-branded.png') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.contact .container {
  position: relative;
  z-index: 1;
}

/* ── Pink carpet exterior shots: force portrait crop ── */
.occ-card__img {
  background-position: center top !important;
}

/* ── Limited Time Offer pulse ── */
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 18px rgba(212,83,126,0.55); transform: scale(1); }
  50%       { box-shadow: 0 0 32px rgba(212,83,126,0.9); transform: scale(1.03); }
}
