/* =====================================================
   PRESTIGE VIP TRANSPORT
   Members-club restraint · obsidian + gold · sharp corners
   ===================================================== */

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

:root {
  --obsidian:    #0C0C0C;
  --charcoal:    #1C1C1C;
  --charcoal-2:  #242424;
  --charcoal-3:  #2A2A2A;
  --hairline:    #2E2A22;
  --hairline-2:  #1F1D18;
  --gold:        #C9A045;
  --gold-light:  #E8C87A;
  --gold-dark:   #8B6520;
  --ivory:       #F5EFE6;
  --ivory-muted: #B0A898;
  --ivory-dim:   #6F6A60;
  --white:       #FFFFFF;

  --display: 'Cinzel', 'Times New Roman', serif;
  --sans:    'Montserrat', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 12vw, 140px);
  --max: 1280px;

  --ease: cubic-bezier(.4,.1,.2,1);
}

html { scroll-behavior: smooth; }

html, body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: var(--obsidian); }

/* =====================================================
   TYPOGRAPHY PRIMITIVES
   ===================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
}
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ivory);
  text-wrap: balance;
}
.section-deck {
  margin-top: 22px;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ivory-muted);
  text-wrap: pretty;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  --btn-pad-y: 16px;
  --btn-pad-x: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn-arrow {
  font-size: 13px;
  letter-spacing: 0;
  transition: transform .35s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn:hover .btn-arrow-back { transform: translateX(-4px); }

.btn-gold {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245,239,230,0.18);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-ghost-light {
  border-color: rgba(245,239,230,0.22);
}

/* =====================================================
   NAV
   ===================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  background: rgba(12,12,12,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
}
.nav.scrolled {
  background: rgba(12,12,12,0.92);
  border-bottom-color: var(--hairline-2);
  padding: 12px var(--gutter);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--gold);
  letter-spacing: 0;
}
.nav-wordmark {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ivory);
  font-weight: 400;
}
.nav-logo {
  height: 52px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 200px;
  width: auto;
  display: block;
}
.footer-wordmark {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 2.5vw, 36px);
  justify-content: center;
}
.nav-links a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  --btn-pad-y: 11px;
  --btn-pad-x: 20px;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--ivory);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- language switcher ---- */
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  font-family: var(--sans);
  transition: color .3s var(--ease);
}
.lang-btn:hover { color: var(--gold-light); }
.lang-arrow { transition: transform .25s var(--ease); }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  min-width: 108px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sans);
  cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-option:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.04);
}
.lang-option.is-active { color: var(--gold); }

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--obsidian);
  padding: 96px var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
.drawer.open {
  transform: translateY(0);
  visibility: visible;
}
.drawer a:not(.btn) {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ivory);
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.drawer a.btn {
  margin-top: 32px;
  align-self: stretch;
  justify-content: center;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(120px, 14vh, 160px) var(--gutter) clamp(80px, 10vh, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,160,69,0.08), transparent 55%),
    radial-gradient(80% 60% at 80% 100%, rgba(139,101,32,0.10), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 100%);
}
.hero-bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
}

.hero-frame {
  position: absolute;
  inset: 24px var(--gutter);
  pointer-events: none;
  z-index: 0;
}
.frame-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 20%, var(--gold) 50%, var(--gold-dark) 80%, transparent);
  height: 1px;
  left: 0;
  right: 0;
  opacity: .35;
}
.frame-top { top: 0; }
.frame-bottom { bottom: 0; }

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero-copy { min-width: 0; }

.hero-title {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ivory);
  text-wrap: balance;
  max-width: 14ch;
}
.hero-title-em {
  display: inline-block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  margin-top: 18px;
  max-width: 44ch;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.7;
  color: var(--ivory-muted);
  font-weight: 300;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-tag {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-tag .dot {
  width: 4px;
  height: 4px;
  background: var(--gold-dark);
  display: inline-block;
}

/* hero quick-reserve — side panel (vertical inside) */
.hero-quote {
  background: rgba(12,12,12,0.78);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  width: 100%;
}
.hero-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.quote-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.quote-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-rule {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.quote-foot-inline {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  white-space: nowrap;
}
.quote-foot-inline a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.quote-foot-inline a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
.quote-title { display: none; }

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.quote-form .field {
  display: block;
  min-width: 0;
  grid-column: span 2;
}
.quote-form .field.field-half { grid-column: span 1; }
.quote-form .field-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  margin-bottom: 10px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-size: 14px;
  padding: 12px 0 14px;
}
.quote-form .select-wrap { position: relative; }
/* hero form 2-step: steps are transparent to the grid */
.hero-step { display: contents; }
.hero-step[hidden] { display: none !important; }

.quote-cta {
  --btn-pad-y: 16px;
  font-size: 11px;
  letter-spacing: 0.24em;
  margin-top: 12px;
  width: 100%;
  justify-content: space-between;
  grid-column: span 2;
}

.hero-meta {
  position: relative;
  z-index: 2;
  margin: clamp(48px, 8vh, 80px) 0 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.meta-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 5px;
}
.meta-value {
  font-family: var(--display);
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.meta-link {
  transition: color .3s var(--ease);
  position: relative;
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.meta-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.meta-col-end { text-align: right; }

.hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--gold) 60%, transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--gold-light);
  animation: scrollDot 2.4s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { top: -12px; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 36px; opacity: 0; }
}

/* =====================================================
   SECTION FRAME
   ===================================================== */

.section {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-head-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-head-left::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
  max-width: 280px;
}

/* full-bleed dark sections */
.services, .fleet, .about, .testimonials, .areas {
  background: var(--obsidian);
}

/* =====================================================
   SERVICES
   ===================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.service-card {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  position: relative;
  transition: background .4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .4s var(--ease);
}
.service-card:hover {
  background: rgba(201,160,69,0.025);
}
.service-card:hover::before {
  border-color: var(--gold-dark);
}
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.service-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 14px;
}
.service-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ivory-muted);
  margin-bottom: 28px;
  flex: 1;
}
.service-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.service-link span { transition: transform .3s var(--ease); }
.service-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.service-link:hover span { transform: translateX(4px); }

.section-foot {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.rule {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

/* =====================================================
   FLEET
   ===================================================== */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  display: flex;
  flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.vehicle:hover {
  border-color: var(--gold-dark);
}

.vehicle-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, #161616 0%, #0a0a0a 60%, #1a1a1a 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline-2);
}
.ph-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 6px),
    radial-gradient(60% 50% at 50% 60%, rgba(201,160,69,0.06), transparent 70%);
}
.ph-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: .6;
}
.ph-rule {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 50%;
  height: 1px;
  background: rgba(245,239,230,0.04);
}
.ph-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}
.ph-pill {
  padding: 5px 10px;
  border: 1px solid var(--hairline);
  color: var(--gold-dark);
  font-size: 8px;
  letter-spacing: 0.22em;
}

.vehicle-body { padding: 28px 28px 32px; }
.vehicle-tier {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.vehicle-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  margin-bottom: 22px;
  letter-spacing: 0.015em;
}
.vehicle-spec {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.vehicle-spec > div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.vehicle-spec span {
  color: var(--ivory-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  align-self: center;
}
.vehicle-spec b {
  color: var(--ivory);
  font-weight: 400;
  font-family: var(--sans);
}

/* =====================================================
   ABOUT
   ===================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ivory-muted);
  margin-bottom: 22px;
  max-width: 56ch;
}
.about-copy p:first-child::first-letter {
  font-family: var(--display);
  font-size: 64px;
  float: left;
  line-height: 0.9;
  margin: 6px 14px 0 0;
  color: var(--gold);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-dark);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.link-arrow .btn-arrow { transition: transform .3s var(--ease); }
.link-arrow:hover .btn-arrow { transform: translateX(4px); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.stat {
  padding: 28px 32px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(0,0,0,0.2);
}
.stat-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.stat-unit {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--gold-dark);
  margin-left: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-label {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  line-height: 1.5;
}

.trust-row {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  justify-content: center;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}
.trust-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.quote {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  position: relative;
}
.quote:last-child { border-right: none; }
.quote-mark {
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 18px;
  height: 32px;
}
.quote blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--ivory);
  letter-spacing: 0.005em;
  flex: 1;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.q-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.q-role {
  font-size: 10px;
  color: var(--ivory-dim);
  letter-spacing: 0.12em;
}

/* =====================================================
   AREAS
   ===================================================== */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.area-col {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.area-col:last-child { border-right: none; }
.area-head {
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.area-col ul { list-style: none; }
.area-col li {
  font-size: 13px;
  color: var(--ivory-muted);
  padding: 7px 0;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 16px;
}
.area-col li::before {
  content: '·';
  color: var(--gold-dark);
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 22px;
  line-height: 1;
}

/* =====================================================
   BOOK / CONTACT
   ===================================================== */

.book {
  position: relative;
  background: var(--charcoal);
  max-width: none;
  padding: 0;
  margin: 0;
}
.book-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(201,160,69,0.10), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(139,101,32,0.10), transparent 60%);
  pointer-events: none;
}
.book-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
}

.book-left .section-num,
.book-left .section-label {
  display: inline-block;
  margin-right: 14px;
}
.book-title {
  margin-top: 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: 0.005em;
}
.book-deck {
  margin-top: 22px;
  font-size: 15px;
  color: var(--ivory-muted);
  line-height: 1.85;
  max-width: 44ch;
}

.book-channels {
  margin-top: 56px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.channel {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left .35s var(--ease);
}
.channel:not(.channel-static):hover {
  padding-left: 12px;
}
.channel-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.channel-value {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ivory);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  transition: color .3s var(--ease);
}
.channel:not(.channel-static):hover .channel-value {
  color: var(--gold-light);
}
.channel-meta {
  font-size: 11px;
  color: var(--ivory-dim);
  letter-spacing: 0.1em;
}

/* form */
.book-form {
  background: var(--obsidian);
  border: 1px solid var(--hairline);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  align-self: start;
}
.form-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.form-step-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.form-step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  white-space: nowrap;
}
.form-progress {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  position: relative;
  overflow: hidden;
}
.form-progress-fill {
  position: absolute;
  inset: 0;
  width: 33.33%;
  background: var(--gold);
  transition: width .5s var(--ease);
}

.form-legend {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.form-step-panel,
.book-form fieldset {
  border: 0 !important;
  padding: 0;
  margin: 0;
  min-width: 0;
  outline: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: block;
  grid-column: span 2;
  position: relative;
}
.field-half { grid-column: span 1; }
.field-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 10px 0 12px;
  letter-spacing: 0.02em;
  transition: border-color .3s var(--ease);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ivory-dim);
  font-weight: 300;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--gold);
}
.field input:invalid:not(:placeholder-shown) {
  border-bottom-color: #B5563E;
}

.select-wrap {
  position: relative;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 24px;
}
.field select option {
  background: var(--obsidian);
  color: var(--ivory);
}
.select-caret {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-30%);
  color: var(--gold);
  font-size: 12px;
  pointer-events: none;
}

.field.check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ivory-muted);
  letter-spacing: 0.02em;
}
.field.check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background .25s var(--ease), border-color .25s var(--ease);
  padding: 0;
}
.field.check input:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.field.check input:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--obsidian);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.field.check b { color: var(--ivory); font-weight: 500; }

.form-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.form-confirm {
  text-align: center;
  padding: 32px 0;
}
.confirm-mark {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 28px;
  margin: 0 auto 28px;
  font-family: var(--display);
}
.confirm-title {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ivory);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.confirm-body {
  font-size: 14px;
  color: var(--ivory-muted);
  max-width: 38ch;
  margin: 0 auto 28px;
  line-height: 1.8;
}
.confirm-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

/* =====================================================
   CLOSING
   ===================================================== */

.closing {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background: var(--obsidian);
}
.closing-rule {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.closing-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.closing-line {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.closing-line br + * { color: var(--gold-light); }

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: #060606;
  border-top: 1px solid var(--hairline-2);
  padding: 64px var(--gutter) 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-2);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-head {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline-2);
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 12px;
  color: var(--ivory-muted);
  padding: 5px 0;
  letter-spacing: 0.04em;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-static { color: var(--ivory-dim) !important; }

.footer-base {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}
.footer-base-mid { color: var(--gold-dark); }

/* =====================================================
   REVEAL ANIMATION
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-scroll-line::after { animation: none; }
}

/* =====================================================
   RESPONSIVE — mobile-first refinements
   ===================================================== */

@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .nav-cta { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .quotes { grid-template-columns: 1fr; }
  .quote { border-right: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-col:nth-child(2) { border-right: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .book-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { grid-template-columns: 1fr auto auto; }

  .br-desktop { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-quote { max-width: 560px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form .field.field-half { grid-column: span 1; }
  .quote-cta { grid-column: span 1; }

  .hero-meta { flex-direction: column; gap: 18px; }
  .meta-col-end { text-align: left; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }

  .areas-grid { grid-template-columns: 1fr; }
  .area-col { border-right: none; }

  .about-stats { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .field-half { grid-column: span 1; }

  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 12px; text-align: center; }

  .section-head-left::after { display: none; }
}

@media (max-width: 480px) {
  .nav { padding: 14px 20px; }
  .hero-tag { gap: 10px; font-size: 9px; letter-spacing: 0.32em; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; justify-content: center; }

  /* Tighten hero headline on phones so the form has room */
  .hero-title { font-size: clamp(30px, 9vw, 40px); max-width: none; }
  .hero-sub { font-size: 13px; }
  .hero-quote { padding: 22px 20px; }

  /* Stack the form-head: eyebrow on its own row, "Or call" beneath */
  .quote-head,
  .book-form .form-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .quote-head .quote-rule,
  .book-form .form-head .quote-rule { display: none; }

  /* Bump input padding to hit ~44px tap targets */
  .field input,
  .field textarea,
  .field select,
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    padding: 14px 0 14px;
    font-size: 15px;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Booking form head re-uses the hero's eyebrow/rule/inline style */
.book-form .form-head .quote-rule { flex: 1; }

/* =====================================================
   SUBPAGES — Services · Fleet · About · Contact
   ===================================================== */

/* -------- nav current-page link -------- */
.nav-links a.is-current { color: var(--gold); }
.nav-links a.is-current::after { transform: scaleX(1); }

/* -------- breadcrumbs -------- */
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.crumbs a { color: var(--ivory-dim); transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--gold); }
.crumb-sep { color: var(--gold-dark); }
.crumb-current { color: var(--gold); }

/* -------- slim hero (all subpages) -------- */
.svc-hero {
  position: relative;
  min-height: 58vh;
  padding: clamp(120px, 16vh, 180px) var(--gutter) clamp(64px, 9vh, 108px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.svc-hero-bg { position: absolute; inset: 0; z-index: -1; }
.svc-hero-inner {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
.svc-hero-title {
  margin-top: 14px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ivory);
  text-wrap: balance;
  max-width: 16ch;
}
.svc-hero-sub {
  margin-top: 20px;
  max-width: 56ch;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.8;
  color: var(--ivory-muted);
  font-weight: 300;
  text-wrap: pretty;
}

/* -------- services anchor nav (sticky) -------- */
.svc-anchors {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(12,12,12,0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hairline-2);
  border-top: 1px solid var(--hairline-2);
}
.svc-anchors-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-anchors-inner::-webkit-scrollbar { display: none; }
.svc-anchor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px 18px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.svc-anchor:hover { color: var(--gold-light); }
.svc-anchor.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.svc-anchor-num {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
}

/* -------- service / fleet detail rows -------- */
.svc-row {
  padding: var(--section-y) var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.svc-row-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.svc-row-flip .svc-row-inner { direction: rtl; }
.svc-row-flip .svc-row-inner > * { direction: ltr; }
.svc-text { min-width: 0; }

.svc-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.svc-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--gold-dark); }
.svc-rule { width: 36px; height: 1px; background: var(--hairline); flex-shrink: 0; }
.svc-cat { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); }

.svc-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.svc-deck {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ivory-muted);
  max-width: 48ch;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.svc-included {
  margin-bottom: 40px;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-left: 2px solid var(--gold-dark);
  background: rgba(255,255,255,0.02);
}
.svc-included-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.svc-included ul { list-style: none; display: grid; gap: 12px; }
.svc-included li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ivory-muted);
  padding-left: 18px;
  position: relative;
}
.svc-included li::before {
  content: '·';
  color: var(--gold);
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 22px;
  line-height: 1;
}
.svc-cta { align-self: flex-start; }

/* -------- service visual placeholder -------- */
.svc-visual { position: relative; }
.svc-visual-frame {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #161616 0%, #0a0a0a 60%, #1c1c1c 100%);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-visual.vehicle-visual .svc-visual-frame { aspect-ratio: 3 / 2; }
.svc-monogram {
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(201,160,69,0.07);
  font-weight: 400;
  line-height: 1;
  user-select: none;
  position: relative;
  z-index: 1;
}
.svc-visual-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 6px),
    radial-gradient(70% 60% at 50% 50%, rgba(201,160,69,0.06), transparent 70%);
}
.svc-visual-corner { position: absolute; width: 28px; height: 28px; }
.svc-visual-corner-tl { top: 20px; left: 20px; border-top: 1px solid var(--gold-dark); border-left: 1px solid var(--gold-dark); }
.svc-visual-corner-br { bottom: 20px; right: 20px; border-bottom: 1px solid var(--gold-dark); border-right: 1px solid var(--gold-dark); }
.svc-visual-label {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
}

/* -------- vehicle spec table (fleet page) -------- */
.vehicle-spec-grid { display: grid; border: 1px solid var(--hairline); margin-bottom: 36px; }
.vehicle-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--hairline);
}
.vehicle-spec-row:last-child { border-bottom: none; }
.vehicle-spec-row span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.vehicle-spec-row b {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

/* -------- why / principles section -------- */
.why {
  background: var(--charcoal);
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
}
.why-inner { max-width: var(--max); margin: 0 auto; padding: var(--section-y) var(--gutter); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  margin-top: clamp(48px, 6vw, 72px);
}
.why-card {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background .4s var(--ease);
}
.why-card:hover { background: rgba(201,160,69,0.025); }
.why-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--gold-dark); margin-bottom: 22px; }
.why-title { font-family: var(--display); font-weight: 400; font-size: 18px; color: var(--ivory); letter-spacing: 0.02em; margin-bottom: 14px; line-height: 1.35; }
.why-body { font-size: 13px; line-height: 1.8; color: var(--ivory-muted); }

/* -------- how it works -------- */
.how { border-top: 1px solid var(--hairline-2); }
.how-inner { max-width: var(--max); margin: 0 auto; padding: var(--section-y) var(--gutter); }
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  margin-top: clamp(48px, 6vw, 72px);
}
.how-step {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.how-step-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--gold-dark); margin-bottom: 22px; }
.how-step-title { font-family: var(--display); font-weight: 400; font-size: clamp(18px, 2vw, 24px); color: var(--ivory); letter-spacing: 0.02em; margin-bottom: 14px; line-height: 1.3; }
.how-step-body { font-size: 14px; line-height: 1.8; color: var(--ivory-muted); }

/* -------- pull quote -------- */
.svc-quote {
  background: var(--charcoal-2);
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
}
.svc-quote-inner { max-width: var(--max); margin: 0 auto; padding: var(--section-y) var(--gutter); text-align: center; }
.svc-quote-mark {
  font-family: var(--display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.12;
  margin-bottom: 28px;
  display: block;
  pointer-events: none;
}
.svc-quote-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.5;
  color: var(--ivory);
  letter-spacing: 0.005em;
  max-width: 24ch;
  margin: 0 auto 40px;
  text-wrap: pretty;
}
.svc-quote-em { display: inline-block; color: var(--gold-light); font-style: italic; }
.svc-quote-meta { display: inline-flex; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.svc-quote-name { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.svc-quote-rule { width: 32px; height: 1px; background: var(--hairline); }
.svc-quote-role { font-size: 10px; color: var(--ivory-dim); letter-spacing: 0.1em; }

/* -------- FAQ -------- */
.faq { border-top: 1px solid var(--hairline-2); }
.faq-inner { max-width: var(--max); margin: 0 auto; padding: var(--section-y) var(--gutter); }
.faq-list { margin-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  gap: 24px;
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ivory);
  letter-spacing: 0.01em;
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-light); }
.faq-item[open] summary { color: var(--gold); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .35s var(--ease);
  flex-shrink: 0;
  line-height: 1;
  font-family: var(--sans);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body { padding-bottom: 30px; }
.faq-body p { font-size: 15px; line-height: 1.85; color: var(--ivory-muted); max-width: 68ch; }

/* -------- closing CTA (subpages) -------- */
.svc-closing {
  background: var(--obsidian);
  border-top: 1px solid var(--hairline-2);
  position: relative;
  overflow: hidden;
}
.svc-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(201,160,69,0.08), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(139,101,32,0.08), transparent 60%);
  pointer-events: none;
}
.svc-closing-inner { max-width: var(--max); margin: 0 auto; padding: var(--section-y) var(--gutter); text-align: center; position: relative; }
.svc-closing-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 28px; }
.svc-closing-title { font-family: var(--display); font-weight: 400; font-size: clamp(44px, 7vw, 88px); line-height: 1.05; color: var(--ivory); letter-spacing: 0.005em; margin-bottom: 24px; text-wrap: balance; }
.svc-closing-deck { font-size: 16px; line-height: 1.85; color: var(--ivory-muted); max-width: 48ch; margin: 0 auto 48px; }
.svc-closing-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* -------- chauffeur standards grid (about page) -------- */
.chauffeur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  margin-top: clamp(48px, 6vw, 72px);
}
.chauffeur-card {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.chauffeur-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--gold-dark); margin-bottom: 22px; }
.chauffeur-title { font-family: var(--display); font-weight: 400; font-size: 20px; color: var(--ivory); letter-spacing: 0.02em; margin-bottom: 14px; line-height: 1.3; }
.chauffeur-body { font-size: 13px; line-height: 1.85; color: var(--ivory-muted); }

/* -------- contact page form section -------- */
.contact-book { position: relative; background: var(--charcoal); border-top: 1px solid var(--hairline-2); }
.contact-book-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(201,160,69,0.10), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(139,101,32,0.10), transparent 60%);
  pointer-events: none;
}

/* -------- subpage responsive -------- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .chauffeur-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-logo { height: 36px; }

  .svc-row-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .svc-row-flip .svc-row-inner { direction: ltr; }
  .svc-visual { display: none; }
  .svc-anchors { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .chauffeur-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .svc-quote-text { font-size: clamp(20px, 5vw, 32px); }
  .svc-closing-actions { flex-direction: column; align-items: center; }

  .footer-brand { justify-content: center; }
  .footer-logo { height: 280px; }
}

@media (max-width: 480px) {
  .svc-included { padding: 20px; }
  .vehicle-spec-row { padding: 14px 18px; }
  .footer-logo { height: 240px; }
}
