:root {
  --black-950: #060607;
  --black-900: #0B0B0E;
  --black-850: #0F0F13;
  --panel: #14141A;
  --panel-2: #191921;
  --line-dark: rgba(238, 238, 242, .09);
  --line-dark-strong: rgba(238, 238, 242, .16);
  --gold-100: #FDEB93;
  --gold-300: #F5CE73;
  --gold-500: #D9A94E;
  --gold-700: #8A6420;
  --gold-ink: #171204;
  --silver-100: #F2F3F5;
  --silver-200: #DDDFE4;
  --silver-300: #C9CCD3;
  --silver-400: #A7ACB8;
  --silver-500: #8E939F;
  --light: #F5F4F1;
  --line-light: #E7E4DC;
  --text-dark: #17171B;
  --muted-dark: #5A5A63;
  --sh-md: 0 8px 24px rgba(0, 0, 0, .35);
  --sh-lg: 0 24px 60px rgba(0, 0, 0, .5);
  --sh-light: 0 10px 30px rgba(23, 18, 4, .07);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html {
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--silver-200);
  background: var(--black-950);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--gold-300);
  color: var(--gold-ink);
}

*:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
  border-radius: 4px;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--gold-300);
  color: var(--gold-ink);
  padding: 11px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top .25s var(--ease);
}

.skip-link:focus-visible {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.section {
  padding-block: clamp(64px, 9vw, 108px);
}

.section--dark {
  background:
    radial-gradient(900px 420px at 88% 0%, rgba(217, 169, 78, .06), transparent 60%),
    var(--black-900);
}

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-500);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-sub {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 1.02rem;
}

.section--dark .section-head h2,
.airport h2,
.contact-pitch h2 {
  color: var(--silver-100);
}

.section--dark .section-sub {
  color: var(--silver-400);
}

.ico {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ico--fill {
  fill: currentColor;
  stroke: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
  padding: 13px 26px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}

.btn:active {
  transform: scale(.98);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn--sm {
  padding: 10px 18px;
  font-size: .88rem;
}

.btn--block {
  width: 100%;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-100), var(--gold-300) 55%, var(--gold-500));
  color: var(--gold-ink);
  box-shadow: 0 10px 26px rgba(217, 169, 78, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(217, 169, 78, .4), inset 0 1px 0 rgba(255, 255, 255, .4);
}

.btn--ghost {
  border-color: rgba(201, 204, 211, .28);
  color: var(--silver-100);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--black-950);
  color: var(--silver-100);
}

.btn--dark:hover {
  color: var(--gold-300);
  transform: translateY(-2px);
  box-shadow: var(--sh-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 7, .86);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(0, 0, 0, .5);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 76px;
  transition: height .3s var(--ease);
}

.is-scrolled .header-inner {
  height: 66px;
}

.brand-img {
  height: 46px;
  width: auto;
  mix-blend-mode: screen;
  transition: height .3s var(--ease);
}

.is-scrolled .brand-img {
  height: 40px;
}

.main-nav {
  display: none;
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.nav-link {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--silver-300);
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--gold-300);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-dark-strong);
  border-radius: 10px;
  color: var(--silver-200);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.header-wa:hover {
  color: var(--gold-300);
  border-color: rgba(245, 206, 115, .45);
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark-strong);
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--silver-200);
  transition: transform .3s var(--ease);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  width: min(86vw, 350px);
  background: var(--black-900);
  border-left: 1px solid var(--line-dark);
  box-shadow: -24px 0 70px rgba(0, 0, 0, .6);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .38s var(--ease), visibility .38s;
  display: flex;
  flex-direction: column;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-brand {
  height: 42px;
  width: auto;
  mix-blend-mode: screen;
}

.drawer-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark-strong);
  border-radius: 10px;
  color: var(--silver-200);
}

.drawer-close:hover {
  color: var(--gold-300);
  border-color: rgba(245, 206, 115, .4);
}

.mobile-links {
  padding: 10px 22px;
  overflow-y: auto;
}

.mobile-link {
  display: block;
  padding: 15px 2px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--silver-200);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.mobile-link:hover {
  color: var(--gold-300);
  padding-left: 8px;
}

.mobile-nav-cta {
  margin-top: auto;
  padding: 20px 22px 26px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 12px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 52px),
    var(--black-950);
  padding: clamp(52px, 8vh, 84px) 0 clamp(130px, 14vw, 175px);
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 420px at 82% 6%, rgba(217, 169, 78, .13), transparent 62%),
    radial-gradient(640px 420px at 6% 88%, rgba(167, 172, 184, .08), transparent 60%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 206, 115, .3);
  background: rgba(217, 169, 78, .06);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 22px;
}

.hero-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 10px var(--gold-300);
}

.hero-title {
  font-size: clamp(2.5rem, 5.6vw, 4.1rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--silver-100);
}

.accent {
  background: linear-gradient(120deg, var(--gold-100), var(--gold-300) 55%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 20px;
  max-width: 540px;
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  color: var(--silver-400);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  margin-top: 34px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--silver-300);
}

.trust-ico {
  color: var(--gold-300);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-car {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(245, 206, 115, .22);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, .55),
    inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(10, 10, 13, .78);
  border: 1px solid var(--line-dark-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--sh-lg);
}

.float-chip p {
  line-height: 1.3;
}

.float-chip strong {
  display: block;
  font-size: .93rem;
  font-weight: 800;
  color: var(--gold-300);
}

.float-chip span {
  font-size: .74rem;
  color: var(--silver-400);
}

.chip-ico {
  color: var(--gold-300);
}

.chip-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-300);
}

.chip--price {
  top: 5%;
  right: 0;
  animation: floatY 6.5s ease-in-out infinite alternate;
}

.chip--rating {
  bottom: 4%;
  left: -2%;
  animation: floatY 7.5s ease-in-out .8s infinite alternate;
}

@keyframes floatY {
  from {
    transform: translateY(-7px);
  }
  to {
    transform: translateY(8px);
  }
}

.hero-locations {
  position: relative;
  z-index: 2;
  margin-top: clamp(40px, 6vw, 64px);
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-500);
}

.booking-section {
  position: relative;
  z-index: 5;
  margin-top: -108px;
  padding-bottom: 10px;
}

.booking-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-dark-strong);
  border-radius: 18px;
  box-shadow: var(--sh-lg);
  padding: clamp(22px, 3.2vw, 32px);
}

.booking-head {
  margin-bottom: 20px;
}

.booking-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--silver-100);
}

.booking-sub {
  margin-top: 5px;
  font-size: .92rem;
  color: var(--silver-400);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.form-field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--silver-300);
  margin-bottom: 7px;
  letter-spacing: .01em;
}

.label-optional {
  color: var(--silver-500);
  font-weight: 500;
}

.field--place {
  grid-column: span 2;
}

.field--submit {
  grid-column: span 3;
  display: flex;
  align-items: end;
}

.field-control {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--silver-500);
  pointer-events: none;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid #26262E;
  background: var(--black-950);
  border-radius: 10px;
  padding: 0 14px;
  height: 52px;
  font-family: inherit;
  font-size: .93rem;
  color: var(--silver-100);
  color-scheme: dark;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.textarea {
  height: auto;
  min-height: 108px;
  padding: 12px 14px;
  resize: vertical;
}

.has-icon {
  padding-left: 42px;
}

.input:hover,
.select:hover,
.textarea:hover {
  border-color: #33333E;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--gold-300);
  box-shadow: 0 0 0 3px rgba(245, 206, 115, .16);
}

.select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%238E939F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.select:invalid {
  color: var(--silver-500);
}

.form-submit {
  height: 52px;
  width: 100%;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--line-light);
  color: #4C4A42;
  font-size: .92rem;
  line-height: 1.55;
}

.form-success--dark {
  background: rgba(245, 206, 115, .07);
  border-color: rgba(245, 206, 115, .35);
  color: var(--gold-100);
}

.form-success[hidden] {
  display: none;
}

.success-ico {
  color: var(--gold-500);
  margin-top: 2px;
}

.success-note {
  color: var(--silver-500);
}

.booking-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 26px;
  margin-top: 20px;
}

.note-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--silver-400);
}

.note-ico {
  color: var(--gold-500);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 28px 26px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 169, 78, .55);
  box-shadow: var(--sh-light);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(217, 169, 78, .55);
  background: rgba(245, 206, 115, .1);
  color: var(--gold-700);
  margin-bottom: 17px;
}

.benefit-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.benefit-card p {
  font-size: .91rem;
  color: var(--muted-dark);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
}

.vehicle-card {
  background: var(--panel);
  border: 1px solid #23232C;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 206, 115, .35);
  box-shadow: var(--sh-lg);
}

.vehicle-media {
  position: relative;
  aspect-ratio: 3 / 2;
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(255, 255, 255, .06), transparent 70%),
    linear-gradient(175deg, #1B1D25, #0D0E12);
  overflow: hidden;
  border-bottom: 1px solid #20202A;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease);
}

.vehicle-card:hover .vehicle-media img {
  transform: scale(1.06);
}

.vehicle-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(245, 206, 115, .5);
  background: rgba(6, 6, 7, .72);
  color: var(--gold-300);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vehicle-badge--gold {
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  border-color: transparent;
  color: var(--gold-ink);
}

.vehicle-availability {
  position: absolute;
  top: 13px;
  right: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(6, 6, 7, .72);
  border: 1px solid var(--line-dark-strong);
  color: var(--silver-300);
  font-size: .7rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-300);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}

.vehicle-body {
  padding: 21px;
}

.vehicle-name {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--silver-100);
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  margin: 14px 0;
  border-top: 1px solid #22222B;
  border-bottom: 1px solid #22222B;
}

.vehicle-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--silver-400);
  text-align: center;
}

.vehicle-spec .ico {
  color: var(--gold-500);
}

.vehicle-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 17px;
}

.price-from {
  font-size: .78rem;
  color: var(--silver-500);
}

.price-value {
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: -.01em;
  background: linear-gradient(120deg, var(--gold-100), var(--gold-300) 60%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-unit {
  font-size: .84rem;
  color: var(--silver-500);
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.airport {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 8% 20%, rgba(217, 169, 78, .09), transparent 60%),
    linear-gradient(180deg, #0C0C10, #070709);
  border-block: 1px solid var(--line-dark);
  padding-block: clamp(60px, 8vw, 96px);
}

.airport-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.airport-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.airport-text {
  margin-top: 16px;
  color: var(--silver-400);
  max-width: 560px;
}

.airport-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.airport-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .95rem;
  color: var(--silver-200);
}

.airport-list .ico {
  color: var(--gold-300);
}

.airport-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.airport-media img {
  width: 100%;
  background: var(--black-850);
  border: 1px solid var(--line-dark-strong);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--sh-lg);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 22px;
}

.dest-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.dest-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 169, 78, .55);
  box-shadow: var(--sh-light);
}

.dest-card--featured {
  border-color: rgba(217, 169, 78, .65);
}

.dest-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black-850);
}

.dest-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.dest-card:hover .dest-media img {
  transform: scale(1.05);
}

.dest-body {
  padding: 18px 20px 20px;
}

.dest-body h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dest-body p {
  margin-top: 5px;
  font-size: .88rem;
  color: var(--muted-dark);
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  font-size: .87rem;
  font-weight: 700;
  color: var(--gold-700);
  text-decoration: none;
  transition: color .2s var(--ease), gap .2s var(--ease);
}

.dest-link:hover {
  color: var(--gold-500);
  gap: 11px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 22px;
}

.testimonial {
  background: var(--panel);
  border: 1px solid #23232C;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), border-color .28s var(--ease);
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 206, 115, .35);
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold-300);
}

.testimonial blockquote {
  flex: 1;
}

.testimonial blockquote p {
  margin: 15px 0 19px;
  font-size: .97rem;
  line-height: 1.65;
  color: var(--silver-200);
}

.t-foot {
  display: flex;
  align-items: center;
  gap: 13px;
}

.t-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  color: var(--gold-ink);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.t-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.t-name {
  font-size: .93rem;
  font-weight: 700;
  color: var(--silver-100);
}

.t-city {
  font-size: .8rem;
  color: var(--silver-500);
}

.testi-note {
  margin-top: 26px;
  text-align: center;
  font-size: .78rem;
  color: var(--silver-500);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.faq-intro .section-sub {
  margin-top: 12px;
}

.faq-wa {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  transition: border-color .25s var(--ease);
}

.faq-item[open] {
  border-color: rgba(217, 169, 78, .6);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-weight: 600;
  font-size: .97rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: var(--gold-700);
  transform: rotate(0deg);
  transition: transform .25s var(--ease);
}

.faq-item[open] .faq-chevron {
  transform: rotate(90deg);
}

.faq-item > p {
  padding: 0 18px 17px;
  font-size: .93rem;
  color: var(--muted-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}

.contact-pitch h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.18;
}

.contact-text {
  margin-top: 14px;
  color: var(--silver-400);
  max-width: 460px;
}

.contact-direct {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.contact-direct li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cd-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(245, 206, 115, .4);
  background: rgba(245, 206, 115, .07);
  color: var(--gold-300);
  flex-shrink: 0;
}

.cd-body {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.cd-label {
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--silver-500);
}

.cd-body a {
  color: var(--silver-100);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s var(--ease);
}

.cd-body a:hover {
  color: var(--gold-300);
}

.quote-form {
  background: var(--panel);
  border: 1px solid #23232C;
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  gap: 16px;
}

.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form .form-field label {
  color: var(--silver-300);
}

.qf-privacy {
  font-size: .78rem;
  color: var(--silver-500);
  text-align: center;
}

.cta-final {
  padding-block: clamp(56px, 8vw, 96px);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(245, 206, 115, .3);
  border-radius: 22px;
  background:
    radial-gradient(520px 260px at 85% 0%, rgba(217, 169, 78, .14), transparent 60%),
    radial-gradient(420px 240px at 10% 100%, rgba(167, 172, 184, .07), transparent 60%),
    var(--black-900);
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 64px);
  box-shadow: var(--sh-lg);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 206, 115, .12);
  border-radius: 16px;
  pointer-events: none;
}

.cta-title {
  position: relative;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--silver-100);
}

.cta-text {
  position: relative;
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--silver-400);
  font-size: 1.02rem;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.site-footer {
  background: #050506;
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(52px, 7vw, 72px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.footer-logo {
  height: 58px;
  width: auto;
  mix-blend-mode: screen;
}

.footer-about {
  margin: 18px 0 20px;
  font-size: .92rem;
  color: var(--silver-500);
  max-width: 300px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid #26262E;
  color: var(--silver-300);
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.socials a:hover {
  color: var(--gold-300);
  border-color: rgba(245, 206, 115, .5);
  transform: translateY(-3px);
}

.footer-title {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--silver-500);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: .92rem;
  color: var(--silver-300);
  text-decoration: none;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 13px;
  font-size: .92rem;
}

.footer-contact .ico {
  color: var(--gold-500);
  margin-top: 3px;
}

.footer-contact a {
  color: var(--silver-300);
  text-decoration: none;
  transition: color .2s var(--ease);
}

.footer-contact a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: clamp(40px, 6vw, 56px);
  padding: 22px 0 28px;
  border-top: 1px solid var(--line-dark);
  font-size: .84rem;
  color: var(--silver-500);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.legal-links a {
  color: var(--silver-500);
  text-decoration: none;
  transition: color .2s var(--ease);
}

.legal-links a:hover {
  color: var(--silver-100);
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  color: var(--gold-ink);
  box-shadow: 0 12px 30px rgba(217, 169, 78, .4);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.wa-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-float:hover {
  transform: translateY(-3px);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

html.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (min-width: 641px) {
  .main-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 1120px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .field--place {
    grid-column: span 2;
  }

  .field--submit {
    grid-column: span 2;
  }
}

@media (min-width: 1025px) {
  .hero-inner {
    grid-template-columns: 1.02fr .98fr;
  }

  .airport-inner {
    grid-template-columns: 1.08fr .92fr;
  }

  .faq-inner {
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
  }

  .contact-inner {
    grid-template-columns: .95fr 1.05fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.15fr 1.25fr;
  }
}

@media (max-width: 1024px) {
  .hero-copy {
    text-align: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }

  .booking-section {
    margin-top: -88px;
  }

  .airport-media {
    max-width: 520px;
  }
}

@media (max-width: 940px) {
  .header-wa span {
    display: none;
  }

  .header-wa {
    padding: 10px;
  }
}

@media (max-width: 720px) {
  .chip--rating {
    display: none;
  }

  .float-chip {
    padding: 9px 13px;
  }

  .vehicle-actions {
    grid-template-columns: 1fr;
  }

  .qf-row {
    grid-template-columns: 1fr;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .field--place,
  .field--submit {
    grid-column: span 1;
  }

  .booking-note {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }

  .hero {
    padding-bottom: 118px;
  }

  .booking-section {
    margin-top: -74px;
  }

  .vehicle-spec {
    font-size: .73rem;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 52px;
}

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--silver-500);
  text-decoration: none;
  transition: color .2s var(--ease);
}

.back-link:hover {
  color: var(--gold-300);
}

.single-vehicle-section {
  padding-top: clamp(40px, 6vw, 72px);
}

.single-vehicle-media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.single-vehicle {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.vehicle-badge--static {
  position: static;
  display: inline-block;
  margin-bottom: 14px;
}

.single-vehicle .vehicle-name {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.page-title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text-dark);
}

.entry-meta {
  font-size: .88rem;
  color: var(--muted-dark);
}

.entry-content,
.entry-excerpt {
  max-width: 720px;
}

.entry-content p,
.entry-excerpt p {
  margin: 0 0 14px;
  line-height: 1.75;
  color: var(--muted-dark);
}

.entry-content a {
  color: var(--gold-700);
  text-decoration: underline;
}

.entry-content h2,
.entry-content h3 {
  margin: 28px 0 10px;
  color: var(--text-dark);
}

.entry-list {
  display: grid;
  gap: 22px;
  max-width: 720px;
}

.entry-card {
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid #ECE8DE;
  border-radius: 18px;
}

.entry-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.entry-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.entry-title a:hover {
  color: var(--gold-700);
}

.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body:not(.home) main#main {
  padding-top: 110px;
}

@media (max-width: 900px) {
  .single-vehicle {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
