/* Palette: Blacktop #0D0E11 · After Hours #15181E · Champagne Brass #C6A15B
   Boulevard Gray #A9B0BC · Marquee White #EDEFF3 */

:root {
  --bg: #0D0E11;
  --surface: #15181E;
  --gold: #C6A15B;
  --gold-hi: #D8BC82;
  --body: #A9B0BC;
  --white: #EDEFF3;
  --dim: #6B7280;
  --line: rgba(255, 255, 255, .09);
  --goldline: rgba(198, 161, 91, .4);
}

* { box-sizing: border-box; margin: 0 }

html { scroll-behavior: smooth }

body {
  background: var(--bg);
  color: var(--body);
  font-family: Archivo, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none }
a:hover { color: var(--gold-hi) }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px }
h1, h2, h3 { font-weight: 400 }

.display { font-family: Italiana, serif; color: var(--white) }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px }
.hide { display: none !important }

/* ---------- controls ---------- */

.btn {
  display: inline-block;
  background: var(--gold);
  color: #0D0E11;
  font: 600 14px Archivo;
  padding: 14px 26px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.btn:hover { background: var(--gold-hi); color: #0D0E11 }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--goldline);
  color: var(--gold);
  font: 600 13px Archivo;
  padding: 12px 22px;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi) }

label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font: 500 10.5px Archivo;
  letter-spacing: .08em;
  color: var(--dim);
  text-transform: uppercase;
}

input, select, textarea {
  background: none;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 2px;
  padding: 13px 14px;
  font: 500 14px Archivo;
  color: var(--white);
  width: 100%;
  /* Renders the native date and time pickers, and their calendar and clock
     icons, dark instead of white-on-white. */
  color-scheme: dark;
}
/* Safari lays date and time inputs out as inline content, which ignores the
   width above and leaves them short of the other fields. */
input[type="date"], input[type="time"] {
  min-height: 46px;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: #4A505B }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C6A15B' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* ---------- animated route line ---------- */

.route {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(198, 161, 91, 0));
}
.route i {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F0DCA8;
  box-shadow: 0 0 12px 3px rgba(198, 161, 91, .7);
  animation: routeDot 6s ease-in-out infinite;
}
@keyframes routeDot {
  0% { left: 0; opacity: 0 }
  8% { opacity: 1 }
  92% { opacity: 1 }
  100% { left: calc(100% - 6px); opacity: 0 }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important }
  html { scroll-behavior: auto }
}

/* ---------- header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 14, 17, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo { display: flex; align-items: baseline; gap: 9px }
.logo b {
  font-family: Italiana, serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .2em;
  color: var(--white);
}
.logo span { font: 600 9px Archivo; letter-spacing: .34em; color: var(--gold) }
nav { display: flex; gap: 28px; font: 500 13px Archivo }
nav a { color: var(--body) }
nav a:hover { color: var(--white) }
.hdr-right { display: flex; align-items: center; gap: 18px }
.hdr-phone { font: 600 14px Archivo; color: var(--gold); letter-spacing: .02em }
.hdr-text {
  font: 600 13px Archivo;
  color: var(--white);
  letter-spacing: .02em;
  border: 1px solid var(--goldline);
  border-radius: 2px;
  padding: 9px 14px;
  white-space: nowrap;
}
.hdr-text:hover { border-color: var(--gold); color: var(--gold-hi) }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: 88px 24px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
  width: 100%;
}
.kicker {
  font: 600 11px Archivo;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: Italiana, serif;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.08;
  color: var(--white);
  text-wrap: balance;
  max-width: 560px;
}
.hero h1 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-hi) }
.hero p { font-size: 16px; max-width: 460px; margin-top: 4px }
.hero-media {
  position: relative;
  background: radial-gradient(120% 110% at 30% 35%, #1B1F27 0%, #0D0E11 72%);
}
.hero-car {
  position: absolute;
  left: 2%;
  bottom: 8%;
  width: 56%;
  max-width: 520px;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, .6));
}
.hero-media .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(13, 14, 17, 0) 45%);
}
.hero-caption {
  position: absolute;
  right: 18px;
  bottom: 12px;
  font: 10px ui-monospace, Menlo, monospace;
  color: var(--dim);
  letter-spacing: .08em;
}

/* ---------- quick-quote widget ---------- */

.widget {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  z-index: 2;
  background: var(--surface);
  border: 1px solid rgba(198, 161, 91, .35);
  border-radius: 3px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .6);
}
.widget-title {
  font: 600 11px Archivo;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}
.widget-note { font: 400 11px Archivo; color: var(--dim); text-align: center }
.grid2 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 8px }

/* ---------- trust bar ---------- */

.trust { position: relative; border-bottom: 1px solid var(--line); padding: 20px 24px }
.trust .thread {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 161, 91, 0), var(--goldline) 15%, var(--goldline) 85%, rgba(198, 161, 91, 0));
}
.trust ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.trust li { background: var(--bg); padding: 0 12px; font: 500 12.5px Archivo }
.trust b { color: var(--white); font-weight: 600 }

/* ---------- sections ---------- */

section { padding: 80px 24px; border-bottom: 1px solid var(--line) }
.sec-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 36px }
.sec-head .idx { font: 400 11px ui-monospace, Menlo, monospace; color: #5A6170 }
.sec-head h2 {
  font-family: Italiana, serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--white);
  letter-spacing: .03em;
}

/* ---------- vehicle ---------- */

.vehicle-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.vehicle-media {
  position: relative;
  min-height: 320px;
  background: radial-gradient(115% 105% at 50% 38%, #1D212A 0%, #101216 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .55));
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
}
.gallery img { width: 100%; height: 280px; object-fit: cover; display: block }
.gallery figure { margin: 0; position: relative }
.vehicle-info {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vehicle-info h3 { font-family: Italiana, serif; font-size: 28px; color: var(--white) }
.vehicle-blurb { font-size: 13.5px; max-width: 420px; margin-bottom: 24px }
.vehicle-info .btn { align-self: flex-start }
.spec { font: 400 13px Archivo; color: var(--dim); margin: 6px 0 16px }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px }
.chips span {
  border: 1px solid rgba(255, 255, 255, .12);
  font: 500 11.5px Archivo;
  padding: 6px 12px;
  border-radius: 2px;
}

/* ---------- services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc { background: var(--bg); padding: 30px 26px }
.svc h3 { font: 600 15px Archivo; color: var(--white); margin-bottom: 8px }
.svc.lead h3 { font-family: Italiana, serif; font-weight: 400; font-size: 22px; margin-bottom: 10px }
.svc p { font-size: 12.5px; line-height: 1.55 }

/* ---------- testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--white);
  text-wrap: pretty;
}
.attr { font: 500 12px Archivo; color: var(--dim); margin-top: 14px }
.side-quotes { display: flex; flex-direction: column; gap: 24px; padding-top: 8px }
.side-quotes > div { border-left: 1px solid var(--goldline); padding-left: 18px }
.side-quotes p { font-size: 13.5px; color: #CDD2DA }

/* ---------- booking flow ---------- */

.book-panel { max-width: 760px; margin: 0 auto }
.steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.steps .track {
  position: absolute;
  left: 56px;
  right: 56px;
  top: 50%;
  height: 1px;
  background: rgba(198, 161, 91, .3);
}
.steps .fill {
  position: absolute;
  left: 56px;
  top: 50%;
  height: 1px;
  background: var(--gold);
  transition: width .4s;
}
.step-tag {
  position: relative;
  background: var(--bg);
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.step-tag .dot { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--goldline) }
.step-tag span { font: 500 12px Archivo; color: var(--dim) }
.step-tag.done .dot { background: var(--gold); border-color: var(--gold) }
.step-tag.done span { color: var(--body) }
.step-tag.now .dot {
  width: 9px;
  height: 9px;
  background: #F0DCA8;
  border: none;
  box-shadow: 0 0 10px 2px rgba(198, 161, 91, .7);
}
.step-tag.now span { font-weight: 600; color: var(--white) }

.pane h3 {
  font-family: Italiana, serif;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--white);
  margin-bottom: 24px;
}
.pane-fields { display: flex; flex-direction: column; gap: 14px }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.pane-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.pane-actions-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap }
.hint { font: 400 12.5px Archivo; color: var(--dim) }

.seg { display: flex; gap: 8px; margin-bottom: 18px }
.seg button {
  flex: none;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--dim);
  font: 500 12px Archivo;
  padding: 9px 18px;
  border-radius: 2px;
  background: none;
  cursor: pointer;
}
.seg button[aria-pressed="true"] { border-color: var(--gold); color: var(--gold); font-weight: 600 }

.sel-card {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 16px 20px;
  align-items: center;
  flex-wrap: wrap;
}
.sel-ph {
  width: 150px;
  height: 88px;
  background: radial-gradient(100% 100% at 50% 40%, #1B1F27, #101114);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex: none;
}
.sel-ph img { width: 100%; height: 100%; object-fit: contain }
.sel-body { flex: 1; min-width: 200px }
.sel-name { font: 600 16px Archivo; color: var(--white) }
.sel-spec { font: 400 12px Archivo; color: var(--dim); margin: 3px 0 6px }
.sel-note { font: 400 11.5px Archivo; color: var(--gold) }

.summary {
  background: var(--surface);
  border: 1px solid rgba(198, 161, 91, .35);
  border-radius: 3px;
  padding: 22px;
  margin-bottom: 22px;
}
.summary-title {
  font: 600 11px Archivo;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.summary-vehicle { font: 600 15px Archivo; color: var(--white) }
.summary-trip { font: 400 12.5px Archivo; margin: 8px 0 10px; line-height: 1.6 }
.badge {
  border: 1px solid var(--goldline);
  border-radius: 2px;
  padding: 3px 8px;
  font: 500 11px Archivo;
  color: var(--gold);
  letter-spacing: .06em;
}
.confirm-ok { text-align: center; padding: 40px 0 }
.confirm-ok p { max-width: 400px; margin: 0 auto }

/* Spam trap: off-screen rather than display:none, which bots skip. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error { font: 500 12.5px Archivo; color: #E8927C; margin-top: 12px }

/* ---------- footer ---------- */

footer { padding: 36px 24px 120px }
.ftr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
.ftr small { font: 400 12px Archivo; color: var(--dim) }
.ftr .logo b { font-size: 19px }
.ftr .logo span { font-size: 8px }
.ftr .hdr-phone { display: inline }

/* ---------- mobile sticky bar ---------- */

.sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(13, 14, 17, .97);
  border-top: 1px solid rgba(198, 161, 91, .35);
}
.sticky-bar .btn { flex: 1; text-align: center; padding: 15px }
.sticky-bar .btn-ghost { width: 88px; text-align: center; padding: 15px 0 }

/* ---------- responsive ---------- */

@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-bottom: 44px }
  .hero-copy { padding: 44px 24px 8px; max-width: none; margin: 0 }
  .hero-media { order: -1; min-height: 0; padding-bottom: 8px }
  .hero-media .shade { display: none }
  .hero-car {
    position: static;
    display: block;
    width: 88%;
    max-width: 560px;
    margin: 28px auto 0;
  }
  .hero-caption { top: 12px; bottom: auto }
  .widget { position: static; transform: none; width: auto; margin: 16px 24px 0; box-shadow: none }
}

@media (max-width: 900px) {
  nav { display: none }
  .trust ul { grid-template-columns: 1fr 1fr; gap: 10px 8px }
  .trust li { font-size: 11.5px; padding: 0 }
  .vehicle-card, .quotes { grid-template-columns: 1fr }
  .gallery { grid-template-columns: 1fr }
  .gallery img { height: 210px }
  .vehicle-media { min-height: 220px }
  .services-grid { grid-template-columns: 1fr }
  .form-grid { grid-template-columns: 1fr }
  .vehicle-info { padding: 28px 22px }
  section { padding: 56px 20px }
  .steps .track, .steps .fill { left: 24px }
  .steps .track { right: 24px }
  .step-tag { padding: 0 8px }
  .sticky-bar { display: flex }
  /* The sticky bar carries call and text on small screens. */
  .hdr-phone, .hdr-text { display: none }
  .hdr .btn { padding: 11px 16px; font-size: 13px }
  footer { padding-bottom: 140px }
}
