:root {
  --yellow: #ffc400;
  --yellow-dark: #c59400;
  --ink: #111111;
  --charcoal: #1b1b1b;
  --muted: #626873;
  --line: #e8e2d4;
  --paper: #fffaf0;
  --soft: #f7f2e7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
  --radius: 8px;
  --radius-lg: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 166px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
  width: 118px;
  font-size: 0.82rem;
}

.language-switcher select {
  max-width: 130px;
  min-height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: var(--white);
  font: inherit;
}

.language-switcher #gt_float_wrapper {
  position: relative !important;
  width: 118px !important;
}

.language-switcher .gt_float_switcher {
  position: relative !important;
  width: 118px !important;
  overflow: visible !important;
  color: var(--ink) !important;
  background: transparent !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  font-family: Manrope, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1 !important;
}

.language-switcher .gt_float_switcher .gt-selected {
  width: 118px !important;
  overflow: visible !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08) !important;
}

.language-switcher .gt_float_switcher .gt-selected .gt-current-lang {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 44px !important;
  padding: 0 10px !important;
  color: var(--ink) !important;
  font-weight: 850 !important;
}

.language-switcher .gt_float_switcher img {
  width: 22px !important;
  margin: 0 !important;
  border-radius: 2px !important;
}

.language-switcher .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
  top: 0 !important;
  font-size: 0.88rem !important;
}

.language-switcher .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
  margin-left: auto !important;
  width: 12px !important;
  opacity: 0.72 !important;
}

.language-switcher .gt_float_switcher .gt_options {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  z-index: 2000 !important;
  width: 190px !important;
  max-height: 250px !important;
  overflow-y: auto !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.16) !important;
}

.language-switcher .gt_float_switcher .gt_options.gt-open {
  transform: none !important;
}

.language-switcher .gt_float_switcher .gt_options a {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-height: 42px !important;
  padding: 9px 12px !important;
  color: var(--ink) !important;
  background: var(--white) !important;
  border-bottom: 1px solid rgba(232, 226, 212, 0.75) !important;
  font-size: 0.9rem !important;
  font-weight: 750 !important;
}

.language-switcher .gt_float_switcher .gt_options a:last-child {
  border-bottom: 0 !important;
}

.language-switcher .gt_float_switcher .gt_options a:hover {
  color: var(--ink) !important;
  background: var(--yellow) !important;
}

.language-switcher .gt_float_switcher .gt_options::-webkit-scrollbar {
  width: 6px !important;
}

.language-switcher .gt_float_switcher .gt_options::-webkit-scrollbar-track {
  background: #f3ecdd !important;
}

.language-switcher .gt_float_switcher .gt_options::-webkit-scrollbar-thumb {
  background: #c8b98f !important;
  border-radius: 99px !important;
}

.button,
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: var(--radius);
  font-weight: 850;
  white-space: nowrap;
}

.button-primary,
.header-call {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(255, 196, 0, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
}

.hero .button-secondary {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 86px 0 72px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.42) 48%, rgba(17, 17, 17, 0.22)),
    linear-gradient(0deg, rgba(17, 17, 17, 0.46), rgba(17, 17, 17, 0.06));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  color: var(--white);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker::before {
  width: 32px;
  height: 3px;
  background: currentColor;
  border-radius: var(--radius);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7vw, 6.4rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.3vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-card,
.quick-booking-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quick-booking-card {
  max-width: 520px;
  margin-left: auto;
}

.booking-card__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.booking-card__head span {
  color: var(--yellow-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card__head strong {
  font-size: 1.7rem;
  line-height: 1;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  background: #f5efe2;
  border-radius: var(--radius);
}

.booking-steps button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.booking-steps span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: #8d8d8d;
  border-radius: 50%;
  font-size: 0.78rem;
}

.booking-steps button.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}

.booking-steps button.is-active span {
  color: var(--ink);
  background: var(--yellow);
}

.booking-step {
  display: none;
  gap: 14px;
}

.booking-step.is-active {
  display: grid;
}

.step-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

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

.service-tabs label {
  display: grid;
  gap: 5px;
  min-height: 74px;
  padding: 10px;
  color: var(--muted);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 850;
  text-align: center;
}

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

.service-tabs span {
  color: var(--ink);
  font-size: 0.82rem;
}

.service-tabs label:has(input:checked) {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

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

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

.booking-field,
.address-field {
  position: relative;
  display: grid;
  gap: 6px;
}

.booking-field--wide {
  grid-column: 1 / -1;
}

.booking-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  color: #6f7682;
  background: #f3efe6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-tag--required {
  color: #5a4200;
  background: #fff2b8;
  border-color: #ead27b;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 750;
}

.booking-field textarea {
  min-height: 150px;
  padding: 12px 14px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: 3px solid rgba(255, 196, 0, 0.28);
  border-color: var(--yellow);
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  max-height: 230px;
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.14);
}

.address-suggestions:empty,
.address-suggestions[hidden] {
  display: none;
}

.address-suggestions button {
  padding: 12px 14px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
}

.address-suggestions button:hover {
  background: var(--soft);
}

.route-summary {
  padding: 12px 14px;
  color: #4b5563;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 16px;
  align-items: start;
}

.quote-main,
.quote-side,
.step-section {
  display: grid;
  gap: 14px;
}

.step-section {
  padding: 14px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-section > strong {
  font-size: 0.92rem;
}

.booking-estimate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
}

.booking-estimate span,
.booking-estimate p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.booking-estimate strong {
  color: var(--yellow);
  font-size: 1.25rem;
}

.booking-estimate p {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.quote-recap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quote-recap[hidden],
.vehicle-quotes[hidden] {
  display: none;
}

.quote-recap__head {
  padding: 12px 14px;
  color: var(--yellow);
  background: var(--charcoal);
  font-weight: 900;
  text-transform: uppercase;
}

.quote-recap dl {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 12px 14px;
}

.quote-recap dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.quote-recap dl div:last-child {
  border-bottom: 0;
}

.quote-recap dt {
  color: var(--yellow-dark);
  font-weight: 900;
}

.quote-recap dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.vehicle-quotes {
  display: grid;
  gap: 10px;
}

.vehicle-quotes button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.vehicle-quotes button.is-selected {
  border-color: var(--yellow-dark);
  box-shadow: inset 0 0 0 2px rgba(255, 196, 0, 0.25);
}

.vehicle-quotes span {
  color: var(--muted);
  font-size: 0.84rem;
}

.vehicle-quotes b {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--yellow-dark);
  font-size: 1.1rem;
}

.booking-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.booking-next {
  width: 100%;
}

.booking-nav {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 10px;
}

.booking-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.booking-alert--success {
  color: #14532d;
  background: #dcfce7;
}

.booking-alert--error {
  color: #7f1d1d;
  background: #fee2e2;
}

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

.payment-options label {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 18px;
  color: var(--muted);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
}

.payment-options input {
  width: fit-content;
}

.payment-options span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.payment-options label:has(input:checked) {
  border-color: var(--yellow-dark);
  box-shadow: inset 0 0 0 2px rgba(255, 196, 0, 0.22);
}

.payment-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.section,
.experience-section,
.reviews-section,
.contact-section {
  padding: clamp(70px, 8vw, 118px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card,
.reviews-grid article,
.zones-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.05);
}

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

.service-dot {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  background: var(--yellow);
  border: 8px solid #fff0b8;
  border-radius: 50%;
}

.service-card p,
.experience-panel p,
.steps p,
.zones-list span,
.reviews-grid p,
.contact-section p {
  color: var(--muted);
}

.experience-section {
  color: var(--white);
  background: var(--charcoal);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.experience-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.experience-panel h2 {
  color: var(--white);
}

.experience-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.steps span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.zones-section {
  background: var(--soft);
}

.zones-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 56px;
}

.zones-list {
  display: grid;
  gap: 12px;
}

.zones-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
}

.reviews-section {
  background: var(--paper);
}

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

.reviews-grid div {
  margin-bottom: 14px;
  color: var(--yellow-dark);
  font-weight: 900;
}

.reviews-grid strong {
  display: block;
  margin-top: 18px;
}

.contact-section {
  color: var(--white);
  background: var(--charcoal);
}

.reservation-page {
  padding: 46px 0 70px;
  background: var(--white);
}

.reservation-shell {
  display: grid;
  gap: 28px;
}

.reservation-title {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.reservation-title h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.reservation-title p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.route-map-card {
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.route-map-card__head {
  padding: 14px 18px;
  color: var(--yellow);
  background: var(--charcoal);
  font-weight: 900;
  text-transform: uppercase;
}

.route-map-visual {
  position: relative;
  height: 260px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 197, 0, 0.13), transparent 42%),
    linear-gradient(45deg, rgba(17, 17, 17, 0.05) 25%, transparent 25%),
    #eef2ed;
}

.route-map-visual.leaflet-container {
  background: #eef2ed;
}

.route-map-grid {
  position: absolute;
  inset: -34px;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotate(-8deg);
}

.route-map-road {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.07);
}

.route-map-road--one {
  top: 46%;
  transform: rotate(-12deg);
}

.route-map-road--two {
  top: 42%;
  transform: rotate(22deg);
}

.route-map-line {
  position: absolute;
  left: 22%;
  top: 36%;
  width: 56%;
  height: 8px;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 197, 0, 0.36);
  transform: rotate(-17deg);
  transform-origin: left center;
}

.route-map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--charcoal);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.22);
  font-weight: 900;
}

.route-map-pin--start {
  left: 18%;
  top: 31%;
}

.route-map-pin--end {
  right: 18%;
  top: 50%;
  color: var(--charcoal);
  background: var(--yellow);
}

.route-map-details {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--charcoal);
}

.route-map-details strong,
.route-map-details span {
  overflow-wrap: anywhere;
}

.route-map-details a {
  width: fit-content;
  margin-top: 4px;
  color: var(--yellow-dark);
  font-weight: 900;
  text-decoration: none;
}

.reservation-form-wrap .booking-card {
  max-width: 1040px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 34px;
  align-items: end;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-section .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: 12px;
  margin-top: 0;
}

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

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #101010;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px;
  padding: 38px 0;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-title {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credit {
  color: var(--yellow);
  font-weight: 850;
}

.content {
  max-width: 780px;
}

.content-page {
  padding: 70px 0 96px;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: 52px;
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 110px;
}

.contact-panel p:not(.kicker),
.contact-zone {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-zone {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
}

.contact-methods span {
  color: var(--yellow-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong,
.contact-zone strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--yellow);
  content: "";
}

.content-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.content-page h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.content-card,
.faq-list article {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.06);
}

.contact-form h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.contact-direct {
  margin-top: 24px;
}

.form-eyebrow {
  color: var(--yellow-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.thanks-page {
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: 72px 0;
  background: var(--white);
}

.thanks-card {
  max-width: 760px;
  padding: 44px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card h1 {
  margin-inline: auto;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.thanks-card p {
  color: var(--muted);
}

.thanks-countdown {
  font-weight: 850;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list h2 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-list p,
.content-page p {
  color: var(--muted);
}

.fleet-gallery-preview,
.gallery-page {
  background: var(--white);
}

.fleet-gallery-preview {
  padding: 88px 0;
}

.gallery-preview-head,
.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 38px;
}

.gallery-preview-head h2,
.gallery-hero h1 {
  margin-bottom: 0;
}

.gallery-preview-head > div:last-child,
.gallery-hero-copy {
  color: var(--muted);
}

.gallery-text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  font-weight: 900;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}

.gallery-preview-item,
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.gallery-preview-item--1 {
  grid-row: 1 / 3;
}

.gallery-preview-item--2 {
  grid-column: 2 / 4;
}

.gallery-preview-item img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-preview-item::after,
.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.gallery-preview-item span,
.gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.gallery-preview-item:hover img,
.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-mobile-link {
  display: none;
  margin-top: 18px;
}

.gallery-page {
  padding: 74px 0 88px;
}

.gallery-hero h1 {
  color: var(--ink);
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.gallery-hero-copy .button {
  margin-top: 14px;
}

.gallery-grid {
  columns: 3 300px;
  column-gap: 12px;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  break-inside: avoid;
}

.gallery-item img {
  height: auto;
}

.gallery-cta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-top: 72px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.gallery-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.gallery-lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.gallery-lightbox figure {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin: 0;
}

.gallery-lightbox img {
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius);
}

.gallery-lightbox figcaption {
  color: var(--white);
  font-weight: 800;
}

.gallery-lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    justify-content: center;
    gap: 16px;
  }

  .header-actions {
    justify-content: flex-end;
  }

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

  .hero-grid,
  .section-heading,
  .experience-grid,
  .zones-grid,
  .contact-grid,
  .quote-layout,
  .content-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview-head,
  .gallery-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-panel {
    position: static;
  }

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

  .booking-card,
  .quick-booking-card {
    max-width: 620px;
  }

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

  .contact-actions {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    grid-template-columns: auto auto auto;
    padding: 10px 14px;
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    order: 3;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .header-call {
    min-height: 40px;
    padding-inline: 14px;
  }

  .language-switcher {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto 14px;
    z-index: 40;
    display: none;
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    color: var(--ink);
    font-size: 0.98rem;
    background: rgba(255, 250, 240, 0.98);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: block;
    padding: 13px 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.62);
  }

  .site-nav a:hover {
    background: var(--yellow);
  }

  .hero {
    padding: 38px 0 48px;
  }

  .hero-photo::after {
    background: rgba(17, 17, 17, 0.68);
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .booking-card,
  .quick-booking-card {
    padding: 18px;
    border-radius: var(--radius-lg);
  }

  .reservation-page {
    padding: 42px 0 62px;
  }

  .route-map-visual {
    height: 300px;
  }

  .booking-card__head {
    display: grid;
  }

  .booking-card__head strong {
    font-size: 1.35rem;
  }

  .booking-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
  }

  .booking-steps button {
    flex-direction: column;
    gap: 4px;
    min-height: 58px;
    padding: 7px 3px;
    font-size: 0.68rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .booking-steps span {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .booking-grid,
  .option-grid,
  .payment-options,
  .service-grid,
  .reviews-grid,
  .zones-list article,
  .steps article {
    grid-template-columns: 1fr;
  }

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

  .quote-recap dl div {
    grid-template-columns: 1fr;
  }

  .booking-nav {
    grid-template-columns: 1fr;
  }

  .booking-estimate {
    grid-template-columns: 1fr;
  }

  .section,
  .experience-section,
  .reviews-section,
  .contact-section,
  .fleet-gallery-preview {
    padding: 58px 0;
  }

  .gallery-preview-head .gallery-text-link {
    display: none;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
  }

  .gallery-preview-item--1 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-preview-item--2 {
    grid-column: auto;
  }

  .gallery-preview-item--4 {
    display: none;
  }

  .gallery-mobile-link {
    display: inline-flex;
  }

  .gallery-page {
    padding: 48px 0 64px;
  }

  .gallery-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-item,
  .gallery-item--2,
  .gallery-item--5,
  .gallery-item--8 {
    grid-column: 1;
    grid-row: auto;
    height: 260px;
  }

  .gallery-item--1,
  .gallery-item--6,
  .gallery-item--7,
  .gallery-item--9 {
    grid-column: 1;
    grid-row: auto;
    height: 360px;
  }

  .gallery-item img {
    height: 100%;
  }

  .gallery-cta {
    display: grid;
    margin-top: 50px;
  }

  .site-footer {
    padding: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
