@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Manrope:wght@400;500;600;700;800&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: "Manrope", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  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: 600;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(56px, 6.8vw, 98px);
  line-height: 0.9;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 0.98;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 1.85vw, 28px);
  line-height: 1.18;
  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;
}
.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: 800;
  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: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    transform 0.35s var(--spring),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -34%;
  width: 28%;
  transform: skewX(-20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    transparent
  );
  transition: left 0.7s var(--ease);
}
.button:hover {
  transform: translateY(-3px);
}
.button:hover::before {
  left: 116%;
}
.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);
  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: 700;
  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: 11px;
  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: 14px;
  color: var(--gold);
}
.topbar__phone {
  color: var(--white) !important;
  font-weight: 800;
}
.navline {
  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);
  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, 212px);
  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: 700;
  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 {
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}
.language-switch button.is-active {
  color: var(--gold-light);
}
.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);
  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: 800;
  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: 800;
  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;
  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: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.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);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}
.hero__badges svg {
  color: var(--gold-light);
}
.hero__status {
  min-width: 230px;
  display: grid;
  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);
  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: 0.9;
}
.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);
  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: 700;
  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: 800;
}
.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: 800;
  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: 800;
}
.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;
  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);
  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;
  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);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 800;
  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: 700;
}
.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: 10px;
}
.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: 800;
  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: 34%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-metal);
  transition: width 0.5s var(--ease);
}
.fleet-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
}

/* 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;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 167, 43, 0.52),
    transparent
  );
}
.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: 800;
}
.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: 11px;
}
.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: 800;
  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);
  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: 12px;
}
.reviews-rating-card small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}
.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);
  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: 800;
}
.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: 9px;
}
.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: 9px;
}
.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: 9px;
}
.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: 700;
}
.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: 1px solid rgba(255, 255, 255, 0.1);
  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: 800;
  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: 12px;
  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);
}
.footer-route {
  margin-top: 8px;
  color: var(--gold-light) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.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: 10px;
}
.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, 82px);
}
.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: 700;
}
.phone-link svg {
  color: var(--gold-light);
}

/* 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 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: 800;
}
.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: 800;
  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: 12px;
}
.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: 800;
  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);
  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: 700;
  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 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: 800;
}
.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);
  backdrop-filter: blur(18px);
}
.dashboard-card > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  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: 700;
}
.request-contacts svg {
  color: var(--gold-deep);
}

.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: 700;
  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: flex;
  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: 700;
  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: 800;
}
.form-section__title h2 {
  margin: 0 0 5px;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 700;
  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: 700;
}
.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: 800;
  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;
}
.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);
  backdrop-filter: blur(12px);
}
.route-meta svg {
  color: var(--gold-light);
}
.route-meta span {
  display: grid;
}
.route-meta small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  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);
  backdrop-filter: blur(22px) saturate(135%);
}
.route-price-card > small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  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: 9px;
}
.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;
}
.route-overview__header > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  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 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: 800;
  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: 8.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: 800;
}
.journey-stage b {
  align-self: end;
  font-size: 12.5px;
}
.journey-stage small {
  color: var(--muted-dark);
  font-size: 9.5px;
  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: 10.5px;
}
.journey-board__footer svg {
  flex: 0 0 auto;
  color: var(--gold-light);
}
.route-pricing {
  background: rgba(0, 0, 0, 0.025);
}
.route-tariffs {
  grid-template-columns: repeat(4, 1fr);
}
.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: 700;
}
.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: 800;
  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;
}
.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;
  filter: blur(5px);
  transform: translate3d(var(--motion-x, 0), var(--motion-y, 28px), 0)
    scale(var(--motion-scale, 1));
  transition:
    opacity 0.75s ease var(--motion-delay, 0ms),
    transform 0.9s var(--spring) var(--motion-delay, 0ms),
    filter 0.75s ease var(--motion-delay, 0ms);
}
html.motion-ready [data-motion="left"] {
  --motion-x: -34px;
  --motion-y: 0;
}
html.motion-ready [data-motion="right"] {
  --motion-x: 34px;
  --motion-y: 0;
}
html.motion-ready [data-motion="scale"] {
  --motion-y: 0;
  --motion-scale: 0.97;
}
html.motion-ready [data-motion="fade"] {
  --motion-y: 0;
}
html.motion-ready [data-motion].is-motion-visible {
  opacity: 1;
  filter: none;
  transform: none;
}
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);
    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);
    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: 700;
  }
  .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;
  }
  .mobile-routes__panel > * {
    min-height: 0;
    overflow: hidden;
  }
  .mobile-routes.is-open .mobile-routes__panel {
    grid-template-rows: 1fr;
  }
  .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: 11px;
  }
  .mobile-menu__contacts svg {
    color: var(--gold);
  }
  .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);
  }
  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;
  }
  .hero__badges span {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 9px;
  }
  .booking-dock,
  .route-booking {
    margin-top: -38px;
  }
  .route-booking {
    margin-top: -28px;
  }
  .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;
  }
}
