/* ============================================
   ALPHA EXECUTIVE LIMOUSINE — DESIGN SYSTEM
   ============================================ */

:root {
  /* Backgrounds */
  --color-page:          #FAF7F0;
  --color-surface:       #FFFFFF;
  --color-surface-alt:   #F5EFE6;
  --color-input:         #FDF9F5;
  --color-parchment:     #EEE5D6;
  --color-gold-tint:     #FBF4E8;

  /* Deep slate */
  --color-slate:         #1E2835;
  --color-slate-mid:     #2E3E52;
  --color-slate-light:   #8A9BB0;
  --color-slate-muted:   #6B7A8D;
  --color-slate-border:  rgba(255,255,255,0.09);
  --color-slate-tint:    #EEF1F5;

  /* Gold */
  --color-gold:          #D4AF6E;
  --color-gold-hover:    #C49A50;
  --color-gold-active:   #A07840;
  --color-gold-text:     #8B6914;
  --color-gold-on-slate: #D4AF6E;
  --color-gold-glow:     rgba(212,175,110,0.35);

  /* Text on light */
  --color-text-primary:  #1E2835;
  --color-text-secondary:#6B6258;
  --color-text-muted:    #9C9088;
  --color-text-hint:     #C4B8AD;

  /* Borders on light */
  --color-border:        #E2D9CC;
  --color-border-subtle: #EDE6DC;
  --color-border-gold:   #D4AF6E;
  --color-border-slate:  rgba(30,40,53,0.10);

  --nav-h:        70px;
  --ease-luxury:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  background: var(--color-page);
}

body {
  background: var(--color-page);
  color: var(--color-text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
#cursor-outer {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid var(--color-slate);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.7);
  transition: width 0.3s var(--ease-luxury),
              height 0.3s var(--ease-luxury),
              opacity 0.3s,
              border-color 0.3s;
  opacity: 0;
}
#cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--color-slate);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.3s;
}
body.cursor-ready #cursor-outer,
body.cursor-ready #cursor-dot { opacity: 1; }
body.cursor-hover #cursor-outer {
  width: 44px; height: 44px;
  border-color: rgba(212,175,110,0.6);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
}
@media (pointer: coarse) {
  #cursor-outer, #cursor-dot { display: none; }
}

/* ============================================
   LOADER
   ============================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--color-page);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#loader.exit {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-logo {
  width: clamp(180px, 40vw, 280px);
  height: auto;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards 0.05s;
  margin-bottom: 0.5rem;
  filter: brightness(0) saturate(100%) invert(74%) sepia(44%) saturate(380%) hue-rotate(4deg) brightness(80%);
}
.loader-line {
  width: 0;
  height: 1px;
  background: var(--color-gold);
  margin: 1rem auto;
  animation: expandLine 0.35s ease forwards 0.3s;
}
.loader-tagline {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1s;
}

@keyframes expandLine { to { width: 120px; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVIGATION
   ============================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 800;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
#nav.scrolled {
  background: var(--color-gold);
  border-bottom: 1px solid rgba(139,105,20,0.25);
  box-shadow: 0 2px 20px rgba(139,105,20,0.22);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-wrap { text-decoration: none; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 0; padding-top: 0; margin-top: -6px; }
.nav-logo-img {
  width: auto;
  height: auto;
  max-height: 41px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(74%) sepia(44%) saturate(380%) hue-rotate(4deg) brightness(80%);
  transition: filter 0.35s ease;
}
#nav.scrolled .nav-logo-img {
  filter: brightness(0);
}
.nav-logo-text { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: -13px; line-height: 1; }
.nav-logo {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--color-gold-on-slate);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.35s;
}
#nav.scrolled .nav-logo { color: var(--color-slate); }
.nav-logo-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  white-space: nowrap;
  transition: color 0.35s;
}
#nav.scrolled .nav-logo-tag { color: rgba(30,40,53,0.60); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  align-self: center;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}
#nav.scrolled .nav-links a { color: var(--color-slate); }
.nav-links a:hover { color: #FFFFFF; }
#nav.scrolled .nav-links a:hover { color: rgba(30,40,53,0.65); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
#nav.scrolled .nav-links a::after { background: var(--color-slate); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid rgba(255,255,255,0.45) !important;
  color: rgba(255,255,255,0.85) !important;
  border-radius: 6px;
  padding: 7px 16px !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.10) !important;
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,0.70) !important;
}
#nav.scrolled .nav-cta {
  border-color: var(--color-slate) !important;
  color: var(--color-slate) !important;
}
#nav.scrolled .nav-cta:hover {
  background: var(--color-slate) !important;
  color: var(--color-gold) !important;
  border-color: var(--color-slate) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.82);
  transition: transform 0.4s ease, opacity 0.3s, background 0.35s;
}
#nav.scrolled .hamburger span { background: var(--color-slate); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  height: 130%;
  top: 0;
  will-change: transform;
  background: var(--color-slate);
}

/* ── VIDEO ── */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.08);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  will-change: transform, opacity;
  animation: videoReveal 1.8s var(--ease-luxury) forwards 0.3s;
}
@keyframes videoReveal {
  from { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1.0);  }
}

.hero-grade {
  position: absolute;
  inset: 0;
  background: rgba(30,40,53,0.22);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,26,38,0.50);
  opacity: 0;
  animation: overlayIn 1.2s ease forwards 0.3s;
  will-change: opacity;
}
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-bottom-fade {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, var(--color-page));
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
  will-change: transform, opacity;
}
.hero-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-luxury) forwards 0.9s;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-gold);
  letter-spacing: 0.05em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.0s var(--ease-luxury) forwards 1.0s;
  margin-bottom: 1.25rem;
}
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.0s var(--ease-luxury) forwards 1.1s;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.0s var(--ease-luxury) forwards 1.2s;
}
/* Ghost button specifically inside the hero (over dark overlay) */
.hero .btn-ghost {
  border-color: rgba(255,255,255,0.50);
  color: rgba(255,255,255,0.82);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.80);
  color: #FFFFFF;
  transform: translateY(-1px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 2s;
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-on-slate);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.1); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gold);
  color: var(--color-slate);
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(212,175,110,0.38), 0 1px 4px rgba(212,175,110,0.20);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(30deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: transform 0.6s ease;
}
.btn-primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,110,0.50), 0 2px 8px rgba(212,175,110,0.28);
}
.btn-primary:hover::after { transform: translateX(400%); }
.btn-primary:active {
  background: var(--color-gold-active);
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(212,175,110,0.25);
}
.btn-primary.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}
.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-text);
  background: var(--color-gold-tint);
  transform: translateY(-1px);
}
.btn-ghost.btn-sm { padding: 9px 18px; font-size: 11px; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  overflow: hidden;
}
.section-title span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s var(--ease-luxury);
}
.gold-rule {
  width: 0;
  height: 1px;
  background: var(--color-gold);
  margin: 1.25rem 0 2rem;
  transition: width 1s var(--ease-luxury) 0.4s;
}
.anim-section.visible .gold-rule { width: 48px; }
.section-sub {
  max-width: 560px;
  color: var(--color-text-secondary);
  font-weight: 300;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

/* Section entrance */
.anim-section { opacity: 1; }
.anim-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-luxury) var(--card-delay, 0s),
              transform 0.9s var(--ease-luxury) var(--card-delay, 0s);
}
.anim-section.visible .anim-card {
  opacity: 1;
  transform: translateY(0);
}
.anim-fleet-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}
.anim-fleet-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-luxury) 0.15s, transform 1s var(--ease-luxury) 0.15s;
}
.anim-section.visible .anim-fleet-left,
.anim-section.visible .anim-fleet-right {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
  padding: 100px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.booking-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(120,90,40,0.09), 0 1px 4px rgba(120,90,40,0.06);
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.full-width { grid-column: 1 / -1; }

/* Service type selector */
.service-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-opt { cursor: pointer; }
.service-opt input { display: none; }
.service-opt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-luxury);
  text-align: center;
}
.service-opt-inner svg { color: var(--color-text-muted); transition: color 0.3s; }
.service-opt:hover .service-opt-inner {
  border-color: var(--color-gold);
  background: var(--color-gold-tint);
  transform: translateY(-4px);
}
.service-opt input:checked + .service-opt-inner {
  border-color: var(--color-gold);
  background: var(--color-gold-tint);
}
.service-opt input:checked + .service-opt-inner svg { color: var(--color-gold); }
.opt-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 0.04em;
}
.opt-desc {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* Form inputs */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.label-opt { font-size: 9px; opacity: 0.6; }
.input-icon-wrap { position: relative; }

/* ── ADDRESS AUTOCOMPLETE DROPDOWN ── */
.ac-wrap { position: relative; }
.ac-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(30,40,53,0.12);
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  list-style: none;
  padding: 4px 0;
}
.ac-item {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--color-text-primary);
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.15s;
}
.ac-item:hover, .ac-item.ac-active {
  background: var(--color-gold-tint);
}
.ac-item.ac-empty {
  color: var(--color-text-muted);
  font-style: italic;
  cursor: default;
}
.ac-item.ac-empty:hover { background: none; }
.input-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}
.input-icon-wrap .form-input { padding-left: 38px; }
.form-input {
  width: 100%;
  background: var(--color-input);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-primary);
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  box-shadow: inset 0 1px 3px rgba(120,90,40,0.06);
}
.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(30,40,53,0.08), inset 0 1px 3px rgba(120,90,40,0.06);
}
.form-input.input-error { border-color: #c0392b !important; }
.form-input::placeholder { color: var(--color-text-hint); }

.req-star { color: var(--color-gold); margin-left: 2px; font-size: 11px; }
.form-required-note {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: -0.5rem;
}
.field-error {
  display: block;
  font-size: 10px;
  color: #c0392b;
  letter-spacing: 0.04em;
  margin-top: 4px;
  min-height: 14px;
  transition: opacity 0.2s;
}
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 80px; }

/* ── Custom date picker ─────────────────────────────────────────────────── */
.datepick-wrap { position: relative; }
.datepick-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  color: var(--color-text-hint);
}
.datepick-trigger.has-value { color: var(--color-text-primary); }
.datepick-icon { flex-shrink: 0; color: var(--color-gold); opacity: 0.7; }

.cal-popup {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 300;
  width: 288px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(120,90,40,0.14), 0 2px 8px rgba(120,90,40,0.08);
}
.cal-popup.open { display: block; }

.cal-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.cal-nav-btn {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-gold-text);
  width: 28px; height: 28px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.cal-nav-btn:hover { background: var(--color-gold-tint); border-color: var(--color-gold); }
.cal-month-lbl {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--color-text-primary);
  letter-spacing: 0.06em;
}
.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cal-dow-row span {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  padding: 4px 0;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  text-align: center;
  padding: 7px 0;
  border-radius: 6px;
  font-size: 13px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.cal-day:hover:not(.cal-day-disabled):not(.cal-day-selected):not(.cal-day-empty) {
  background: var(--color-gold-tint);
  color: var(--color-gold-text);
}
.cal-day-today { color: var(--color-gold-text); font-weight: 700; }
.cal-day-selected {
  background: var(--color-gold);
  color: var(--color-slate);
  font-weight: 700;
}
.cal-day-disabled { color: var(--color-text-hint); cursor: not-allowed; }
.cal-day-empty { cursor: default; }

/* ── Custom time picker ─────────────────────────────────────────────────── */
.time-popup { width: 264px; padding: 0.85rem; }

.timepick-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
}
.timepick-header span {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.timepick-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.timepick-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 180px;
  overflow-y: auto;
  scrollbar-width: none;
}
.timepick-col::-webkit-scrollbar { display: none; }

.tp-item {
  text-align: center;
  padding: 7px 4px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
  flex-shrink: 0;
}
.tp-item:hover:not(.tp-item-selected) {
  background: var(--color-gold-tint);
  color: var(--color-gold-text);
}
.tp-item-selected {
  background: var(--color-gold);
  color: var(--color-slate);
  font-weight: 700;
}

/* Booking confirmation */
.booking-confirm {
  text-align: center;
  padding: 3rem 2rem;
}
.confirm-icon {
  font-size: 2rem;
  color: var(--color-gold-text);
  margin-bottom: 1.25rem;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.booking-confirm h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.75rem;
  color: var(--color-gold-text);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.booking-confirm p {
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* ============================================
   BOOKING WIZARD
   ============================================ */

/* Progress bar */
.wiz-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-subtle);
}
.wiz-prog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.wiz-prog-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s ease;
}
.wiz-prog-item.active .wiz-prog-dot {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-slate);
}
.wiz-prog-item.done .wiz-prog-dot {
  border-color: var(--color-gold-text);
  background: var(--color-gold-tint);
  color: var(--color-gold-text);
}
.wiz-prog-lbl {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.35s;
}
.wiz-prog-item.active .wiz-prog-lbl,
.wiz-prog-item.done .wiz-prog-lbl { color: var(--color-gold-text); }
.wiz-prog-track {
  flex: 1;
  height: 1px;
  background: var(--color-border);
  min-width: 40px;
  max-width: 80px;
  margin-bottom: 18px;
  transition: background 0.35s ease;
}
.wiz-prog-track.active { background: var(--color-gold); }

/* Wizard panels */
.wiz-panel { display: block; animation: wizSlideIn 0.4s ease; }
.wiz-hidden { display: none !important; }
@keyframes wizSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wiz-hint {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}

/* Back bar */
.wiz-back-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.wiz-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #D4AF6E;
  border: 1px solid #D4AF6E;
  border-radius: 8px;
  color: #1E2835;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.wiz-back-btn:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #1E2835;
}
.wiz-sel-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 12px;
}
.wiz-panel-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}

/* ── Vehicle Grid ─────────────────────────────────────────── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.vehicle-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s;
  box-shadow: 0 2px 12px rgba(120,90,40,0.07);
}
.vehicle-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 32px rgba(120,90,40,0.14);
  transform: translateY(-3px);
}

/* Mini image carousel */
.vcar-carousel {
  position: relative;
  overflow: hidden;
}
.vcar-slides {
  display: flex;
  transition: transform 0.4s var(--ease-luxury);
  will-change: transform;
}
.vcar-slide {
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-parchment);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcar-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
  transition: transform 0s;
}
/* Per-vehicle zoom tweaks */
[data-vehicle="luxury-sedan"] .vcar-slide img    { transform: scale(0.88); }
[data-vehicle="premium-sedan"] .vcar-slide img   { transform: scale(1.10) translateX(0.3%); }
[data-vehicle="premium-suv"] .vcar-slide img     { transform: scale(1.22); }
[data-vehicle="minivan"] .vcar-slide img         { transform: scale(1.38) translate(4.5%, 3%); }
/* Capacity slide */
.vcar-cap-slide {
  background: var(--color-slate);
}
.vcar-cap {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
}
.vcar-cap-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'EB Garamond', Georgia, serif;
  letter-spacing: 0.05em;
}
/* Carousel arrows */
.vcar-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.82);
  border: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-slate);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  padding: 0;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}
.vcar-carousel:hover .vcar-arr { opacity: 1; }
.vcar-prev { left: 5px; }
.vcar-next { right: 5px; }
.vcar-arr:hover { background: var(--color-gold); color: var(--color-slate); }
/* Carousel dots */
.vcar-dots-row {
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 4;
  pointer-events: none;
}
.vcar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.2s, transform 0.2s;
}
.vcar-dot.active {
  background: #fff;
  transform: scale(1.3);
}
/* Vehicle meta */
.vehicle-meta {
  padding: 0.85rem 0.9rem 0.5rem;
  flex: 1;
}
.vehicle-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  line-height: 1.3;
}
.vehicle-make {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}
/* Select button */
.vehicle-select-btn {
  margin: 0 0.9rem 0.9rem;
  padding: 8px 0;
  background: var(--color-gold-tint);
  border: 1px solid rgba(212,175,110,0.5);
  border-radius: 8px;
  color: var(--color-gold-text);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 500;
  width: calc(100% - 1.8rem);
}
.vehicle-select-btn:hover,
.vehicle-card:hover .vehicle-select-btn {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-slate);
}

/* ── Service choice (step 2) ──────────────────────────────── */
.service-choice-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.service-choice {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(120,90,40,0.06);
}
.service-choice:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-tint);
  box-shadow: 0 8px 32px rgba(120,90,40,0.12);
  transform: translateX(4px);
}
.sc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold-text);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.service-choice:hover .sc-icon {
  background: var(--color-parchment);
  border-color: var(--color-gold);
}
.sc-text { flex: 1; }
.sc-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--color-text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.sc-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.sc-chevron {
  color: var(--color-text-hint);
  flex-shrink: 0;
  transition: color 0.25s, transform 0.25s;
}
.service-choice:hover .sc-chevron {
  color: var(--color-gold-text);
  transform: translateX(4px);
}

/* ============================================
   SERVICES — 3D SLOT-MACHINE REEL
   ============================================ */
.services-section {
  padding: 100px 0 120px;
  background: var(--color-page);
}
.services-section .section-sub {
  max-width: 640px;
  margin-bottom: 0;
}

/* Reel container */
.services-reel-outer {
  position: relative;
  height: 740px;
  margin-top: 2rem;
  overflow: hidden;
}
.services-reel-track {
  position: relative;
  height: 100%;
}

/* Cards in reel — absolutely positioned */
.services-reel-outer .occ-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(680px, 90vw);
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity   0.55s ease,
              filter    0.55s ease,
              box-shadow 0.55s ease;
  pointer-events: none;
  flex: none;
  scroll-snap-align: none;
}
.services-reel-outer .occ-card.reel-active {
  pointer-events: auto;
}

/* Card base styles (used both inside reel and elsewhere) */
.occ-card {
  background: var(--color-surface);
  border: 0.5px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: 14px;
  padding: 2.75rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(120,90,40,0.09), 0 1px 4px rgba(120,90,40,0.06);
}
/* Background image layer */
.occ-card[style*="--card-bg"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: 0;
  border-radius: inherit;
}
/* Keep all card content above the bg image */
.occ-card > * { position: relative; z-index: 1; }
.occ-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-luxury);
  z-index: 2;
}
.services-reel-outer .occ-card.reel-active::before { transform: scaleY(1); }

/* Icon well */
.occ-icon-well {
  width: 52px; height: 52px;
  background: var(--color-gold-tint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.35s;
  flex-shrink: 0;
}
.occ-icon-well svg { width: 24px; height: 24px; }
/* Category tag */
.occ-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-text);
  margin-bottom: 0.5rem;
}
/* Title */
.occ-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  font-family: 'EB Garamond', Georgia, serif;
}
/* Body copy */
.occ-desc {
  font-size: 0.97rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-weight: 400;
  flex: 1;
  margin-bottom: 1rem;
}
/* Location / rate meta */
.occ-meta {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
/* CTA link */
.occ-book {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-text);
  text-decoration: none;
  transition: color 0.25s;
  margin-top: auto;
}
.occ-book:hover { color: var(--color-gold-hover); }

/* SEO keywords */
.seo-keywords {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Reel up/down control buttons */
.reel-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 30;
}
.reel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(120,90,40,0.10);
  transition: all 0.2s ease;
}
.reel-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-slate);
  transform: scale(1.06);
}

/* Top & bottom fade masks */
.services-reel-outer::before,
.services-reel-outer::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  z-index: 20;
  pointer-events: none;
}
.services-reel-outer::before {
  top: 0;
  height: 110px;
  background: linear-gradient(to bottom, var(--color-page), transparent);
}
.services-reel-outer::after {
  bottom: 0;
  height: 110px;
  background: linear-gradient(to top, var(--color-page), transparent);
}

/* ============================================
   FLEET
   ============================================ */
.fleet-section {
  padding: 100px 0;
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
}
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.fleet-card {
  background: var(--color-surface);
  border: 0.5px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(120,90,40,0.09), 0 1px 4px rgba(120,90,40,0.06);
}
.fleet-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.fleet-img {
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--ease-luxury);
  background-size: cover;
  background-position: center;
}
.fleet-card:hover .fleet-img { transform: scale(1.06); }
.fleet-escalade {
  background: linear-gradient(135deg, #EEE5D6 0%, #E2D9CC 50%, #F5EFE6 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}
.fleet-sedan {
  background: linear-gradient(135deg, #F5EFE6 0%, #EEE5D6 50%, #FAF7F0 100%);
}
.fleet-escalade::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(212,175,110,0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(120,90,40,0.06) 100%);
}
.fleet-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,40,53,0.12) 0%, transparent 60%);
  transition: background 0.4s;
}
.fleet-card:hover .fleet-img-overlay {
  background: linear-gradient(to top, rgba(30,40,53,0.20) 0%, rgba(30,40,53,0.04) 60%);
}
.fleet-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 4px;
}
.fleet-info {
  padding: 1.75rem;
}
.fleet-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--color-gold-text);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  transition: transform 0.3s var(--ease-luxury);
}
.fleet-card:hover .fleet-name { transform: translateY(-4px); }
.fleet-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}
.fleet-specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.fleet-specs li {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  padding: 100px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-val {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  line-height: 1;
}
.trust-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 3rem;
  color: var(--color-gold-text);
  line-height: 1;
}
.trust-plus, .trust-slash, .trust-pct, .trust-star {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: var(--color-gold-text);
  line-height: 1;
  vertical-align: middle;
}
.trust-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  padding: 100px 0;
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.cta-strip-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,175,110,0.05) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.cta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.cta-headline {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  transition: letter-spacing 1.2s var(--ease-luxury);
}
.anim-section.visible .cta-headline { letter-spacing: 0.1em; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cta-btn { animation-play-state: paused; }
.anim-section.visible .cta-btn { animation: ctaPulse 0.8s ease 0.3s; }
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--color-page);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 38px; height: 38px;
  background: var(--color-gold-tint);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 14px;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.25s;
}
a.contact-value:hover { color: var(--color-gold-text); }
.service-area-note {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(120,90,40,0.06), 0 1px 4px rgba(120,90,40,0.04);
}
.service-area-note h4 {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.service-area-note p {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(120,90,40,0.09), 0 1px 4px rgba(120,90,40,0.06);
}
.contact-sent {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--color-gold-text);
  letter-spacing: 0.06em;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.contact-reset-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.contact-reset-btn:hover { color: var(--color-gold-text); }

/* ============================================
   FOOTER — Light Theme
   ============================================ */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 16px rgba(120,90,40,0.06);
  padding: 32px 0 16px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.footer-logo-img {
  width: auto;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(52%) sepia(100%) saturate(1000%) hue-rotate(2deg) brightness(55%);
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -13px;
  line-height: 1;
}
.footer-logo-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--color-gold-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.footer-logo-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 3px;
}
.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.footer-phone {
  font-size: 1.1rem;
  color: var(--color-gold-text);
  text-decoration: none;
  font-family: 'EB Garamond', Georgia, serif;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.footer-phone:hover { color: var(--color-gold-hover); }
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.footer-links-col a,
.footer-links-col span {
  font-size: 11px;
  color: var(--color-text-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.footer-links-col a:hover { color: var(--color-gold-text); }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 11px;
}
.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--color-gold-text); }
.footer-legal-sep { color: var(--color-border); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border-subtle);
}
.form-consent {
  margin-top: 0.75rem;
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}
.form-consent a {
  color: var(--color-gold-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Price Result Panel ────────────────────────── */
.price-result {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pr-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.pr-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.price-grat-row {
  align-items: flex-start;
}
.pr-grat-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.grat-opts {
  display: flex;
  gap: 0.4rem;
}
.grat-btn {
  padding: 5px 12px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.grat-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-text);
}
.grat-btn.active {
  border-color: var(--color-gold);
  background: var(--color-gold-tint);
  color: var(--color-gold-text);
  font-weight: 600;
}
.grat-custom-wrap { width: 100%; }
.grat-custom-input {
  width: 100%;
  padding: 6px 10px;
  font-size: 12px;
  text-align: right;
}
.price-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0.25rem 0;
}
.price-total-row .pr-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: none;
  letter-spacing: 0;
}
.pr-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold-text);
}

/* ── Flight toggle (Apple-style) ───────────────── */
.flight-row-group { padding: 0; }
.flight-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  min-height: 44px;
}
.flight-switch-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 8px;
}
.flight-switch-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
/* Track */
.flight-switch-track {
  position: relative;
  width: 44px;
  height: 26px;
  background: var(--color-border);
  border-radius: 13px;
  transition: background 0.25s ease;
  flex-shrink: 0;
}
.flight-switch-label input[type="checkbox"]:checked ~ .flight-switch-track {
  background: var(--color-gold);
}
/* Thumb */
.flight-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}
.flight-switch-label input[type="checkbox"]:checked ~ .flight-switch-track .flight-switch-thumb {
  transform: translateX(18px);
}
.flight-switch-text {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color 0.2s;
}
.flight-switch-label input[type="checkbox"]:checked ~ .flight-switch-text {
  color: var(--color-text-muted);
}
/* Inline input that appears when toggled on */
.flight-number-inline {
  flex: 1;
  min-width: 0;
  transition: opacity 0.25s ease;
  align-self: center;
}
.flight-number-input {
  width: 100%;
  margin: 0;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-hero {
  background: var(--color-slate);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
}
.policy-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-on-slate);
  margin-bottom: 0.75rem;
}
.policy-hero h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.policy-hero-date {
  font-size: 12px;
  color: var(--color-slate-light);
  letter-spacing: 0.06em;
}
.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.policy-body h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: var(--color-text-primary);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border-subtle);
}
.policy-body p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.policy-body ul {
  margin: 0.5rem 0 1rem 1.25rem;
}
.policy-body ul li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}
.policy-body a {
  color: var(--color-gold-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-nav {
  background: var(--color-slate);
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-bottom: 1px solid var(--color-slate-border);
}
.policy-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.policy-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-slate-light);
  text-decoration: none;
  transition: color 0.2s;
}
.policy-nav-back:hover { color: var(--color-gold-on-slate); }

/* ============================================
   FLEET SECTION — Vehicle art placeholder
   ============================================ */
.fleet-escalade {
  position: relative;
  background: #EEE5D6;
}
.fleet-sedan {
  position: relative;
  background: #F5EFE6;
}
.fleet-escalade,
.fleet-sedan {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.vehicle-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  padding: 1rem;
}
.vehicle-art svg {
  width: 100%;
  filter: drop-shadow(0 4px 32px rgba(120,90,40,0.18));
}

/* ============================================
   MOBILE MENU
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  body { cursor: auto; }
  #nav:not(.scrolled) { border-bottom: none; box-shadow: none; }
  .hero-bg-wrap { will-change: auto; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.5s var(--ease-luxury), visibility 0s linear 0.5s;
    z-index: 700;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.5s var(--ease-luxury), visibility 0s linear 0s;
  }
  .nav-links li { opacity: 0; transform: translateY(-10px); transition: opacity 0.3s, transform 0.3s; }
  .nav-links.open li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.07s; }
  .nav-links.open li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.14s; }
  .nav-links.open li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.21s; }
  .nav-links.open li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.28s; }
  .nav-links.open li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.35s; }
  .nav-links.open li:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.42s; }
  /* Links always dark inside the white mobile drawer */
  .nav-links a { font-size: 13px; letter-spacing: 0.08em; color: var(--color-text-secondary) !important; }
  .nav-links a:hover { color: var(--color-text-primary) !important; }
  #nav .nav-cta { border-color: var(--color-gold) !important; color: var(--color-gold-text) !important; }

  /* Section padding */
  .booking-section,
  .fleet-section,
  .trust-strip,
  .cta-strip,
  .contact-section { padding: 64px 0; }
  .services-section { padding: 64px 0 48px; }
  .footer { padding: 48px 0 24px; }

  .container { padding: 0 1.25rem; }
  .form-input { font-size: 16px; }
  .cal-popup { width: min(288px, calc(100vw - 2.5rem)); }
  .time-popup { width: min(264px, calc(100vw - 2.5rem)); }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; max-width: 320px; justify-content: center; text-align: center; }

  .booking-form { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .wiz-prog-track { min-width: 24px; max-width: 44px; }
  .services-reel-outer { height: 560px; }
  .services-reel-outer .occ-card { width: min(440px, 90vw); padding: 2rem 1.75rem; }
  .services-reel-outer::before,
  .services-reel-outer::after { height: 70px; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { width: 100%; justify-content: center; text-align: center; }
  .booking-card { padding: 1.5rem; }
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo-img { max-height: 33px; }
  .nav-logo-wrap { gap: 0; margin-top: -4px; }
  .nav-logo-text { margin-top: -9px; }
  .nav-logo { font-size: 0.8rem; letter-spacing: 0.08em; }
  .nav-logo-tag { font-size: 7px; letter-spacing: 0.14em; }
  .footer-logo-img { max-height: 40px; }
  .footer-logo-wrap { gap: 0; }
  .footer-logo-text { margin-top: -9px; }
  .footer-logo-name { font-size: 0.8rem; letter-spacing: 0.08em; }
  .footer-logo-tag { font-size: 7px; letter-spacing: 0.14em; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .booking-section,
  .fleet-section,
  .trust-strip,
  .cta-strip,
  .contact-section { padding: 48px 0; }
  .services-section { padding: 48px 0 36px; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .services-reel-outer { height: 500px; }
  .services-reel-outer .occ-card { padding: 1.75rem 1.25rem; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border-subtle);
  }
  .footer { padding: 36px 0 20px; }
  .footer-top { margin-bottom: 1.5rem; padding-bottom: 1.5rem; }
  .footer-links-col { gap: 0.4rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-desc br { display: none; }
  .nav-inner { padding: 0 1rem; }
  .nav-logo-wrap { gap: 0; margin-top: -3px; }
  .nav-logo-img { max-height: 27px; }
  .nav-logo-text { margin-top: -8px; }
  .nav-logo { font-size: 0.7rem; letter-spacing: 0.04em; }
  .nav-logo-tag { font-size: 6px; letter-spacing: 0.1em; }
  .footer-logo-img { max-height: 33px; }
  .footer-logo-wrap { gap: 0; }
  .footer-logo-text { margin-top: -8px; }
  .footer-logo-name { font-size: 0.7rem; letter-spacing: 0.04em; }
  .footer-logo-tag { font-size: 6px; letter-spacing: 0.1em; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim-card,
  .anim-fleet-left,
  .anim-fleet-right { opacity: 1; transform: none; }
  #loader { display: none; }
}
