:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --surface2: #18181f;
  --surface3: #1e1e28;
  --accent: #c9a84c;
  --accent-hover: #e0bc5a;
  --accent-dim: rgba(201,168,76,0.15);
  --text: #f0f0f5;
  --text-muted: #8080a0;
  --border: #24243a;
  --radius: 14px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Promo Banner ─────────────────────────────────────────────── */
.promo-banner {
  background: var(--accent);
  color: #0a0a0f;
  text-align: center;
  padding: 11px 24px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.promo-banner strong { font-weight: 700; }

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
}
.nav-phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-phone:hover { background: var(--accent); color: #0a0a0f; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,15,0.96) 0%,
    rgba(10,10,15,0.72) 55%,
    rgba(10,10,15,0.3) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
  width: 100%;
}
.hero-text { max-width: 540px; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-footnote {
  font-size: 12.5px;
  color: var(--text-muted);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  max-width: 380px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0f;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text-muted); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); }
.btn-lg { font-size: 16px; padding: 16px 32px; }

/* ── Section Commons ──────────────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header.centered {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ── Fleet ────────────────────────────────────────────────────── */
.fleet {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fleet-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vehicle-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.vehicle-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.vc-image-placeholder {
  height: 140px;
  background: var(--surface3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
}
.vc-info { padding: 18px 20px; }
.vc-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.vc-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.vc-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.vc-weekly {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.vc-per { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.vc-daily {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── How It Works ────────────────────────────────────────────── */
.how { padding: 100px 40px; }
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.7;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.step p a { color: var(--accent); text-decoration: none; }
.step p a:hover { text-decoration: underline; }
.step-divider {
  width: 1px;
  height: 120px;
  background: var(--border);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.price-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface2) 0%, rgba(201,168,76,0.05) 100%);
}
.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pc-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.price-card.featured .pc-amount { color: var(--accent); }
.pc-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pc-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.price-card.featured .pc-features li::before { background: var(--accent); }
.pc-features li strong { color: var(--text); }
.price-card .btn { width: 100%; justify-content: center; }

/* ── Age Callout ─────────────────────────────────────────────── */
.age-callout {
  padding: 60px 40px;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.age-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 32px;
}
.age-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0f;
  flex-shrink: 0;
}
.age-text h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.age-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Closing CTA ─────────────────────────────────────────────── */
.closing {
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 560px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.closing-location {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-phone {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.footer-phone:hover { text-decoration: underline; }
.footer-sep, .footer-location {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-divider { display: none; }
  .step { padding: 0; }
}
@media (max-width: 640px) {
  .hero-headline { font-size: 38px; }
  .hero-inner { padding: 60px 24px; }
  .nav { padding: 0 20px; }
  .nav-tagline { display: none; }
  .fleet, .how, .pricing, .closing { padding: 64px 24px; }
  .age-callout { padding: 48px 24px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-headline { font-size: 28px; }
  .closing-headline { font-size: 36px; }
  .pc-amount { font-size: 42px; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
}