:root {
  --bg: #0a0a0b;
  --ivory: #f3f0e9;
  --text: #0a0a0b;
  --on-dark: #faf9f5;
  --muted: #5f5f65;
  --muted-dark: rgba(255, 255, 255, 0.72);
  --accent: #ff6233;
  --accent-ivory: #c0450f;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-hover: #e9e9ec;
  --nav-link: rgba(255, 255, 255, 0.82);
  --hero-overlay: linear-gradient(180deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.15) 30%, rgba(8, 8, 10, 0.25) 55%, rgba(8, 8, 10, 0.92) 100%);
  --border: rgba(255, 255, 255, 0.18);
  --radius: 10px;
  --font: "Archivo", system-ui, sans-serif;
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--on-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #fff;
}

a:focus-visible,
.nav-cta:focus-visible,
.accent-btn:focus-visible,
.glass-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

::selection {
  background: var(--accent);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #2c2c31;
  border-radius: 6px;
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: #3d3d44;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #2c2c31 var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ---------- shared ---------- */

.label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--accent);
  white-space: nowrap;
}

.label--light {
  color: var(--on-dark);
}

.section-title {
  font-size: clamp(42px, 6vw, 132px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

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

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--bg);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.navbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 56px;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-link);
}

.nav-links a.active {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--on-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  min-height: 44px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--glass-hover);
  color: var(--text);
}

.nav-cta .arrow {
  font-size: 15px;
}

.headline {
  position: absolute;
  top: 92px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 13.3vw;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffffff 55%, #b8b8bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-copy {
  position: absolute;
  left: 56px;
  bottom: 56px;
  z-index: 3;
  max-width: 620px;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(38px, 5.8vw, 66px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: var(--nav-link);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 480px;
  margin-top: 18px;
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  min-height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.discover-btn:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

.discover-btn .arrow {
  font-size: 15px;
}

/* ---------- section shell ---------- */

.fleet,
.booking {
  background: var(--ivory);
  color: var(--text);
}

.fleet .label,
.booking .label {
  color: var(--accent-ivory);
}

.fleet,
.promise,
.booking,
.final-cta {
  padding: clamp(72px, 6vw, 148px) clamp(24px, 4vw, 96px);
}

/* ---------- fleet ---------- */

.fleet .eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 24px;
}

.fleet .count {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--muted);
  white-space: nowrap;
}

.fleet .title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}

.fleet .section-title {
  color: var(--text);
}

.fleet .section-intro {
  flex-shrink: 0;
  width: min(520px, 100%);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
}

.fleet-cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.car-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
}

.car-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.car-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.04) 45%, rgba(0, 0, 0, 0.8) 100%);
}

.car-card-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 48px;
}

.car-class {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--accent);
}

.car-name {
  font-size: clamp(24px, 3vw, 58px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  white-space: nowrap;
}

.car-card--featured {
  flex: 1.4;
}

.fleet-secondary {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fleet-secondary .car-card {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.fleet-secondary .car-name {
  font-size: clamp(20px, 2.2vw, 36px);
}

.fleet-secondary .car-card-details {
  gap: 10px;
  padding: 36px;
}

/* ---------- promise ---------- */

.promise {
  background: var(--bg);
}

.promise-main {
  display: flex;
  gap: clamp(40px, 6vw, 130px);
  margin-bottom: 84px;
}

.promise-statement {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.promise-statement .section-title {
  color: var(--on-dark);
}

.promise-copy {
  max-width: 760px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-dark);
}

.promise-benefits {
  flex: 1;
}

.benefit {
  display: flex;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.benefit-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit h3 {
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}

.benefit p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted-dark);
}

.trust-metrics {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-value {
  font-size: clamp(40px, 3.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--on-dark);
}

.metric-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--muted-dark);
}

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

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 74px;
}

.booking-title-group {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.booking .section-title {
  color: var(--text);
}

.accent-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--accent);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 20px 28px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.accent-btn:hover {
  background: #fff;
  color: var(--text);
}

.accent-btn span {
  font-size: 18px;
}

.accent-btn--lg {
  font-size: 16px;
  letter-spacing: 0.9px;
  padding: 22px 30px;
  gap: 22px;
}

.accent-btn--lg span {
  font-size: 19px;
}

.booking-steps {
  display: flex;
  gap: 42px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 11, 0.2);
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-number {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--accent-ivory);
}

.icon-station {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--on-dark);
  border-radius: 24px;
  box-shadow: 0 12px 28px -8px rgba(10, 10, 11, 0.17);
}

.icon-station--accent {
  background: var(--accent);
  color: var(--text);
}

.icon-station svg {
  width: 42px;
  height: 42px;
}

.step-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-copy h3 {
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.step-copy p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- journey ---------- */

.journey {
  position: relative;
  overflow: hidden;
  padding: 82px clamp(24px, 4vw, 96px) 110px;
  background: var(--bg);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("images/journey.jpg");
  background-size: cover;
  background-position: center;
}

.journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.16) 0%, rgba(8, 8, 10, 0.07) 35%, rgba(8, 8, 10, 0.91) 100%);
}

.journey-top,
.journey-content {
  position: relative;
  z-index: 1;
}

.journey-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--on-dark);
  white-space: nowrap;
}

.journey-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.journey-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.journey-copy .section-title {
  color: var(--on-dark);
  font-size: clamp(42px, 6vw, 124px);
}

.journey-description {
  max-width: 720px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-dark);
}

.glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--on-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 20px 26px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.glass-btn span {
  font-size: 18px;
}

/* ---------- final cta + footer ---------- */

.final-cta {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 84px;
  padding: 132px clamp(24px, 4vw, 96px) 54px;
}

.final-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  flex: 1;
}

.final-inner .section-title {
  color: var(--on-dark);
  font-size: clamp(48px, 7vw, 146px);
  line-height: 0.88;
}

.final-action-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.final-description {
  max-width: 690px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-dark);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--on-dark);
}

.footer-copy,
.footer-availability {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted-dark);
}

.footer-nav {
  display: flex;
  gap: 58px;
}

.footer-nav a,
.footer-nav span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--on-dark);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.footer-email {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--on-dark);
}

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

@media (max-width: 1024px) {
  .nav-links {
    gap: 24px;
  }

  .navbar {
    padding: 28px 32px;
  }

  .hero-copy {
    left: 32px;
    bottom: 32px;
  }

  .fleet .title-row,
  .booking-header,
  .promise-main,
  .journey-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .fleet .title-row {
    margin-bottom: 40px;
  }

  .fleet-cards,
  .booking-steps {
    flex-direction: column;
  }

  .fleet-secondary {
    flex-direction: column;
  }

  .booking-steps {
    gap: 24px;
  }

  .step {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    left: 24px;
    right: 24px;
    bottom: 32px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .headline {
    top: 120px;
    font-size: 13.3vw;
  }

  .fleet .eyebrow {
    flex-direction: column;
    align-items: flex-start;
  }

  .car-card-details {
    padding: 24px;
  }

  .fleet-secondary .car-card-details {
    padding: 24px;
  }

  .promise-main {
    gap: 48px;
  }

  .metric {
    flex-basis: calc(50% - 12px);
  }

  .final-action-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-nav {
    gap: 24px;
    flex-wrap: wrap;
  }

  .journey-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}