:root {
  --bg: #080a0f;
  --bg-elevated: #11151d;
  --bg-card: #161b26;
  --gold: #e8c547;
  --gold-bright: #f5d76e;
  --gold-dim: rgba(232, 197, 71, 0.15);
  --text: #f4f6fa;
  --text-soft: #9aa3b5;
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(232, 197, 71, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font: "Manrope", system-ui, sans-serif;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.auth-ui-off #drawer-auth {
  display: none !important;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(232, 197, 71, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 35% at 90% 20%, rgba(74, 140, 255, 0.04), transparent 50%);
}

main, .header, .footer, .messenger-bar--fab { position: relative; z-index: 1; }

.messenger-bar--fab { position: fixed; }

/* Typography */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 52ch;
}

.section-desc {
  margin-top: 10px;
  color: var(--text-soft);
  max-width: 48ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14120a;
  box-shadow: 0 8px 32px rgba(232, 197, 71, 0.25);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 197, 71, 0.35);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover { border-color: var(--line-gold); }

.btn--wide { width: 100%; padding: 15px; font-size: 0.95rem; }

.btn--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.link-quiet {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s;
}

.link-quiet:hover { color: var(--text); }

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14120a;
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
}

.brand__text {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header);
  z-index: 130;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.header.is-scrolled {
  background: rgba(8, 10, 15, 0.88);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.header__row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s;
}

.nav a:hover { color: var(--text); }

.header__end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#header-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__desk-only { display: inline-flex; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(300px, 88vw);
  height: 100dvh;
  padding: 16px 20px 28px;
  background: var(--bg-elevated);
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s var(--ease), visibility 0.35s;
}

.nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.nav-drawer__title {
  font-weight: 800;
  font-size: 1rem;
}

.nav-drawer__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.nav-drawer__close:hover {
  color: var(--text);
  border-color: var(--line-gold);
}

.nav-drawer #drawer-auth {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer a,
.nav-drawer #drawer-auth button {
  padding: 14px 12px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.nav-drawer a:not(.btn):hover,
.nav-drawer #drawer-auth button:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-bright);
}

.nav-drawer .btn,
.nav-drawer #drawer-auth .btn {
  margin-top: 12px;
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(8, 10, 15, 0.92) 42%, rgba(8, 10, 15, 0.55) 70%, rgba(8, 10, 15, 0.35) 100%),
    linear-gradient(180deg, transparent 50%, var(--bg) 100%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 400px;
  gap: 48px;
  align-items: center;
  padding: 56px 0 88px;
}

.hero-stats {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 32px 0 28px;
  padding: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 4px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
}

.chip svg { color: var(--gold); flex-shrink: 0; }

/* Panel / booking */
.panel {
  background: rgba(17, 21, 29, 0.82);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-gold);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.panel__head {
  padding: 24px 24px 0;
}

.panel__head h2 {
  font-size: 1.2rem;
  font-weight: 800;
}

.panel__head p {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.booking__form {
  padding: 20px 24px 24px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: end;
  margin-bottom: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus {
  border-color: var(--line-gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%239aa3b5' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.swap-btn {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}

.swap-btn:hover {
  background: var(--gold-dim);
  transform: rotate(180deg);
}

.price-hint {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 14px;
  min-height: 1.4em;
}

.price-hint.has-price {
  color: var(--gold-bright);
  font-weight: 600;
}

.form-note {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-soft);
  line-height: 1.45;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section--dim {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head--center .section-desc { margin-inline: auto; }

/* Route map (Leaflet) */
.route-map-widget {
  position: relative;
  width: min(460px, 100%);
  height: 240px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.route-map-widget__canvas {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.route-map-widget__status {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(8, 10, 15, 0.72);
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.route-map-widget:not(.is-loading) .route-map-widget__status {
  opacity: 0;
}

.route-map-widget .leaflet-container {
  background: #0d1118;
  font-family: var(--font);
}

.route-map-widget .leaflet-control-zoom {
  border: none !important;
  box-shadow: none !important;
}

.route-map-widget .leaflet-control-zoom a {
  background: rgba(22, 27, 38, 0.92) !important;
  color: var(--text) !important;
  border: 1px solid var(--line) !important;
  width: 30px !important;
  height: 30px !important;
  line-height: 28px !important;
}

.route-map-widget .leaflet-control-zoom a:hover {
  background: var(--bg-elevated) !important;
  color: var(--gold-bright) !important;
}

.route-map-widget .leaflet-control-attribution {
  font-size: 0.58rem;
  background: rgba(8, 10, 15, 0.65) !important;
  color: var(--text-soft) !important;
  padding: 2px 6px !important;
  border-radius: 6px 0 0 0;
}

.route-map-widget .leaflet-control-attribution img,
.route-map-widget .leaflet-control-attribution svg,
.leaflet-attribution-flag {
  display: none !important;
}

.route-map-widget .leaflet-control-attribution a {
  color: var(--gold) !important;
}

.route-map-widget .leaflet-overlay-pane path.route-map-line {
  stroke-dasharray: 14 12;
  animation: routeDashMove 1.4s linear infinite;
}

.route-map-widget .leaflet-overlay-pane path.route-map-line--active {
  stroke-dasharray: none;
  animation: none;
}

.route-map-line--active {
  filter: drop-shadow(0 0 8px rgba(245, 215, 110, 0.55));
}

@keyframes routeDashMove {
  to { stroke-dashoffset: -26; }
}

.route-map-city {
  display: flex !important;
  align-items: center;
  gap: 6px;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  transform: translate(-6px, -6px);
  white-space: nowrap;
}

.route-map-city__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px var(--gold-dim);
  flex-shrink: 0;
}

.route-map-city__label {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(8, 10, 15, 0.88);
  border: 1px solid var(--line);
  color: var(--text-soft);
}

.route-map-city.is-active .route-map-city__dot {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(232, 197, 71, 0.65);
}

.route-map-city.is-active .route-map-city__label {
  color: var(--gold-bright);
  border-color: var(--line-gold);
}

.route-map-van {
  background: transparent !important;
  border: none !important;
}

.route-map-van__core {
  display: block;
  width: 14px;
  height: 14px;
  margin: 3px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 2px solid #fff;
  box-shadow: 0 0 14px rgba(245, 215, 110, 0.9);
}

.route-map-van__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
  animation: routeVanPulse 1.8s ease-out infinite;
}

@keyframes routeVanPulse {
  0% { transform: scale(0.6); opacity: 0.55; }
  100% { transform: scale(2.2); opacity: 0; }
}

.leaflet-tooltip.route-map-tooltip {
  background: rgba(8, 10, 15, 0.92);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: var(--shadow);
}

.leaflet-tooltip.route-map-tooltip::before {
  border-top-color: rgba(8, 10, 15, 0.92);
}

/* Routes grid */
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.route:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.route.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 16px 48px rgba(232, 197, 71, 0.12);
}

.route__media {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.route__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 10, 15, 0.85) 100%);
}

.route__body {
  padding: 16px 18px 18px;
  position: relative;
}

.route__price {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--gold);
  color: #14120a;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.route h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.route__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.route__meta span:first-child::after {
  content: "·";
  margin-left: 12px;
  opacity: 0.5;
}

/* Fleet */
.fleet {
  position: relative;
}

.fleet-card {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  animation: fadeIn 0.4s var(--ease);
}

.fleet-card.is-active { display: grid; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.fleet-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card__info {
  padding: 28px 28px 28px 0;
}

.fleet-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}

.fleet-card__info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.fleet-card__year {
  font-size: 0.85rem;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 10px;
}

.fleet-card__info > p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.fleet-card__info ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-card__info li {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fleet-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.fleet-nav button {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
}

.fleet-nav button.is-active,
.fleet-nav button:hover {
  color: #14120a;
  background: var(--gold);
  border-color: var(--gold);
}

/* Reviews */
.reviews-carousel {
  position: relative;
}

.reviews-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(8, 10, 15, 0.9);
  color: var(--gold-bright);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}

.reviews-carousel__btn:hover {
  transform: scale(1.06);
  border-color: var(--line-gold);
  background: var(--bg-card);
}

.reviews-carousel__btn--prev { left: -12px; }
.reviews-carousel__btn--next { right: -12px; }

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.reviews-carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

.reviews {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 4px 48px 8px;
}

.reviews.is-paused {
  scroll-behavior: auto;
}

.review {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  scroll-snap-align: start;
}

.review__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review p {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.review footer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
}

.reviews-actions {
  margin: -24px 0 16px;
}

.review-form-panel {
  max-width: 480px;
  margin-bottom: 20px;
  animation: reviewPanelIn 0.25s var(--ease);
}

@keyframes reviewPanelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  background: rgba(17, 21, 29, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.review-form__top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.review-form input[type="text"],
.review-form textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.review-form__top input[type="text"] {
  flex: 1;
  min-width: 140px;
}

.review-form textarea {
  resize: vertical;
  min-height: 56px;
  max-height: 120px;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--line-gold);
  box-shadow: 0 0 0 2px var(--gold-dim);
}

.review-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.review-stars__btn {
  padding: 4px 2px;
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}

.review-stars__btn.is-active {
  color: var(--gold);
}

.review-stars__btn:hover {
  transform: scale(1.1);
}

.review-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* Contacts section */
.contacts-block__phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.phone-item {
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.phone-item__number {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.phone-item__number:hover { color: var(--gold-bright); }

.phone-item__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.phone-item__messengers {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.phone-item--compact {
  padding: 0;
  background: none;
  border: none;
  margin-bottom: 8px;
}

.phone-item--compact .phone-item__number {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.phone-item--compact .phone-item__label {
  font-size: 0.75rem;
  margin-bottom: 0;
}

.contacts-block__note {
  color: var(--text-soft);
  max-width: 52ch;
  margin-bottom: 16px;
}

.contacts-block__channels {
  margin-bottom: 24px;
}

.contacts-block__legal {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.55;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contacts-block__legal .legal__permits {
  list-style: none;
  margin-top: 8px;
}

/* CTA */
.section--cta { padding: 64px 0; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 44px;
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.12), rgba(232, 197, 71, 0.02));
  border: 1px solid var(--line-gold);
  border-radius: 20px;
}

.cta h2 { margin-bottom: 8px; }

.cta p { color: var(--text-soft); }

.cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq details[open] summary::after { content: "−"; }

.faq p {
  padding: 0 20px 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer__slogan {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-style: italic;
}

.footer__tag {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-soft);
  max-width: 28ch;
}

.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a,
.footer__contact a,
.footer__contact .phone-item__number {
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color 0.2s;
}

.footer__nav a:hover,
.footer__contact a:hover,
.footer__contact .phone-item__number:hover { color: var(--gold-bright); }

.footer__legal {
  padding-bottom: 20px;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-soft);
  opacity: 0.85;
}

.footer__legal .legal__name {
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.footer__legal .legal__permits {
  list-style: none;
  margin-top: 6px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-soft);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Messenger icons */
.messenger-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.messenger-bar--fab {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  flex-direction: column;
  gap: 8px;
}

.messenger-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  flex-shrink: 0;
}

.messenger-link:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.messenger-link--whatsapp { background: #25d366; }
.messenger-link--viber { background: #7360f2; }
.messenger-link--telegram { background: #2aabee; }
.messenger-link--vk { background: #0077ff; }
.messenger-link--max { background: linear-gradient(135deg, #5b6cff, #8f3fff); }
.messenger-link--mail {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
}
.messenger-link--book {
  background: var(--gold);
  color: #14120a;
}

.messenger-link--cta {
  width: auto;
  min-width: 46px;
  height: auto;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.messenger-link--cta span {
  color: var(--text-soft);
  font-weight: 600;
}

.messenger-link--cta.messenger-link--mail span {
  color: var(--text);
}

.contacts-block__channels .messenger-link--mail {
  width: auto;
  min-width: 46px;
  height: auto;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contacts-block__channels .messenger-link--mail span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.footer__social {
  margin-top: 14px;
}

.cta__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  padding: 14px 22px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--shadow);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__visual img { object-position: center; }

  .hero__visual::after {
    background:
      linear-gradient(180deg, rgba(8, 10, 15, 0.75) 0%, var(--bg) 85%),
      linear-gradient(90deg, var(--bg) 0%, transparent 60%);
  }

  .routes { grid-template-columns: repeat(2, 1fr); }

  .fleet-card { grid-template-columns: 1fr; }

  .fleet-card__info { padding: 0 24px 24px; }

  .reviews {
    grid-auto-columns: minmax(260px, 88%);
    padding-inline: 40px;
  }

  .reviews-carousel__btn--prev { left: 0; }
  .reviews-carousel__btn--next { right: 0; }

  .faq-wrap { grid-template-columns: 1fr; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .route-map-widget { width: 100%; height: 220px; }
}

@media (max-width: 900px) {
  .nav,
  .header__desk-only { display: none !important; }

  .menu-btn { display: flex; }

  .header__end { margin-left: auto; }
}

@media (max-width: 720px) {
  :root { --header: 64px; }

  .wrap {
    width: min(1180px, calc(100% - 32px));
  }

  main {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    padding: 32px 0 48px;
  }

  .hero-stats {
    gap: 16px 24px;
    flex-wrap: wrap;
  }

  .hero-stats strong {
    font-size: 1.45rem;
  }

  .chips {
    gap: 8px;
  }

  .chip {
    font-size: 0.76rem;
    padding: 8px 12px;
  }

  .panel__head,
  .booking__form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .field-row { grid-template-columns: 1fr; }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .swap-btn {
    justify-self: center;
    transform: rotate(90deg);
    margin: 0;
  }

  .routes { grid-template-columns: 1fr; }

  .section-head {
    gap: 16px;
  }

  .reviews-actions {
    margin: 0 0 16px;
  }

  .reviews-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .review-form-panel {
    max-width: 100%;
  }

  .review-form__top {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews {
    grid-auto-columns: minmax(85%, 1fr);
    padding-inline: 36px;
  }

  .reviews-carousel__btn {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .reviews-carousel__btn--prev { left: 4px; }
  .reviews-carousel__btn--next { right: 4px; }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta__actions .btn { width: 100%; }

  .cta__social.messenger-bar {
    justify-content: flex-start;
  }

  .contacts-block__channels .messenger-link--mail {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 40px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .footer__grid { grid-template-columns: 1fr; }

  .footer__social.messenger-bar {
    gap: 8px;
  }

  .contacts-block__phones { grid-template-columns: 1fr; }

  .messenger-bar--fab {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: calc(100vw - 24px);
    gap: 6px;
  }

  .messenger-bar--fab .messenger-link {
    width: 42px;
    height: 42px;
  }

  .messenger-bar--fab .messenger-link svg {
    width: 20px;
    height: 20px;
  }

  .toast {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    left: 16px;
    right: 16px;
    transform: translateY(12px);
    width: auto;
    max-width: none;
    text-align: center;
  }

  .toast.is-visible {
    transform: translateY(0);
  }

  .nav-drawer {
    width: min(100%, 100vw);
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(1180px, calc(100% - 24px));
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .hero__layout {
    padding-top: 24px;
  }

  .messenger-bar--fab .messenger-link--vk,
  .messenger-bar--fab .messenger-link--max,
  .messenger-bar--fab .messenger-link--mail {
    display: none;
  }

  .phone-item__messengers .messenger-link {
    width: 40px;
    height: 40px;
  }
}
