@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine-UltraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine-Bold.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --white: #ffffff;
  --gold: #d8a72b;
  --gold-light: #fff0a6;
  --gold-deep: #8f5b00;
  --gold-metal: linear-gradient(
    115deg,
    #7e5000 0%,
    #d7a523 20%,
    #fff3b5 42%,
    #c98c12 62%,
    #f1cf65 80%,
    #8a5700 100%
  );
  --gold-glow: radial-gradient(
    circle at 50% 50%,
    rgba(216, 167, 43, 0.34),
    rgba(216, 167, 43, 0) 68%
  );
  --ink: #050505;
  --muted: rgba(5, 5, 5, 0.6);
  --muted-dark: rgba(255, 255, 255, 0.62);
  --line: rgba(5, 5, 5, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(10, 10, 10, 0.7);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.14);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1280px;
  --font-ui: "e-Ukraine", Arial, sans-serif;
  --font-display: "e-Ukraine", Georgia, serif;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --fx-tilt-x: 0deg;
  --fx-tilt-y: 0deg;
  --fx-spot-x: 50%;
  --fx-spot-y: 50%;
  --mag-x: 0px;
  --mag-y: 0px;
}

/* ==========================================================================
   Native page-to-page transitions (View Transitions API).
   Progressive enhancement: browsers without support simply ignore this.
   ========================================================================== */
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: 0.32s cubic-bezier(0.2, 0.72, 0.2, 1) both fx-vt-out;
}
::view-transition-new(root) {
  animation: 0.5s cubic-bezier(0.16, 1, 0.3, 1) both fx-vt-in;
}
@keyframes fx-vt-out {
  to {
    opacity: 0;
    transform: scale(0.983) translateY(-6px);
    filter: saturate(0.9);
  }
}
@keyframes fx-vt-in {
  from {
    opacity: 0;
    transform: scale(1.02) translateY(14px);
  }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img,
video,
svg {
  display: block;
}
img {
  max-width: 100%;
}
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
::selection {
  color: var(--black);
  background: var(--gold-light);
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.site-shell {
  min-height: 100vh;
  overflow: clip;
}
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section {
  padding: 88px 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: inherit;
  text-wrap: balance;
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(56px, 6.8vw, 80px);
  line-height: 1;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.6vw, 55px);
  line-height: 1;
}
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: clamp(21px, 1.85vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.032em;
}
p {
  line-height: 1.7;
}
.gold-text,
.route-hero h1 span {
  color: var(--gold);
  background: var(--gold-metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.route-hero h1 span.white-text {
  color: var(--white);
  -webkit-text-fill-color: initial;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.section-kicker::before,
.eyebrow > span {
  content: "";
  flex: 0 0 auto;
  width: 30px;
  height: 1px;
  background: var(--gold-metal);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 44px;
}
.section-heading > p,
.section-heading__aside > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}
.section-heading--center {
  display: block;
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-heading--center .section-kicker {
  justify-content: center;
}
.section-heading--center > p {
  margin: 18px auto 0;
}
.section-heading--light {
  color: var(--white);
}
.section-heading--light p {
  color: var(--muted-dark);
}
.section-heading--light .section-kicker {
  color: var(--gold-light);
}
.section-heading__aside {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.button {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px));
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -34%;
  width: 28%;
  transform: skewX(-20deg) translateX(0%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    transparent
  );
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.button:hover {
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px)) translateY(-3px);
}
.button:hover::before {
  transform: skewX(-20deg) translateX(540%);
}
.button svg {
  font-size: 19px;
  transition: transform 0.35s var(--spring);
}
.button:hover svg {
  transform: translateX(4px);
}
.button--gold {
  color: var(--black);
  background: var(--gold-metal);
  box-shadow:
    0 14px 34px rgba(180, 125, 12, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.72);
}
.button--gold:hover {
  filter: brightness(1.06);
  box-shadow:
    0 20px 46px rgba(180, 125, 12, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.78);
}
.button--header {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 10px;
}
.button--wide {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: transform 0.45s var(--ease);
}
.topbar {
  height: 38px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.48);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  transition:
    height 0.4s var(--ease),
    opacity 0.3s ease;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar__promise,
.topbar__right,
.topbar__right a {
  display: flex;
  align-items: center;
}
.topbar__promise {
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 5px rgba(216, 167, 43, 0.12),
    0 0 16px rgba(216, 167, 43, 0.8);
}
.topbar__right {
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
}
.topbar__right a {
  gap: 8px;
  transition: color 0.25s ease;
}
.topbar__right a:hover {
  color: var(--gold-light);
}
.topbar__right svg {
  font-size: 18px;
  color: var(--gold);
}
.topbar__phone {
  color: var(--white) !important;
  font-weight: 600;
}
.navline {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.16));
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.navline__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}
.site-header.is-scrolled .topbar {
  height: 0;
  opacity: 0;
}
.site-header.is-scrolled .navline {
  background: rgba(6, 6, 6, 0.82);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}
.site-header.is-scrolled .navline__inner {
  min-height: 70px;
}
.brand {
  min-width: 0;
  line-height: 0;
}
.brand__logo {
  width: clamp(174px, 14vw, 160px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.32));
  transition:
    transform 0.45s var(--spring),
    filter 0.45s ease;
}
.brand:hover .brand__logo {
  transform: translateY(-2px) scale(1.015);
  filter: drop-shadow(0 10px 28px rgba(216, 167, 43, 0.2));
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.desktop-nav > a,
.nav-dropdown__trigger {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 500;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown.is-open .nav-dropdown__trigger,
.nav-dropdown__trigger:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.desktop-nav > a.is-active::after,
.nav-dropdown.is-active .nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 1px;
  background: var(--gold-metal);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown__trigger svg {
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}
.nav-dropdown.is-open .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
}
.language-switch button,
.language-switch a {
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
}
.language-switch button.is-active,
.language-switch button:hover,
.language-switch a.is-active,
.language-switch a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}
.language-switch span {
  color: rgba(255, 255, 255, 0.18);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.routes-mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(1040px, calc(100vw - 64px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.48);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  backdrop-filter: blur(28px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 0.28s ease,
    transform 0.38s var(--spring),
    visibility 0.28s;
}
.nav-dropdown.is-open .routes-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}
.routes-mega__topline {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.routes-mega__topline b {
  color: var(--gold-light);
}
.routes-mega__grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 8px;
}
.routes-mega__intro,
.routes-menu-group {
  min-height: 290px;
  padding: 24px;
  border-radius: 18px;
}
.routes-mega__intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(216, 167, 43, 0.22),
      transparent 50%
    ),
    rgba(255, 255, 255, 0.06);
}
.routes-mega__eyebrow {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.routes-mega__intro h3 {
  margin: 12px 0;
  font-family: var(--font-display);
  font-size: 34px;
}
.routes-mega__intro p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}
.routes-mega__all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.routes-menu-group {
  background: rgba(255, 255, 255, 0.035);
}
.routes-menu-group__title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.routes-menu-group__title span {
  color: var(--gold);
  font-size: 10px;
}
.routes-menu-group__title b {
  font-size: 13px;
}
.routes-menu-group > a {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  transition:
    color 0.25s,
    transform 0.25s;
}
.routes-menu-group > a strong {
  color: var(--white);
  text-align: right;
}
.routes-menu-group > a svg {
  color: var(--gold);
}
.routes-menu-group > a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  height: min(920px, 100svh);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.hero__video,
.hero__overlay,
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__video {
  object-fit: cover;
  transform: translateY(var(--hero-parallax, 0)) scale(1.04);
  filter: saturate(0.25) contrast(1.08) brightness(0.72);
}
.hero__overlay {
  background:
    radial-gradient(
      circle at 65% 45%,
      rgba(216, 167, 43, 0.1),
      transparent 36%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.18) 75%,
      rgba(0, 0, 0, 0.54) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.36));
}
.hero__grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to right, black, transparent 76%);
  mask-image: linear-gradient(to right, black, transparent 76%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding-top: 152px;
  padding-bottom: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero__content {
  max-width: 790px;
}
.hero .eyebrow {
  color: var(--gold-light);
}
.hero h1 {
  margin-bottom: 28px;
}
.hero__content > p {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.ghost-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px));
  transition: transform 0.3s var(--ease);
}
.ghost-link svg {
  color: var(--gold);
  transition: transform 0.3s var(--spring);
}
.ghost-link:hover svg {
  transform: translateX(5px);
}
.hero__badges {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}
.hero__badges svg {
  color: var(--gold-light);
}
.hero__status {
  min-width: 230px;
  display: none !important;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(10, 10, 10, 0.48);
  box-shadow: var(--shadow-dark);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.hero__status > div {
  display: grid;
  gap: 4px;
}
.hero__status strong {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}
.hero__status small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__status i {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.hero__rail {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}
.hero__rail i {
  width: 1px;
  height: 44px;
  background: var(--gold);
}

/* Booking panel */
.booking-dock,
.route-booking {
  position: relative;
  z-index: 8;
  margin-top: -72px;
}
.route-booking {
  margin-top: -42px;
}
.booking-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}
.booking-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.68),
    rgba(255, 255, 255, 0.16)
  );
}
.booking-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}
.booking-panel__head .section-kicker {
  margin-bottom: 8px;
}
.booking-panel__head h2 {
  font-family: var(--font-ui);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.trip-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.035);
}
.trip-switch button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}
.trip-switch button.is-active {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.booking-fields {
  display: grid;
  grid-template-columns:
    minmax(210px, 1.35fr) 38px minmax(210px, 1.35fr)
    repeat(3, minmax(130px, 0.72fr)) minmax(190px, 0.9fr);
  align-items: end;
  gap: 10px;
}
.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.field > span {
  padding-left: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field > div {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s var(--spring);
}
.field > div:hover,
.field > div:focus-within {
  border-color: rgba(143, 91, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(216, 167, 43, 0.1);
  transform: translateY(-2px);
}
.field svg {
  flex: 0 0 auto;
  color: var(--gold-deep);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--black);
  background: transparent;
  font-size: 13px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.field select {
  cursor: pointer;
}
.field--textarea > div {
  min-height: 140px;
  align-items: flex-start;
  padding-top: 14px;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.swap-button {
  align-self: end;
  width: 38px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--gold-deep);
}
.swap-button svg {
  transition: transform 0.5s var(--spring);
}
.swap-button:hover svg {
  transform: rotate(180deg);
}
.booking-submit {
  min-height: 52px;
  padding-inline: 19px;
}
.booking-note {
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
}
.booking-note svg {
  color: var(--gold-deep);
}

/* Inner-page forms use a calmer rhythm than the compact homepage dock. */
.inner-page .booking-panel {
  padding: 34px 36px;
}
.inner-page .booking-panel__head {
  margin-bottom: 28px;
}
.inner-page .booking-panel__head .section-kicker {
  margin-bottom: 7px;
}
.inner-page .booking-panel__head h2 {
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.032em;
  line-height: 1.1;
}
.inner-page .trip-switch button {
  min-height: 38px;
  padding-inline: 15px;
}
.inner-page .booking-fields {
  gap: 14px;
}
.inner-page .field {
  gap: 9px;
}
.inner-page .field > span {
  font-size: 10.5px;
}
.inner-page .field > div {
  min-height: 56px;
  padding-inline: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}
.inner-page .field input,
.inner-page .field select,
.inner-page .field textarea {
  font-size: 14px;
}
.inner-page .field--textarea > div {
  min-height: 154px;
  padding-top: 15px;
}
.inner-page .field textarea {
  min-height: 120px;
}
.inner-page .swap-button {
  height: 56px;
}
.inner-page .booking-submit {
  min-height: 56px;
  padding-inline: 20px;
}
.inner-page .booking-note {
  margin-top: 19px;
  font-size: 11.5px;
  line-height: 1.55;
}
.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(216, 167, 43, 0.12);
  color: var(--gold-deep);
  font-size: 12px;
}
.form-message.is-visible {
  display: block;
}
.form-message.is-error {
  color: var(--black);
  background: rgba(0, 0, 0, 0.07);
}

/* Services */
.services {
  padding-top: 122px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.055);
  transition:
    transform 0.45s var(--spring),
    border-color 0.35s,
    box-shadow 0.45s;
}
.service-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gold-glow);
  opacity: 0.55;
  transition:
    transform 0.6s var(--spring),
    opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 167, 43, 0.42);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.1);
}
.service-card:hover::before {
  transform: scale(1.18);
  opacity: 0.85;
}
.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 18px;
  color: var(--gold-deep);
  background: rgba(216, 167, 43, 0.12);
}
.service-card__icon svg {
  font-size: 24px;
}
.service-card > small {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(0, 0, 0, 0.26);
  font-size: 10px;
  font-weight: 600;
}
.service-card h3 {
  max-width: 340px;
  margin-top: 32px;
}
.service-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
}
.service-card b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--gold-deep);
  font-size: 11px;
  text-transform: uppercase;
}
.service-card--featured {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(216, 167, 43, 0.18),
      transparent 35%
    ),
    var(--black);
  box-shadow: var(--shadow-dark);
}
.service-card--featured p {
  color: var(--muted-dark);
}
.service-card--featured > small {
  color: rgba(255, 255, 255, 0.3);
}
.service-card--featured .service-card__icon {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}
.service-card--featured b {
  color: var(--gold-light);
}

/* Fleet */
.fleet-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(216, 167, 43, 0.15),
      transparent 30%
    ),
    var(--black);
}
.fleet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.fleet-section > .container {
  position: relative;
  z-index: 1;
}
.slider-arrows {
  display: flex;
  gap: 9px;
}
.slider-arrows button,
.review-controls__right > button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s var(--spring);
}
.slider-arrows button:first-child svg,
[data-review-prev] svg {
  transform: rotate(180deg);
}
.slider-arrows button:hover,
.review-controls__right > button:hover {
  color: var(--black);
  background: var(--gold-metal);
  transform: translateY(-2px);
}
.fleet-viewport {
  overflow: hidden;
}
.fleet-track {
  display: flex;
  gap: 18px;
  transition: transform 0.65s var(--spring);
  will-change: transform;
}
.car-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    transform 0.4s var(--spring),
    border-color 0.3s;
}
.car-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 167, 43, 0.38);
}
.car-gallery {
  position: relative;
  height: 265px;
  overflow: hidden;
  background: #000;
}
.car-gallery__track {
  height: 100%;
  display: flex;
  transition: transform 0.55s var(--spring);
}
.car-gallery__slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
}
.car-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
}
.car-gallery::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.58));
}
.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  color: var(--white);
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity 0.3s,
    background 0.3s;
}
.car-gallery:hover .gallery-arrow {
  opacity: 1;
}
.gallery-arrow:hover {
  background: var(--gold-deep);
}
.gallery-arrow--prev {
  left: 14px;
}
.gallery-arrow--next {
  right: 14px;
}
.gallery-arrow--prev svg {
  transform: rotate(90deg);
}
.gallery-arrow--next svg {
  transform: rotate(-90deg);
}
.car-gallery__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 13px;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}
.car-gallery__dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition:
    width 0.3s,
    background 0.3s;
}
.car-gallery__dots button.is-active {
  width: 20px;
  background: var(--gold-light);
}
.car-card__tag {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--gold-light);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.car-card__body {
  padding: 24px;
}
.car-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.car-card__title h3 {
  margin: 0;
  font-size: 25px;
}
.car-card__title span {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
}
.car-card__body > p {
  margin: 15px 0 20px;
  color: var(--muted-dark);
  font-size: 13px;
}
.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.car-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}
.car-specs svg {
  color: var(--gold);
}
.car-card__body > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fleet-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
}
.fleet-progress {
  width: min(380px, 46%);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.fleet-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-metal);
  transform: scaleX(0.34);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.fleet-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
}

/* Process */
.process {
  position: relative;
  background: var(--white);
}
.process__glow {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 560px;
  height: 280px;
  transform: translateX(-50%);
  background: var(--gold-glow);
  opacity: 0.28;
  pointer-events: none;
}
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.process-line__track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 62px;
  height: 1px;
  overflow: hidden;
  background: rgba(216, 167, 43, 0.16);
}
.process-line__track::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--gold-metal);
  transition: transform 1.1s var(--ease) 0.15s;
}
.process-line.is-motion-group-visible .process-line__track::after {
  transform: scaleX(1);
}
.process-step {
  position: relative;
  padding: 18px;
  text-align: center;
}
.process-step__number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 600;
}
.process-step__icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(216, 167, 43, 0.32);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  color: var(--gold-deep);
}
.process-step__icon svg {
  font-size: 26px;
}
.process-step h3 {
  font-size: 23px;
}
.process-step p {
  margin: 0 auto;
  max-width: 245px;
  color: var(--muted);
  font-size: 13px;
}
.process-step > i {
  display: none;
}
.process-assurance {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.process-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}
.process-assurance svg {
  color: var(--gold-deep);
}

/* Routes cards */
.routes-section {
  background: rgba(0, 0, 0, 0.025);
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.route-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s var(--spring),
    box-shadow 0.4s,
    border-color 0.3s;
}
.route-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 167, 43, 0.4);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}
.route-card > small {
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.route-card h3 {
  margin: auto 0 20px;
  font-family: var(--font-display);
  font-size: 34px;
}
.route-card h3 span {
  color: var(--gold-deep);
}
.route-card > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.route-card > div span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.045);
  color: var(--muted);
  font-size: 10px;
}
.route-card > p {
  margin: auto 0 20px;
  color: var(--muted);
  font-size: 13px;
}
.route-card b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-card--dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 82% 8%,
      rgba(216, 167, 43, 0.22),
      transparent 40%
    ),
    var(--black);
}
.route-card--dark > div span {
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}
.route-card--dark b,
.route-card--dark > small {
  color: var(--gold-light);
}
.route-card--gold {
  color: var(--black);
  border: 0;
  background: var(--gold-metal);
}
.route-card--gold > small,
.route-card--gold b {
  color: var(--black);
}
.route-card--gold > p {
  color: rgba(0, 0, 0, 0.66);
}

/* Reviews - compact multi-card carousel */
.reviews {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.reviews__ambient {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -320px;
  right: -160px;
  border-radius: 50%;
  background: var(--gold-glow);
  opacity: 0.5;
}
.reviews__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 38px;
  margin-bottom: 38px;
}
.reviews__title {
  max-width: 710px;
}
.reviews__title .section-kicker {
  color: var(--gold-light);
}
.reviews__title > p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted-dark);
}
.reviews-rating-card {
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.reviews-rating-card > strong {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
}
.reviews-rating-card > div {
  display: grid;
  gap: 2px;
}
.reviews-rating-card b {
  font-size: 14px;
}
.reviews-rating-card small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
.review-stage {
  position: relative;
  z-index: 1;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-dark);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.review-stage__shine {
  position: absolute;
  inset: -1px auto auto 8%;
  width: 46%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light),
    transparent
  );
  opacity: 0.7;
}
.review-stage__viewport {
  display: flex;
  gap: 14px;
  transition: transform 0.65s var(--spring);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.review-card:hover,
.review-card.is-active {
  border-color: rgba(216, 167, 43, 0.32);
  background: rgba(255, 255, 255, 0.075);
}
.review-card__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-metal);
  font-size: 10px;
  font-weight: 600;
}
.review-card__meta > div {
  display: grid;
}
.review-card__meta strong {
  font-size: 12px;
}
.review-card__meta small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}
.review-card__meta small svg {
  color: var(--gold);
}
.review-route {
  grid-column: 1 / -1;
  width: fit-content;
  margin-top: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(216, 167, 43, 0.1);
  color: var(--gold-light);
  font-size: 12px;
}
.quote-mark {
  height: 18px;
  margin: 14px 0 2px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}
.review-card > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.72;
}
.review-card footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.review-card footer small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px 0;
}
.review-pagination {
  display: flex;
  gap: 6px;
}
.review-pagination button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    width 0.3s,
    background 0.3s;
}
.review-pagination button.is-active {
  width: 24px;
  background: var(--gold-metal);
}
.review-controls__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-count {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}
.review-count span:first-child {
  color: var(--gold-light);
}
.review-count i {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

/* FAQ */
.faq {
  background: var(--white);
}
.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 78px;
}
.faq__grid > div:first-child > p {
  max-width: 390px;
  margin-top: 22px;
  color: var(--muted);
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item > button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}
.accordion-item > button svg {
  flex: 0 0 auto;
  color: var(--gold-deep);
  transition: transform 0.4s var(--spring);
}
.accordion-item.is-open > button svg {
  transform: rotate(45deg);
}
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease);
}
.accordion-content > * {
  min-height: 0;
  overflow: hidden;
}
.accordion-content p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.accordion-item.is-open .accordion-content {
  grid-template-rows: 1fr;
}
.accordion-item.is-open .accordion-content p {
  padding-bottom: 24px;
}

/* CTA and footer */
.final-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(216, 167, 43, 0.24),
      transparent 32%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.5)),
    url("../images/hero-poster.jpg") center/cover;
  filter: saturate(0.25);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 88px 0;
}
.final-cta__inner .section-kicker {
  color: var(--gold-light);
}
.final-cta__inner h2 {
  font-size: clamp(48px, 5.4vw, 78px);
}
.final-cta__inner > p {
  max-width: 650px;
  margin: 24px 0 30px;
  color: var(--muted-dark);
}
.final-cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.phone-inline > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold-light);
}
.phone-inline b {
  display: grid;
  font-size: 14px;
}
.phone-inline small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 58px;
  padding: 72px 0 52px;
}
.brand--footer .brand__logo {
  width: 238px;
}
.footer-brand > p {
  max-width: 380px;
  margin: 22px 0;
  color: var(--muted-dark);
  font-size: 13px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 600;
  transition:
    color 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.footer-social a:hover {
  color: var(--gold-light);
  border-color: rgba(216, 167, 43, 0.5);
  transform: translateY(-3px);
}
.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-grid h3 {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-grid > div:not(.footer-brand) > a,
.footer-contact {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  transition:
    color 0.25s,
    transform 0.25s;
}
.footer-grid > div:not(.footer-brand) > a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.footer-contact svg {
  color: var(--gold);
  font-size: 18px;
}
.footer-route {
  margin-top: 8px;
  color: var(--gold-light) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
  font-size: 14px;
}
.floating-call {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-metal);
  box-shadow: 0 16px 44px rgba(143, 91, 0, 0.34);
  transition: transform 0.3s var(--spring);
}
.floating-call:hover {
  transform: translateY(-5px) scale(1.04);
}
.floating-call svg {
  font-size: 22px;
}

/* Inner hero */
.subhero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.46)),
    url("../images/hero-poster.jpg") center/cover;
  filter: saturate(0.25);
}
.subhero--driver::before {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.36)),
    url("../images/mercedes-s-class.jpg");
}
.subhero--corporate::before {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.36)),
    url("../images/mercedes-v-class.jpg");
}
.subhero--booking::before {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.46)),
    url("../images/mercedes-e-class.jpg");
}
.subhero--contacts::before {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.5)),
    url("../images/hero-poster.jpg");
}
.subhero__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 76% 36%,
    rgba(216, 167, 43, 0.14),
    transparent 32%
  );
}
.subhero__inner {
  position: relative;
  z-index: 1;
  padding-top: 164px;
  padding-bottom: 62px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}
.breadcrumbs a:hover {
  color: var(--gold-light);
}
.breadcrumbs b {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}
.subhero .section-kicker {
  color: var(--gold-light);
}
.subhero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(52px, 5.8vw, 80px);
}
.subhero__inner > p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted-dark);
  font-size: 16px;
}
.subhero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  justify-content: center;
}
.phone-link svg {
  color: var(--gold-light);
  font-size: 18px;
}

/* Driver page */
.intro-split__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: start;
}
.intro-split__grid > div:last-child {
  padding-top: 38px;
}
.intro-split__grid p {
  color: var(--muted);
}
.dark-features {
  padding-top: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 30px;
  color: var(--white);
  background: var(--black);
}
.feature-grid article {
  min-height: 220px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}
.feature-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--gold-light);
  background: rgba(216, 167, 43, 0.12);
}
.feature-grid article > span svg {
  font-size: 20px;
}
.feature-grid h3 {
  font-size: 23px;
}
.feature-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
}
.use-cases {
  background: rgba(0, 0, 0, 0.025);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.case-grid article {
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.04);
}
.case-grid small {
  color: var(--gold-deep);
  font-weight: 600;
}
.case-grid h3 {
  margin-top: 56px;
}
.case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.pricing {
  background: var(--white);
}
.pricing-grid,
.route-tariffs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pricing-grid article,
.route-tariffs article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s var(--spring),
    border-color 0.3s;
}
.pricing-grid article:hover,
.route-tariffs article:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 167, 43, 0.45);
}
.pricing-grid article.is-featured,
.route-tariffs article.is-featured {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 80% 0, rgba(216, 167, 43, 0.22), transparent 36%),
    var(--black);
  box-shadow: var(--shadow-dark);
}
.pricing-grid small,
.route-tariffs small {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.pricing-grid .is-featured small,
.route-tariffs .is-featured small {
  color: var(--gold-light);
}
.pricing-grid h3 {
  margin-top: 22px;
  font-size: 30px;
}
.pricing-grid p,
.route-tariffs p {
  color: var(--muted);
  font-size: 13px;
}
.pricing-grid .is-featured p,
.route-tariffs .is-featured p {
  color: var(--muted-dark);
}
.pricing-grid ul,
.route-tariffs ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 18px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-color: rgba(0, 0, 0, 0.08);
  list-style: none;
}
.pricing-grid .is-featured ul,
.route-tariffs .is-featured ul {
  border-color: rgba(255, 255, 255, 0.09);
}
.pricing-grid li,
.route-tariffs li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
.pricing-grid .is-featured li,
.route-tariffs .is-featured li {
  color: var(--muted-dark);
}
.pricing-grid li svg,
.route-tariffs li svg {
  color: var(--gold-deep);
}
.pricing-grid .is-featured li svg,
.route-tariffs .is-featured li svg {
  color: var(--gold-light);
}
.pricing-grid a,
.route-tariffs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.pricing-grid .is-featured a,
.route-tariffs .is-featured a {
  color: var(--gold-light);
}

/* Corporate */
.business-stats {
  position: relative;
  z-index: 3;
  margin-top: -32px;
}
.business-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.business-stats__grid div {
  padding: 20px;
  border-radius: 17px;
  background: rgba(0, 0, 0, 0.035);
}
.business-stats strong {
  display: block;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 34px;
}
.business-stats span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.solution-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}
.solution-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 16px;
  color: var(--gold-deep);
  background: rgba(216, 167, 43, 0.11);
}
.solution-grid article > span svg {
  font-size: 20px;
}
.solution-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.corporate-flow {
  color: var(--white);
  background: var(--black);
}
.corporate-flow__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.corporate-flow__grid > div:first-child > p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted-dark);
}
.business-steps {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.business-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
}
.business-steps small {
  color: var(--gold-light);
  font-weight: 600;
}
.business-steps h3 {
  margin: 0 0 5px;
  font-size: 18px;
}
.business-steps p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
}
.corporate-flow__visual {
  position: relative;
}
.dashboard-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-dark);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.dashboard-card > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.dashboard-card > h3 {
  margin: 8px 0 24px;
  font-size: 28px;
}
.dashboard-route {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.38);
}
.dashboard-route > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}
.dashboard-route > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dashboard-route strong {
  font-size: 20px;
}
.dashboard-route svg {
  color: var(--gold);
}
.dashboard-route small {
  color: var(--muted-dark);
}
.dashboard-status {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  border-radius: 15px;
  background: rgba(216, 167, 43, 0.12);
  color: var(--gold-light);
  font-size: 11px;
}
.corporate-request {
  background: rgba(0, 0, 0, 0.025);
}
.request-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.request-card > div:first-child > p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--muted);
}
.request-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  align-content: start;
}
.request-card form .field--textarea,
.request-card form .button,
.request-card form .form-message {
  grid-column: 1 / -1;
}
.request-contacts {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.request-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.request-contacts svg {
  color: var(--gold-deep);
  font-size: 18px;
}

.request-card h2 {
  font-size: clamp(38px, 3.7vw, 54px);
}
.contacts-info h2 {
  font-size: clamp(40px, 4vw, 58px);
}
.route-editorial__intro h2 {
  font-size: clamp(40px, 4.1vw, 58px);
}

/* Contact */
.contacts-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
}
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-cards article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.02);
}
.contact-cards span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 14px;
  color: var(--gold-deep);
  background: rgba(216, 167, 43, 0.12);
}
.contact-cards h3 {
  margin-bottom: 4px;
  font-size: 18px;
}
.contact-cards a,
.contact-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.service-hours {
  margin-top: 20px;
  padding: 17px;
  border-radius: 17px;
  color: var(--white);
  background: var(--black);
}
.service-hours strong {
  color: var(--gold-light);
}
.contact-form,
.details-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-form {
  display: grid;
  gap: 20px;
  align-content: start;
}
.contact-form .section-kicker {
  margin-bottom: -4px;
}
.contact-form h3 {
  margin: 0 0 2px;
  font-family: var(--font-ui);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}
.contact-form .field--textarea {
  grid-column: 1 / -1;
}
.contact-form > .field--textarea {
  margin-top: 2px;
}
.coverage {
  position: relative;
  min-height: 520px;
  display: none;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.coverage__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
}
.coverage__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.coverage__inner p {
  color: var(--muted-dark);
}
.coverage-map {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(216, 167, 43, 0.16),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.045);
}
.map-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}
.map-point::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 6px rgba(216, 167, 43, 0.14),
    0 0 20px rgba(216, 167, 43, 0.65);
}
.map-point--kyiv {
  left: 58%;
  top: 55%;
}
.map-point--warsaw {
  left: 34%;
  top: 40%;
}
.map-point--vienna {
  left: 30%;
  top: 66%;
}
.map-point--budapest {
  left: 42%;
  top: 72%;
}

/* Booking page */
.booking-page {
  padding-top: 76px;
  background: rgba(0, 0, 0, 0.025);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.booking-main {
  display: grid;
  gap: 24px;
}
.booking-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.booking-progress span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.booking-progress b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
}
.booking-progress span.is-active {
  color: var(--black);
}
.booking-progress span.is-active b {
  color: var(--black);
  background: var(--gold-metal);
}
.booking-progress i {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.booking-panel--full .booking-fields {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.booking-panel--full .field:nth-of-type(1),
.booking-panel--full .field:nth-of-type(2) {
  grid-column: span 5;
}
.booking-panel--full .swap-button {
  grid-column: span 2;
  justify-self: center;
}
.booking-panel--full .field:nth-of-type(3),
.booking-panel--full .field:nth-of-type(4),
.booking-panel--full .field:nth-of-type(5),
.booking-panel--full .booking-submit {
  grid-column: span 3;
}
.details-form {
  display: grid;
  gap: 34px;
}
.form-section {
  display: grid;
  gap: 22px;
}
.form-section + .form-section {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.form-section__title {
  display: flex;
  gap: 14px;
}
.form-section__title > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--black);
  background: var(--gold-metal);
  font-size: 10px;
  font-weight: 600;
}
.form-section__title h2 {
  margin: 0 0 5px;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.form-section__title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.tariff-choice {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tariff-choice label {
  cursor: pointer;
}
.tariff-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tariff-choice span {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.tariff-choice label:hover span {
  transform: translateY(-3px);
}
.tariff-choice input:checked + span {
  border-color: rgba(216, 167, 43, 0.7);
  box-shadow: 0 0 0 4px rgba(216, 167, 43, 0.11);
}
.tariff-choice b {
  font-size: 14px;
}
.tariff-choice small {
  margin-top: 6px;
  color: var(--gold-deep);
  font-weight: 500;
}
.tariff-choice em {
  margin-top: auto;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}
.booking-summary {
  position: sticky;
  top: 96px;
  padding: 26px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0, rgba(216, 167, 43, 0.2), transparent 35%),
    var(--black);
  box-shadow: var(--shadow-dark);
}
.booking-summary .section-kicker {
  color: var(--gold-light);
}
.booking-summary h3 {
  font-size: 30px;
}
.booking-summary ol {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.booking-summary li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
}
.booking-summary li b {
  color: var(--gold-light);
  font-size: 10px;
}
.booking-summary li span {
  color: var(--muted-dark);
  font-size: 12px;
}
.summary-note {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}
.summary-note svg {
  flex: 0 0 auto;
  color: var(--gold-light);
}
.booking-summary > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Route page: editorial, informative, no fake map */
.route-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.route-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94),
      rgba(0, 0, 0, 0.56) 54%,
      rgba(0, 0, 0, 0.74)
    ),
    url("../images/hero-poster.jpg") center/cover;
  filter: saturate(0.22) contrast(1.05);
  transform: scale(1.03);
}
.route-hero__map {
  display: none;
}
.route-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 158px;
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 52px;
  align-items: end;
}
.route-hero__inner > .breadcrumbs {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.route-hero__content .section-kicker {
  color: var(--gold-light);
}
.route-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(60px, 6.7vw, 94px);
}
.route-hero h1 i {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62em;
  font-style: normal;
  line-height: 1.8em;
}
.route-hero__content > p {
  max-width: 700px;
  margin-bottom: 26px;
  color: var(--muted-dark);
  font-size: 16px;
}
.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.route-meta > div {
  min-width: 155px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.route-meta svg {
  color: var(--gold-light);
  font-size: 20px;
}
.route-meta span {
  display: grid;
}
.route-meta small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.route-meta b {
  font-size: 13px;
}
.route-price-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(10, 10, 10, 0.58);
  box-shadow: var(--shadow-dark);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}
.route-price-card > small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  text-transform: uppercase;
}
.route-price-card > strong {
  display: block;
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}
.route-price-card sup {
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 13px;
}
.route-price-card p {
  color: var(--muted-dark);
  font-size: 13px;
}
.route-price-card > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}
.route-price-card > span svg {
  color: var(--gold-light);
}
.route-overview {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.route-overview::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -290px;
  top: -280px;
  border-radius: 50%;
  background: var(--gold-glow);
  opacity: 0.34;
  pointer-events: none;
}
.route-overview__header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 52px;
  margin-bottom: 42px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0, rgba(216, 167, 43, 0.2), transparent 34%),
    var(--black);
  color: var(--white);
}
.route-overview__header .section-kicker {
  color: var(--gold-light);
}
.route-overview__header > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
}
.route-overview__layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  align-items: stretch;
}
.route-overview__story {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.055);
}
.route-overview__story > p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 14px;
}
.route-benefits {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.route-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(5, 5, 5, 0.075);
  border-radius: 17px;
  background: rgba(0, 0, 0, 0.022);
}
.route-benefit > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--gold-deep);
  background: rgba(216, 167, 43, 0.12);
}
.route-benefit > span svg {
  font-size: 20px;
}
.route-benefit b {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}
.route-benefit small {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}
.journey-board {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(216, 167, 43, 0.22), transparent 35%),
    var(--black);
  box-shadow: var(--shadow-dark);
}
.journey-board::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055),
    transparent 40%
  );
}
.journey-board__head,
.journey-board__stats,
.journey-stages,
.journey-board__footer {
  position: relative;
  z-index: 1;
}
.journey-board__head > small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-board__head strong {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1;
}
.journey-board__head strong span {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.52em;
}
.journey-board__head p {
  max-width: 640px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 12.5px;
}
.journey-board__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 23px 0 12px;
}
.journey-board__stats span {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}
.journey-board__stats b {
  display: block;
  color: var(--gold-light);
  font-size: 13px;
}
.journey-board__stats small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.journey-stages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.journey-stage {
  min-height: 114px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 3px 11px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.35s var(--spring),
    border-color 0.3s,
    background 0.3s;
}
.journey-stage:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 167, 43, 0.35);
  background: rgba(255, 255, 255, 0.065);
}
.journey-stage > span {
  grid-row: span 2;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--black);
  background: var(--gold-metal);
  font-size: 9px;
  font-weight: 600;
}
.journey-stage b {
  align-self: end;
  font-size: 12.5px;
}
.journey-stage small {
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.45;
}
.journey-board__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(216, 167, 43, 0.1);
  font-size: 12px;
}
.journey-board__footer svg {
  flex: 0 0 auto;
  color: var(--gold-light);
}
.route-pricing {
  background: rgba(0, 0, 0, 0.025);
}
.route-tariffs h3 {
  margin: 20px 0 4px;
  font-family: var(--font-display);
  font-size: 38px;
}
.route-tariffs > article > span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 500;
}
.route-tariffs .is-featured > span {
  color: var(--gold-light);
}
.route-content {
  background: var(--white);
}
.route-content__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
.route-content article > p {
  color: var(--muted);
}
.route-content article h3 {
  margin-top: 30px;
}
.route-content aside {
  padding: 28px;
  border-radius: 24px;
  color: var(--white);
  background: var(--black);
}
.route-content aside h3 {
  color: var(--gold-light);
}
.route-content aside ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.route-content aside li {
  display: flex;
  gap: 9px;
  color: var(--muted-dark);
  font-size: 12px;
}
.route-content aside svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--gold-light);
}

/* New informative route blocks */
.route-editorial {
  padding: 0 0 96px;
  background: var(--white);
  margin-top: 60px;
}
.route-editorial__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
}
.route-editorial__intro,
.route-editorial__facts {
  padding: 34px;
  border-radius: 28px;
}
.route-editorial__intro {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0, rgba(216, 167, 43, 0.2), transparent 34%),
    var(--black);
}
.route-editorial__intro .section-kicker {
  color: var(--gold-light);
}
.route-editorial__intro p {
  color: var(--muted-dark);
}
.route-editorial__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
}
.route-fact {
  min-height: 154px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
}
.route-fact small {
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}
.route-fact h3 {
  margin: 17px 0 8px;
  font-size: 22px;
}
.route-fact p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}
.route-video {
  color: var(--white);
  background: var(--black);
}
.route-video__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 52px;
  align-items: center;
}
.route-video__copy .section-kicker {
  color: var(--gold-light);
}
.route-video__copy p {
  margin-top: 22px;
  color: var(--muted-dark);
}
.route-video__list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.route-video__list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.route-video__list svg {
  color: var(--gold-light);
}
.route-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-dark);
}
.route-video__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}
.seo-story {
  background: rgba(0, 0, 0, 0.025);
}
.seo-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.seo-story article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}
.seo-story article:first-child {
  grid-column: 1 / -1;
}
.seo-story h2 {
  max-width: 920px;
}
.seo-story h3 {
  margin-top: 0;
}
.seo-story p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}
.seo-story article:first-child p {
  columns: 2;
  column-gap: 42px;
  margin-top: 24px;
}

/* Motion */
.scroll-progress {
  position: fixed;
  z-index: 130;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
  background: rgba(6, 6, 6, 0.73);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-metal);
  box-shadow: 0 0 18px rgba(216, 167, 43, 0.55);
}
html.motion-ready [data-motion] {
  opacity: 0;
  transform: translate3d(var(--motion-x, 0), var(--motion-y, 34px), 0)
    scale(var(--motion-scale, 1)) rotate(var(--motion-rotate, 0deg));
  transition:
    opacity 0.6s var(--ease) var(--motion-delay, 0ms),
    transform 0.8s var(--spring) var(--motion-delay, 0ms);
  will-change: opacity, transform;
}
html.motion-ready [data-motion="up"] {
  --motion-rotate: 1.4deg;
}
html.motion-ready [data-motion="left"] {
  --motion-x: -50px;
  --motion-y: 0;
  --motion-rotate: -2deg;
}
html.motion-ready [data-motion="right"] {
  --motion-x: 50px;
  --motion-y: 0;
  --motion-rotate: 2deg;
}
html.motion-ready [data-motion="scale"] {
  --motion-y: 16px;
  --motion-scale: 0.9;
}
html.motion-ready [data-motion="fade"] {
  --motion-y: 0;
}
html.motion-ready [data-motion].is-motion-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Word-by-word heading reveal (hero / subhero / route hero titles). */
.fx-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}
.fx-word {
  display: inline-block;
  transform: translate3d(0, 115%, 0) rotate(6deg);
  opacity: 0;
  transition:
    transform 0.85s var(--spring) var(--word-delay, 0ms),
    opacity 0.5s ease var(--word-delay, 0ms);
}
html.fx-words-ready .fx-word {
  transform: none;
  opacity: 1;
}

/* Spotlight + 3D tilt for feature cards (fine-pointer devices only). */
.fx-tilt {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.fx-tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--fx-spot-x, 50%) var(--fx-spot-y, 50%),
    rgba(216, 167, 43, 0.32),
    transparent 55%
  );
  transition: opacity 0.35s ease;
}
.fx-tilt:hover::after {
  opacity: 1;
}
.service-card.fx-tilt:hover {
  transform: translateY(-8px) perspective(900px) rotateX(var(--fx-tilt-x, 0deg))
    rotateY(var(--fx-tilt-y, 0deg));
}
.car-card.fx-tilt:hover {
  transform: translateY(-7px) perspective(900px) rotateX(var(--fx-tilt-x, 0deg))
    rotateY(var(--fx-tilt-y, 0deg));
}
.route-card.fx-tilt:hover {
  transform: translateY(-7px) perspective(900px) rotateX(var(--fx-tilt-x, 0deg))
    rotateY(var(--fx-tilt-y, 0deg));
}

body {
  opacity: 0;
  transition: opacity 0.45s ease;
}
body.page-loaded {
  opacity: 1;
}
body.page-leaving {
  opacity: 0;
}

@media (max-width: 1180px) {
  .navline__inner {
    gap: 20px;
  }
  .desktop-nav > a,
  .nav-dropdown__trigger {
    padding-inline: 10px;
    font-size: 11px;
  }
  .topbar__messengers {
    display: none;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    position: static;
  }
  .booking-fields,
  .booking-panel--full .booking-fields {
    grid-template-columns: 1fr 38px 1fr repeat(2, minmax(130px, 0.7fr));
  }
  .booking-panel--full .field:nth-of-type(1),
  .booking-panel--full .field:nth-of-type(2),
  .booking-panel--full .swap-button {
    grid-column: auto;
  }
  .booking-fields .field:nth-of-type(5) {
    grid-column: 1 / 3;
  }
  .booking-submit {
    grid-column: 3 / -1;
  }
  .car-card {
    flex-basis: calc((100% - 18px) / 2);
  }
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .route-tariffs {
    grid-template-columns: repeat(2, 1fr);
  }
  .tariff-choice {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .section {
    padding: 78px 0;
  }
  .topbar {
    display: none;
  }
  .navline {
    background: rgba(5, 5, 5, 0.76);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }
  .navline__inner,
  .site-header.is-scrolled .navline__inner {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
  }
  .desktop-nav,
  .language-switch,
  .header-actions .button--header {
    display: none;
  }
  .header-actions {
    justify-self: end;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    position: fixed;
    top: var(--mobile-menu-top, 72px);
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - var(--mobile-menu-top, 72px) - 12px);
    display: block;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: rgba(7, 7, 7, 0.94);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    -webkit-backdrop-filter: blur(26px);
    backdrop-filter: blur(26px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transition:
      opacity 0.3s,
      transform 0.4s var(--spring),
      visibility 0.3s;
  }
  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mobile-nav {
    display: grid;
    gap: 4px;
  }
  .mobile-nav > a,
  .mobile-routes__trigger {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
  }
  .mobile-nav > a.is-active,
  .mobile-nav > a:hover,
  .mobile-routes.is-open .mobile-routes__trigger {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
  }
  .mobile-routes__trigger {
    width: 100%;
    cursor: pointer;
  }
  .mobile-routes__trigger svg {
    transition: transform 0.3s;
  }
  .mobile-routes.is-open .mobile-routes__trigger svg {
    transform: rotate(180deg);
  }
  .mobile-routes__panel {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 10px;
  }
  .mobile-routes__panel > * {
    min-height: 0;
    overflow: hidden;
  }
  .mobile-routes.is-open .mobile-routes__panel {
    grid-template-rows: 1fr;
    margin-top: 20px;
  }
  .mobile-route-group {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-route-group__toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.68);
  }
  .mobile-route-group__toggle span {
    display: flex;
    gap: 10px;
  }
  .mobile-route-group__toggle small {
    color: var(--gold);
  }
  .mobile-route-group__links {
    display: none;
    padding: 0 0 10px 20px;
  }
  .mobile-route-group.is-open .mobile-route-group__links {
    display: grid;
  }
  .mobile-route-group__links a {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
  }
  .mobile-routes__cta {
    margin: 8px 0;
    color: var(--gold-light) !important;
  }
  .mobile-nav__booking {
    margin-top: 8px;
    justify-content: center !important;
    color: var(--black) !important;
    background: var(--gold-metal) !important;
  }
  .mobile-menu__contacts {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-menu__contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
  }
  .mobile-menu__contacts svg {
    color: var(--gold);
    font-size: 18px;
  }
  .hero {
    min-height: 760px;
    height: auto;
  }
  .hero__inner {
    min-height: 760px;
    padding-top: 130px;
    padding-bottom: 120px;
  }
  .hero__status,
  .hero__rail {
    display: none;
  }
  .booking-dock {
    margin-top: -62px;
  }
  .booking-panel {
    padding: 24px;
  }
  .inner-page .booking-panel {
    padding: 28px;
  }
  .inner-page .booking-fields {
    gap: 13px;
  }
  .booking-fields,
  .booking-panel--full .booking-fields {
    grid-template-columns: 1fr 38px 1fr;
  }
  .booking-panel--full .field:nth-of-type(1),
  .booking-panel--full .field:nth-of-type(2),
  .booking-panel--full .swap-button {
    grid-column: auto;
  }
  .booking-fields .field:nth-of-type(3),
  .booking-fields .field:nth-of-type(4),
  .booking-fields .field:nth-of-type(5),
  .booking-panel--full .booking-submit {
    grid-column: auto;
  }
  .booking-submit {
    grid-column: 1 / -1;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 285px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-heading__aside {
    align-items: center;
  }
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-line__track {
    display: none;
  }
  .reviews__head {
    grid-template-columns: 1fr;
  }
  .reviews-rating-card {
    width: fit-content;
  }
  .review-card {
    flex-basis: calc((100% - 14px) / 2);
  }
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
    gap: 38px;
  }
  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
  .intro-split__grid,
  .corporate-flow__grid,
  .contacts-layout,
  .coverage__inner,
  .request-card,
  .route-content__grid,
  .route-video__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    position: static;
  }
  .route-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 142px;
  }
  .route-hero__inner > .breadcrumbs {
    grid-column: auto;
  }
  .route-price-card {
    max-width: 420px;
  }
  .route-overview__header,
  .route-overview__layout,
  .route-editorial__grid {
    grid-template-columns: 1fr;
  }
  .route-overview__header {
    gap: 20px;
    margin-bottom: 32px;
  }
  .route-overview__story {
    padding: 30px;
  }
  .route-video__copy {
    max-width: 680px;
  }
  .seo-story__grid {
    grid-template-columns: 1fr;
  }
  .seo-story article:first-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .section {
    padding: 60px 0;
  }
  h1 {
    font-size: clamp(47px, 14.5vw, 68px);
  }
  .hero__content h1 {
    font-size: clamp(35px, 14.5vw, 35px);
  }
  h2 {
    font-size: clamp(36px, 10.8vw, 52px);
  }
  .brand__logo {
    width: 158px;
  }
  .hero {
    min-height: 700px;
  }
  .hero__inner {
    min-height: 700px;
    padding-top: 116px;
    padding-bottom: 98px;
    align-items: flex-end;
  }
  .hero__content > p {
    font-size: 15px;
  }
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero__actions .button,
  .hero__actions .ghost-link {
    width: 100%;
    justify-content: center;
  }
  .hero__badges {
    gap: 7px;
    flex-direction: column;
  }
  .hero__badges span {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 12px;
    justify-content: center;
  }
  .booking-dock,
  .route-booking {
    margin-top: -38px;
    display: none;
  }
  .booking-panel {
    padding: 18px;
    border-radius: 24px;
  }
  .booking-panel__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .booking-fields,
  .booking-panel--full .booking-fields {
    grid-template-columns: 1fr;
  }
  .booking-panel--full .field:nth-of-type(1),
  .booking-panel--full .field:nth-of-type(2),
  .booking-panel--full .swap-button,
  .booking-fields .field,
  .booking-fields .field:nth-of-type(3),
  .booking-fields .field:nth-of-type(4),
  .booking-fields .field:nth-of-type(5),
  .booking-submit {
    grid-column: 1;
  }
  .swap-button {
    width: 100%;
    height: 30px;
    transform: rotate(90deg);
  }
  .booking-note {
    align-items: flex-start;
  }
  .services {
    padding-top: 86px;
  }
  .service-card {
    min-height: 300px;
    padding: 24px;
  }
  .car-card {
    flex-basis: 100%;
  }
  .car-gallery {
    height: 235px;
  }
  .gallery-arrow {
    opacity: 1;
  }
  .fleet-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .fleet-progress {
    width: 100%;
  }
  .process-line {
    grid-template-columns: 1fr;
  }
  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
  }
  .process-step__number {
    grid-column: 2;
    margin: 0 0 5px;
  }
  .process-step__icon {
    grid-row: 1 / 4;
    grid-column: 1;
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 18px;
  }
  .process-step h3,
  .process-step p {
    grid-column: 2;
    margin-left: 0;
  }
  .route-grid {
    grid-template-columns: 1fr;
  }
  .route-card {
    min-height: 235px;
  }
  .reviews__head {
    margin-bottom: 26px;
  }
  .reviews-rating-card {
    min-width: 0;
    width: 100%;
  }
  .review-stage {
    padding: 10px;
    border-radius: 24px;
  }
  .review-card {
    flex-basis: 100%;
    min-height: 280px;
  }
  .review-controls {
    padding: 13px 4px 2px;
  }
  .review-pagination {
    max-width: 120px;
    overflow: hidden;
  }
  .review-count {
    display: none;
  }
  .final-cta::after {
    inset: 10px;
    border-radius: 24px;
  }
  .final-cta__inner {
    padding: 76px 0;
  }
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .final-cta__actions .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
  .subhero {
    min-height: 540px;
  }
  .subhero__inner {
    padding-top: 124px;
    padding-bottom: 48px;
  }
  .subhero h1 {
    font-size: clamp(45px, 13vw, 64px);
  }
  .subhero__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .subhero__actions .button {
    width: 100%;
  }
  .feature-grid,
  .case-grid,
  .solution-grid,
  .business-stats__grid,
  .route-tariffs,
  .route-editorial__facts,
  .seo-story__grid {
    grid-template-columns: 1fr;
  }
  .journey-board__stats,
  .journey-stages {
    grid-template-columns: 1fr;
  }
  .business-stats {
    margin-top: -20px;
  }
  .request-card,
  .contact-form,
  .details-form {
    padding: 24px;
  }
  .request-card form {
    grid-template-columns: 1fr;
  }
  .request-card form .field--textarea,
  .request-card form .button,
  .request-card form .form-message {
    grid-column: 1;
  }
  .inner-page .booking-panel {
    padding: 22px;
  }
  .inner-page .booking-panel__head {
    margin-bottom: 22px;
  }
  .inner-page .booking-fields {
    gap: 13px;
  }
  .inner-page .field > div {
    min-height: 54px;
    padding-inline: 14px;
  }
  .inner-page .field--textarea > div {
    min-height: 142px;
  }
  .inner-page .field textarea {
    min-height: 108px;
  }
  .inner-page .swap-button {
    height: 30px;
  }
  .booking-page {
    padding-top: 58px;
  }
  .form-grid,
  .tariff-choice {
    grid-template-columns: 1fr;
  }
  .coverage-map {
    min-height: 280px;
  }
  .booking-progress {
    overflow-x: auto;
  }
  .booking-progress i {
    min-width: 24px;
  }
  .route-hero {
    min-height: 660px;
  }
  .route-hero__inner {
    padding-top: 120px;
    padding-bottom: 56px;
    gap: 28px;
  }
  .route-hero h1 {
    font-size: clamp(49px, 14vw, 70px);
  }
  .route-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .route-meta > div {
    min-width: 0;
  }
  .route-price-card {
    max-width: none;
  }
  .route-overview__story,
  .journey-board,
  .route-editorial__intro,
  .route-editorial__facts,
  .seo-story article {
    padding: 24px;
    border-radius: 22px;
  }
  .route-video__grid {
    gap: 28px;
  }
  .route-video__frame {
    padding: 6px;
    border-radius: 22px;
  }
  .route-video__frame iframe {
    border-radius: 17px;
  }
  .seo-story article:first-child p {
    columns: 1;
  }
  .floating-call {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .route-overview__header > p {
    font-size: 14px;
  }
  .route-overview__story > p {
    font-size: 13.5px;
  }
  .journey-board__head strong {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .journey-stage {
    min-height: 0;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }
  .navline__inner {
    gap: 10px;
  }
  .brand__logo {
    width: 145px;
  }
  .route-meta {
    grid-template-columns: 1fr;
  }
  .reviews-rating-card > strong {
    font-size: 42px;
  }
  .review-card {
    padding: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  body,
  html.motion-ready [data-motion] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* ========================================================================== 
   Final layout polish: booking calculator, corporate process, contacts
   Mobile navigation intentionally remains unchanged.
   ========================================================================== */

/* Homepage calculator: stable column sizing and tighter vertical rhythm. */
.booking-panel--compact {
  padding: 28px 30px 26px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.11);
}
.booking-panel--compact .booking-panel__head {
  align-items: center;
  margin-bottom: 22px;
}
.booking-panel--compact .booking-panel__head > div:first-child {
  min-width: 0;
}
.booking-panel--compact .field,
.booking-panel--compact .field > div,
.booking-panel--compact .booking-submit {
  min-width: 0;
  max-width: 100%;
}
.booking-panel--compact .field > div {
  width: 100%;
  overflow: hidden;
}
.booking-panel--compact .field input,
.booking-panel--compact .field select {
  min-width: 0;
  max-width: 100%;
}
.booking-panel--compact input[type="date"],
.booking-panel--compact input[type="time"] {
  line-height: 1.2;
}
.booking-panel--compact .booking-submit {
  gap: 9px;
  padding-inline: 16px;
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.085em;
}
.booking-panel--compact .booking-note {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
}
.services {
  padding-top: 94px;
}

@media (min-width: 1181px) {
  .booking-panel--compact .booking-fields {
    grid-template-columns:
      minmax(220px, 1fr) 38px minmax(220px, 1fr)
      150px 130px 140px 190px;
    gap: 12px;
  }
}

/* Corporate process: the HTML uses an ordered list, so style the actual list. */
.corporate-flow {
  overflow: hidden;
}
.corporate-flow__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 86px);
}
.corporate-flow__visual {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.corporate-flow__copy {
  min-width: 0;
}
.corporate-flow__copy h2 {
  max-width: 690px;
  font-size: clamp(43px, 4.2vw, 60px);
  line-height: 1;
}
.business-steps {
  list-style: none;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
}
.business-steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s var(--spring);
}
.business-steps li:hover {
  transform: translateX(4px);
  border-color: rgba(216, 167, 43, 0.28);
  background: rgba(255, 255, 255, 0.065);
}
.business-steps li > b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 167, 43, 0.24);
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(216, 167, 43, 0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
.business-steps li > span {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding-top: 1px;
}
.business-steps li strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}
.business-steps li small {
  display: block;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}
.dashboard-card {
  padding: 22px;
}
.dashboard-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.dashboard-card header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.dashboard-card header b {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.dashboard-route {
  gap: 12px;
  padding: 21px;
}
.dashboard-route > small {
  color: var(--muted-dark);
  font-size: 11px;
}
.dashboard-route > strong {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--white);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.35;
}
.dashboard-route > strong i {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 500;
}
.dashboard-route > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.5;
}
.dashboard-status {
  min-height: 44px;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(216, 167, 43, 0.13);
  color: var(--gold-light);
  font-size: 11px;
}
.dashboard-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 167, 43, 0.1);
}

/* Contact methods: explicit card layout prevents labels and values from merging. */
.contacts-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: start;
}
.contact-cards {
  gap: 12px;
  margin-top: 30px;
}
.contact-cards > a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon value"
    "icon meta";
  align-items: center;
  column-gap: 15px;
  row-gap: 2px;
  min-width: 0;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.018);
  transition:
    transform 0.3s var(--spring),
    border-color 0.3s ease,
    background 0.3s ease;
}
.contact-cards > a:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 91, 0, 0.3);
  background: rgba(216, 167, 43, 0.055);
}
.contact-cards > a > span {
  grid-area: icon;
  align-self: center;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 15px;
}
.contact-cards > a > small {
  grid-area: label;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}
.contact-cards > a > strong {
  grid-area: value;
  min-width: 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.contact-cards > a > em {
  grid-area: meta;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}
.service-hours {
  overflow: hidden;
  margin-top: 18px;
  padding: 19px 20px;
  border-radius: 18px;
}
.service-hours > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.service-hours > div b {
  min-width: 0;
  font-size: 13px;
  line-height: 1.4;
}
.service-hours .live-dot {
  flex: 0 0 auto;
}
.service-hours p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .booking-panel--compact .booking-submit {
    white-space: normal;
  }
  .corporate-flow__copy h2 {
    font-size: clamp(42px, 5vw, 56px);
  }
}

@media (max-width: 980px) {
  .corporate-flow__grid,
  .contacts-layout {
    grid-template-columns: 1fr;
  }
  .corporate-flow__visual {
    max-width: 620px;
  }
  .corporate-flow__copy {
    max-width: 760px;
  }
  .contacts-info {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .booking-panel--compact {
    padding: 20px;
  }
  .booking-panel--compact .booking-panel__head {
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .booking-panel--compact .booking-note {
    font-size: 10.5px;
  }
  .corporate-flow__copy h2 {
    font-size: clamp(39px, 11vw, 52px);
  }
  .business-steps {
    margin-top: 26px;
  }
  .business-steps li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
  }
  .business-steps li > b {
    width: 40px;
    height: 40px;
  }
  .dashboard-card {
    padding: 17px;
    border-radius: 23px;
  }
  .dashboard-card header {
    gap: 10px;
  }
  .dashboard-card header span,
  .dashboard-card header b {
    font-size: 10px;
  }
  .dashboard-route {
    padding: 17px;
  }
  .contact-cards > a {
    padding: 14px;
  }
  .service-hours {
    padding: 17px;
  }
}

@media (max-width: 440px) {
  .contact-cards > a {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
  }
  .contact-cards > a > span {
    width: 44px;
    height: 44px;
  }
  .contact-cards > a > strong {
    font-size: 13px;
  }
}

/* Mobile navigation + social controls refinement */
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.3s var(--spring);
}
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-light);
  border-color: rgba(216, 167, 43, 0.48);
  background: rgba(216, 167, 43, 0.1);
  transform: translateY(-2px);
}
.social-links svg {
  width: 17px;
  height: 17px;
  fill: initial;
  stroke: none;
}
.topbar__social {
  gap: 5px;
}
.topbar__social a {
  width: 28px;
  height: 28px;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}
.topbar__social svg {
  width: 14px;
  height: 14px;
}
.footer-social.social-links a {
  width: 38px;
  height: 38px;
}
.footer-social.social-links svg {
  width: 17px;
  height: 17px;
}

/* The messenger card uses separate icon links instead of a merged text value. */
.contact-cards > .contact-social-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon value"
    "icon meta";
  align-items: center;
  column-gap: 15px;
  row-gap: 4px;
  min-width: 0;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.018);
}
.contact-cards > .contact-social-card > span {
  grid-area: icon;
  align-self: center;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 15px;
  color: var(--gold-deep);
  background: rgba(216, 167, 43, 0.12);
}
.contact-cards > .contact-social-card > small {
  grid-area: label;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}
.contact-cards > .contact-social-card > em {
  grid-area: meta;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}
.contact-social-links {
  grid-area: value;
  gap: 7px;
  margin: 2px 0;
}
.contact-social-links a {
  width: 34px;
  height: 34px;
  color: var(--gold-deep);
  border-color: rgba(143, 91, 0, 0.2);
  background: rgba(216, 167, 43, 0.09);
}

@media (max-width: 1180px) {
  .topbar__social {
    display: none;
  }
}

@media (max-width: 980px) {
  /* Override the old one-row CSS grid: it leaked groups 02 and 03 while closed. */
  .mobile-routes__panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition:
      max-height 0.45s var(--ease),
      opacity 0.25s ease,
      transform 0.35s var(--ease),
      visibility 0.25s ease;
  }
  .mobile-routes__panel > * {
    min-height: initial;
    overflow: visible;
  }
  .mobile-routes.is-open .mobile-routes__panel {
    max-height: 760px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mobile-routes__cta {
    display: none !important;
  }
  .mobile-menu__extras {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-menu .mobile-language-switch {
    display: flex;
    min-height: 38px;
    padding: 4px 7px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
  }
  .mobile-menu .mobile-language-switch button,
  .mobile-menu .mobile-language-switch a {
    min-width: 31px;
    height: 30px;
    padding: 0 7px;
    border-radius: 999px;
    transition:
      color 0.25s ease,
      background 0.25s ease;
  }
  .mobile-menu .mobile-language-switch button.is-active,
  .mobile-menu .mobile-language-switch a.is-active {
    color: var(--black);
    background: var(--gold-metal);
  }
  .mobile-menu .mobile-language-switch span {
    display: none;
  }
  .mobile-menu__social {
    justify-content: flex-end;
    gap: 7px;
  }
  .mobile-menu__social a {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 440px) {
  .mobile-menu__extras {
    align-items: stretch;
    flex-direction: column;
  }
  .mobile-menu .mobile-language-switch,
  .mobile-menu__social {
    justify-content: center;
  }
}

/* ==========================================================================\n   Fleet catalog and single vehicle pages\n   ========================================================================== */
.subhero--fleet::before {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.42)),
    url("../images/mercedes-v-class.jpg");
  background-position: center 58%;
}
.fleet-catalog {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(
      circle at 88% 4%,
      rgba(216, 167, 43, 0.13),
      transparent 24%
    ),
    var(--black);
}
.fleet-catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%);
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.fleet-catalog > .container {
  position: relative;
  z-index: 1;
}
.fleet-catalog__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 42px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line-dark);
}
.fleet-catalog__lead .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
  color: var(--gold-light);
}
.fleet-catalog__lead h2 {
  margin: 0;
}
.fleet-catalog__lead > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted-dark);
}
.fleet-catalog__group {
  padding: 62px 0 10px;
}
.fleet-catalog__group + .fleet-catalog__group {
  margin-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.fleet-catalog__group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}
.fleet-catalog__group-head > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-direction: column;
}
.fleet-catalog__group-head h2 {
  font-size: clamp(38px, 4vw, 58px);
}
.fleet-catalog__group-head > div:last-child {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
}
.fleet-catalog__group-head b {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.fleet-catalog__group-head p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
}
.fleet-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.fleet-catalog-grid .car-card {
  min-width: 0;
}
.fleet-catalog-card__media {
  display: block;
}
.fleet-catalog-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transition:
    transform 0.7s var(--spring),
    filter 0.45s ease;
}
.fleet-catalog-card:hover .fleet-catalog-card__media > img {
  transform: scale(1.045);
  filter: saturate(0.9) contrast(1.03);
}
.fleet-catalog-card .car-card__title {
  min-height: 58px;
}
.fleet-catalog-card .car-card__body > p {
  min-height: 66px;
}
.fleet-catalog-card .car-specs {
  min-height: 78px;
}

.car-detail-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.car-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.68) 42%,
      rgba(0, 0, 0, 0.2) 78%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 42%),
    url("../images/cars/glb-detail-01.jpg") center 48% / cover;
  filter: saturate(0.7) contrast(1.04);
  transform: scale(1.015);
}
.car-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 35%,
    rgba(216, 167, 43, 0.12),
    transparent 28%
  );
}
.car-detail-hero__inner {
  position: relative;
  z-index: 1;
  padding: 190px 0 76px;
}
.car-detail-hero__inner .breadcrumbs {
  margin-bottom: 34px;
}
.car-detail-hero__class {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.car-detail-hero h1 {
  max-width: 850px;
  margin-bottom: 23px;
  font-size: clamp(58px, 7vw, 100px);
}
.car-detail-hero__inner > p {
  max-width: 640px;
  margin-bottom: 25px;
  color: var(--muted-dark);
}
.car-detail-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}
.car-detail-hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.car-detail-hero__facts svg {
  color: var(--gold-light);
}
.car-showcase {
  color: var(--white);
  background: var(--black);
}
.detail-gallery {
  outline: none;
}
.detail-gallery__main {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow-dark);
}
.detail-gallery__main::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.58));
}
.detail-gallery__main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.25s ease,
    transform 0.55s var(--spring);
}
.detail-gallery.is-switching .detail-gallery__main > img {
  opacity: 0.18;
  transform: scale(1.015);
}
.detail-gallery__counter {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.detail-gallery__counter span:first-child {
  color: var(--gold-light);
  font-size: 15px;
}
.detail-gallery__counter i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.detail-gallery__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s var(--spring);
}
.detail-gallery__arrow:hover {
  color: var(--black);
  background: var(--gold-metal);
  transform: translateY(-50%) scale(1.06);
}
.detail-gallery__arrow--prev {
  left: 24px;
}
.detail-gallery__arrow--prev svg {
  transform: rotate(90deg);
}
.detail-gallery__arrow--next {
  right: 24px;
}
.detail-gallery__arrow--next svg {
  transform: rotate(-90deg);
}
.detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(10, minmax(90px, 1fr));
  gap: 9px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 0 0 8px;
  scrollbar-width: thin;
}
.detail-gallery__thumbs button {
  min-width: 92px;
  aspect-ratio: 1.32;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: #000;
  cursor: pointer;
  opacity: 0.5;
  transition:
    opacity 0.25s,
    border-color 0.25s,
    transform 0.3s var(--spring);
}
.detail-gallery__thumbs button:hover,
.detail-gallery__thumbs button.is-active {
  opacity: 1;
  border-color: rgba(216, 167, 43, 0.7);
  transform: translateY(-2px);
}
.detail-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-detail-content {
  background: #f5f3ee;
}
.car-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: 70px;
}
.car-detail-copy > p {
  max-width: 760px;
  color: var(--muted);
}
.car-detail-copy > p:first-of-type {
  margin-top: 26px;
}
.car-detail-copy h3 {
  margin-top: 38px;
}
.car-detail-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.car-detail-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.car-detail-benefits li > span {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(216, 167, 43, 0.14);
}
.car-spec-panel {
  position: sticky;
  top: 116px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(216, 167, 43, 0.2), transparent 28%),
    var(--black);
  box-shadow: var(--shadow);
}
.car-spec-panel__head {
  display: grid;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.car-spec-panel__head span {
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.car-spec-panel__head b {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}
.car-spec-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.car-spec-panel__grid > div {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.car-spec-panel__grid > div:nth-child(2n) {
  border-right: 0;
}
.car-spec-panel__grid > div:last-child {
  grid-column: 1 / -1;
  border-right: 0;
}
.car-spec-panel__grid svg {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 22px;
}
.car-spec-panel__grid strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}
.car-spec-panel__grid span {
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.car-spec-panel__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 23px 28px;
}
.car-spec-panel__note .live-dot {
  flex: 0 0 auto;
  margin-top: 8px;
}
.car-spec-panel__note p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 11px;
}
.car-booking-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.car-booking-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5)),
    url("../images/cars/glb-detail-04.jpg") center / cover;
  filter: saturate(0.3);
}
.car-booking-band__inner {
  position: relative;
  z-index: 1;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 80px 0;
}
.car-booking-band h2 {
  font-size: clamp(52px, 6vw, 86px);
}
.car-booking-band p {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted-dark);
}
.car-booking-band__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  min-width: 300px;
}
.related-fleet {
  color: var(--white);
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(216, 167, 43, 0.12),
      transparent 28%
    ),
    var(--black);
}
.related-fleet .ghost-link {
  color: var(--gold-light);
}
.related-fleet__grid .car-card {
  flex: initial;
}
.related-fleet .section-heading {
  grid-template-columns: 1fr auto;
}

@media (max-width: 1180px) {
  .fleet-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .car-detail-layout {
    gap: 40px;
  }
  .detail-gallery__thumbs {
    grid-template-columns: repeat(10, 110px);
  }
}
@media (max-width: 980px) {
  .fleet-catalog__lead,
  .fleet-catalog__group-head,
  .car-detail-layout,
  .car-booking-band__inner {
    grid-template-columns: 1fr;
  }
  .fleet-catalog__lead .section-kicker {
    margin-bottom: -8px;
  }
  .fleet-catalog__group-head > div:last-child {
    max-width: 600px;
  }
  .car-detail-hero {
    min-height: 640px;
  }
  .car-detail-hero__inner {
    padding-top: 150px;
  }
  .car-spec-panel {
    position: static;
  }
  .car-booking-band__action {
    min-width: 0;
  }
}
@media (max-width: 720px) {
  .fleet-catalog-grid {
    grid-template-columns: 1fr;
  }
  .fleet-catalog__group {
    padding-top: 48px;
  }
  .fleet-catalog__group-head > div:last-child {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .fleet-catalog-card .car-card__title,
  .fleet-catalog-card .car-card__body > p,
  .fleet-catalog-card .car-specs {
    min-height: 0;
  }
  .car-detail-hero {
    min-height: 610px;
  }
  .car-detail-hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }
  .detail-gallery__main {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }
  .detail-gallery__arrow {
    width: 42px;
    height: 42px;
  }
  .detail-gallery__arrow--prev {
    left: 12px;
  }
  .detail-gallery__arrow--next {
    right: 12px;
  }
  .detail-gallery__counter {
    right: 15px;
    bottom: 14px;
  }
  .car-detail-benefits {
    grid-template-columns: 1fr;
  }
  .car-booking-band__inner {
    min-height: 0;
  }
  .related-fleet .section-heading {
    grid-template-columns: 1fr !important;
  }
  .related-fleet .section-heading__aside {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 440px) {
  .fleet-catalog__group-head > div:first-child {
    gap: 10px;
  }
  .car-detail-hero__facts {
    align-items: stretch;
    flex-direction: column;
  }
  .car-detail-hero__facts span {
    width: fit-content;
  }
  .detail-gallery__thumbs {
    grid-template-columns: repeat(10, 84px);
  }
  .detail-gallery__thumbs button {
    min-width: 84px;
  }
  .car-spec-panel__grid {
    grid-template-columns: 1fr;
  }
  .car-spec-panel__grid > div,
  .car-spec-panel__grid > div:nth-child(2n),
  .car-spec-panel__grid > div:last-child {
    grid-column: auto;
    border-right: 0;
  }
  .car-booking-band__action {
    width: 100%;
  }
  .car-booking-band__action .button {
    width: 100%;
  }
}

/* Fleet catalog and car detail refinements */
.car-card[data-car-link] {
  cursor: pointer;
}
.car-card[data-car-link]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.fleet-catalog__group-head {
  grid-template-columns: minmax(0, 1fr) auto;
}
.fleet-catalog__group-head > .fleet-catalog__group-title {
  display: block;
}
.fleet-catalog__group-title h2 {
  margin: 0;
  color: var(--gold-light);
}
.fleet-catalog__group-title p {
  max-width: 650px;
  margin-top: 12px;
}
.fleet-catalog__group-head > .fleet-catalog__group-count {
  display: block;
  align-self: end;
  padding-bottom: 8px;
}

.car-detail-layout--showcase {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 34px;
}
.car-detail-main {
  min-width: 0;
}
.car-detail-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.car-detail-specs > div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}
.car-detail-specs svg {
  width: 22px;
  height: 22px;
  margin-bottom: auto;
  color: var(--gold);
}
.car-detail-specs strong {
  color: var(--white);
  font-size: 19px;
  font-weight: 500;
}
.car-detail-specs span {
  margin-top: 3px;
  color: var(--muted-dark);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.car-showcase .car-detail-copy {
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.car-showcase .car-detail-copy > p {
  color: var(--muted-dark);
}
.car-showcase .car-detail-copy h2,
.car-showcase .car-detail-copy h3 {
  color: var(--white);
}
.car-showcase .car-detail-benefits li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
}
.car-showcase .car-detail-benefits li > span {
  color: var(--gold-light);
  background: rgba(216, 167, 43, 0.13);
}

.car-booking-panel {
  top: 110px;
}
.car-spec-panel__body {
  padding: 28px;
}
.car-spec-panel__body > p {
  margin: 0 0 24px;
  color: var(--muted-dark);
  font-size: 13px;
}
.car-spec-panel__button {
  width: 100%;
  justify-content: center;
}
.car-spec-panel__contacts {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.car-spec-panel__contacts .phone-inline {
  color: var(--white);
}
.car-spec-panel__contact {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-size: 12px;
}
.car-spec-panel__contact > svg {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
}
.car-spec-panel__contact span {
  display: grid;
  min-width: 0;
  overflow-wrap: anywhere;
}
.car-spec-panel__contact small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.car-spec-panel__messengers {
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .car-detail-layout--showcase {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    gap: 26px;
  }
  .car-detail-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .fleet-catalog__group-head,
  .car-detail-layout--showcase {
    grid-template-columns: 1fr;
  }
  .fleet-catalog__group-head > .fleet-catalog__group-count {
    padding-bottom: 0;
  }
  .car-booking-panel {
    position: static;
  }
}
@media (max-width: 720px) {
  .car-detail-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .car-showcase .car-detail-copy {
    margin-top: 42px;
    padding-top: 36px;
  }
  .car-detail-hero__inner .button.button--gold {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .car-detail-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .car-detail-specs > div {
    min-height: 105px;
  }
}

/* -------------------------------------------------------------------------
   Native car-card links
   ------------------------------------------------------------------------- */
.car-gallery__track {
  position: relative;
  z-index: 1;
}
.car-gallery__page-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
}
.car-gallery__page-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -5px;
}
.car-card__body > .car-card__content-link {
  display: block;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-decoration: none;
  text-transform: none;
}
.car-card__content-link > p {
  margin: 15px 0 20px;
  color: var(--muted-dark);
  font-size: 13px;
}
.car-card__content-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 6px;
  border-radius: 8px;
}
.fleet-catalog-card .car-card__content-link > p {
  min-height: 66px;
}
.car-card__content-link:hover .car-card__title h3 {
  color: var(--gold-light);
}
.car-card__title h3 {
  transition: color 0.25s ease;
}

/* -------------------------------------------------------------------------
   Booking modal
   ------------------------------------------------------------------------- */
body.modal-open {
  overflow: hidden;
}
.booking-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.booking-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(860px, calc(100dvh - 48px));
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.28fr);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #f7f5f0;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.52);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s var(--spring);
}
.booking-modal.is-open .booking-modal__dialog {
  transform: none;
}
.booking-modal__intro {
  position: relative;
  min-height: 100%;
  padding: 52px 38px 38px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(216, 167, 43, 0.19), transparent 45%),
    radial-gradient(
      circle at 20% 12%,
      rgba(216, 167, 43, 0.25),
      transparent 34%
    ),
    #080808;
}
.booking-modal__intro::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(216, 167, 43, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(216, 167, 43, 0.035),
    0 0 0 90px rgba(216, 167, 43, 0.025);
}
.booking-modal__intro > * {
  position: relative;
  z-index: 1;
}
.booking-modal__intro h2 {
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(30px, 4.5vw, 40px);
  line-height: 1;
}
.booking-modal__intro .section-kicker {
  color: var(--gold-light);
}
.booking-modal__intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}
.booking-modal__benefits {
  display: grid;
  gap: 11px;
  margin-top: 38px;
}
.booking-modal__benefits span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.booking-modal__benefits b {
  color: var(--gold-light);
  font-size: 13px;
}
.booking-modal__form.contact-form {
  gap: 16px;
  padding: 50px 42px 36px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.booking-modal__form .form-grid {
  gap: 14px;
}
.booking-modal__form .field > div,
.inner-page .booking-modal__form .field > div {
  min-height: 52px;
  border-radius: 14px;
  background: #fff;
}
.booking-modal__form .field--textarea > div,
.inner-page .booking-modal__form .field--textarea > div {
  min-height: 112px;
}
.booking-modal__form .field textarea,
.inner-page .booking-modal__form .field textarea {
  min-height: 82px;
}
.booking-modal__form .button {
  margin-top: 2px;
}
.booking-modal__privacy {
  margin: -4px 0 0;
  color: rgba(0, 0, 0, 0.43);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}
.booking-modal__form .form-message {
  margin-top: 0;
}
.booking-modal__close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s var(--spring),
    background 0.25s ease;
}
.booking-modal__close:hover {
  background: var(--gold-light);
  transform: rotate(90deg);
}
.booking-modal__close span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: #111;
}
.booking-modal__close span:first-child {
  transform: rotate(45deg);
}
.booking-modal__close span:last-child {
  transform: rotate(-45deg);
}

/* -------------------------------------------------------------------------
   Instagram Stories-style reviews
   ------------------------------------------------------------------------- */
.review-stage.review-stories {
  position: relative;
  min-height: 650px;
  padding: 18px 76px 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(216, 167, 43, 0.13),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  outline: 0;
}
.review-stories__viewport.review-stage__viewport {
  position: relative;
  width: 100%;
  height: 570px;
  display: block;
  transform: none !important;
  transition: none;
  overflow: visible;
}
.review-story {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(28vw, 318px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  background: #111;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    transform 0.72s var(--spring),
    opacity 0.42s ease,
    filter 0.42s ease,
    border-color 0.42s ease;
  will-change: transform, opacity;
  outline: none;
}
.review-story.is-prev,
.review-story.is-next,
.review-story.is-active {
  visibility: visible;
}
.review-story.is-prev,
.review-story.is-next {
  z-index: 1;
  opacity: 0.58;
  filter: saturate(0.68) brightness(0.68);
}
.review-story.is-prev {
  transform: translate(calc(-50% - min(30vw, 340px)), -50%) scale(0.84)
    rotate(-1.8deg);
}
.review-story.is-next {
  transform: translate(calc(-50% + min(30vw, 340px)), -50%) scale(0.84)
    rotate(1.8deg);
}
.review-story.is-active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  filter: none;
  border-color: rgba(216, 167, 43, 0.62);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.58),
    0 0 0 6px rgba(216, 167, 43, 0.08);
  transform: translate(-50%, -50%) scale(1.055);
}
.review-story.is-hidden {
  pointer-events: none;
}
.review-story__media,
.review-story__media img,
.review-story__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.review-story__media img,
.review-story__media video {
  object-fit: cover;
}
.review-story__media img {
  transform: scale(1.025);
  transition: transform 7s linear;
}
.review-story.is-active .review-story__media img {
  transform: scale(1.09);
}
.review-story__scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.02) 32%,
    rgba(0, 0, 0, 0.1) 55%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
}
.review-story__progress {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 13px;
  right: 13px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}
.review-story__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}
.review-story.is-active.is-progressing .review-story__progress span {
  animation: review-story-progress 6.5s linear forwards;
}
.review-stories.is-paused .review-story__progress span {
  animation-play-state: paused !important;
}
@keyframes review-story-progress {
  to {
    transform: scaleX(1);
  }
}
.review-story__profile {
  position: absolute;
  z-index: 3;
  top: 27px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.review-story__avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--gold-metal);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.review-story__profile > div {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.review-story__profile strong {
  font-size: 12px;
}
.review-story__profile small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}
.review-story__profile svg {
  color: var(--gold-light);
}
.review-story__caption {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
}
.review-story__caption .stars {
  display: block;
  margin: 10px 0 7px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.review-story__caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.55;
}
.review-story__route,
.review-story__video-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 600;
}
.review-story__video-badge {
  position: absolute;
  z-index: 3;
  top: 77px;
  left: 16px;
}
.review-stories__arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.3s var(--spring);
}
.review-stories__arrow:hover {
  color: #111;
  background: var(--gold-metal);
}
.review-stories__arrow--prev {
  left: 20px;
}
.review-stories__arrow--next {
  right: 20px;
}
.review-stories__arrow--prev svg {
  transform: rotate(180deg);
}
.review-stories__pagination {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}
.review-stories__pagination button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}
.review-stories__pagination button.is-active {
  width: 28px;
  background: var(--gold-metal);
}

@media (max-width: 980px) {
  .booking-modal__dialog {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
  }
  .booking-modal__intro {
    min-height: auto;
    padding: 38px 32px 30px;
  }
  .booking-modal__intro h2 {
    max-width: 80%;
    font-size: 44px;
  }
  .booking-modal__benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
  }
  .booking-modal__benefits span {
    display: grid;
  }
  .booking-modal__form.contact-form {
    padding: 30px 32px 34px;
  }
  .review-stage.review-stories {
    min-height: 590px;
    padding-inline: 56px;
  }
  .review-stories__viewport.review-stage__viewport {
    height: 520px;
  }
  .review-story {
    width: min(37vw, 285px);
  }
  .review-story.is-prev {
    transform: translate(calc(-50% - min(35vw, 275px)), -50%) scale(0.8);
  }
  .review-story.is-next {
    transform: translate(calc(-50% + min(35vw, 275px)), -50%) scale(0.8);
  }
}

@media (max-width: 720px) {
  .booking-modal {
    align-items: end;
    padding: 10px;
  }
  .booking-modal__dialog {
    max-height: calc(100dvh - 20px);
    border-radius: 25px;
  }
  .booking-modal__intro {
    padding: 34px 22px 24px;
  }
  .booking-modal__intro h2 {
    max-width: calc(100% - 42px);
    margin-top: 12px;
    font-size: 37px;
  }
  .booking-modal__intro > p {
    font-size: 12px;
  }
  .booking-modal__benefits {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 18px;
  }
  .booking-modal__benefits span {
    display: flex;
    padding-top: 7px;
  }
  .booking-modal__form.contact-form {
    padding: 24px 18px 26px;
  }
  .booking-modal__form .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .booking-modal__close {
    top: 13px;
    right: 13px;
    width: 38px;
    height: 38px;
  }
  .review-stage.review-stories {
    min-height: 565px;
    padding: 12px 8px 48px;
    border-radius: 25px;
  }
  .review-stories__viewport.review-stage__viewport {
    height: 500px;
  }
  .review-story {
    width: min(78vw, 286px);
  }
  .review-story.is-prev,
  .review-story.is-next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.78);
  }
  .review-story.is-active {
    transform: translate(-50%, -50%) scale(1);
  }
  .review-stories__arrow {
    top: auto;
    bottom: 13px;
    width: 36px;
    height: 36px;
    transform: none;
  }
  .review-stories__arrow--prev {
    left: 12px;
  }
  .review-stories__arrow--next {
    right: 12px;
  }
  .review-stories__pagination {
    bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal,
  .booking-modal__dialog,
  .review-story,
  .review-story__media img {
    transition: none !important;
  }
  .review-story__progress span {
    animation: none !important;
  }
}

/* -------------------------------------------------------------------------
   Review stories refinements
   ------------------------------------------------------------------------- */
.review-stage,
.review-stage.review-stories {
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.review-stage.review-stories {
  overflow: hidden;
}

.review-story {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(-50%, -50%, 0) scale(0.74);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.58s ease,
    border-color 0.58s ease,
    box-shadow 0.58s ease;
  will-change: transform, opacity;
}

.review-story.is-far-prev,
.review-story.is-far-next,
.review-story.is-prev,
.review-story.is-next,
.review-story.is-active {
  visibility: visible;
}

.review-story.is-far-prev,
.review-story.is-far-next {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.review-story.is-far-prev {
  transform: translate3d(calc(-50% - min(58vw, 680px)), -50%, 0) scale(0.7);
}

.review-story.is-far-next {
  transform: translate3d(calc(-50% + min(58vw, 680px)), -50%, 0) scale(0.7);
}

.review-story.is-prev,
.review-story.is-next {
  opacity: 0.62;
  filter: none;
}

.review-story.is-prev {
  transform: translate3d(calc(-50% - min(30vw, 340px)), -50%, 0) scale(0.84);
}

.review-story.is-next {
  transform: translate3d(calc(-50% + min(30vw, 340px)), -50%, 0) scale(0.84);
}

.review-story.is-active {
  transform: translate3d(-50%, -50%, 0) scale(1.045);
}

.review-story__scrim {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.18) 23%,
    transparent 43%,
    transparent 100%
  );
}

.review-story__profile {
  top: 27px;
}

.review-story__avatar {
  overflow: hidden;
  padding: 0;
  background: black;
}

.review-story__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.review-story__profile > div {
  display: block;
}

.review-story__profile strong {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}

.review-story.is-active.is-progressing .review-story__progress span {
  animation-duration: 7s;
}

@media (max-width: 980px) {
  .review-story.is-far-prev {
    transform: translate3d(calc(-50% - min(68vw, 550px)), -50%, 0) scale(0.7);
  }
  .review-story.is-far-next {
    transform: translate3d(calc(-50% + min(68vw, 550px)), -50%, 0) scale(0.7);
  }
  .review-story.is-prev {
    transform: translate3d(calc(-50% - min(35vw, 275px)), -50%, 0) scale(0.8);
  }
  .review-story.is-next {
    transform: translate3d(calc(-50% + min(35vw, 275px)), -50%, 0) scale(0.8);
  }
}

@media (max-width: 720px) {
  .review-stage.review-stories {
    border-radius: 0;
  }
  .review-story.is-far-prev,
  .review-story.is-far-next,
  .review-story.is-prev,
  .review-story.is-next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .review-story.is-active {
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-story {
    transition: none !important;
  }
}

/* -------------------------------------------------------------------------
   Route page: reviews and related routes
   ------------------------------------------------------------------------- */
.route-reviews {
  position: relative;
  overflow: hidden;
  padding: 104px 0 82px;
  color: var(--white);
  background: var(--black);
}
.route-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(216, 167, 43, 0.22), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(216, 167, 43, 0.08), transparent 28%);
}
.route-reviews::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  width: min(920px, 78vw);
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(216, 167, 43, 0.13);
  filter: blur(90px);
  transform: translateX(-50%);
}
.route-reviews__ambient {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1280px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 166, 0.55), transparent);
  transform: translateX(-50%);
}
.route-reviews__inner {
  position: relative;
  z-index: 1;
}
.route-reviews__head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 8px;
}
.route-reviews__head .section-kicker {
  color: var(--gold-light);
}
.route-reviews__head h2 {
  max-width: 760px;
  font-size: clamp(48px, 5.4vw, 76px);
}
.route-reviews__intro {
  padding-bottom: 8px;
}
.route-reviews__intro > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
}
.route-reviews__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.route-reviews__trust > span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.055);
  font-size: 10.5px;
}
.route-reviews__trust svg {
  color: var(--gold-light);
  font-size: 15px;
}
.route-reviews__trust b {
  color: var(--white);
  font-weight: 500;
}
.route-reviews .review-stage.review-stories {
  min-height: 630px;
  margin-top: 0;
  padding: 8px 68px 54px;
}
.route-reviews .review-stories__viewport.review-stage__viewport {
  height: 565px;
}
.route-reviews .review-story {
  border-color: rgba(255, 255, 255, 0.18);
}
.route-reviews .review-story.is-active {
  border-color: rgba(255, 240, 166, 0.68);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(216, 167, 43, 0.13);
}
.route-reviews .review-stories__arrow {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}
.route-reviews .review-stories__arrow--prev {
  left: 8px;
}
.route-reviews .review-stories__arrow--next {
  right: 8px;
}

.other-routes {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: linear-gradient(180deg, #f4f3ef 0%, #ffffff 82%);
}
.other-routes::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--gold-glow);
  opacity: 0.36;
}
.other-routes__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}
.other-routes__head h2 {
  max-width: 720px;
  font-size: clamp(48px, 5vw, 70px);
}
.other-routes__head > p {
  max-width: 480px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
}
.other-routes__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.other-route-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 27px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.055);
  transition:
    transform 0.5s var(--spring),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}
.other-route-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(216, 167, 43, 0.11);
  transition: transform 0.55s var(--spring);
}
.other-route-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(216, 167, 43, 0.42);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.12);
}
.other-route-card:hover::after {
  transform: scale(1.22);
}
.other-route-card__top,
.other-route-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.other-route-card__top small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}
.other-route-card__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--gold-deep);
  background: rgba(216, 167, 43, 0.12);
  font-size: 10px;
  font-weight: 600;
}
.other-route-card__body {
  position: relative;
  z-index: 1;
  margin: auto 0 24px;
}
.other-route-card h3 {
  margin: 34px 0 12px;
  font-size: clamp(29px, 2.45vw, 38px);
  line-height: 1.02;
}
.other-route-card h3 span {
  color: var(--gold-deep);
  font-family: var(--font-ui);
  font-size: 0.68em;
}
.other-route-card__body p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
}
.other-route-card__footer {
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.other-route-card__footer > span,
.other-route-card__footer > b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
}
.other-route-card__footer > span {
  color: var(--muted);
}
.other-route-card__footer > span svg {
  color: var(--gold-deep);
  font-size: 15px;
}
.other-route-card__footer > b {
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.other-route-card__footer > b svg {
  font-size: 14px;
  transition: transform 0.35s var(--spring);
}
.other-route-card:hover .other-route-card__footer > b svg {
  transform: translateX(5px);
}
.other-route-card--dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 88% 0, rgba(216, 167, 43, 0.24), transparent 38%),
    var(--black);
  box-shadow: var(--shadow-dark);
}
.other-route-card--dark::after {
  background: rgba(216, 167, 43, 0.08);
}
.other-route-card--dark .other-route-card__number {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}
.other-route-card--dark .other-route-card__top small,
.other-route-card--dark .other-route-card__body p,
.other-route-card--dark .other-route-card__footer > span {
  color: var(--muted-dark);
}
.other-route-card--dark .other-route-card__footer {
  border-color: rgba(255, 255, 255, 0.11);
}
.other-route-card--dark h3 span,
.other-route-card--dark .other-route-card__footer > span svg,
.other-route-card--dark .other-route-card__footer > b {
  color: var(--gold-light);
}
.other-route-card--gold {
  color: var(--black);
  border-color: transparent;
  background: var(--gold-metal);
  box-shadow: 0 22px 65px rgba(143, 91, 0, 0.18);
}
.other-route-card--gold::after {
  background: rgba(255, 255, 255, 0.22);
}
.other-route-card--gold .other-route-card__number {
  color: var(--black);
  background: rgba(255, 255, 255, 0.42);
}
.other-route-card--gold .other-route-card__top small,
.other-route-card--gold .other-route-card__body p,
.other-route-card--gold .other-route-card__footer > span {
  color: rgba(0, 0, 0, 0.64);
}
.other-route-card--gold .other-route-card__footer {
  border-color: rgba(0, 0, 0, 0.16);
}
.other-route-card--gold h3 span,
.other-route-card--gold .other-route-card__footer > span svg,
.other-route-card--gold .other-route-card__footer > b {
  color: var(--black);
}

@media (max-width: 980px) {
  .route-reviews__head,
  .other-routes__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .route-reviews__intro,
  .other-routes__head > p {
    max-width: 680px;
  }
  .other-routes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .route-reviews .review-stage.review-stories {
    min-height: 590px;
    padding-inline: 52px;
  }
  .route-reviews .review-stories__viewport.review-stage__viewport {
    height: 520px;
  }
}

@media (max-width: 720px) {
  .route-reviews,
  .other-routes {
    padding: 76px 0;
  }
  .route-reviews__head h2,
  .other-routes__head h2 {
    font-size: 43px;
  }
  .route-reviews__trust {
    display: grid;
    grid-template-columns: 1fr;
  }
  .route-reviews__trust > span {
    width: fit-content;
  }
  .route-reviews .review-stage.review-stories {
    min-height: 555px;
    margin-top: 18px;
    padding: 10px 0 48px;
  }
  .route-reviews .review-stories__viewport.review-stage__viewport {
    height: 500px;
  }
  .route-reviews .review-stories__arrow--prev {
    left: 0;
  }
  .route-reviews .review-stories__arrow--next {
    right: 0;
  }
  .other-routes__head {
    margin-bottom: 34px;
  }
  .other-routes__grid {
    grid-template-columns: 1fr;
  }
  .other-route-card {
    min-height: 265px;
  }
}
