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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #1a1814;
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.14), transparent 24%),
    radial-gradient(circle at left 18%, rgba(237, 234, 228, 0.92), transparent 26%),
    linear-gradient(180deg, #f5f2ed 0%, #f2eee7 48%, #f8f5ef 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -8rem;
  right: -10rem;
  width: 26rem;
  height: 26rem;
  background: rgba(212, 160, 23, 0.12);
}

body::after {
  bottom: -10rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(161, 148, 124, 0.12);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.topbar,
.hero__inner,
.section,
.footer {
  width: min(1220px, calc(100vw - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(217, 213, 206, 0.9);
  border-radius: 999px;
  background: rgba(245, 242, 237, 0.72);
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(245, 242, 237, 0.92);
  border-color: rgba(217, 213, 206, 1);
  box-shadow: 0 16px 38px rgba(26, 24, 20, 0.08);
}

.brand {
  display: grid;
  gap: 2px;
}

.brand__mark {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.12em;
}

.brand__subline {
  color: #5c5750;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #5c5750;
  font-size: 0.96rem;
}

.topnav a {
  position: relative;
  transition: color 180ms ease;
}

.topnav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 1px;
  background: #d4a017;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: #1a1814;
}

.topnav a:hover::after,
.topnav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button__logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.button__logo--max {
  width: 1rem;
  height: 1rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary,
.button--topbar {
  background: #1a1814;
  color: #f5f2ed;
  box-shadow: 0 14px 28px rgba(26, 24, 20, 0.14);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--topbar:hover,
.button--topbar:focus-visible {
  background: #d4a017;
  color: #1a1814;
  box-shadow: 0 18px 32px rgba(212, 160, 23, 0.24);
}

.button--secondary {
  border-color: #d9d5ce;
  background: rgba(255, 255, 255, 0.72);
  color: #1a1814;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: #edeae4;
  border-color: #d4a017;
}

.button--whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: #1fbe5a;
}

.button--telegram {
  background: #229ed9;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(34, 158, 217, 0.24);
}

.button--telegram:hover,
.button--telegram:focus-visible {
  background: #188dc4;
}

.button--max {
  background: #ffffff;
  color: #1a1814;
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.14);
}

.button--max:hover,
.button--max:focus-visible {
  background: #edeae4;
  color: #1a1814;
}

.button--avito {
  background: #2f80ff;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(47, 128, 255, 0.28);
}

.button--avito:hover,
.button--avito:focus-visible {
  background: #2368d4;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 8.7rem 0 5rem;
  overflow: clip;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background: url("assets/014-pexels-photo-1685373.jpg") center center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(245, 242, 237, 0.35), rgba(245, 242, 237, 0.68)),
    linear-gradient(90deg, rgba(245, 242, 237, 0.8), rgba(245, 242, 237, 0.16));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #d4a017;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section__title,
.route-card h3,
.step-card h3,
.service__story h3,
.border-note__title,
.contact__phone {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(3.4rem, 10vw, 7rem);
  line-height: 0.9;
}

.hero h1 span {
  display: block;
}

.hero__lead,
.section__copy,
.hero__card p,
.service__story p,
.border-note__copy,
.step-card p,
.contact__meta {
  color: #5c5750;
  line-height: 1.75;
}

.hero__lead {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  font-size: 1.1rem;
}

.hero__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.75rem;
}

.hero__badge span,
.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(217, 213, 206, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(26, 24, 20, 0.05);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  color: #1a1814;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__aside {
  display: grid;
  gap: 18px;
}

.hero__card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 213, 206, 0.92);
  box-shadow: 0 22px 44px rgba(26, 24, 20, 0.08);
}

.hero__card--accent {
  background: #edeae4;
}

.hero__card-label {
  margin: 0 0 1rem;
  color: #1a1814;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__checklist li {
  position: relative;
  padding-left: 22px;
  color: #5c5750;
  line-height: 1.7;
}

.hero__checklist li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d4a017;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section + .section::before,
.border-note + .map-section::before,
.routes + .border-note::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9d5ce, transparent);
}

.section__intro {
  max-width: 54rem;
}

.section__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.93;
}

.section__copy {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  font-size: 1.03rem;
}

.service__grid,
.route-grid,
.vehicle__layout,
.steps__grid,
.contact__panel,
.border-note__card,
.map-shell {
  margin-top: 2.6rem;
}

.service__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
}

.service__story,
.service__points li,
.step-card,
.border-note__card,
.map-shell,
.vehicle__layout,
.routes__toolbar {
  box-shadow: 0 2px 16px rgba(26, 24, 20, 0.07);
}

.service__story {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
}

.service__story h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.service__story p {
  margin: 1rem 0 0;
}

.service__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service__points li {
  display: flex;
  gap: 12px;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  color: #1a1814;
  line-height: 1.65;
}

.service__points .icon {
  color: #d4a017;
  margin-top: 0.25rem;
}

.routes__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: #edeae4;
}

.routes__toolbar-note,
.routes__footnote {
  margin: 0;
  color: #5c5750;
}

.direction-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 213, 206, 0.95);
}

.direction-toggle__button {
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5c5750;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.direction-toggle__button.is-active {
  background: #1a1814;
  color: #f5f2ed;
}

.direction-toggle__button:hover,
.direction-toggle__button:focus-visible {
  transform: translateY(-1px);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  position: relative;
  min-height: 19rem;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background-position: center center;
  background-size: cover;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(26, 24, 20, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.route-card:hover,
.route-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(26, 24, 20, 0.18);
}

.route-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.08), rgba(26, 24, 20, 0.72)),
    linear-gradient(160deg, rgba(212, 160, 23, 0.18), transparent 52%);
  transition: background 180ms ease;
}

.route-card:hover .route-card__overlay,
.route-card:focus-within .route-card__overlay {
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.02), rgba(26, 24, 20, 0.62)),
    linear-gradient(160deg, rgba(212, 160, 23, 0.22), transparent 52%);
}

.route-card__direction {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-card__arrow .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 220ms ease;
}

.routes[data-direction="to-kaliningrad"] .route-card__arrow .icon {
  transform: rotate(180deg);
}

.route-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.route-card__price {
  margin: 0.4rem 0 0;
  color: #ffd466;
  font-size: 1.15rem;
  font-weight: 800;
}

.route-card__meta {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.routes__footnote {
  margin-top: 1.4rem;
  font-size: 0.96rem;
}

.border-note {
  padding-top: 1rem;
}

.border-note__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px;
  border-left: 4px solid #d4a017;
  border-radius: 24px;
  background: #edeae4;
}

.border-note__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(212, 160, 23, 0.12);
  color: #d4a017;
}

.border-note__icon .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.border-note__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.border-note__copy {
  margin: 0.9rem 0 0;
}

.map-section {
  background:
    linear-gradient(180deg, rgba(237, 234, 228, 0.38), rgba(237, 234, 228, 0));
}

.map-shell {
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
}

.map-shell__stage {
  position: relative;
  min-height: 42rem;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(212, 160, 23, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f6f2, #f0ece5);
  border: 1px solid #d9d5ce;
}

.route-map {
  position: absolute;
  inset: 0;
}

.map-shell__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245, 242, 237, 0.1), rgba(245, 242, 237, 0)),
    linear-gradient(90deg, rgba(245, 242, 237, 0.12), transparent 22%);
}

.map-shell__hud {
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-shell__hud span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 213, 206, 0.92);
  color: #1a1814;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.route-map__fallback {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 5;
  display: none;
  justify-items: start;
}

.route-map__fallback:not([hidden]) {
  display: grid;
}

.route-map__fallback p {
  max-width: 32rem;
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(245, 242, 237, 0.92);
  border: 1px solid rgba(217, 213, 206, 0.98);
  color: #1a1814;
  line-height: 1.7;
  box-shadow: 0 18px 30px rgba(26, 24, 20, 0.1);
}

.route-map .mapboxgl-canvas {
  filter: sepia(0.12) saturate(0.86) brightness(1.02);
}

.route-map .mapboxgl-marker,
.route-map .mapboxgl-control-container {
  z-index: 3;
}

.route-map .mapboxgl-ctrl-top-right {
  top: 18px;
  right: 18px;
  z-index: 4;
}

.route-map .mapboxgl-ctrl-top-right .mapboxgl-ctrl-group {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(217, 213, 206, 0.94);
  background: rgba(245, 242, 237, 0.86);
  box-shadow: 0 18px 30px rgba(26, 24, 20, 0.1);
  backdrop-filter: blur(12px);
}

.route-map .mapboxgl-ctrl-top-right .mapboxgl-ctrl-group button {
  width: 42px;
  height: 42px;
  background-color: transparent;
}

.route-map .mapboxgl-ctrl-top-right .mapboxgl-ctrl-group button + button {
  border-top: 1px solid rgba(217, 213, 206, 0.94);
}

.route-map .mapboxgl-ctrl-top-right .mapboxgl-ctrl-group button:hover,
.route-map .mapboxgl-ctrl-top-right .mapboxgl-ctrl-group button:focus-visible {
  background: rgba(212, 160, 23, 0.14);
}

.route-map .mapboxgl-ctrl-bottom-left,
.route-map .mapboxgl-ctrl-bottom-right {
  z-index: 4;
}

.route-map .mapboxgl-ctrl-attrib,
.route-map .mapboxgl-ctrl-logo {
  margin: 0 10px 10px;
}

.route-map .mapboxgl-ctrl-attrib {
  border-radius: 12px;
  background: rgba(245, 242, 237, 0.82);
  border: 1px solid rgba(217, 213, 206, 0.94);
  backdrop-filter: blur(10px);
}

.route-map .mapboxgl-attrib-inner,
.route-map .mapboxgl-attrib-inner a {
  color: rgba(92, 87, 80, 0.9);
}

.city-marker {
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.city-marker__dot {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d4a017;
  border: 3px solid #1a1814;
  box-shadow:
    0 0 0 8px rgba(212, 160, 23, 0.16),
    0 12px 18px rgba(26, 24, 20, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.city-marker__label {
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%);
  display: grid;
  gap: 0.18rem;
  min-width: 7.75rem;
  padding: 0.45rem 0.7rem 0.5rem;
  border-radius: 16px;
  background: rgba(245, 242, 237, 0.86);
  border: 1px solid rgba(217, 213, 206, 0.94);
  color: #1a1814;
  white-space: nowrap;
  box-shadow: 0 14px 24px rgba(26, 24, 20, 0.1);
  backdrop-filter: blur(10px);
  transition:
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.city-marker__name {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  line-height: 0.9;
  letter-spacing: 0.06em;
}

.city-marker__price {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(92, 87, 80, 0.9);
}

.city-marker--left .city-marker__label {
  left: auto;
  right: calc(100% + 12px);
}

.city-marker--top .city-marker__label {
  top: auto;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}

.city-marker--bottom .city-marker__label {
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}

.city-marker--top-left .city-marker__label {
  top: auto;
  bottom: calc(100% + 10px);
  left: auto;
  right: calc(100% + 10px);
  transform: none;
}

.city-marker--top-right .city-marker__label {
  top: auto;
  bottom: calc(100% + 10px);
  left: calc(100% + 10px);
  transform: none;
}

.city-marker--bottom-left .city-marker__label {
  top: calc(100% + 10px);
  left: auto;
  right: calc(100% + 10px);
  transform: none;
}

.city-marker--bottom-right .city-marker__label {
  top: calc(100% + 10px);
  left: calc(100% + 10px);
  transform: none;
}

.city-marker:hover .city-marker__dot,
.city-marker:focus-visible .city-marker__dot {
  background: #1a1814;
  transform: scale(1.08);
  box-shadow:
    0 0 0 10px rgba(212, 160, 23, 0.2),
    0 16px 22px rgba(26, 24, 20, 0.16);
}

.city-marker:hover .city-marker__label,
.city-marker:focus-visible .city-marker__label {
  color: #1a1814;
  background: rgba(255, 248, 230, 0.96);
  box-shadow: 0 18px 28px rgba(26, 24, 20, 0.14);
}

.city-marker:hover .city-marker__price,
.city-marker:focus-visible .city-marker__price {
  color: #d4a017;
}

.city-marker:focus-visible {
  outline: none;
}

@keyframes markerPop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.vehicle__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
}

.vehicle__media {
  margin: 0;
}

.vehicle__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.vehicle__content {
  padding: clamp(1.8rem, 4vw, 3.5rem);
  background: #edeae4;
}

.vehicle__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.vehicle__features li {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  color: #1a1814;
  line-height: 1.6;
}

.vehicle__features .icon {
  color: #d4a017;
  margin-top: 0.2rem;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: #ffffff;
}

.step-card__index {
  display: inline-block;
  margin-bottom: 1rem;
  color: #d4a017;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.step-card h3 {
  font-size: 2rem;
}

.step-card p {
  margin: 0.85rem 0 0;
}

.contact__panel {
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.22), transparent 24%),
    linear-gradient(180deg, #1f1b16 0%, #1a1814 100%);
  text-align: center;
  color: #f5f2ed;
}

.contact__panel .section__copy,
.contact__panel .contact__meta {
  color: rgba(245, 242, 237, 0.78);
}

.contact__panel .section__copy {
  margin-left: auto;
  margin-right: auto;
}

.contact__phones {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact__phone-block {
  display: grid;
  gap: 0.35rem;
}

.contact__phone {
  display: inline-block;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

.contact__phone--secondary {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

.contact__meta {
  margin: 0;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 2rem;
  color: #5c5750;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .hero__inner,
  .service__grid,
  .vehicle__layout {
    grid-template-columns: 1fr;
  }

  .route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .topbar {
    padding: 12px 14px;
  }

  .routes__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .service__points,
  .vehicle__features,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .border-note__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar,
  .hero__inner,
  .section,
  .footer {
    width: min(1220px, calc(100vw - 28px));
  }

  .topbar {
    top: 12px;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero__actions,
  .contact__actions {
    flex-direction: column;
  }

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

  .direction-toggle__button {
    flex: 1 1 0;
  }

  .route-grid,
  .service__points,
  .vehicle__features,
  .steps__grid {
    grid-template-columns: 1fr;
  }

  .map-shell,
  .vehicle__content,
  .contact__panel {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .map-shell {
    padding: 16px;
  }

  .map-shell__stage {
    min-height: 34rem;
  }

  .map-shell__hud {
    inset: 14px auto auto 14px;
  }

  .city-marker__label {
    min-width: 6.6rem;
    padding: 0.38rem 0.58rem 0.42rem;
  }

  .city-marker__name {
    font-size: 1.1rem;
  }

  .city-marker__price {
    font-size: 0.64rem;
  }

  .route-map .mapboxgl-ctrl-top-right {
    top: 14px;
    right: 14px;
  }

  .vehicle__media img {
    min-height: 320px;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 1.6rem;
  }
}
