/* ============================================================
   FAMOUS HOLLYWOOD — Editorial cinematic (v2.1)
   Direction: warm-cream body with dark cinematic interludes
   2026-modern, A24-adjacent, restrained, real-data-first
   ============================================================ */

:root {
  /* Dark surfaces — for cinematic moments (hero, loyalty, final, footer) */
  --bg-d: #050505;
  --bg-d2: #0A0A0A;
  --bg-d3: #111111;
  --line-d: rgba(241, 239, 233, 0.10);
  --line-d2: rgba(241, 239, 233, 0.18);

  /* Light surfaces — for breathing-room sections (creds, fleet, reviews, FAQ) */
  --paper: #F5F1EA;
  --paper-2: #FAF7F1;
  --paper-3: #EDE8DE;
  --line-l: rgba(10, 10, 10, 0.10);
  --line-l2: rgba(10, 10, 10, 0.18);

  /* Ink */
  --ink: #0A0A0A;
  --ink-2: #4A4A48;
  --ink-3: #8A8A86;

  /* Cross-mode */
  --warm: #F1EFE9;
  --silver: #C8C4BA;
  --silver-2: #908C82;
  --silver-3: #5C5A55;
  --red: #BA2A1D;             /* small live-indicator dots only */
  --gold: #C9A961;            /* brand primary — matches G's gold-star logo */
  --gold-2: #E2C48A;
  --gold-3: #8C7340;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 72px; --s9: 96px; --s10: 128px;

  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s7); }
@media (max-width: 720px) { .container { padding: 0 var(--s5); } }

/* === Type primitives ============================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
}
.eyebrow .dot {
  position: relative;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px rgba(186,42,29,0.8);
  animation: live-dot 1.8s ease-in-out infinite;
}
.eyebrow .dot::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; background: var(--red);
  animation: live-ring 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes live-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}
@keyframes live-ring {
  0% { transform: scale(1); opacity: 0.55; }
  80%, 100% { transform: scale(3.6); opacity: 0; }
}
.dark .eyebrow { color: var(--silver-2); }

.h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  font-variation-settings: "opsz" 144;
}
.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0;
  font-variation-settings: "opsz" 96;
}
.h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  font-variation-settings: "opsz" 36;
}
.lede {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}
.dark .lede { color: var(--silver); }

/* === Buttons ===================================================== */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
              background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.btn::before {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); pointer-events: none;
  transition: left 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover::before { left: 130%; }
.btn:active { transform: translateY(0) scale(0.97); }
.btn-arrow { display: inline-block; transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--warm); }
.btn-primary:hover { transform: translateY(-2px); background: #1a1a1a; box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.btn-paper { background: var(--warm); color: var(--bg-d); }
.btn-paper:hover { transform: translateY(-2px); background: #fff; }
.btn-gold { background: var(--gold); color: var(--bg-d); }
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-2); box-shadow: 0 14px 36px rgba(201,169,97,0.42); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-l2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--warm); border: 1px solid rgba(241,239,233,0.30); }
.btn-ghost-light:hover { border-color: var(--warm); transform: translateY(-2px); background: rgba(241,239,233,0.06); }
.dark .btn-ghost { color: var(--warm); border-color: var(--line-d2); }
.dark .btn-ghost:hover { border-color: var(--warm); }
.btn-red { background: var(--red); color: var(--warm); }
.btn-red:hover { transform: translateY(-2px); background: #d6301f; }

/* === Logo ======================================================== */
.logo {
  display: inline-flex; align-items: center; gap: var(--s3);
  text-decoration: none;
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; object-fit: contain; }
.logo-mark.is-img { display: block; height: 38px; width: auto; }
.nav .logo-text, .nav .logo-sub { display: none; }
.logo-mark.is-svg { display: none; }
.no-logo-img .logo-mark.is-img { display: none; }
.no-logo-img .logo-mark.is-svg { display: block; }
.logo-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variation-settings: "opsz" 24;
}
.logo-text .ampersand {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
  margin: 0 2px;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
  line-height: 1;
}
.dark .logo-sub { color: var(--silver-2); }

/* === Nav ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s5) var(--s7);
  background: linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0) 100%);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 320ms ease, backdrop-filter 320ms ease, padding 320ms ease, border-color 320ms ease;
}
.nav .logo { color: var(--warm); }
.nav .logo-sub { color: var(--silver-2); }
.nav.scrolled {
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: var(--s4) var(--s7);
  border-bottom: 1px solid var(--line-l);
}
.nav.scrolled .logo { color: var(--ink); }
.nav.scrolled .logo-sub { color: var(--ink-3); }
.nav.scrolled .nav-cta { color: var(--ink); border-color: var(--line-l2); }
.nav.scrolled .nav-cta:hover { border-color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: var(--s5); font-size: 13px; font-weight: 500; }
.nav-links a { color: var(--warm); text-decoration: none; opacity: 0.85; }
.nav-links a:hover { opacity: 1; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-cta {
  padding: 10px 20px; font-size: 13px;
  background: rgba(241, 239, 233, 0.95); color: var(--ink) !important;
  border: 1px solid rgba(241, 239, 233, 0.95); opacity: 1 !important;
}
.nav-cta:hover { background: var(--warm); }
.nav.scrolled .nav-cta { background: var(--ink); color: var(--warm) !important; border-color: var(--ink); }
.nav.scrolled .nav-cta:hover { background: #1a1a1a; }
@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 720px) {
  .nav { padding: var(--s4) var(--s5); }
  .nav.scrolled { padding: var(--s4) var(--s5); }
}

/* === Hero (DARK band) ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-d);
  color: var(--warm);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(5,5,5,0.30) 0%, rgba(5,5,5,0.78) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.20) 0%, rgba(5,5,5,0.0) 30%, rgba(5,5,5,0.55) 100%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-linear-gradient(0deg, rgba(241,239,233,0.014) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, rgba(241,239,233,0.014) 0 1px, transparent 1px 2px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 0 var(--s5);
  max-width: 1100px;
  width: 100%;
}
.hero .eyebrow { color: var(--silver); margin-bottom: var(--s7); }
.hero .eyebrow .dot { background: var(--red); }
.hero h1 { margin-bottom: var(--s7); color: var(--warm); }
.hero h1 .accent {
  color: var(--gold-2);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--silver);
  max-width: 540px;
  margin: 0 auto var(--s7);
}
.hero-cta-row {
  display: flex; align-items: center; gap: var(--s3);
  flex-wrap: wrap; justify-content: center;
  margin-bottom: var(--s5);
}
.hero-trust {
  display: flex; align-items: center; gap: var(--s5);
  font-size: 12px;
  color: var(--silver-2);
  flex-wrap: wrap; justify-content: center;
  width: 100%;
}
.hero-trust strong { color: var(--warm); font-weight: 600; }
.hero-trust .stars { color: var(--warm); letter-spacing: 1px; }
.hero-social {
  display: inline-flex; align-items: center; gap: var(--s3);
  justify-content: center; width: 100%;
  margin-top: var(--s5);
  font-size: 12px; color: var(--silver-2);
}
.hero-social a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--silver); text-decoration: none;
  transition: color 220ms ease;
}
.hero-social a:hover { color: var(--gold-2); }
.hero-social svg { width: 16px; height: 16px; }
.hero-scroll {
  position: absolute; bottom: var(--s7); left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--silver-3);
  display: inline-flex; flex-direction: column; align-items: center; gap: var(--s3);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent 0%, var(--silver-3) 100%);
  animation: scroll-pulse 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* === Section base =============================================== */
.section { padding: var(--s10) 0; }
.section.dark { background: var(--bg-d); color: var(--warm); }
.section.dark .h1, .section.dark .h2, .section.dark .h3 { color: var(--warm); }
.section.dark a { color: inherit; }
.section-head {
  display: flex; flex-direction: column; gap: var(--s5);
  margin-bottom: var(--s9);
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 0; }
.section-head .lede { margin-top: 0; }

/* === Credibility strip (LIGHT) ================================== */
.creds {
  background: var(--paper);
  border-bottom: 1px solid var(--line-l);
  padding: var(--s8) 0;
}
.creds .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.cred {
  display: flex; flex-direction: column; gap: var(--s3);
  padding: 0 var(--s4);
  border-left: 1px solid var(--line-l);
}
.cred:first-child { border-left: 0; padding-left: 0; }
.cred .num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
  font-variant-numeric: tabular-nums;
}
.cred .num small { font-size: 0.5em; font-weight: 500; color: var(--ink-3); }
.cred .lab {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .creds .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .creds .grid { grid-template-columns: 1fr; }
  .cred { border-left: 0; padding-left: 0; padding-top: var(--s5); border-top: 1px solid var(--line-l); }
  .cred:first-child { border-top: 0; padding-top: 0; }
}

/* === Celebrity clientele strip (LIGHT, subtle) =================== */
.celebs {
  background: var(--paper);
  padding: var(--s9) 0;
  border-bottom: 1px solid var(--line-l);
  text-align: center;
}
.celebs-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s5);
}
.celebs-row {
  display: flex; justify-content: center; align-items: center;
  gap: var(--s7); flex-wrap: wrap;
}
.celeb-card {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s2); opacity: 0.85; transition: opacity 220ms ease;
}
.celeb-card:hover { opacity: 1; }
.celeb-thumb {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--paper-3);
  border: 1px solid var(--line-l2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-2);
  font-variation-settings: "opsz" 36;
  overflow: hidden;
}
.celeb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.celeb-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.celeb-car {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === Fleet (LIGHT) ============================================== */
.fleet { padding: var(--s10) 0; background: var(--paper); }
.fleet-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: var(--s6); margin-bottom: var(--s7); flex-wrap: wrap;
}
.fleet-head .right { color: var(--ink-2); font-size: 13px; max-width: 280px; }

/* Filter chips */
.filters {
  display: flex; align-items: center; gap: var(--s2);
  margin-bottom: var(--s7);
  flex-wrap: wrap;
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--line-l);
}
.filter-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--warm); border-color: var(--ink); }
.filter-chip .count {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.filter-chip.active .count { color: var(--silver-2); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.car {
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, box-shadow 320ms ease;
}
.car:hover {
  transform: translateY(-4px);
  border-color: var(--line-l2);
  box-shadow: 0 14px 40px rgba(10,10,10,0.06);
}
.car-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-d);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-l);
}
.car-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.car:hover .car-photo img { transform: scale(1.04); }
.car-cat {
  position: absolute; top: var(--s4); left: var(--s4);
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 10px;
  background: rgba(241, 239, 233, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(241, 239, 233, 0.5);
  border-radius: 999px;
}
.car-cat.sports { color: var(--gold-3); border-color: rgba(140,115,64,0.30); background: rgba(201,169,97,0.08); }
.car-body {
  padding: var(--s5);
  display: flex; flex-direction: column; gap: var(--s4);
  flex: 1;
}
.car-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.car-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--s4);
  border-top: 1px solid var(--line-l);
  margin-top: auto;
}
.car-price {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
  font-variant-numeric: tabular-nums;
}
.car-price small { font-size: 12px; color: var(--ink-3); font-weight: 400; letter-spacing: 0; }
.car-discount {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.car-arrow {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.car:hover .car-arrow { gap: 12px; }

@media (max-width: 1100px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fleet-grid { grid-template-columns: 1fr; } .fleet-head { flex-direction: column; align-items: flex-start; } }

/* === Where you'll go (DARK lifestyle band) ======================= */
.where {
  padding: var(--s10) 0;
  background: var(--bg-d);
  color: var(--warm);
  position: relative; overflow: hidden;
}
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}
.where-text { max-width: 480px; }
.where-text .h2 { color: var(--warm); margin-bottom: var(--s5); }
.where-text .h2 em {
  font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  color: var(--gold-2);
}
.where-text .lede { color: var(--silver); }
.where-text .eyebrow { color: var(--silver-2); margin-bottom: var(--s5); }
.where-text .script-accent {
  display: inline-block; margin-top: var(--s5);
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--gold-2);
  transform: rotate(-2deg);
}
.where-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: var(--s3);
}
.where-tile {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: var(--bg-d2);
  border: 1px solid var(--line-d);
}
.where-tile.tall { grid-row: span 2; }
.where-tile-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--warm);
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  line-height: 1;
  z-index: 2;
}
.where-tile.t1 { background-image: linear-gradient(180deg, rgba(0,0,0,0.10) 40%, rgba(0,0,0,0.65) 100%), url('lifestyle/fh_asset_13.png'); background-size: cover; background-position: center; }   /* Malibu coastal road */
.where-tile.t2 { background-image: linear-gradient(180deg, rgba(0,0,0,0.10) 40%, rgba(0,0,0,0.65) 100%), url('lifestyle/fh_asset_11.png'); background-size: cover; background-position: center; }   /* Venice Beach */
.where-tile.t3 { background-image: linear-gradient(180deg, rgba(0,0,0,0.10) 40%, rgba(0,0,0,0.70) 100%), url('lifestyle/fh_asset_02.png'); background-size: cover; background-position: center; }   /* Hollywood sign */
@media (max-width: 900px) {
  .where-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .where-images { grid-template-rows: 180px 180px; }
}

/* === Reviews (LIGHT) ============================================ */
.reviews { padding: var(--s10) 0; background: var(--paper); }
.reviews-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: var(--s5); flex-wrap: wrap; margin-bottom: var(--s9);
}
.reviews-summary {
  display: inline-flex; align-items: center; gap: var(--s4);
  padding: var(--s3) var(--s5);
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
}
.reviews-summary .stars { color: var(--ink); letter-spacing: 1px; }
.reviews-summary strong { color: var(--ink); font-weight: 600; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.review {
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 16px;
  padding: var(--s7);
  display: flex; flex-direction: column; gap: var(--s5);
}
.review .stars { color: var(--ink); letter-spacing: 1px; font-size: 14px; }
.review blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 24;
}
.review-meta {
  display: flex; align-items: center; gap: var(--s3);
  margin-top: auto;
  padding-top: var(--s5);
  border-top: 1px solid var(--line-l);
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper-3); border: 1px solid var(--line-l2);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  font-family: var(--sans);
}
.review-who { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.review-when { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.reviews-foot { text-align: center; margin-top: var(--s7); font-size: 12px; color: var(--ink-3); }
.reviews-foot a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-l2); padding-bottom: 2px; font-weight: 500; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* === Loyalty (DARK) ============================================= */
.loyalty { padding: var(--s10) 0; background: var(--bg-d); color: var(--warm); }
.loyalty .h2, .loyalty .lede { color: var(--warm); }
.loyalty .lede { color: var(--silver); }
.loyalty .eyebrow { color: var(--silver-2); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.tier {
  background: var(--bg-d2);
  border: 1px solid var(--line-d);
  border-radius: 20px;
  padding: var(--s7);
  display: flex; flex-direction: column; gap: var(--s5);
  position: relative;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease;
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-d2); }
.tier.featured { background: var(--warm); color: var(--ink); border-color: var(--warm); }
.tier.featured .tier-name { color: var(--silver-3); }
.tier.featured .tier-pct { color: var(--ink); }
.tier.featured .tier-req { color: var(--silver-3); }
.tier.featured .tier-divider { background: rgba(0,0,0,0.10); }
.tier.featured .tier-perks li { color: rgba(0,0,0,0.78); }
.tier.featured .tier-perks li::before { color: var(--gold-3); }
.tier.featured .tier-badge {
  position: absolute; top: var(--s5); right: var(--s5);
  font-family: var(--sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: var(--warm);
  padding: 4px 10px; border-radius: 999px;
}
.tier-name {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--silver-2);
}
.tier-pct {
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--warm);
  font-variation-settings: "opsz" 96;
  font-variant-numeric: tabular-nums;
}
.tier-pct small { font-size: 0.36em; font-weight: 600; letter-spacing: 0; vertical-align: middle; margin-left: 4px; }
.tier-req { font-family: var(--sans); font-size: 13px; color: var(--silver); }
.tier-divider { height: 1px; background: var(--line-d); }
.tier-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s3); }
.tier-perks li {
  font-family: var(--sans); font-size: 14px; color: var(--silver);
  display: flex; align-items: flex-start; gap: var(--s3);
}
.tier-perks li::before { content: "✦"; color: var(--warm); flex-shrink: 0; font-weight: 600; }

/* === Club steps — explainer above tier grid =================== */
.club-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-bottom: var(--s8);
  padding-bottom: var(--s7);
  border-bottom: 1px solid var(--line-d);
}
.club-step {
  display: flex; flex-direction: column; gap: var(--s3);
}
.club-step-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-2);
  font-variation-settings: "opsz" 48;
}
.club-step-txt {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--silver);
  max-width: 38ch;
}
.club-step-txt strong { color: var(--warm); font-weight: 600; }
.club-fineprint {
  margin-top: var(--s7);
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-3);
}
@media (max-width: 700px) {
  .club-steps { grid-template-columns: 1fr; gap: var(--s4); }
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

/* === FAQ (LIGHT) ================================================ */
.faq { padding: var(--s10) 0; background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s9);
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-list details { border-top: 1px solid var(--line-l); padding: var(--s5) 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line-l); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s5);
  font-family: var(--display);
  font-size: 20px; font-weight: 500; letter-spacing: -0.018em;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line-l2);
  border-radius: 50%;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 1px, 1px 12px;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ink-3);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, color 320ms ease;
}
.faq-list details[open] summary::after {
  background-size: 12px 1px, 0 0;
  border-color: var(--ink);
  color: var(--ink);
  transform: rotate(180deg);
}
.faq-list details p {
  margin: var(--s4) 0 0;
  font-family: var(--sans);
  font-size: 15px; line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: var(--s7); } }

/* === Final CTA (DARK) =========================================== */
.final {
  position: relative;
  padding: var(--s10) 0;
  background: var(--bg-d);
  color: var(--warm);
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(186,42,29,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.final-inner { position: relative; max-width: 800px; margin: 0 auto; padding: 0 var(--s5); }
.final h2 { color: var(--warm); margin-bottom: var(--s7); }
.final h2 .accent {
  color: var(--red);
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  font-weight: 400;
}
.final .lede { color: var(--silver); }
.final-cta-row {
  display: inline-flex; gap: var(--s4);
  flex-wrap: wrap; justify-content: center;
  margin-top: var(--s7);
}
.final-meta {
  margin-top: var(--s7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-2);
}

/* === Footer (DARK) ============================================== */
footer {
  background: var(--bg-d2);
  color: var(--silver);
  padding: var(--s9) 0 var(--s7);
  border-top: 1px solid var(--line-d);
}
.foot-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--s7);
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--s7);
}
.foot-brand { max-width: 360px; }
.foot-brand .logo { color: var(--warm); margin-bottom: var(--s4); }
.foot-brand .logo-sub { color: var(--silver-3); }
.foot-brand p { font-size: 13px; line-height: 1.6; color: var(--silver-2); margin: 0 0 var(--s5); }
.foot-brand .social { display: flex; gap: var(--s3); }
.foot-brand .social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-d3); border: 1px solid var(--line-d);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--silver); text-decoration: none;
  transition: color 220ms ease, border-color 220ms ease;
}
.foot-brand .social a:hover { color: var(--warm); border-color: var(--line-d2); }
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--silver-3); margin: 0 0 var(--s5);
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s3); }
.foot-col a { color: var(--silver); text-decoration: none; font-size: 14px; }
.foot-col a:hover { color: var(--warm); }
.foot-bottom {
  max-width: var(--container); margin: var(--s8) auto 0;
  padding: var(--s5) var(--s7) 0;
  border-top: 1px solid var(--line-d);
  display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--silver-3);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; padding: 0 var(--s5); } .foot-bottom { padding: var(--s5) var(--s5) 0; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* === INTRO SCREEN — luxury arrival, plays once per session ======= */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.0) 0%, rgba(5,5,5,0.40) 65%, rgba(5,5,5,0.85) 100%),
    linear-gradient(180deg, var(--bg-d) 0%, var(--bg-d) 55%, #2a1a0c 80%, #4a2a14 100%),
    var(--bg-d);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  pointer-events: auto;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
}
/* When the user has dropped in tier1/intro.jpg, the explicit url() bg shows over the gradient */
.intro.has-bg {
  background:
    linear-gradient(180deg, rgba(5,5,5,0.20) 0%, rgba(5,5,5,0.50) 100%),
    url('intro.jpg') center / cover no-repeat,
    var(--bg-d);
}
.intro.hidden { opacity: 0; pointer-events: none; }
.intro-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: var(--s5);
  padding: var(--s7);
  animation: intro-fade-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.intro-mark {
  width: 280px; height: 280px;
  color: var(--gold-2);
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(226,196,138,0.45));
  animation: intro-mark-in 1400ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}
.intro-mark.is-img { display: block; }
.intro-mark.is-svg { display: none; }
.no-logo-img .intro-mark.is-img { display: none; }
.no-logo-img .intro-mark.is-svg { display: block; }
.intro-script {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(42px, 6vw, 76px);
  color: var(--warm);
  line-height: 1;
  letter-spacing: 0.005em;
  animation: intro-fade-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) 400ms both;
}
/* Hide the SVG-companion wordmark + tag once the real logo image loads (it already has them) */
.no-logo-img-only { display: none; }
.no-logo-img .no-logo-img-only { display: inline-block; }
.intro-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 0 var(--s5);
  border-top: 1px solid rgba(226,196,138,0.40);
  border-bottom: 1px solid rgba(226,196,138,0.40);
  padding-top: 8px; padding-bottom: 8px;
  animation: intro-fade-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) 700ms both;
}
.intro-meta {
  margin-top: var(--s5);
  font-family: var(--sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--silver-3);
  animation: intro-fade-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) 1000ms both;
}
.intro-skip {
  position: absolute; bottom: var(--s5); right: var(--s5);
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: transparent; border: 0; padding: 8px 14px;
  cursor: pointer;
  transition: color 200ms ease;
}
.intro-skip:hover { color: var(--warm); }
@keyframes intro-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes intro-mark-in {
  from { opacity: 0; transform: scale(0.85) rotate(-6deg); filter: drop-shadow(0 0 0 rgba(226,196,138,0)); }
  to { opacity: 1; transform: scale(1) rotate(0); filter: drop-shadow(0 0 32px rgba(226,196,138,0.45)); }
}

/* === Reduced motion ============================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .intro { display: none !important; }
}

/* === TEMP: hide placeholders until G sends rates/rating/year — delete this block (and fill real $ + rating) to restore === */
.celebs,
.reviews,
.car-price,
.car-discount { display: none !important; }

/* === Hero backdrop (video removed — "PORSHE" typo + autoplay) === */
.hero { background: radial-gradient(125% 85% at 50% -10%, #17130d 0%, #060606 55%); }

/* === Verified badge ============================================= */
.verified-badge { width: 15px; height: 15px; display: inline-block; vertical-align: -2px; margin-left: 5px; flex-shrink: 0; }

/* === Nav CTA arrow nudge ======================================== */
.nav-cta:hover .btn-arrow { transform: translateX(4px); }

/* === Location / map ============================================= */
.locate { background: var(--bg-d); color: var(--warm); padding: var(--s9) var(--s5); }
.locate-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s7); align-items: center; }
.locate-copy .eyebrow { color: var(--silver); margin-bottom: var(--s5); }
.locate-h { font-family: var(--display); font-weight: 500; font-size: clamp(30px, 3.6vw, 52px); line-height: 1.0; letter-spacing: -0.035em; margin: 0 0 var(--s5); color: var(--warm); }
.locate-h .accent { color: var(--gold-2); font-style: italic; font-weight: 400; }
.locate-addr { font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--silver); margin: 0 0 var(--s7); }
.locate-map { border-radius: 18px; overflow: hidden; border: 1px solid rgba(241,239,233,0.14); box-shadow: 0 24px 60px rgba(0,0,0,0.45); aspect-ratio: 16 / 11; }
.locate-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.25) contrast(1.04) brightness(0.95); }
@media (max-width: 760px) { .locate-inner { grid-template-columns: 1fr; gap: var(--s7); } }

.hero-video { pointer-events: none !important; }
.seo { padding: var(--s9) 0; }
.seo .container { max-width: 1100px; }
.seo-dark1 { background: var(--bg-d2); }
.seo-dark2 { background: var(--bg-d); }
.seo h2 { font-family: var(--display); font-weight: 500; color: var(--warm); font-size: clamp(28px,3.4vw,46px); line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 var(--s5); }
.seo h2 .accent { color: var(--gold-2); font-style: italic; font-weight: 400; }
.seo .eyebrow { color: var(--gold); margin-bottom: var(--s4); }
.seo p.lede { color: var(--silver); font-size: 17px; line-height: 1.7; max-width: 720px; margin: 0 0 var(--s4); }
.seo p.lede strong { color: var(--warm); font-weight: 600; }
.seo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s5); margin-top: var(--s7); }
.seo-card { background: rgba(241,239,233,0.03); border: 1px solid rgba(201,169,97,0.18); border-radius: 16px; padding: var(--s6); }
.seo-card h3 { font-family: var(--display); color: var(--warm); font-size: 22px; margin: 0 0 var(--s3); font-weight: 500; }
.seo-card p { color: var(--silver-2); font-size: 15px; line-height: 1.6; margin: 0; }
.seo-card .ex { display: block; margin-top: var(--s4); color: var(--gold-2); font-size: 13px; letter-spacing: 0.01em; }
.seo-feat { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s5); margin-top: var(--s7); }
.seo-feat .num { font-family: var(--display); color: var(--gold-2); font-size: 30px; display: block; margin-bottom: var(--s3); }
.seo-feat h3 { font-family: var(--sans); color: var(--warm); font-size: 16px; margin: 0 0 var(--s2); font-weight: 600; }
.seo-feat p { color: var(--silver-2); font-size: 14px; line-height: 1.55; margin: 0; }
.seo-faq { display: grid; gap: var(--s3); margin-top: var(--s7); max-width: 820px; }
.seo-faq details { background: rgba(241,239,233,0.04); border: 1px solid rgba(201,169,97,0.16); border-radius: 12px; padding: var(--s4) var(--s5); }
.seo-faq summary { font-family: var(--display); color: var(--warm); font-size: 18px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s4); }
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary::after { content: '+'; color: var(--gold); font-size: 24px; line-height: 1; }
.seo-faq details[open] summary::after { content: '\2013'; }
.seo-faq p { color: var(--silver); font-size: 15px; line-height: 1.7; margin: var(--s4) 0 0; }
.seo-cta { margin-top: var(--s7); display: flex; gap: var(--s4); flex-wrap: wrap; }
@media (max-width: 860px){ .seo-grid, .seo-feat { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .seo-grid, .seo-feat { grid-template-columns: 1fr; } }

/* ===== landing pages (added 2026-05-26) ===== */
body.dark { background: var(--bg-d); }
.lp-hero { min-height: 60vh; display: flex; align-items: center; padding: var(--s10) 0 var(--s9); background: linear-gradient(rgba(5,5,5,.70), rgba(5,5,5,.90)), url('hero-gta2-poster.jpg') center/cover; }
.lp-hero h1 { font-family: var(--display); font-weight: 500; color: var(--warm); font-size: clamp(34px,5vw,64px); line-height: 1.02; letter-spacing: -.035em; margin: 0 0 var(--s4); max-width: 16ch; }
.lp-hero h1 .accent { color: var(--gold-2); font-style: italic; font-weight: 400; }
.lp-hero p { color: var(--silver); font-size: 18px; line-height: 1.6; max-width: 620px; margin: 0 0 var(--s6); }
.lp-foot { background: var(--bg-d); border-top: 1px solid rgba(201,169,97,.18); padding: var(--s8) 0 var(--s7); }
.lp-foot .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--s7); }
.lp-foot h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--gold); margin: 0 0 var(--s3); }
.lp-foot a { display: block; color: var(--silver-2); text-decoration: none; font-size: 14px; line-height: 1.95; }
.lp-foot a:hover { color: var(--warm); }
.lp-foot .brand { color: var(--silver); font-size: 14px; line-height: 1.7; margin: 0; }
.lp-foot .legal { margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid rgba(255,255,255,.07); color: var(--silver-3); font-size: 12px; }
.lp-list { list-style: none; padding: 0; margin: var(--s5) 0 0; display: grid; gap: var(--s3); max-width: 680px; }
.lp-list li { color: var(--silver); font-size: 16px; line-height: 1.5; padding-left: var(--s5); position: relative; }
.lp-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--gold); }
@media (max-width: 760px) { .lp-foot .cols { grid-template-columns: 1fr; gap: var(--s6); } }
