:root {
  --bg: #151515;
  --bg-soft: #202020;
  --surface: #2a2a2a;
  --surface-soft: #1d1d1d;
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --dim: rgba(255, 255, 255, 0.45);
  --blue: #427fff;
  --green: #25d366;
  --orange: #ff883f;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1224px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}
 
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter Tight", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup {
  position: relative;
  display: block;
  width: 233.96px;
  height: 38px;
}

.brand-lockup img {
  position: absolute;
  display: block;
  max-width: none;
}

.brand-symbol {
  left: 0;
  top: 0;
  width: 79px;
  height: 38px;
}

.brand-wordmark {
  left: 86px;
  top: 5.6px;
  width: 147.93px;
  height: 14.81px;
}

.brand-tagline {
  left: 87.28px;
  top: 26.33px;
  width: 145.44px;
  height: 6.08px;
}

html[lang="en-US"] img.brand-tagline {
  width: auto;
  height: 8.8px;
  top: 24.73px;
}

html[lang="en-US"] .lazyblock-contacts-section .contact-brand .brand-tagline {
  width: auto;
  height: 13.97px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__menu,
.footer-nav__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-nav__menu a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.site-nav__menu > li > a {
  display: inline-block;
  position: relative;
}

.site-nav__menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-meta {
  display: inline-flex;
  align-items: center;
  gap: 33px;
  margin-left: auto;
}

.nav-lang-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-lang-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-lang-caret {
  width: 12px;
  height: 12px;
  color: #fff;
}

.nav-lang-caret svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 68px;
  margin: 0;
  padding: 8px 0 6px;
  list-style: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #282828;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 80;
}

.nav-lang-picker:hover .nav-lang-dropdown,
.nav-lang-picker:focus-within .nav-lang-dropdown {
  display: block;
}

.nav-lang-dropdown__item {
  margin: 0;
}

.nav-lang-dropdown__link {
  display: block;
  padding: 8px 12px;
  text-align: left;
  color: rgba(255, 255, 255, 0.58);
}

.nav-lang-dropdown__link:hover {
  color: #fff;
}

.nav-lang-inline {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-lang {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  transition: color 160ms ease;
}

.nav-lang.is-active {
  color: #fff;
}

.nav-lang-separator {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
  line-height: 1;
}

.nav-caret {
  color: #fff;
  font-size: 0.85rem;
}

.site-nav a:hover,
.footer-nav a:hover { color: var(--muted); }

.site-nav .nav-lang:hover {
  color: #fff;
}

.site-nav__menu > li > a:hover::after {
  transform: scaleX(1);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  background: var(--green);
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav-action img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-action:hover {
  filter: brightness(1.05);
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.header-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent;
}

.header-wa img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background { object-fit: cover; }
.hero-overlay {
  background: rgba(21, 21, 21, 0.5);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 496px minmax(320px, 600px);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 810px;
}

.booking-panel,
.contact-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: #221e1e;
  box-shadow: var(--shadow);
}

.booking-head h1,
.hero-copy h2,
.section-head h2,
.section-copy h2,
.cta-content h2,
.faq-wrap h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 600;
}

.booking-head h1 {
  font-size: 2rem;
  line-height: 1.1;
}

.hero-copy h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  max-width: 600px;
}

.booking-head { display: grid; gap: 16px; }
.booking-tabs, .car-class-tabs, .hero-actions, .input-row, .footer-inner, .footer-nav { display: flex; }

.booking-head,
.booking-form {
  width: 432px;
}

.booking-tabs {
  gap: 0;
  padding: 2px;
  border-radius: 8px;
  background: #f9f9f9;
}

.booking-tab {
  flex: 1 1 0;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  color: #221e1e;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 500;
}

.booking-tab.is-active {
  background: var(--blue);
  color: #fff;
}

.booking-form {
  display: grid;
  gap: 24px;
  margin-top: var(--transfers-trip-gap, 24px);
}

.input-group {
  display: grid;
  gap: 8px;
}

.booking-panel {
  position: relative;
  max-width: 496px;
  min-height: 0;
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.input {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f9f9f9;
  color: #aaabc2;
  font-size: 0.875rem;
}

.input:hover {
  background: #f3f3f3;
}

.input-route {
  align-items: center;
  min-height: 88px;
}
.input-copy { display: grid; flex: 1 1 auto; gap: 12px; }
.divider { display: block; height: 1px; background: #e3e3e3; }

.input-copy span {
  line-height: 1.4;
}

.input-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 16px;
  align-self: stretch;
}

.icon-pin-asset {
  width: 16px;
  height: 16px;
}

.icon-flag-asset {
  width: 16px;
  height: 16px;
}

.swap-icon,
.input-mini {
  color: #8a8cab;
  font-size: 0.84rem;
}

.swap-icon-asset {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.input-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.input-mini-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.input-row { gap: 8px; }
.input-row .input { flex: 1 1 0; justify-content: space-between; }

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 24px;
  color: #221e1e;
  font-size: 0.875rem;
}

.toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-ui {
  position: relative;
  width: 48px;
  height: 24px;
  border-radius: 999px;
  background: #d8d8d8;
}

.toggle-ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 160ms ease;
}

.toggle input:checked + .toggle-ui { background: var(--blue); }
.toggle input:checked + .toggle-ui::after { transform: translateX(22px); }

.toggle > span:last-child {
  font-weight: 500;
  line-height: 1.4;
}

.car-class-tabs { gap: 8px; }

.car-class {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #f9f9f9;
  color: #221e1e;
}

.car-class img {
  width: 46px;
  height: 24px;
  object-fit: cover;
  border-radius: 6px;
}

.car-class.is-active { border-color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 160ms ease, filter 160ms ease, background-color 160ms ease;
}

.button-primary { background: var(--blue); color: #fff; }
.button-wide { width: 100%; }
.button-whatsapp { background: var(--green); color: #fff; }
.button-telegram { background: var(--blue); color: #fff; }

.hero-copy {
  max-width: 600px;
}

.hero-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-copy p {
  max-width: 600px;
  margin: 16px 0 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.4;
}

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

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-copy .hero-kicker,
.hero-copy .hero-badges {
  display: none;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.hero-badges span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.section { padding: 132px 0; }
.section-dark { background: var(--bg); }

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.4;
  max-width: 600px;
}

.section-head p,
.section-copy p,
.feature-card p,
.route-body p,
.service-body p,
.review-card p,
.blog-item p,
.faq-item p { margin: 0; }

.section-kicker {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head h2,
.section-copy h2,
.faq-wrap h2 { max-width: 860px; }

.section-head h2,
.section-copy h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-head.centered,
.centered {
  text-align: center;
  justify-items: center;
}

.narrow h2 { max-width: 520px; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 16px;
  max-width: 600px;
}

.section-copy p { color: var(--muted); font-size: 1.25rem; line-height: 1.4; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.route-card,
.service-card,
.review-card,
.blog-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 259px;
  padding: 24px;
  background: #282828;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.feature-card h3,
.fleet-caption h3,
.route-body h3,
.service-body h3,
.review-card h3,
.blog-item h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 600;
}

.feature-card p,
.service-body p,
.review-card p,
.blog-item p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.route-prices {
  color: var(--muted);
  line-height: 1.5;
}

.fleet-section {
  position: relative;
  background: #282828;
  overflow: hidden;
  isolation: isolate;
}

.fleet-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 110%;
  height: 135%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(10, 22, 65, 0.65) 0%, rgba(12, 22, 50, 0.25) 35%, transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.fleet-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 80px;
}

.fleet-head-copy {
  display: grid;
  gap: 14px;
  width: min(100%, 600px);
  justify-items: center;
  text-align: center;
}

.fleet-head-copy h2 {
  margin: 0;
  max-width: 600px;
  font-size: 3.5rem;
  line-height: 1.04;
}

.fleet-intro {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.45;
}

.fleet-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.slider-arrow span {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.fleet-visual {
  display: grid;
  place-items: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 450px;
}

.fleet-visual img {
  width: min(100%, 1016px);
  max-width: 998px;
  height: auto;
}

.fleet-caption {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 392px);
  margin: 28px auto 0;
  text-align: center;
}

.fleet-caption h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.fleet-caption p { color: var(--muted); }

.fleet-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  font-size: 0.875rem;
}

.fleet-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fleet-meta img {
  width: 14px;
  height: 14px;
}

.fleet-caption .button {
  min-height: 29px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 0.78rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.route-card,
.service-card,
.blog-item { overflow: hidden; }

.route-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #282828;
}

.route-card > img,
.service-card > img {
  width: 100%;
  aspect-ratio: 392 / 250;
  object-fit: cover;
}

.route-body,
.service-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.route-body {
  gap: 24px;
  align-content: start;
  min-height: 276px;
}

.route-info {
  display: flex;
  gap: 16px;
  align-items: center;
  align-self: start;
}

.route-info__item {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex: 0 0 auto;
}

.route-info__icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  min-width: 16px;
  min-height: 16px;
  object-fit: contain;
}

.route-info__text {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.1;
  white-space: nowrap;
}

.route-prices {
  display: grid;
  gap: 16px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.route-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.route-class {
  white-space: nowrap;
}

.route-dots {
  flex: 1;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  min-width: 20px;
  margin-bottom: 2px;
}

.route-cost {
  white-space: nowrap;
}

.route-body .button {
  margin-top: 0;
}

.button:hover,
.route-link:hover,
.section-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.cta-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 21, 21, 0.7), rgba(21, 21, 21, 0.22));
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 800px;
  max-width: 600px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card-wide { grid-column: span 2; }

.service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #202020;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-body {
  min-height: 146px;
}

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

.review-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #2a2a2a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.review-card h3 {
  min-height: auto;
}

.review-card p {
  min-height: auto;
}

.review-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--dim);
  font-size: 0.92rem;
}

.section-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  padding-right: 24px;
  min-height: 200px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    #202020;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.blog-item h3 {
  margin-bottom: 10px;
}

.blog-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.blog-item a {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange);
}

.blog-archive-main {
  padding-top: 90px;
  background: var(--bg);
}

.blog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 32px 0;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.blog-breadcrumbs a,
.blog-breadcrumbs span:first-of-type {
  opacity: 0.4;
}

.blog-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.blog-hero--no-image {
  background: #171717;
}

.blog-hero__image,
.blog-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-hero__image {
  object-fit: cover;
}

.blog-hero__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.blog-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  min-height: 400px;
  padding-top: 95px;
}

.blog-hero__copy {
  display: grid;
  gap: 16px;
  width: 600px;
  color: #fff;
}

.blog-hero__copy h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
}

.blog-hero__copy p {
  margin: 0;
  max-width: 600px;
  font-size: 20px;
  line-height: 1.4;
}

.blog-hero__button {
  min-height: 40px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 8px;
}

.blog-archive-section {
  padding: 150px 0;
}

.blog-archive-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-archive-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.blog-archive-card__media {
  display: block;
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-archive-card__body {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.blog-archive-card__copy {
  display: grid;
  gap: 8px;
}

.blog-archive-card__title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.blog-archive-card__title a {
  color: inherit;
}

.blog-archive-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-archive-card__link {
  color: var(--orange);
  font-size: 16px;
  line-height: 1.4;
}

.blog-archive-empty {
  grid-column: 1 / -1;
  padding: 40px 0;
  color: #fff;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.blog-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.blog-pagination__item.is-current {
  border: 1px solid var(--orange);
}

.blog-pagination__item.is-dots {
  width: auto;
  min-width: 40px;
}

.blog-single-main {
  padding-top: 90px;
  background: var(--bg);
}

.blog-single-article {
  display: grid;
  gap: 150px;
}

.blog-single-hero {
  display: grid;
  gap: 40px;
  width: 806px;
  margin: 0 auto;
}

.blog-single-hero__copy {
  display: grid;
  gap: 16px;
  color: #fff;
}

.blog-single-hero__copy h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 600;
}

.blog-single-hero__copy p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.blog-single-hero__media {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-single-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-single-content {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.blog-single-content > *:first-child {
  margin-top: 0;
}

.blog-single-content > *:last-child {
  margin-bottom: 0;
}

.blog-single-content p {
  margin: 0 0 16px;
}

.blog-single-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.blog-single-back__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  line-height: 1;
}

.blog-related {
  width: 100%;
}

.blog-related__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.faq-wrap {
  max-width: 808px;
  margin: 0 auto;
}

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

.faq-item {
  padding: 24px 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
}

.faq-item + .faq-item { border-top: 1px solid var(--line); }

.faq-item summary {
  position: relative;
  padding-right: 34px;
  list-style: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--dim);
}

.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 16px; color: var(--muted); line-height: 1.7; }

.contact-section {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 900px;
}

.contact-card {
  width: min(100%, 496px);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}
.contact-card .hero-actions {
  margin-top: 24px;
}

.contact-brand .brand-copy strong,
.contact-brand .brand-copy span { color: #221e1e; }

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.contact-lines p { margin: 0; line-height: 1.55; }

.contact-lines p:first-child {
  font-size: 1.15rem;
  font-weight: 600;
}

.site-footer {
  padding: 80px 0;
  background: var(--bg);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-nav {
  display: block;
}

.footer-nav__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav__menu a {
  color: var(--dim);
  font-size: 1rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--dim);
}

.footer-socials svg {
  width: 24px;
  height: 24px;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--dim);
}

.footer-copyright {
  display: flex;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  color: var(--dim);
}

.page-layout { min-height: 100vh; background: var(--bg); }
.simple-header { padding: 24px 0; border-bottom: 1px solid var(--line); }
.back-link { color: #fff; }
.simple-main { padding: 90px 0 96px; }
.page-title-wrap { margin-bottom: 32px; }

.simple-hero {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.page-content {
  overflow-x: clip;
}

.page-content > * {
  width: min(calc(100% - 32px), var(--container));
  margin-right: auto;
  margin-left: auto;
}

.page-content > .section,
.page-content > .contact-section,
.page-content > .blog-hero,
.page-content > [class*="lazyblock-"],
.page-content > .alignfull {
  width: 100%;
  max-width: none;
}

.page-content > .blog-hero {
  margin-right: 0;
  margin-bottom: 80px;
  margin-left: 0;
}

.page-content > .alignfull {
  margin-right: 0;
  margin-left: 0;
}

.page-content > .alignwide {
  width: min(calc(100% - 32px), 1440px);
}

.page-content > p,
.page-content > ul,
.page-content > ol,
.page-content > blockquote,
.page-content > pre,
.page-content > table,
.page-content > .wp-block-table,
.page-content > .wp-block-code,
.page-content > .wp-block-quote,
.page-content > .wp-block-pullquote,
.page-content > .wp-block-image,
.page-content > .wp-block-gallery,
.page-content > .wp-block-media-text,
.page-content > .wp-block-columns,
.page-content > .wp-block-group,
.page-content > .wp-block-cover,
.page-content > .wp-block-buttons,
.page-content > .wp-block-spacer,
.page-content > h1,
.page-content > h2,
.page-content > h3,
.page-content > h4,
.page-content > h5,
.page-content > h6 {
  width: min(calc(100% - 32px), var(--container));
}

.page-content > p,
.page-content > ul,
.page-content > ol,
.page-content > blockquote,
.page-content > pre,
.page-content > table,
.page-content > .wp-block-table,
.page-content > .wp-block-code,
.page-content > .wp-block-quote,
.page-content > .wp-block-pullquote,
.page-content > .wp-block-image,
.page-content > .wp-block-gallery,
.page-content > .wp-block-media-text,
.page-content > .wp-block-columns,
.page-content > .wp-block-group,
.page-content > .wp-block-cover,
.page-content > .wp-block-buttons,
.page-content > .wp-block-spacer,
.page-content > h1,
.page-content > h2,
.page-content > h3,
.page-content > h4,
.page-content > h5,
.page-content > h6 {
  margin-right: auto;
  margin-left: auto;
}

.inner-page {
  background: var(--bg);
}

.inner-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.inner-hero-image,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero-image {
  object-fit: cover;
}

.inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.8), rgba(21, 21, 21, 0.24)),
    linear-gradient(180deg, rgba(21, 21, 21, 0.1), rgba(21, 21, 21, 0.6));
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 560px;
  padding-bottom: 72px;
  max-width: 760px;
}

.inner-hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.02;
  font-weight: 600;
}

.inner-hero-content p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.fleet-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fleet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #202020;
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}

.fleet-card-body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.fleet-card-body h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.15;
  font-weight: 600;
}

.fleet-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.fleet-specs {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-specs li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(66, 127, 255, 0.12);
  color: #fff;
}

.fleet-features-section {
  background:
    radial-gradient(circle at top, rgba(66, 127, 255, 0.12), transparent 28%),
    #1a1a1a;
}

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

.transfers-flow-section {
  background:
    radial-gradient(circle at top, rgba(255, 136, 63, 0.12), transparent 26%),
    #1a1a1a;
}

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

.transfer-step {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #202020;
}

.transfer-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 136, 63, 0.34);
  border-radius: 12px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 600;
}

.transfer-step h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
}

.transfer-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.transfer-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #202020;
}

.cta-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 600;
}

.cta-strip p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .hero-grid,
  .feature-grid,
  .service-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .hero-grid { padding: 80px 0; }
  .destinations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-wide { grid-column: auto; }

  .blog-list { grid-template-columns: 1fr; }
  .blog-archive-list { grid-template-columns: 1fr; }
  .blog-archive-section { padding: 100px 0; }
  .blog-hero__content { padding-top: 72px; }
  .blog-hero__copy {
    width: 100%;
    max-width: 600px;
  }
  .blog-single-hero {
    width: min(calc(100% - 32px), 806px);
  }
  .blog-related__list { grid-template-columns: 1fr; }

  .blog-item {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .blog-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .blog-item div { padding: 0 24px 24px; }

  .fleet-cards-grid,
  .fleet-features-grid,
  .transfers-flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .transfer-types-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    position: relative;
  }

  .site-header .brand,
  .header-mobile-actions {
    position: relative;
    display: inline-flex;
    z-index: 61;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 62;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100vw;
    height: 100vh;
    padding: 96px 24px 32px;
    background: #171717;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 260ms ease, opacity 160ms ease;
    overflow-y: auto;
    z-index: 60;
  }

  .nav-meta {
    display: grid;
    gap: 24px;
    margin-left: 0;
    width: 100%;
  }

  .nav-lang-picker {
    display: none;
  }

  .nav-lang-inline {
    display: inline-flex;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav__menu {
    display: grid;
    gap: 20px;
    width: 100%;
  }

  .site-nav__menu > li > a::after {
    display: none;
  }

  .site-nav__menu > li > a {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px 0 56px;
  }

  .booking-panel { order: 2; }
  .hero-copy {
    order: 1;
    padding-top: 0;
  }
  .destinations-grid,
  .feature-cards,
  .service-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .fleet-cards-grid,
  .fleet-features-grid,
  .transfers-flow-grid,
  .transfer-types-grid { grid-template-columns: 1fr; }

  .contact-card-wrap {
    justify-content: center;
    padding: 96px 0;
    min-height: 720px;
  }
}

@media (max-width: 640px) {
  .blog-archive-main {
    padding-top: 56px;
  }

  .blog-single-main {
    padding-top: 56px;
  }

  .simple-main {
    padding-top: 56px;
  }

  .simple-main--contacts-page {
    padding-bottom: 0;
  }

  .blog-breadcrumbs {
    padding: 16px 0;
  }

  .blog-hero {
    min-height: 190px;
  }

  .blog-hero__content {
    align-items: center;
    min-height: 190px;
    padding-top: 0;
  }

  .blog-hero__copy {
    width: 100%;
    max-width: 343px;
  }

  .blog-hero__copy h1 {
    font-size: 32px;
  }

  .blog-hero__copy p {
    max-width: 343px;
    font-size: 16px;
  }

  .blog-hero__button {
    width: fit-content;
  }

  .page-content > .blog-hero {
    margin-bottom: 0;
  }

  .blog-archive-section {
    padding: 100px 0;
  }

  .blog-archive-card {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .blog-archive-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 343 / 200;
  }

  .blog-archive-card__title {
    font-weight: 500;
  }

  .blog-archive-card__excerpt,
  .blog-archive-card__link {
    font-size: 14px;
  }

  .blog-archive-card__excerpt {
    -webkit-line-clamp: 4;
  }

  .blog-pagination {
    justify-content: space-between;
    margin-top: 32px;
  }

  .blog-single-article {
    gap: 100px;
  }

  .blog-single-hero {
    gap: 40px;
    width: 343px;
  }

  .blog-single-hero__copy h1 {
    font-size: 32px;
  }

  .blog-single-hero__copy p {
    font-size: 16px;
  }

  .blog-single-hero__media {
    height: 250px;
  }

  .blog-single-content {
    font-size: 14px;
  }

  .blog-related__list {
    grid-template-columns: 1fr;
    width: 343px;
  }

  .blog-related-card:nth-child(n + 4) {
    display: none;
  }

  .site-header {
    background: #171717;
  }

  .header-inner {
    min-height: 56px;
    gap: 12px;
  }

  .brand {
    min-width: 147.76px;
  }

  .brand-lockup {
    width: 147.76px;
    height: 24px;
  }

  .brand-symbol {
    width: 49.9px;
    height: 24px;
  }

  .brand-wordmark {
    left: 54.34px;
    top: 3.53px;
    width: 93.43px;
    height: 9.35px;
  }

  .brand-tagline {
    left: 55.12px;
    top: 16.63px;
    width: 91.86px;
    height: 3.84px;
  }

  .nav-caret {
    font-size: 0.75rem;
    line-height: 1;
  }

  .nav-toggle {
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: transparent;
  }

  .booking-panel,
  .contact-card,
  .simple-hero { padding: 24px; }

  .booking-head h1,
  .hero-copy h2,
  .section-head h2,
  .section-copy h2,
  .cta-content h2,
  .faq-wrap h2 { font-size: 2rem; }

  .faq-item summary { font-size: 1.1rem; }
  .section { padding: 88px 0; }

  .hero {
    min-height: 1013px;
    padding-top: 56px;
  }

  .hero-grid {
    gap: 32px;
    padding: 32px 0 32px;
  }

  .hero-copy {
    max-width: 343px;
  }

  .hero-copy h2 {
    font-size: 2.12rem;
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 343px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .booking-panel {
    max-width: 343px;
    margin: 0 auto;
    padding: 24px;
  }

  .booking-form {
    gap: 14px;
  }

  .input {
    min-height: 40px;
    padding: 10px 12px;
  }

  .input-route .input-copy {
    gap: 10px;
  }

  .car-class {
    min-height: 40px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2,
  .section-copy h2 {
    font-size: 2.18rem;
    line-height: 1;
  }

  .feature-card,
  .route-card,
  .service-card,
  .review-card,
  .blog-item {
    border-radius: 16px;
  }

  .feature-card {
    min-height: 259px;
  }

  .fleet-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .fleet-caption {
    gap: 8px;
  }

  .route-body {
    min-height: auto;
  }

  .destinations-grid .route-card:nth-child(n + 4) {
    display: none;
  }

  .services-more,
  .destinations-more {
    margin-top: 8px;
  }

  .service-grid .service-card:nth-child(n + 4) {
    display: none;
  }

  .blog-list .blog-item:nth-child(n + 4) {
    display: none;
  }

  .review-card p {
    min-height: auto;
  }

  .contact-section {
    min-height: 685px;
  }

  .contact-card-wrap {
    min-height: 685px;
    padding: 40px 0;
    justify-content: center;
  }

  .contact-card {
    width: 343px;
    padding: 24px;
  }

  .site-footer {
    padding: 50px 0 36px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-nav__menu {
    flex-direction: column;
    gap: 12px;
  }

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

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

  .button,
  .nav-action { width: 100%; }
  .nav-meta { width: 100%; }
  .input-row,
  .car-class-tabs { flex-direction: column; }
  .hero-badges { flex-direction: column; }
  .hero-badges span { width: 100%; justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 24px; }
}

@media (max-width: 640px) {
  .site-nav { padding: 72px 16px 24px; }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/hero-mobile.jpg') center top/cover no-repeat;
    z-index: 0;
  }

  .hero-background {
    display: none;
  }

  .hero-overlay {
    z-index: 0;
    background: rgba(21, 21, 21, 0.5);
  }

  .hero-grid {
    gap: 32px;
    padding: 32px 0 64px;
  }

  .hero-copy {
    display: grid;
    gap: 8px;
    max-width: 343px;
    padding-top: 0;
  }

  .hero-copy .hero-kicker,
  .hero-copy .hero-actions,
  .hero-copy .hero-badges {
    display: none;
  }

  .hero-copy h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.4;
  }

  .booking-panel {
    width: 343px;
    max-width: 343px;
    min-height: 0;
    padding: 24px;
    border-radius: 16px;
  }

  .booking-head,
  .booking-form {
    width: 295px;
  }

  .booking-head {
    gap: 16px;
  }

  .booking-head h1 {
    font-size: 24px;
    line-height: 1.1;
    text-align: center;
  }

  .booking-tab {
    min-height: 36px;
    font-size: 14px;
    line-height: 1.4;
  }

  .booking-tabs {
    width: 295px;
  }

  .booking-form {
    gap: 8px;
    margin-top: 0;
  }

  .input {
    min-height: 40px;
    padding: 12px;
  }

  .input-route {
    min-height: 88px;
  }

  .input-row,
  .car-class-tabs {
    flex-direction: row;
  }

  .car-class img {
    display: none;
  }

  .car-class {
    min-height: 40px;
    padding: 10px;
  }

  .car-class-tabs {
    width: 295px;
    gap: 8px;
  }

  .section {
    padding: 50px 0;
  }

  .feature-grid {
    gap: 32px;
  }

  .section-head,
  .section-copy {
    text-align: left;
  }

  .section-head h2,
  .section-copy h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .feature-card {
    min-height: 259px;
    padding: 24px;
  }

  .fleet-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .fleet-head {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
    justify-content: center;
    justify-items: center;
  }

  .fleet-head-copy {
    width: 343px;
  }

  .fleet-head-copy h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .fleet-intro {
    max-width: 343px;
    font-size: 16px;
    line-height: 1.45;
  }

  .fleet-stage {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 11px;
    row-gap: 0;
  }

  .fleet-stage .slider-arrow {
    order: -1;
  }

  .fleet-visual {
    order: 1;
    width: 100%;
    min-height: 150px;
  }

  .fleet-visual img {
    width: 336px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
  }

  .fleet-caption {
    margin-top: 22px;
    width: 343px;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .fleet-caption h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .fleet-meta {
    gap: 20px;
    font-size: 12px;
  }

  .fleet-caption .button {
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .route-card > img {
    height: 250px;
  }

  .route-body {
    min-height: 276px;
    padding: 24px;
  }

  .route-link,
  .section-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
  }

  .reviews-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    min-width: 300px;
    scroll-snap-align: start;
  }

  .blog-item {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .blog-item img {
    height: 200px;
    border-radius: 16px;
  }

  .blog-item > div {
    padding-top: 16px;
  }

  .contact-section {
    position: relative;
    min-height: 685px;
  }

  .contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/contact-map-mobile.jpg') center/cover no-repeat;
  }

  .contact-map {
    display: none;
  }

  .contact-card-wrap {
    position: relative;
    z-index: 1;
    min-height: 685px;
    padding: 16px 0;
    align-items: flex-end;
  }

  .contact-card {
    position: relative;
    width: 343px;
    padding: 32px;
  }

  .contact-card::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 50%;
    width: 32px;
    height: 16px;
    background: #ffffff;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    transform: translateX(-50%);
  }

  .site-footer {
    background: #282828;
    padding: 50px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav__menu {
    display: grid;
    gap: 24px;
  }

  .footer-meta {
    display: grid;
    gap: 16px;
    text-align: left;
    font-size: 12px;
    line-height: 1.2;
  }
}
@media (max-width: 640px) {
  .brand-copy {
    gap: 1px;
  }

  .nav-toggle span {
    width: 16px;
    margin: 3px auto;
  }

  .hero-grid {
    justify-items: center;
  }

  .hero-copy p {
    color: rgba(255, 255, 255, 0.92);
  }

  .booking-panel {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  }

  .section-kicker {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  .section-copy p,
  .section-head p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.4;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .fleet-caption p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
  }

  .route-body h3,
  .review-card h3,
  .blog-item h3 {
    font-size: 24px;
    line-height: 1.1;
  }

  .route-prices {
    gap: 12px;
  }

  .section-cta-wrap {
    display: flex;
    justify-content: center;
  }

  .reviews-grid {
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-height: 316px;
    padding: 24px;
  }

  .contact-lines {
    display: grid;
    gap: 8px;
  }

  .footer-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .footer-brand .brand-copy strong {
    font-size: 1rem;
  }

  .footer-brand .brand-copy span {
    font-size: 0.55rem;
  }

  .footer-socials {
    gap: 8px;
  }
}
.feature-icon img {
    width: 48px;
    height: auto;
    max-height: 100%;
}

.fleet-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.fleet-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fleet-meta img {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .route-link {
    width: 100%;
    margin-top: 12px;
  }

  .cta-banner {
    min-height: 600px;
  }

  .cta-banner::after {
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.18), rgba(21, 21, 21, 0.78));
  }

  .cta-content {
    align-content: center;
    min-height: 600px;
    max-width: 343px;
    padding: 50px 0;
    text-align: center;
  }

  .cta-content .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .service-card {
    min-height: 376px;
  }

  .service-card img {
    height: 200px;
    aspect-ratio: auto;
  }

  .service-body {
    min-height: 160px;
    gap: 16px;
  }

  .service-body h3 {
    font-size: 24px;
    line-height: 1.1;
  }
}
@media (max-width: 640px) {
  .review-card p {
    min-height: 180px;
    font-size: 14px;
    line-height: 1.5;
  }

  .review-card a {
    margin-top: auto;
    color: var(--orange);
  }

  .blog-item p {
    font-size: 14px;
    line-height: 1.45;
  }

  .blog-item a {
    color: var(--orange);
  }

  .faq-wrap {
    max-width: 343px;
  }

  .faq-list {
    margin-top: 0;
  }

  .faq-item {
    padding: 24px 0;
  }

  .faq-item summary {
    padding-right: 48px;
    font-size: 24px;
    line-height: 1.1;
  }

  .faq-item summary::after {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    top: 0;
  }

  .faq-item p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-card .hero-actions {
    display: grid;
    gap: 8px;
    margin-top: 24px;
  }

  .contact-card .button {
    width: 100%;
  }

  .footer-nav a {
    font-size: 16px;
    line-height: 1.2;
  }

  .footer-socials a {
    width: 24px;
    height: 24px;
    min-height: 24px;
    padding: 0;
  }

  .footer-top {
    gap: 16px;
  }

  .footer-nav-wrap {
    gap: 24px;
  }

  .footer-brand .brand-lockup {
    width: 233.96px;
    height: 38px;
  }

  .footer-brand .brand-symbol {
    width: 79px;
    height: 38px;
  }

  .footer-brand .brand-wordmark {
    left: 86.03px;
    top: 5.59px;
    width: 147.93px;
    height: 14.81px;
  }

  .footer-brand .brand-tagline {
    left: 87.28px;
    top: 26.33px;
    width: 145.44px;
    height: 6.08px;
  }

  .footer-nav__menu {
    gap: 24px;
  }

  .footer-nav__menu a {
    color: #fff;
    font-weight: 500;
  }

  .footer-bottom {
    width: 100%;
    gap: 16px;
    font-size: 12px;
    line-height: 1.2;
  }

  .footer-copyright,
  .footer-legal {
    gap: 16px;
  }

  .footer-copyright {
    color: #fff;
  }

  .footer-legal,
  .footer-legal a,
  .footer-legal span {
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-legal a,
  .footer-legal span {
    text-decoration: underline;
  }

  .footer-legal span {
    font-weight: 500;
  }
}
