/* ============================================================
   DG RIVIERA LIMOUSINE — style.css
   ============================================================ */

:root {
  --black:      #080808;
  --deep:       #0E0E0E;
  --card:       #131313;
  --border:     #1E1E1E;
  --gold:       #C8A96E;
  --gold-light: #E2C98A;
  --gold-pale:  #F0E0B8;
  --cream:      #F5EFE2;
  --muted:      #6B6257;
  --white:      #FAFAF8;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (min-width: 1024px) { html { font-size: 18px; } }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── CURSOR (desktop seulement) ── */
@media (hover: hover) and (pointer: fine) {
  body, a, button, select, input, textarea { cursor: none !important; }
}
@media (hover: none) {
  .cursor, .cursor-ring { display: none !important; }
}
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(200,169,110,.5);
  transition: width .25s, height .25s, opacity .2s;
  opacity: 0;
}
.cursor.big { width: 20px; height: 20px; }
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,.4); border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .2s;
  opacity: 0;
}
.cursor-ring.big { width: 60px; height: 60px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s, padding .4s, border-color .4s;
}
nav.scrolled {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-svg { height: 72px; width: auto; transition: height .4s; }
nav.scrolled .logo-svg { height: 56px; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase; text-decoration: none;
  color: rgba(245,239,226,.6); position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .4s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-phone {
  font-family: 'Jost', sans-serif; font-size: .72rem; font-weight: 400;
  letter-spacing: .12em; text-decoration: none; color: var(--cream);
  display: flex; align-items: center; gap: 7px;
  transition: color .3s;
}
.nav-phone:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Jost', sans-serif; font-size: .65rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase; text-decoration: none;
  color: var(--black); background: var(--gold); padding: 10px 24px;
  transition: background .3s, box-shadow .3s;
}
.nav-cta:hover { background: var(--gold-light); box-shadow: 0 0 30px rgba(200,169,110,.2); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: .3s; }

/* ── NAV OVERLAY MOBILE ── */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(8,8,8,.98); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay a {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300;
  color: var(--cream); text-decoration: none; letter-spacing: .1em;
  transition: color .3s;
}
.nav-overlay a:hover { color: var(--gold); }
.nav-close {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Jost', sans-serif; font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted);
  background: none; border: none;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, #1a1400, #2a1f00, #1a1400);
  border-bottom: 1px solid rgba(200,169,110,.2);
  padding: 9px 60px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  transform: translateY(-100%); transition: transform .5s ease;
}
.urgency-bar.show { transform: none; }
nav.with-bar { margin-top: 38px; }
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,.6);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.urgency-text {
  font-family: 'Jost', sans-serif; font-size: .63rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-pale);
}
.urgency-cta {
  font-family: 'Jost', sans-serif; font-size: .6rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 4px 14px;
  text-decoration: none; transition: background .3s;
}
.urgency-cta:hover { background: var(--gold-light); }
.urgency-close {
  background: none; border: none; color: var(--muted); font-size: .9rem;
  position: absolute; right: 20px; transition: color .3s;
}
.urgency-close:hover { color: var(--cream); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(5,5,5,.5) 0%,
    rgba(5,5,5,.2) 40%,
    rgba(5,5,5,.95) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: .6; pointer-events: none;
}
.hero-bg::after {
  content: ''; position: absolute;
  left: 60px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: .35;
}
.hero-sweep {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,169,110,.05) 0%, transparent 70%);
  animation: sweep 8s ease-in-out infinite alternate;
}
@keyframes sweep { from{opacity:.6;transform:scale(1)} to{opacity:1;transform:scale(1.04)} }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px; padding: 0 40px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif; font-size: .65rem; font-weight: 400;
  letter-spacing: .5em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 7rem); font-weight: 300;
  line-height: 1; letter-spacing: .02em; color: var(--white);
  margin-bottom: 12px;
  opacity: 0; animation: fadeUp .9s .5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-pale); }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 300;
  font-style: italic; letter-spacing: .06em;
  color: rgba(245,239,226,.5); margin-bottom: 44px;
  opacity: 0; animation: fadeUp .9s .7s forwards;
}
.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 44px;
  opacity: 0; animation: fadeUp .9s .8s forwards;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s .9s forwards;
}
.btn-primary {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase; text-decoration: none;
  color: var(--black); background: var(--gold); padding: 16px 40px;
  display: inline-block; transition: background .3s, box-shadow .4s, transform .3s;
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 8px 50px rgba(200,169,110,.3); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase; text-decoration: none;
  color: var(--cream); border: 1px solid rgba(245,239,226,.25);
  padding: 16px 40px; display: inline-block;
  transition: border-color .3s, color .3s, transform .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp .9s 1.1s forwards;
}
.hero-scroll span {
  font-family: 'Jost', sans-serif; font-size: .55rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── QUICK QUOTE WIDGET ── */
.quick-quote-wrap {
  opacity: 0; animation: fadeUp .9s 1s forwards;
  margin-bottom: 28px;
}
.quick-quote {
  background: rgba(8,8,8,.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,169,110,.2);
  display: inline-flex; align-items: stretch;
  max-width: 760px; width: 100%;
  position: relative;
}
.quick-quote::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.qq-step { display: none; width: 100%; }
.qq-step.active { display: flex; }
.qq-field {
  flex: 1; display: flex; flex-direction: column;
  border-right: 1px solid rgba(200,169,110,.1); padding: 14px 18px;
}
.qq-label {
  font-family: 'Jost', sans-serif; font-size: .5rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.qq-field select, .qq-field input {
  background: transparent; border: none; outline: none;
  font-family: 'Jost', sans-serif; font-size: .8rem; font-weight: 300;
  color: var(--cream); width: 100%; -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.qq-field select option { background: #0E0E0E; color: var(--cream); }
.qq-field input::placeholder { color: rgba(107,98,87,.7); }
.qq-btn {
  font-family: 'Jost', sans-serif; font-size: .62rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--gold); color: var(--black);
  border: none; padding: 0 24px; white-space: nowrap;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  transition: background .3s;
}
.qq-btn:hover { background: var(--gold-light); }
.qq-btn.wa { background: #25D366; color: #fff; }
.qq-btn.wa:hover { background: #22c55e; }
.qq-progress {
  display: flex; align-items: center; gap: 8px; padding: 14px 18px;
  border-right: 1px solid rgba(200,169,110,.1); flex-shrink: 0;
}
.qq-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: background .3s; }
.qq-dot.done { background: var(--gold); }
.qq-back {
  background: none; border: none; color: var(--muted);
  font-family: 'Jost', sans-serif; font-size: .55rem; letter-spacing: .15em;
  text-transform: uppercase; padding: 14px 14px; flex-shrink: 0;
  transition: color .3s;
}
.qq-back:hover { color: var(--cream); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: stretch;
}
.trust-item {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 24px 32px; position: relative;
  transition: background .3s;
}
.trust-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px; background: var(--border);
}
.trust-item:hover { background: rgba(200,169,110,.02); }
.trust-icon { font-size: 1.2rem; color: var(--gold); }
.trust-label {
  font-family: 'Jost', sans-serif; font-size: .65rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white);
}
.trust-detail {
  font-family: 'Jost', sans-serif; font-size: .6rem; letter-spacing: .1em;
  color: var(--muted); margin-top: 2px;
}
.trust-stars { color: #FBBC04; font-size: .85rem; letter-spacing: 2px; }
.trust-score {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 300; color: var(--white); line-height: 1;
}

/* ── SECTIONS GENERIC ── */
section { padding: 120px 60px; }
.inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'Jost', sans-serif; font-size: .6rem; font-weight: 400;
  letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15;
  color: var(--white); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-pale); }
.section-lead {
  font-family: 'Jost', sans-serif; font-size: .9rem; font-weight: 300;
  line-height: 1.85; color: var(--muted); max-width: 580px;
}

/* ── ABOUT ── */
.about { background: var(--deep); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.about-visual { position: relative; height: 580px; }
.about-img-frame {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1710 0%, #0f0d0a 100%);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-img-frame::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 40%, rgba(200,169,110,.08) 0%, transparent 70%);
}
.about-car-icon { font-size: 5rem; opacity: .12; }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-accent { position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; border: 1px solid var(--gold); opacity: .2; }
.about-accent2 { position: absolute; top: -20px; left: -20px; width: 60px; height: 60px; border: 1px solid var(--gold); opacity: .15; }
.about-stat-strip {
  position: absolute; bottom: 30px; left: 30px; right: 30px;
  background: rgba(8,8,8,.88); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-top: 2px solid var(--gold);
  padding: 20px 28px; display: flex; gap: 32px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 300; color: var(--gold); line-height: 1; display: block;
}
.stat-lbl {
  font-family: 'Jost', sans-serif; font-size: .55rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; display: block;
}
.about-features { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.about-features li {
  font-family: 'Jost', sans-serif; font-size: .8rem; font-weight: 300;
  letter-spacing: .05em; color: rgba(245,239,226,.7);
  display: flex; align-items: center; gap: 14px;
}
.about-features li::before { content: ''; flex-shrink: 0; width: 18px; height: 1px; background: var(--gold); }

/* ── SERVICES ── */
.services { background: var(--black); }
.services-header { max-width: 600px; margin-bottom: 70px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 48px 40px 44px; position: relative; overflow: hidden;
  transition: border-color .4s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,169,110,.04) 0%, transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { border-color: rgba(200,169,110,.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
  font-weight: 300; color: rgba(200,169,110,.1); line-height: 1; margin-bottom: 16px;
}
.service-icon { font-size: 1.8rem; margin-bottom: 20px; opacity: .85; display: block; }
.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
  font-weight: 400; color: var(--white); margin-bottom: 14px; line-height: 1.2;
}
.service-desc {
  font-family: 'Jost', sans-serif; font-size: .85rem; font-weight: 300;
  line-height: 1.8; color: var(--muted); margin-bottom: 24px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-family: 'Jost', sans-serif; font-size: .55rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,169,110,.2); padding: 4px 10px;
}

/* ── FLEET ── */
.fleet { background: var(--deep); }
.fleet-header { max-width: 560px; margin-bottom: 70px; }
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.fleet-card {
  background: var(--card); border: 1px solid var(--border);
  display: flex; overflow: hidden; min-height: 220px;
  transition: border-color .4s;
}
.fleet-card:hover { border-color: rgba(200,169,110,.3); }
.fleet-visual {
  width: 200px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a1710, #0d0b09);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.fleet-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(200,169,110,.08) 0%, transparent 70%);
}
.fleet-car-emoji { font-size: 2.8rem; opacity: .4; }
.fleet-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.fleet-photo.active { opacity: 1; }
.fleet-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Jost', sans-serif; font-size: .5rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 3px 8px; z-index: 2;
}
.fleet-info { padding: 40px 44px; flex: 1; }
.fleet-brand {
  font-family: 'Jost', sans-serif; font-size: .55rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.fleet-model {
  font-family: 'Cormorant Garamond', serif; font-size: 1.9rem;
  font-weight: 300; color: var(--white); margin-bottom: 14px; line-height: 1;
}
.fleet-desc {
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 300;
  line-height: 1.75; color: var(--muted); margin-bottom: 20px;
}
.fleet-specs { display: flex; gap: 24px; }
.fleet-spec-val {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-weight: 300; color: var(--gold-pale); display: block;
}
.fleet-spec-lbl {
  font-family: 'Jost', sans-serif; font-size: .55rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--black); }
.testimonials-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 70px; gap: 40px; flex-wrap: wrap;
}
.google-overall {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--border);
  border-top: 2px solid var(--gold); padding: 16px 24px;
}
.google-score-big {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 300; color: var(--white); line-height: 1;
}
.google-stars-row { color: #FBBC04; font-size: 1rem; letter-spacing: 2px; }
.google-count {
  font-family: 'Jost', sans-serif; font-size: .58rem;
  letter-spacing: .1em; color: var(--muted); margin-top: 4px;
}
.google-source {
  font-family: 'Jost', sans-serif; font-size: .55rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(107,98,87,.5); margin-top: 6px; display: block;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.review-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 40px 36px; position: relative; overflow: hidden;
  transition: border-color .4s;
}
.review-card:hover { border-color: rgba(200,169,110,.25); }
.review-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  font-weight: 300; color: rgba(200,169,110,.07); line-height: 1; pointer-events: none;
}
.review-stars { color: #FBBC04; font-size: .9rem; letter-spacing: 2px; margin-bottom: 18px; }
.review-text {
  font-family: 'Jost', sans-serif; font-size: .82rem; font-weight: 300;
  line-height: 1.8; color: rgba(245,239,226,.75); margin-bottom: 24px; font-style: italic;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--muted));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--black);
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-name {
  font-family: 'Jost', sans-serif; font-size: .72rem;
  font-weight: 400; letter-spacing: .1em; color: var(--white);
}
.review-date { font-family: 'Jost', sans-serif; font-size: .58rem; color: var(--muted); margin-top: 2px; }
.review-verified {
  font-family: 'Jost', sans-serif; font-size: .5rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-top: 4px; display: block;
}

/* ── CONCIERGE ── */
.concierge { background: var(--deep); }
.concierge-header { max-width: 560px; margin-bottom: 70px; }
.concierge-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.conc-card {
  padding: 44px 36px; background: var(--card);
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background .4s;
}
.conc-card:last-child { border-right: none; }
.conc-card:hover { background: #161616; }
.conc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .5s;
}
.conc-card:hover::after { transform: scaleX(1); }
.conc-icon { font-size: 1.8rem; margin-bottom: 24px; display: block; }
.conc-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-weight: 400; color: var(--white); margin-bottom: 12px;
}
.conc-desc {
  font-family: 'Jost', sans-serif; font-size: .75rem;
  font-weight: 300; line-height: 1.75; color: var(--muted);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0d0b07 0%, #1a1508 50%, #0d0b07 100%);
  border-top: 1px solid rgba(200,169,110,.15);
  border-bottom: 1px solid rgba(200,169,110,.15);
  padding: 90px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(200,169,110,.05) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300;
  color: var(--white); margin-bottom: 12px;
}
.cta-band-sub {
  font-family: 'Jost', sans-serif; font-size: .85rem; font-weight: 300;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 40px;
}
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  color: #fff; background: #25D366; padding: 15px 36px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .3s, transform .3s;
}
.btn-whatsapp:hover { background: #22c55e; transform: translateY(-2px); }
.btn-phone {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  color: var(--cream); border: 1px solid rgba(245,239,226,.2);
  padding: 15px 36px; display: inline-flex; align-items: center; gap: 10px;
  transition: color .3s, border-color .3s, transform .3s;
}
.btn-phone:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

/* ── RESERVATION ── */
.reservation { background: var(--deep); }
.reservation-inner { max-width: 900px; margin: 0 auto; }
.reservation-header { text-align: center; margin-bottom: 60px; }
.reservation-header .section-eyebrow,
.reservation-header .section-title { text-align: center; }
.reservation-header .section-lead { margin: 0 auto; text-align: center; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border); margin-bottom: 2px;
}
.form-field { background: var(--card); display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Jost', sans-serif; font-size: .55rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  padding: 20px 24px 0; display: block;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent; border: none; outline: none;
  font-family: 'Jost', sans-serif; font-size: .85rem; font-weight: 300;
  color: var(--cream); padding: 8px 24px 20px; width: 100%;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-field select option { background: var(--card); color: var(--cream); }
.form-field textarea { min-height: 120px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(107,98,87,.6); }
.form-submit {
  width: 100%; font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  border: none; padding: 22px; transition: background .3s, box-shadow .4s;
}
.form-submit:hover { background: var(--gold-light); box-shadow: 0 8px 50px rgba(200,169,110,.3); }
.form-note {
  font-family: 'Jost', sans-serif; font-size: .65rem;
  color: var(--muted); text-align: center; margin-top: 20px; letter-spacing: .08em;
}
.form-note a { color: var(--gold); text-decoration: none; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 70px 60px 40px;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-desc {
  font-family: 'Jost', sans-serif; font-size: .78rem;
  font-weight: 300; line-height: 1.8; color: var(--muted); max-width: 280px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif; font-size: .6rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 300;
  color: var(--muted); text-decoration: none; transition: color .3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 300;
  color: var(--muted); text-decoration: none; transition: color .3s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-wa { color: #25D366 !important; margin-top: 6px; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 30px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-legal {
  font-family: 'Jost', sans-serif; font-size: .62rem;
  font-weight: 300; letter-spacing: .1em; color: rgba(107,98,87,.5);
}
.footer-legal a { color: rgba(107,98,87,.5); text-decoration: none; }
.footer-gold-line { width: 40px; height: 1px; background: var(--gold); opacity: .4; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  display: flex; align-items: center; text-decoration: none;
}
.wa-icon {
  width: 56px; height: 56px; background: #25D366;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.35); flex-shrink: 0;
  animation: waBounce 3s ease-in-out infinite;
  transition: box-shadow .3s;
}
.wa-label {
  background: #25D366;
  font-family: 'Jost', sans-serif; font-size: .62rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  height: 56px; display: flex; align-items: center;
  max-width: 0; overflow: hidden; white-space: nowrap;
  transition: max-width .4s ease, padding .4s ease;
}
.whatsapp-float:hover .wa-label { max-width: 200px; padding: 0 16px; }
.whatsapp-float:hover .wa-icon { animation: none; box-shadow: 0 8px 36px rgba(37,211,102,.5); }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ── MOBILE STICKY BAR ── */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(8,8,8,.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); padding: 12px 20px; gap: 10px;
}
.mob-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none; padding: 13px 0;
}
.mob-btn.call { color: var(--white); background: var(--card); border: 1px solid var(--border); }
.mob-btn.wa   { color: #fff; background: #25D366; }

/* ── EXIT INTENT POPUP ── */
.exit-popup {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.72); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.exit-popup.show { opacity: 1; pointer-events: all; }
.exit-popup-box {
  background: var(--deep); border: 1px solid rgba(200,169,110,.25);
  border-top: 2px solid var(--gold);
  max-width: 500px; width: 90%; padding: 52px 48px;
  position: relative; text-align: center;
  transform: translateY(20px); transition: transform .4s;
}
.exit-popup.show .exit-popup-box { transform: none; }
.exit-popup-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; color: var(--muted); font-size: 1.2rem; transition: color .3s;
}
.exit-popup-close:hover { color: var(--gold); }
.exit-popup-eyebrow {
  font-family: 'Jost', sans-serif; font-size: .55rem; letter-spacing: .45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.exit-popup-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.exit-popup-title em { font-style: italic; color: var(--gold-pale); }
.exit-popup-text {
  font-family: 'Jost', sans-serif; font-size: .8rem; font-weight: 300;
  line-height: 1.75; color: var(--muted); margin-bottom: 32px;
}
.exit-popup-wa {
  font-family: 'Jost', sans-serif; font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none; color: #fff;
  background: #25D366; padding: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 10px; transition: background .3s;
}
.exit-popup-wa:hover { background: #22c55e; }
.exit-popup-form { display: flex; border: 1px solid var(--border); margin-bottom: 12px; }
.exit-popup-input {
  flex: 1; background: var(--card); border: none; outline: none;
  font-family: 'Jost', sans-serif; font-size: .78rem; color: var(--cream); padding: 12px 16px;
}
.exit-popup-input::placeholder { color: rgba(107,98,87,.6); }
.exit-popup-submit {
  background: var(--gold); border: none; color: var(--black);
  font-family: 'Jost', sans-serif; font-size: .62rem; letter-spacing: .15em;
  text-transform: uppercase; padding: 12px 20px; white-space: nowrap; transition: background .3s;
}
.exit-popup-submit:hover { background: var(--gold-light); }
.exit-popup-skip {
  font-family: 'Jost', sans-serif; font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  background: none; border: none; transition: color .3s;
}
.exit-popup-skip:hover { color: var(--cream); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  section { padding: 90px 40px; }
  nav { padding: 24px 40px; }
  nav.scrolled { padding: 16px 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 380px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .concierge-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 24px 90px; }
  .hero-bg::after { display: none; }
  .trust-bar { flex-direction: column; }
  .trust-item:not(:last-child)::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-card { flex-direction: column; }
  .fleet-visual { width: 100%; height: 160px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .concierge-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .testimonials-header { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .whatsapp-float { bottom: 80px; }
  .mobile-sticky { display: flex; }
  .urgency-bar { padding: 9px 16px; font-size: .58rem; }
  .exit-popup-box { padding: 36px 28px; }
}
