/* ==========================================================================
   ALL STARS ENTERTAINMENT — homepage redesign (design prototype)
   REMUX "format" recoloured to DARK LUXURY + GOLD
   Poppins (display) + Inter (body) · near-black base · champagne-gold accent
   ========================================================================== */

:root {
  /* base — REMUX --fog/--fog-deep flipped to dark */
  --ink: #0B0B0D;            /* page background */
  --surface: #141318;        /* alternate section bg */
  --card: #1A1820;           /* card background */
  --card-hi: #221F2A;        /* card hover */
  --line: rgba(240,208,96,.14);   /* hairline gold-tinted border */
  --line-soft: rgba(255,255,255,.08);

  /* gold accent — replaces REMUX --ink as the primary colour */
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8941E;
  --gold-grad: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));

  /* text on dark */
  --text: #F5F2EC;                    /* primary */
  --text-60: rgba(245,242,236,.66);   /* secondary */
  --text-40: rgba(245,242,236,.46);   /* muted / large-text only */
  --white: #ffffff;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-card: 1.5rem;
  --radius-pill: 9999px;
  --pad-x: clamp(1.25rem, 5vw, 5.5rem);

  --shadow-soft: 0 18px 50px -18px rgba(0,0,0,.55);
  --shadow-lift: 0 28px 60px -20px rgba(0,0,0,.7);
  --glow-gold: 0 0 0 1px rgba(212,175,55,.35), 0 22px 60px -24px rgba(212,175,55,.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #0B0B0D; }
img, svg, video { display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* NOTE: never set a bare h1/h2 colour — band headings rely on body colour +
   the .display.on-dark override so white headings show on dark photo scrims. */
h1, h2, h3, .btn-pill { font-family: var(--font-display); }

.section-inner { padding: 0 var(--pad-x); width: 100%; }
section { padding: clamp(3.5rem, 8vh, 6rem) 0; }

/* ==========================================================================
   NAVBAR  (transparent over hero → dark glass once scrolled past)
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .85rem var(--pad-x);
  z-index: 100;
  background: rgba(11,11,13,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  color: var(--text);
}
.nav--on-video {        /* over the hero video: transparent, no border */
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.nav-logo { display: inline-flex; align-items: center; flex: none; }
.nav-logo-img {
  height: 46px; width: auto; flex: none;
  display: block;
  transition: height .35s ease;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.45));
}
.nav:not(.nav--on-video) .nav-logo-img { height: 40px; }

.nav-links {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem);
  list-style: none;
}
.nav-links > li { display: inline-flex; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500;
  font-size: .86rem; color: inherit; white-space: nowrap;
  opacity: .9; transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-socials { display: inline-flex; gap: .6rem; align-items: center; }
.nav-social-icon { opacity: .8; transition: opacity .2s, color .2s; }
.nav-social-icon:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  font-family: var(--font-display); font-weight: 600; font-size: .84rem;
  color: #0B0B0D !important; background: var(--gold-grad);
  padding: .6rem 1.25rem; border-radius: var(--radius-pill);
  opacity: 1 !important; white-space: nowrap;
  box-shadow: 0 8px 22px -10px rgba(212,175,55,.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); color: #0B0B0D !important; }

/* hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px; flex: none;
}
.nav-toggle span {
  width: 24px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* full-screen mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(160deg, #0B0B0D 0%, #15101f 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem var(--pad-x) 2rem;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.6rem; color: var(--text); padding: .55rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .mm-cta {
  margin-top: 1.6rem; color: #0B0B0D; background: var(--gold-grad);
  border-radius: var(--radius-pill); text-align: center; border: 0;
  padding: .9rem 1.5rem; font-size: 1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold-grad); color: #0B0B0D;
  font-weight: 600; font-size: .88rem;
  padding: .82rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 12px 28px -12px rgba(212,175,55,.55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(212,175,55,.7); }
.btn-pill svg { width: 16px; height: 16px; }
.btn-pill-ghost {
  background: transparent; color: var(--text);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4);
}
.btn-pill-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--gold-light); }
.btn-pill-light { background: var(--white); color: #0B0B0D; box-shadow: 0 12px 28px -14px rgba(0,0,0,.6); }

/* ==========================================================================
   SHARED — kicker / display / photo bands / check-list
   ========================================================================== */
.kicker {
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.kicker.on-dark { color: var(--gold-light); }
.display {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.12; letter-spacing: -.025em;
  color: var(--text);
}
.display.on-dark { color: var(--white); }
.display .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-sub {
  margin-top: 1.1rem; font-size: 1rem; line-height: 1.6;
  color: var(--text-60); max-width: 40rem;
}

.band-bg { position: absolute; inset: 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,6,9,.92) 0%, rgba(6,6,9,.7) 55%, rgba(6,6,9,.5) 100%);
}
.band-content { position: relative; z-index: 1; }
.band-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.band-center .band-bg::after { background: rgba(6,6,9,.68); }
.band-sub {
  margin-top: 1.2rem; font-size: 1rem; line-height: 1.55;
  color: rgba(245,242,236,.78); max-width: 38rem;
}
.band-sub-center { margin-left: auto; margin-right: auto; }

.check-points { list-style: none; margin-top: 1.7rem; display: flex; flex-direction: column; gap: .8rem; }
.check-points li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .98rem; color: var(--text);
}
.check-points li::before {
  content: ""; width: 20px; height: 20px; flex: none;
  border-radius: 50%; background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 66% no-repeat, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 66% no-repeat, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

/* ==========================================================================
   1 — HERO (existing promo video, redesigned overlay — no scrub)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: #07070a url("videos/web/hero-poster.jpg") center / cover no-repeat;
  padding: 0;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(212,175,55,.10) 0%, transparent 55%),
    linear-gradient(to top, rgba(7,7,10,.94) 0%, rgba(7,7,10,.55) 36%, rgba(7,7,10,.2) 62%, rgba(7,7,10,.5) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 64rem;
  padding: 0 var(--pad-x) clamp(4rem, 11vh, 7.5rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.32);
  padding: .42rem 1rem; border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212,175,55,.7); animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,.6); }
  70% { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.05; letter-spacing: -.03em;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
  max-width: 18ch;
}
.hero-sub {
  margin-top: 1.3rem; font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6; color: rgba(245,242,236,.82); max-width: 40rem;
}
.hero-buttons { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.6rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: .15rem; }
.hero-stat .number {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.02em;
  color: var(--gold-light);
}
.hero-stat .label {
  font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-60);
}

/* ==========================================================================
   2 — USP MARQUEE
   ========================================================================== */
.usp {
  padding: 1.05rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.usp-track { display: flex; width: max-content; animation: uspReel 42s linear infinite; }
.usp:hover .usp-track { animation-play-state: paused; }
@keyframes uspReel { to { transform: translateX(-50%); } }
.usp-reel { display: flex; align-items: center; }
.usp-item { display: inline-flex; align-items: baseline; gap: .45rem; white-space: nowrap; padding: 0 1.1rem; }
.usp-item::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); align-self: center; margin-left: 2.2rem; opacity: .6;
}
.usp-item strong { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--text); }
.usp-item span { font-size: .85rem; color: var(--text-60); }
@media (prefers-reduced-motion: reduce) {
  .usp-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .usp-reel[aria-hidden="true"] { display: none; }
  .usp-reel { flex-wrap: wrap; justify-content: center; row-gap: .5rem; }
}

/* ==========================================================================
   3 — SERVICES
   ========================================================================== */
.services { background: var(--ink); }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(2rem, 4vh, 3rem); }
.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--glow-gold); border-color: rgba(212,175,55,.4); }
.service-img { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #100c1a; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: var(--font-display); font-weight: 600; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: #0B0B0D; background: var(--gold-grad);
  padding: .3rem .7rem; border-radius: var(--radius-pill);
}
.service-body { padding: 1.5rem 1.6rem 1.7rem; }
.service-body h3 { font-weight: 600; font-size: 1.25rem; letter-spacing: -.01em; color: var(--text); }
.service-price { margin-top: .35rem; font-family: var(--font-display); font-weight: 600; color: var(--gold-light); font-size: .95rem; }
.service-body p { margin-top: .6rem; font-size: .92rem; line-height: 1.55; color: var(--text-60); }
.service-link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--gold);
}
.service-link span { transition: transform .25s; display: inline-block; }
.service-link:hover span { transform: translateX(4px); }

/* ==========================================================================
   4 — PROOF STATS
   ========================================================================== */
.proof {
  background:
    radial-gradient(90% 70% at 80% 8%, rgba(212,175,55,.10) 0%, transparent 60%),
    var(--surface);
  border-top: 1px solid var(--line);
}
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: clamp(2rem, 4vh, 3.2rem); }
.proof-stat { border-top: 1px solid rgba(212,175,55,.28); padding-top: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.proof-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -.02em;
  color: var(--gold-light); font-variant-numeric: tabular-nums;
}
.proof-label { font-size: .88rem; color: var(--text-60); }
.proof-stat a { color: inherit; display: flex; flex-direction: column; gap: .5rem; }
.proof-stat a:hover .proof-num { color: var(--gold); }

/* ==========================================================================
   5 — HOW IT WORKS
   ========================================================================== */
.how { background: var(--ink); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: clamp(2rem, 4vh, 3rem); }
.step-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-card); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--glow-gold); border-color: rgba(212,175,55,.35); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,175,55,.12); color: var(--gold-light);
  border: 1px solid rgba(212,175,55,.3);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
}
.step-card h3 { font-weight: 600; font-size: 1.14rem; margin-top: 1.3rem; letter-spacing: -.01em; color: var(--text); }
.step-card p { margin-top: .55rem; font-size: .92rem; line-height: 1.55; color: var(--text-60); }

/* ==========================================================================
   6 — EXPERIENCE BAND (photo) + event chips
   9 — DESIGN CTA BAND  ·  final CTA  ·  coverage band
   ========================================================================== */
.photo-band, .bizband, .finalcta, .coverage--band {
  position: relative; overflow: hidden;
  padding: clamp(4.5rem, 11vh, 7.5rem) 0;
}
.event-chips, .city-chips { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.event-chips a, .event-chips span {
  font-family: var(--font-display); font-weight: 500; font-size: .9rem; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: .55rem 1.15rem; border-radius: var(--radius-pill);
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.event-chips a:hover { background: rgba(212,175,55,.22); border-color: rgba(212,175,55,.5); transform: translateY(-2px); }
.bizband .btn-pill, .finalcta .finalcta-btns { margin-top: 2rem; }
.finalcta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   7 — SPLIT (Why All Stars) — photo + check-list
   ========================================================================== */
.split { background: var(--surface); }
.split-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-img { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--line-soft); }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-sub { margin-top: 1.2rem; color: var(--text-60); line-height: 1.6; max-width: 34rem; }

/* ==========================================================================
   8 — PACKAGES (bundles + pricing)
   ========================================================================== */
.packages { background: var(--ink); }
.pkg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(2rem, 4vh, 3rem); }
.pkg-card {
  position: relative; background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-card); padding: 2rem 1.7rem;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(212,175,55,.3); }
.pkg-card--popular { background: var(--gold-grad); color: #0B0B0D; box-shadow: var(--glow-gold); border-color: transparent; }
.pkg-card--popular .pkg-tag, .pkg-card--popular .pkg-was, .pkg-card--popular .pkg-feat li { color: rgba(11,11,13,.78); }
.pkg-card--popular .pkg-feat li::before { color: #0B0B0D; }
.pkg-badge {
  position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 600; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: #0B0B0D; color: var(--gold-light);
  padding: .35rem .9rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(212,175,55,.5);
}
.pkg-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -.01em; }
.pkg-tag { font-size: .85rem; color: var(--text-60); margin-top: .3rem; }
.pkg-price { margin-top: 1.1rem; display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.pkg-now { font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; letter-spacing: -.02em; line-height: 1; }
.pkg-was { font-size: 1rem; text-decoration: line-through; color: var(--text-40); }
.pkg-save { margin-top: .5rem; font-size: .82rem; font-weight: 600; color: var(--gold-light); }
.pkg-card--popular .pkg-save { color: #0B0B0D; }
.pkg-feat { list-style: none; margin: 1.3rem 0 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.pkg-feat li { position: relative; padding-left: 1.5rem; font-size: .9rem; line-height: 1.45; color: var(--text-60); }
.pkg-feat li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .8rem; top: .1rem; }
.pkg-card .btn-pill, .pkg-card .btn-pill-ghost { margin-top: auto; justify-content: center; }
.pkg-card--popular .btn-pill { background: #0B0B0D; color: var(--gold-light); box-shadow: none; }
.pkg-foot {
  margin-top: 1.8rem; font-size: .9rem; color: var(--text-60); text-align: center; max-width: 60rem; margin-left: auto; margin-right: auto;
}
.pkg-foot a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
/* guide-price foot strip */
.price-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; margin-top: 1.8rem; }
.price-pill {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 1rem;
  padding: 1rem .9rem; text-align: center;
}
.price-pill .pp-name { font-size: .76rem; color: var(--text-60); display: block; }
.price-pill .pp-price { font-family: var(--font-display); font-weight: 600; color: var(--gold-light); font-size: 1.05rem; margin-top: .3rem; display: block; }

/* ==========================================================================
   10 — GALLERY
   ========================================================================== */
.gallery { background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(2rem, 4vh, 3rem); }
.gallery-item {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: 1rem; cursor: pointer; border: 1px solid var(--line-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 1rem 1.2rem; opacity: 0; transition: opacity .3s ease;
  background: linear-gradient(to top, rgba(11,11,13,.8), transparent 60%);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: #fff; }
.gallery-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.96); z-index: 9999; align-items: center; justify-content: center; }
.gallery-lightbox.open { display: flex; }
.gallery-lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.gallery-lightbox-close, .gallery-lightbox-nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.gallery-lightbox-close { top: 20px; right: 24px; font-size: 32px; width: 48px; height: 48px; border-radius: 50%; }
.gallery-lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 36px; width: 56px; height: 56px; border-radius: 50%; }
.gallery-lightbox-close:hover, .gallery-lightbox-nav:hover { background: var(--gold); color: #000; }
.gallery-lightbox-nav.prev { left: 24px; }
.gallery-lightbox-nav.next { right: 24px; }

/* ==========================================================================
   11 — COVERAGE (photo band) + city chips
   ========================================================================== */
.coverage--band .band-bg::after {
  background: linear-gradient(90deg, rgba(6,6,9,.9) 0%, rgba(6,6,9,.62) 60%, rgba(6,6,9,.4) 100%);
}
.coverage-group h3 {
  font-family: var(--font-display); color: var(--gold-light);
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  margin: 1.8rem 0 .8rem;
}
.loc-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.loc-chip {
  padding: .45rem 1rem; border: 1px solid rgba(212,175,55,.34); border-radius: var(--radius-pill);
  font-size: .85rem; color: var(--gold-light); background: rgba(212,175,55,.06);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.loc-chip:hover { background: var(--gold); color: #0B0B0D; border-color: var(--gold); }
.coverage-more { margin-top: 1.6rem; }
.coverage-more a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   12 — FAQ
   ========================================================================== */
.faq { background: var(--ink); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq-sub { margin-top: 1.1rem; font-size: .95rem; color: var(--text-60); }
.faq-sub a { font-weight: 500; color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-list details {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: 1.1rem; padding: 0 1.4rem; overflow: hidden;
}
.faq-list details[open] { border-color: rgba(212,175,55,.3); }
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: -.01em; color: var(--text);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; line-height: 1;
  color: var(--gold); transition: transform .3s ease; flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 1.2rem; font-size: .94rem; line-height: 1.6; color: var(--text-60); max-width: 60ch; }

/* ==========================================================================
   13 — BOOKING / QUOTE
   ========================================================================== */
.booking { background: var(--surface); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.booking-sub { margin-top: 1.2rem; color: var(--text-60); line-height: 1.6; max-width: 36rem; }
.booking-contact { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .7rem; font-size: .95rem; color: var(--text-60); }
.booking-contact a { color: var(--gold-light); }
.booking-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-card); padding: clamp(1.5rem, 3vw, 2.3rem);
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group.full-width { grid-column: 1 / -1; }
.booking-card label {
  font-family: var(--font-display); font-weight: 500; font-size: .78rem; color: var(--text-60);
}
.booking-card input, .booking-card select, .booking-card textarea {
  background: var(--ink); border: 1px solid var(--line-soft); border-radius: .8rem;
  padding: .8rem 1rem; color: var(--text);
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color .25s, background .25s; width: 100%;
}
.booking-card textarea { resize: vertical; min-height: 90px; }
.booking-card input::placeholder, .booking-card textarea::placeholder { color: var(--text-40); }
.booking-card input:focus, .booking-card select:focus, .booking-card textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.booking-card select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem;
}
.booking-card option { background: var(--ink); color: var(--text); }
.form-submit { margin-top: 1.3rem; }
.form-submit .btn-pill { width: 100%; justify-content: center; }
.booking-note { margin-top: .9rem; font-size: .75rem; color: var(--text-40); text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #060608; border-top: 1px solid var(--line); padding: 4rem var(--pad-x) 1.5rem; }
.footer-grid { width: 100%; display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-logo-img { height: 48px; width: auto; }
.footer-brand p { margin-top: 1rem; font-size: .88rem; color: var(--text-60); max-width: 34ch; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-display); font-weight: 600; font-size: .95rem; margin-bottom: .8rem; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a, .footer-col span { font-size: .9rem; color: var(--text-60); transition: color .25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a { color: var(--text-60); transition: color .25s; }
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  width: 100%; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .78rem; color: var(--text-40);
}
.footer-credit { text-align: center; padding: 1.1rem 1rem 0; font-size: .82rem; color: var(--text-40); }
.footer-credit a { color: #39b8fd; font-weight: 700; }

/* ==========================================================================
   MOBILE CONVERSION LAYER — WhatsApp float + sticky bar
   ========================================================================== */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 940;
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff; border-radius: 50%;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.5); transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; }
.sticky-mobile-cta { display: none; }
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
    background: var(--ink); border-top: 1px solid var(--line);
    padding: 10px 14px; padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 18px rgba(0,0,0,.5);
    animation: slideUpCTA .5s ease-out .5s backwards;
  }
  .sticky-mobile-cta a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 12px; border-radius: 12px;
    font-family: var(--font-display); font-weight: 600; font-size: .95rem;
    -webkit-tap-highlight-color: transparent;
  }
  .sticky-mobile-cta-wa { background: #25D366; color: #fff; }
  .sticky-mobile-cta-btn { background: var(--gold-grad); color: #0B0B0D; }
  .sticky-mobile-cta svg { width: 18px; height: 18px; }
  @keyframes slideUpCTA { from { transform: translateY(100%); } to { transform: translateY(0); } }
  body { padding-bottom: 74px; }
  .wa-float { display: none; }
}
@media (prefers-reduced-motion: reduce) { .sticky-mobile-cta { animation: none; } }

/* ==========================================================================
   MOTION — reveal contract (initial state applied by JS only)
   ========================================================================== */
.r-hidden { opacity: 0; transform: translateY(26px); }
.r-shown {
  opacity: 1; transform: translateY(0);
  transition: opacity .85s cubic-bezier(.22,1,.36,1) var(--d, 0s),
              transform .85s cubic-bezier(.22,1,.36,1) var(--d, 0s);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .r-hidden { opacity: 1; transform: none; }
  .hero-eyebrow .dot { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr 1fr; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .pkg-cards { grid-template-columns: 1fr; max-width: 30rem; margin-left: auto; margin-right: auto; }
  .price-strip { grid-template-columns: repeat(3, 1fr); }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .split-grid, .booking-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gallery-lightbox-nav { width: 44px; height: 44px; font-size: 28px; }
  .gallery-lightbox-nav.prev { left: 8px; }
  .gallery-lightbox-nav.next { right: 8px; }
}
@media (max-width: 560px) {
  .btn-pill { font-size: .84rem; padding: .72rem 1.2rem; }
  .steps { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-strip { grid-template-columns: 1fr 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
}
