/* ═══════════════════════════════════════════
   RENTLUX — Luxury Ground Transportation
   ═══════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --dark-light: #222222;
  --white: #f5f5f3;
  --white-dim: rgba(245, 245, 243, 0.5);
  --white-muted: rgba(245, 245, 243, 0.25);
  --white-ghost: rgba(245, 245, 243, 0.08);
  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  z-index: 1000;
  transition: background 0.5s, backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.nav__logo-suffix {
  font-style: italic;
  font-weight: 300;
  font-size: 0.65em;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--white-muted);
  transition: all 0.4s var(--ease-out);
}

.nav__cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* LANGUAGE TOGGLE */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  padding: 8px 12px;
  border: 1px solid var(--white-ghost);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  user-select: none;
  background: transparent;
}

.nav__lang [data-lang-opt] {
  background: transparent;
  border: none;
  padding: 2px 4px;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: var(--white-muted);
  cursor: pointer;
  transition: color 0.3s var(--ease-out);
}

.nav__lang [data-lang-opt].active {
  color: var(--gold);
}

.nav__lang [data-lang-opt]:hover {
  color: var(--white);
}

.nav__lang-sep {
  color: var(--white-ghost);
  font-weight: 200;
  pointer-events: none;
}

@media (max-width: 768px) {
  .nav__lang {
    margin-left: 0;
    margin-right: 12px;
    padding: 6px 10px;
    font-size: 0.65rem;
  }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
}

.nav__burger.active span:first-child {
  transform: rotate(45deg) translate(2px, 3px);
}

.nav__burger.active span:last-child {
  transform: rotate(-45deg) translate(2px, -3px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu__link:hover { color: var(--gold); }

.mobile-menu__cta {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--white-muted);
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out) 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}

.mobile-menu.open .mobile-menu__cta { opacity: 1; }

.mobile-menu__cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 120px);
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* On mobile, shift the crop to the right so the Mercedes is more visible */
@media (max-width: 768px) {
  .hero__video {
    object-position: 70% center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.1) 40%,
      rgba(10, 10, 10, 0.6) 75%,
      rgba(10, 10, 10, 0.95) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 20px;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.4rem, 9vw, 8rem);
  letter-spacing: -0.02em;
}

.hero__title-line--accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 6rem);
  letter-spacing: 0.01em;
}

.hero__slogan {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 200;
  line-height: 1.6;
  color: var(--white-dim);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid var(--white-muted);
  transition: all 0.5s var(--ease-out);
}

.hero__btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  gap: 16px;
}


/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-tag {
  justify-content: center;
}

.section-header--center .section-tag::before {
  display: none;
}

/* ═══════════════════════════════════════════
   CITIES — Sticky scroll + stacked cards
   ═══════════════════════════════════════════ */
.cities {
  padding: 0;
}

.cities__track {
  height: 350vh;
  position: relative;
}

.cities__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cities__sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  padding: 0 clamp(24px, 5vw, 80px);
}

.cities .section-header {
  text-align: center;
  margin-bottom: 0;
}

.cities .section-tag::before {
  display: none;
}

.cities .section-tag {
  justify-content: center;
}

.cities__stack {
  position: relative;
  width: min(85vw, 900px);
  height: clamp(400px, 55vh, 560px);
}

.city-card {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* Each new card slides up and covers the previous */
.city-card[data-card="0"] { z-index: 1; }
.city-card[data-card="1"] { z-index: 2; }
.city-card[data-card="2"] { z-index: 3; }
.city-card[data-card="3"] { z-index: 4; }

.city-card__img-wrap {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
}

.city-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

/* Washington photo has a blurred tilt-shift effect on the left half — show the sharp right side only */
.city-card[data-card="3"] .city-card__img-wrap img {
  object-position: 78% center;
}

.city-card:hover .city-card__img-wrap img {
  transform: scale(1.05);
}

.city-card__overlay {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.city-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  z-index: 2;
}

.city-card__label {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.city-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   SERVICES — Infinite marquee
   ═══════════════════════════════════════════ */
.services {
  padding: clamp(100px, 12vw, 200px) 0;
  overflow: hidden;
}

.services__label {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding: 0 clamp(24px, 4vw, 64px);
}

.services__label .section-tag {
  justify-content: center;
}

.services__label .section-tag::before {
  display: none;
}

.services__marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.services__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.services__marquee:hover .services__marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.services__item {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--white-dim);
  padding: 0 clamp(20px, 3vw, 44px);
  white-space: nowrap;
  transition: color 0.4s var(--ease-out);
  cursor: default;
}

.services__item:hover {
  color: var(--gold);
}

.services__sep {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   FLEET — Morph / crossfade
   ═══════════════════════════════════════════ */
.fleet {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 4vw, 64px);
  overflow: hidden;
}

.fleet__showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4vw, 48px);
}

.fleet__carousel {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  width: 100%;
  justify-content: center;
}

.fleet__image-area {
  position: relative;
  width: min(75vw, 900px);
  aspect-ratio: 16 / 8;
}

.fleet__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.8s var(--ease-in-out), transform 2s var(--ease-in-out), filter 1.6s var(--ease-in-out);
  transform: scale(0.96);
  filter: blur(4px);
}

.fleet__img--active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}

.fleet__info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fleet__label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid var(--gold-dim);
  transition: opacity 0.4s;
}

.fleet__name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: opacity 0.4s;
}

.fleet__specs {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-dim);
  letter-spacing: 0.04em;
  transition: opacity 0.4s;
}

.fleet__arrow {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-ghost);
  border-radius: 50%;
  transition: all 0.3s var(--ease-out);
  color: var(--white);
  flex-shrink: 0;
  cursor: pointer;
}

.fleet__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 166, 110, 0.08);
}

.fleet__counter {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--white-muted);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════ */
.why {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 4vw, 64px);
  text-align: center;
}

.why__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 200;
  color: var(--white-dim);
  margin-top: -40px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1100px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.why__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: clamp(24px, 2vw, 32px) 16px;
}

.why__icon {
  color: var(--gold);
  margin-bottom: 4px;
}

.why__card h4 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.why__card p {
  font-size: 0.82rem;
  font-weight: 200;
  color: var(--white-muted);
  line-height: 1.6;
}

.why__bottom {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 200;
  color: var(--white-muted);
  line-height: 1.7;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--white-ghost);
}

/* ═══════════════════════════════════════════
   CONTACT — Form + concierge phone
   ═══════════════════════════════════════════ */
.contact {
  padding: clamp(100px, 12vw, 200px) clamp(24px, 4vw, 64px);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white-ghost));
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.contact__intro .section-tag {
  margin-bottom: 0;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.contact__title em {
  font-style: italic;
  color: var(--gold);
}

.contact__text {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 200;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 440px;
}

.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid var(--white-ghost);
  border-radius: 4px;
  margin-top: 8px;
  align-self: flex-start;
  transition: all 0.4s var(--ease-out);
  background: rgba(201, 169, 110, 0.03);
}

.contact__phone:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  transform: translateY(-2px);
}

.contact__phone-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact__phone-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
}

.contact__phone svg {
  color: var(--gold);
  margin-left: 8px;
  flex-shrink: 0;
}

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--white-ghost);
  border-radius: 4px;
  padding: clamp(28px, 3.5vw, 44px);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white-ghost);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s var(--ease-out);
}

.form-field textarea {
  resize: vertical;
  min-height: 60px;
  font-family: var(--font-body);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='1.5'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}

.form-field select option {
  background: var(--dark);
  color: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--white-muted);
  font-weight: 200;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field input[type="date"],
.form-field input[type="time"] {
  color-scheme: dark;
  cursor: pointer;
}

.form-hp {
  display: none !important;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  background: var(--white);
  color: var(--black);
  border-radius: 2px;
  margin-top: 12px;
  transition: all 0.4s var(--ease-out);
}

.contact__submit:hover {
  background: var(--gold);
  gap: 16px;
}

.contact__submit:disabled {
  opacity: 0.5;
  cursor: wait;
}

.contact__success {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.05em;
  padding: 16px;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  margin-top: 4px;
  display: none;
}

.contact__success.visible {
  display: block;
  animation: fadeUp 0.5s var(--ease-out);
}

.contact__error {
  font-size: 0.8rem;
  font-weight: 300;
  color: #e07a7a;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 12px;
  border: 1px solid rgba(224, 122, 122, 0.3);
  border-radius: 2px;
  margin-top: 4px;
  display: none;
}

.contact__error.visible {
  display: block;
  animation: fadeUp 0.4s var(--ease-out);
}

/* DEPOSIT NOTICE */
.contact__deposit {
  margin-top: 12px;
  padding: 22px 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.01));
}

.contact__deposit-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 8px;
}

.contact__deposit-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1;
}

.contact__deposit-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.contact__deposit-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* PAYPAL BUTTON CONTAINER */
.contact__paypal {
  margin-top: 4px;
  min-height: 50px;
}

.contact__paypal:empty + .contact__submit[hidden] {
  /* fallback button shows if PayPal didn't load */
}

.contact__legal {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 4px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact__legal-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  transition: border-color 0.3s, color 0.3s;
}

.contact__legal-link:hover {
  border-color: var(--gold);
  color: var(--white);
}

/* ALT FLOW: send without deposit */
.contact__alt {
  margin-top: 12px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact__alt-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 4px;
}

.contact__alt-divider::before,
.contact__alt-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--white-ghost);
}

.contact__alt-divider span {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 0 16px;
}

.contact__alt-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: transparent;
  color: var(--white-dim);
  border: 1px solid var(--white-ghost);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.contact__alt-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact__alt-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.contact__alt-warning {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 480px;
}

.contact__alt-warning strong {
  color: #e0a574;
  font-weight: 500;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   TERMS PAGE
   ═══════════════════════════════════════════ */
.nav--solid {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-ghost);
}

.terms {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(60px, 8vw, 120px)) clamp(24px, 5vw, 40px) clamp(80px, 10vw, 160px);
}

.terms__header {
  margin-bottom: clamp(56px, 7vw, 96px);
  text-align: center;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--white-ghost);
}

.terms__header .section-tag {
  justify-content: center;
  margin-bottom: 24px;
}

.terms__header .section-tag::before {
  display: none;
}

.terms__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.terms__title em {
  font-style: italic;
  color: var(--gold);
}

.terms__effective {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.terms__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto;
}

.terms__section {
  position: relative;
  padding: clamp(36px, 4.5vw, 56px) 0;
  border-bottom: 1px solid var(--white-ghost);
}

.terms__section:last-of-type {
  border-bottom: none;
}

.terms__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 14px;
}

.terms__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  color: var(--white);
}

.terms__section p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-dim);
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}

.terms__section p:last-child {
  margin-bottom: 0;
}

.terms__section strong {
  color: var(--white);
  font-weight: 500;
}

.terms__list {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
}

.terms__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-dim);
}

.terms__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.terms__contact {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
}

.terms__contact a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  transition: border-color 0.3s, color 0.3s;
}

.terms__contact a:hover {
  border-color: var(--gold);
  color: var(--white);
}

.terms__close {
  margin-top: clamp(56px, 7vw, 96px);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-muted);
}

@media (max-width: 768px) {
  .terms {
    padding: calc(var(--nav-h) + 48px) 20px 80px;
  }
  .terms__heading {
    font-size: 1.4rem;
  }
  .terms__section p,
  .terms__list li {
    font-size: 0.88rem;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--white-ghost);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 64px);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  line-height: 1;
}

.footer__logo-suffix {
  font-style: italic;
  font-weight: 300;
  font-size: 0.7em;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.footer__tagline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
}

.footer__tagline {
  font-size: 0.85rem;
  font-weight: 200;
  color: var(--white-muted);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer__col a,
.footer__col span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white-muted);
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--white-ghost);
}

.footer__bottom span {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--white-muted);
}

.footer__socials {
  display: flex;
  gap: 20px;
}

.footer__socials a {
  color: var(--white-muted);
  transition: color 0.3s;
}

.footer__socials a:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile (768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* NAV */
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* HERO */
  .hero {
    align-items: flex-end;
    padding: 20px;
    padding-bottom: 60px;
  }

  .hero__subtitle { margin-bottom: 28px; }

  .hero__btn {
    padding: 14px 28px;
    font-size: 0.75rem;
  }

  .hero__label {
    margin-bottom: 16px;
  }

  /* CITIES */
  .cities__stack {
    width: 92vw;
    height: 50vh;
    min-height: 300px;
  }

  .cities__track {
    height: 280vh;
  }

  .cities__sticky-inner {
    gap: 2rem;
    padding: 0 20px;
  }

  .city-card__name {
    font-size: 1.6rem;
  }

  .city-card__content {
    padding: 20px;
  }

  /* SERVICES */
  .services {
    padding: clamp(60px, 10vw, 120px) 0;
  }

  .services__item {
    font-size: 1.2rem;
    padding: 0 16px;
  }

  .services__sep {
    width: 4px;
    height: 4px;
  }

  .services__marquee-track {
    animation-duration: 18s;
  }

  /* FLEET */
  .fleet {
    padding: clamp(60px, 8vw, 120px) 20px;
  }

  .fleet__image-area {
    width: 70vw;
  }

  .fleet__arrow {
    width: 40px;
    height: 40px;
  }

  .fleet__arrow svg {
    width: 18px;
    height: 18px;
  }

  .fleet__name {
    font-size: 2rem;
  }

  /* WHY */
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why__sub {
    margin-top: -24px;
  }

  /* CONTACT */
  .contact {
    padding: clamp(60px, 8vw, 120px) 20px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__intro {
    position: static;
  }

  .contact__form {
    padding: 28px 20px;
  }

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

  .contact__phone {
    width: 100%;
    justify-content: space-between;
  }

  .contact__submit {
    padding: 16px 32px;
    font-size: 0.75rem;
  }

  /* FOOTER */
  .footer {
    padding: 40px 20px;
  }

  .footer__top {
    flex-direction: column;
    gap: 36px;
    margin-bottom: 36px;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small mobile (480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title-line {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .cities__stack {
    width: 94vw;
    height: 45vh;
    min-height: 260px;
  }

  .cities__track {
    height: 260vh;
  }

  .city-card__name {
    font-size: 1.4rem;
  }

  .services__item {
    font-size: 1rem;
    padding: 0 12px;
  }

  .fleet__name {
    font-size: 1.7rem;
  }

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

  .contact__title {
    font-size: 2rem;
  }

  .contact__phone-number {
    font-size: 1.25rem;
  }

  .contact__submit {
    padding: 14px 28px;
  }

  .footer__links {
    flex-direction: column;
    gap: 24px;
  }
}

/* PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .city-card {
    transform: none !important;
    position: relative;
    inset: auto;
    height: 300px;
  }

  .cities__stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    height: auto;
    width: 100%;
  }

  .cities__track {
    height: auto;
    padding: 80px 0;
  }

  .cities__sticky {
    position: relative;
    height: auto;
  }

  .services__marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  html { scroll-behavior: auto; }
}
