:root {
  --black: #0a0a0c;
  --black-soft: #131316;
  --panel: #18181c;
  --gold: #d4af37;
  --gold-bright: #f2c94c;
  --amber: #ff8a00;
  --white: #f7f6f3;
  --muted: #a7a5ac;
  --border: #2a2a30;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; margin: 0 0 .5em; line-height: 1.15; }

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,12,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; letter-spacing: .3px; display: flex; align-items: center; }
.brand span { color: var(--gold); }
.brand-logo { height: 40px; width: auto; display: block; }
footer .brand-logo { height: 34px; }
.nav-links { display: flex; gap: 28px; font-size: 15px; }
.nav-links a { text-decoration: none; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #171200; font-weight: 700; padding: 10px 22px; border-radius: 999px;
  text-decoration: none; font-size: 14px; white-space: nowrap;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: #000;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(5,5,6,.35) 0%, rgba(5,5,6,.55) 45%, rgba(5,5,6,.96) 100%), url('/images/fleet-front.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.05);
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 90px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-bright); text-transform: uppercase; letter-spacing: 2px;
  font-size: 13px; font-weight: 700; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold-bright); display: inline-block; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 78px);
  max-width: 820px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright), var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 560px; margin: 18px 0 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 30px; border-radius: 999px; font-weight: 700; font-size: 16px;
  text-decoration: none; border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--gold-bright));
  color: #171200;
  box-shadow: 0 8px 30px -6px rgba(255,138,0,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px rgba(255,138,0,.7); }
.btn-ghost {
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.trust-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 60px;
}
.trust-bar .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 26px 24px 0;
}
.trust-item { font-size: 13.5px; color: var(--muted); display: flex; flex-direction: column; gap: 4px; padding-bottom: 26px; }
.trust-item strong { color: var(--gold-bright); font-size: 26px; font-family: 'Playfair Display', Georgia, serif; }

/* ---- Sections ---- */
section { padding: 100px 0; }
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; display: flex; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 12px; }

.fleet-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.fleet-gallery img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); }

.fleet-note {
  margin-top: 26px; padding: 18px 22px; border: 1px dashed var(--border); border-radius: var(--radius);
  color: var(--muted); font-size: 14.5px;
}

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px;
}
.card .icon { font-size: 26px; margin-bottom: 14px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; }
.step .num {
  width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--gold-bright));
  color: #171200; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.step h3 { font-size: 18px; }
.step p { color: var(--muted); font-size: 14.5px; }

.pricing-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.pricing-table th, .pricing-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 15px; }
.pricing-table th { color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: 12.5px; letter-spacing: .06em; }
.pricing-table td.price { color: var(--gold-bright); font-weight: 700; font-size: 17px; white-space: nowrap; }
.pricing-note { margin-top: 18px; color: var(--muted); font-size: 14px; }

.cta-banner {
  background: radial-gradient(120% 160% at 20% 0%, #241a05 0%, #0a0a0c 60%);
  border: 1px solid var(--border); border-radius: 24px;
  padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner h2 { font-size: 30px; margin-bottom: 6px; }
.cta-banner p { color: var(--muted); margin: 0; }

footer { border-top: 1px solid var(--border); padding: 48px 0; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer .brand { font-size: 18px; margin-bottom: 8px; }
footer a.link { text-decoration: none; color: var(--muted); }
footer a.link:hover { color: var(--gold-bright); }

/* ---- Reservation page ---- */
.reserve-shell { padding: 60px 0 100px; }
.reserve-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: flex-start; }
.form-card, .quote-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: #0f0f12; color: var(--white); font-size: 15px; font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.radio-group { display: flex; gap: 10px; }
.radio-group label {
  flex: 1; text-align: center; padding: 12px; border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; font-size: 14px; color: var(--muted);
}
.radio-group input { display: none; }
.radio-group input:checked + span { color: #171200; }
.radio-group label:has(input:checked) { background: linear-gradient(135deg, var(--amber), var(--gold-bright)); border-color: transparent; color: #171200; }

.quote-card h3 { font-size: 16px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: 12.5px; margin-bottom: 18px; }
.quote-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.quote-line.total { border-bottom: none; padding-top: 16px; font-size: 20px; font-weight: 700; color: var(--gold-bright); }
.quote-placeholder { color: var(--muted); font-size: 14px; }
.quote-error { color: #ff6b6b; font-size: 13.5px; margin-top: 8px; }

.card-element {
  padding: 13px 14px; border-radius: 10px; border: 1px solid var(--border); background: #0f0f12;
}
.card-section .quote-placeholder { line-height: 1.5; }

.confirm-box { text-align: center; padding: 90px 0; }
.confirm-box .icon { font-size: 54px; margin-bottom: 18px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .trust-bar .wrap { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .fleet-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .fleet-gallery .g1, .fleet-gallery .g2, .fleet-gallery .g3, .fleet-gallery .g4, .fleet-gallery .g5 { grid-column: span 1; grid-row: span 1; }
  .reserve-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 26px; }
}
