:root {
  --orange: #ff6a00;
  --orange-bright: #ff7f18;
  --ink: #11100e;
  --ink-soft: #201e1a;
  --paper: #f5f6f7;
  --white: #ffffff;
  --muted: #706b63;
  --line: rgba(17, 16, 14, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
[hidden] { display: none !important; }
svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(100% - 48px, 1240px);
  min-height: 84px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-brand-logo {
  width: 128px;
  height: 82px;
  object-fit: contain;
  filter:
    drop-shadow(1px 0 0 rgba(255,255,255,.7))
    drop-shadow(-1px 0 0 rgba(255,255,255,.7))
    drop-shadow(0 1px 0 rgba(255,255,255,.62))
    drop-shadow(0 5px 12px rgba(0,0,0,.36));
}

.brand-logo {
  width: 116px;
  height: 68px;
  padding: 4px 7px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.language-select {
  min-height: 40px;
  padding: 0 30px 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: var(--white);
  background: rgba(15, 14, 12, 0.42);
}
.language-select option { color: var(--ink); background: var(--white); }
.header-phone { font-weight: 700; text-decoration: none; }

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-road-scene, .hero-shade, .hero-light-sweep {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 560px;
}
.hero-road-scene {
  overflow: hidden;
  background: #171512;
  isolation: isolate;
}
.hero-road-scene::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 67% 66%, transparent 19%, rgba(5, 6, 7, 0.08) 58%, rgba(5, 6, 7, 0.42) 115%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.08), transparent 42%, rgba(5, 6, 7, 0.2));
}
.hero-road-bg {
  position: absolute;
  z-index: 0;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: 53% center;
  transform-origin: 66% 68%;
  will-change: transform, filter;
  animation: cinematic-tracking 13s cubic-bezier(.42, 0, .25, 1) infinite alternate;
}
.cinema-grain {
  position: absolute;
  z-index: 3;
  inset: -40%;
  opacity: .11;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 30% 30%, rgba(255,255,255,.45) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 70% 60%, rgba(0,0,0,.55) 0 1px, transparent 1px 4px);
  background-size: 7px 9px, 11px 13px;
  mix-blend-mode: soft-light;
  animation: film-grain .32s steps(2, end) infinite;
}
.hero-watermark {
  position: absolute;
  z-index: 1;
  top: 112px;
  right: clamp(26px, 4vw, 76px);
  width: clamp(220px, 22vw, 330px);
  height: auto;
  opacity: .085;
  filter: blur(.15px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.9) 0%, rgba(8, 9, 9, 0.58) 39%, rgba(8, 9, 9, 0.12) 68%, rgba(8, 9, 9, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 9, 9, 0.62) 0%, transparent 44%);
}
.hero-light-sweep {
  z-index: 1;
  width: 42%;
  left: -50%;
  opacity: 0.42;
  background: linear-gradient(105deg, transparent 28%, rgba(255,255,255,.17) 49%, transparent 70%);
  transform: skewX(-12deg);
  animation: light-sweep 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes light-sweep { 0%, 18% { left:-55%; } 58%, 100% { left:115%; } }
@keyframes cinematic-tracking {
  0% { transform: scale(1.03) translate3d(0, 0, 0); filter: saturate(.94) contrast(1.02); }
  48% { transform: scale(1.075) translate3d(-.7%, .15%, 0); filter: saturate(1) contrast(1.04); }
  100% { transform: scale(1.12) translate3d(-1.45%, .35%, 0); filter: saturate(1.05) contrast(1.055); }
}
@keyframes film-grain {
  0% { transform: translate3d(-2%, 1%, 0); }
  25% { transform: translate3d(1%, -2%, 0); }
  50% { transform: translate3d(2%, 2%, 0); }
  75% { transform: translate3d(-1%, -1%, 0); }
  100% { transform: translate3d(1%, 2%, 0); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1240px);
  min-height: auto;
  margin: 0 auto;
  padding: 110px 0 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.hero-copy { min-height: 350px; max-width: 570px; padding-top: 20px; display:flex; flex-direction:column; justify-content:center; }
.quote-card { width:min(100%, 760px); justify-self:center; }
.eyebrow, .mini-label {
  margin: 0 0 18px;
  color: var(--orange-bright);
  font: 800 0.78rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0.18em;
}
.eyebrow.dark { color: #c44e00; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }

h1 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges i {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}
.hero-badges b { font-size: 0.9rem; }

.quote-card {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quote-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.quote-heading .mini-label { margin-bottom: 7px; color: #b74700; }
.quote-heading h2 { margin: 0; font-size: 1.55rem; line-height: 1.2; letter-spacing: -0.03em; }
.availability {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: #625343;
  background: #f2ece3;
  font-size: 0.72rem;
  font-weight: 700;
}

.field-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field { display: grid; gap: 6px; min-width: 0; color: #5e5952; font-size: 0.875rem; font-weight: 700; }
.field-wide { grid-column: 1 / -1; }
.field input, .field select {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 12px;
  border: 1px solid #d8d3cb;
  border-radius: 9px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.13);
}
.input-wrap { position: relative; display: block; }
.input-wrap svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 12px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  fill: var(--orange);
}
.input-wrap input { padding-left: 40px; }
.location-match {
  min-height: 18px;
  margin-top: -2px;
  color: #23745c;
  font-size: 0.76rem;
  font-weight: 700;
}
.location-match:empty { display: none; }
.location-match.needs-zone { color: #9a5a08; }
.fare-area-control {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  align-items: center;
  gap: 8px 12px;
  margin-top: 1px;
  color: #756b60;
  font-size: 0.73rem;
}
.field .fare-area-control select {
  height: 38px;
  padding: 0 34px 0 10px;
  border-color: #e2ddd6;
  background-color: #fbfaf8;
  font-size: 0.8rem;
}
.fare-area-help {
  color: #82786e;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.35;
}
.field input.invalid, .field select.invalid { border-color: #b93528; }
.form-error { min-height: 20px; margin: 10px 0 0; color: #a72d22; font-size: 0.82rem; }

.fare-box {
  margin-top: 18px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 14px;
  color: #53473b;
  background: linear-gradient(135deg, #fff2e5, #f4fbfa);
  border: 1px solid #ead6c3;
  border-radius: 12px;
}
.fare-box > span { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.fare-box strong { grid-row: span 2; font: 800 2rem/1 "Manrope", sans-serif; color: #b84700; }
.fare-box small { color: var(--muted); font-size: 0.74rem; }

.quote-button, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--orange);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.quote-button { width: 100%; min-height: 52px; }
.quote-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.quote-button:hover, .quote-button:focus-visible, .cta-button:hover, .cta-button:focus-visible {
  transform: translateY(-2px);
  background: #e95e00;
}
.privacy-note { margin: 10px 0 0; color: var(--muted); font-size: 0.75rem; text-align: center; }

.field textarea, .request-draft textarea {
  display: block; width: 100%; min-width: 0; padding: 11px 12px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; color: var(--ink); font-size: 1rem; line-height: 1.5; resize: vertical;
}
.quote-card input, .quote-card select { font-size: 1rem; }
.field-help, .field-notice, .acknowledgement, .privacy-note, .form-error, .fare-box small,
.fare-area-help, .location-match { font-size: 0.875rem; line-height: 1.55; }
.field-help { margin: 4px 0 10px; color: #625b53; }
.field-notice { margin: 0; border-left: 3px solid var(--orange); padding: 10px 12px; background: #fff3e6; color: #734213; }
.return-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; border: 1px solid #e7d4c4; background: #fffbf6; border-radius: 10px; }
.route-swap, .copy-booking { min-height: 44px; padding: 8px 12px; border: 1px solid #d9cec2; border-radius: 8px; background: #fff; color: #7d390b; font-size: 0.875rem; font-weight: 700; cursor: pointer; }
.route-swap { justify-self: start; }
.copy-booking { width: 100%; margin-top: 10px; }
.fare-box { min-width: 0; }
.fare-box > span { font-size: 0.875rem; }
.fare-box > strong { overflow-wrap: anywhere; font-size: clamp(1.35rem, 4vw, 2rem); }
.fare-box > small { grid-column: 1 / -1; }
.fare-breakdown { grid-column: 1 / -1; width: 100%; margin-top: 10px; border-top: 1px solid #e9d6c6; }
.fare-leg > p { font-size: 0.875rem; font-weight: 800; margin: 12px 0 7px; }
.fare-leg dl { margin: 0; font-size: 0.875rem; }
.fare-leg dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 3px 0; }
.fare-leg dd { margin: 0; flex-shrink: 0; }
.fare-subtotal { margin-top: 4px; padding-top: 7px !important; border-top: 1px solid #e9d6c6; font-weight: 800; }
.acknowledgement { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; color: #514940; }
.acknowledgement input { width: 20px; height: 20px; flex: 0 0 20px; margin: 2px 0 0; accent-color: var(--orange); }
.quote-card .invalid { outline: 2px solid #b93528; outline-offset: 2px; }
.request-draft { margin-top: 18px; padding: 16px; border: 1px solid #e1cab6; background: #fff9f2; border-radius: 10px; }
.request-draft h3 { font-size: 1rem; line-height: 1.45; margin: 0 0 8px; }
.request-draft p { font-size: 0.875rem; line-height: 1.55; }
.request-draft textarea { font-size: 0.875rem; }
.quote-card button:focus-visible, .quote-card textarea:focus-visible, .acknowledgement input:focus-visible { outline: 3px solid #aa4500; outline-offset: 3px; }
.quote-card button:disabled { opacity: .55; cursor: wait; }
@media (max-width: 540px) { .return-fields { grid-template-columns: 1fr; } .return-fields > * { grid-column: 1; } }
.whatsapp-button {
  width: 100%;
  min-height: 44px;
  margin-top: 9px;
  color: #117a55;
  background: #eefaf5;
  border: 1px solid #bce7d5;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}
.whatsapp-button:hover, .whatsapp-button:focus-visible { background: #ddf5eb; }

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  min-height: 54px;
  padding: 0 19px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #20b85a;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  box-shadow: 0 13px 34px rgba(7,87,45,.34);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.floating-whatsapp svg { width: 25px; height: 25px; fill: currentColor; }
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { transform: translateY(-2px); background: #169d4a; }

.trust-strip {
  position: relative;
  z-index: 4;
  width: min(100% - 48px, 1240px);
  margin: -33px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--ink-soft);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.17);
}
.trust-strip article { padding: 24px 26px; border-right: 1px solid rgba(255, 255, 255, 0.12); }
.trust-strip article:last-child { border: 0; }
.stat { display: block; margin-bottom: 3px; color: var(--orange-bright); font: 800 1.25rem/1.2 "Manrope", sans-serif; }
.trust-strip p { margin: 0; color: rgba(255, 255, 255, 0.66); font-size: 0.82rem; }

.section { width: min(100% - 48px, 1240px); margin: 0 auto; padding: 64px 0; }
.section-heading { max-width: 700px; margin-bottom: 24px; }
.section-heading h2, .fleet-copy h2, .meeting-card h2, .final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.section-heading > p:last-child { max-width: 600px; color: var(--muted); font-size: 1rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.service-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.card-number { position: absolute; top: 23px; right: 25px; color: #aaa49a; font: 700 0.76rem/1 "Manrope", sans-serif; letter-spacing: 0.14em; }
.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 12px;
  color: var(--orange);
  background: #fff2e7;
}
.featured .service-icon { background: rgba(255, 106, 0, 0.14); }
.service-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.service-card h3 { margin-bottom: 10px; font-size: 1.32rem; letter-spacing: -0.025em; }
.service-card p { margin: 0; color: var(--muted); }
.featured p { color: rgba(255, 255, 255, 0.63); }

.destinations { padding-top: 20px; }
.destination-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.destination-groups details {
  padding: 4px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.destination-groups summary { font: 700 1rem/1.5 "Manrope", sans-serif; }
.destination-groups .place-list { padding: 4px 0 16px; }
.place-list { display: flex; flex-wrap: wrap; gap: 9px; }
.place-list button {
  min-height: 44px;
  padding: 7px 12px;
  border: 1px solid #ddd7ce;
  border-radius: 999px;
  color: #49453f;
  background: #faf8f4;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.place-list button:hover, .place-list button:focus-visible {
  color: #9f3d00;
  border-color: var(--orange);
  background: #fff1e5;
}

.fleet-band {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  color: var(--white);
  background: var(--ink);
  border-radius: 22px;
}
.fleet-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255, 255, 255, 0.65); font-size: 1.05rem; }
.fleet-copy ul { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 28px 0 0; padding: 0; list-style: none; }
.fleet-copy li { position: relative; padding-left: 18px; font-weight: 600; }
.fleet-copy li::before { content: ""; position: absolute; top: 0.65em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

.route-card { align-self: center; padding: 28px; background: #2b2824; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; }
.route-card > p { margin-bottom: 20px; color: var(--orange-bright); font: 700 0.74rem/1.2 "Manrope", sans-serif; letter-spacing: 0.16em; }
.route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; min-height: 47px; border-bottom: 1px solid rgba(255, 255, 255, 0.11); }
.route span { color: rgba(255, 255, 255, 0.6); font-size: 0.84rem; }
.route i { height: 1px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 3px, transparent 3px 7px); }
.route b { font-size: 0.88rem; }
.route-card a { display: inline-block; margin-top: 22px; color: var(--orange-bright); font-weight: 800; text-underline-offset: 4px; }

.payments { padding-bottom: 50px; }
.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.payment-grid article {
  min-height: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.payment-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font: 800 0.76rem/1 "Manrope", sans-serif;
}
.payment-grid h3 { margin-bottom: 10px; font-size: 1.2rem; }
.payment-grid p { margin: 0; color: var(--muted); }
.payment-note {
  margin: 18px 0 0;
  padding: 14px 18px;
  color: #5c4c3d;
  background: #fff0e2;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}

.meeting { padding-top: 48px; }
.meeting-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.meeting-card h2 { max-width: 650px; }
.meeting-card > div > p:last-child { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }
.meeting-location { display: flex; align-items: center; gap: 20px; padding: 26px; background: #fff2e7; border-radius: 14px; }
.location-pin { display: grid; place-items: center; flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; color: var(--white); background: var(--orange); }
.location-pin svg { width: 28px; fill: currentColor; }
.meeting-location p { margin: 0; }
.meeting-location b { font: 800 1.05rem/1.4 "Manrope", sans-serif; }
.meeting-location span { color: var(--muted); }
.meeting-content { min-width: 0; }
.meeting-content .meeting-location { margin-top: 24px; }
.meeting-wait { margin: 18px 0; color: #514b43; font-size: 1rem; }
.meeting-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.meeting-actions a { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 16px; border-radius: 9px; text-align: center; text-decoration: none; font-size: 0.9375rem; font-weight: 700; }
.meeting-whatsapp { color: #fff; background: #17634a; }
.meeting-whatsapp:hover { background: #104c38; }
.meeting-call { flex-wrap: wrap; color: var(--ink); border: 1px solid var(--line); background: #fff; }
.meeting-call b { white-space: nowrap; }
.meeting-contact-note { margin: 10px 0 22px; color: #625b53; font-size: 0.875rem; }
.meeting-photo { min-width: 0; margin: 0; }
.meeting-photo-open { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: #f0ede7; text-align: center; text-decoration: none; }
.meeting-photo img { display: block; width: 100%; height: auto; max-height: 420px; object-fit: contain; }
.meeting-photo-open > span { display: block; padding: 12px 16px; color: #87400b; background: #fff2e7; font-size: 0.875rem; font-weight: 700; }
.meeting-photo figcaption { margin-top: 12px; color: #625b53; font-size: 0.875rem; line-height: 1.55; }
.meeting-actions a:focus-visible, .meeting-photo-open:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.final-cta {
  padding: 40px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  background: var(--orange);
}

.qr-booking {
  width: 100%;
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 40px;
}
.qr-copy h2 { max-width: 650px; margin-bottom: 12px; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2; letter-spacing: -.025em; }
.qr-copy > p:not(.eyebrow) { max-width: 610px; margin-bottom: 28px; color: var(--muted); font-size: 1.06rem; }
.qr-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.qr-actions .cta-button { min-height: 50px; padding: 0 22px; }
.qr-download { min-height: 50px; padding: 0 19px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; font-weight: 800; text-decoration: none; }
.qr-download:hover, .qr-download:focus-visible { border-color: var(--orange); color: #b84700; }
.qr-card { display: block; padding: 12px; background: #fff; border-radius: 24px; box-shadow: 0 24px 60px rgba(30, 24, 18, .15); transform: rotate(1.5deg); transition: transform .25s ease; }
.qr-card:hover, .qr-card:focus-visible { transform: rotate(0) translateY(-3px); }
.qr-card img { display: block; width: 100%; height: auto; border-radius: 15px; }
.final-cta .eyebrow { margin-bottom: 12px; color: rgba(17, 16, 14, 0.72); }
.final-cta h2 { margin: 0; }
.cta-button { flex: 0 0 auto; min-height: 54px; padding: 0 24px; color: var(--white); background: var(--ink); }
.cta-button:hover, .cta-button:focus-visible { background: #34302b; }

footer {
  padding: 42px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--ink);
  font-size: 0.86rem;
}
footer p { margin: 0; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--white); font-weight: 700; text-decoration: none; }
.footer-brand .brand-logo { width: 104px; height: 72px; }

/* Compact, mobile-first hierarchy. Full details remain available on demand. */
html { scroll-padding-top: 20px; }
body { font-size: 1rem; }
h1, h2, h3, p, summary, .field, .footer-links { overflow-wrap: anywhere; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px; margin-top: 24px; }
.hero-actions .cta-button { min-height: 46px; padding: 10px 22px; color: #11100e; background: var(--orange-bright); font-size: .9375rem; }
.hero-meeting-link { display: inline-flex; align-items: center; min-height: 44px; color: #fff; font-size: .875rem; font-weight: 700; text-underline-offset: 5px; }
.hero-badges { gap: 10px 18px; }
.hero-badges b { font-size: .875rem; }
.quote-card { box-shadow: 0 16px 40px rgba(0,0,0,.16); backdrop-filter: none; background: #fff; }
.field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field-wide { grid-column: 1 / -1; }
.field input, .field select { min-height: 46px; }
.field > label { cursor: pointer; }
.field input[type="date"], .field input[type="time"] { min-width: 0; max-width: 100%; }
.field-help, .field-notice, .acknowledgement, .privacy-note, .form-error, .fare-box small, .fare-area-help, .location-match { line-height: 1.45; }
.form-error:empty { display: none; }
.field-help { margin: 0; }
.route-swap { padding: 6px 0; background: none; border: 0; font-size: .875rem; text-decoration: underline; text-underline-offset: 4px; }
summary { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 10px 0; cursor: pointer; list-style: none; font-size: .875rem; font-weight: 700; line-height: 1.4; }
summary::-webkit-details-marker { display: none; }
summary::after { content: ""; flex: 0 0 7px; width: 7px; height: 7px; margin-left: auto; margin-right: 3px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .18s ease; }
details[open] > summary::after { transform: rotate(225deg); }
summary:focus-visible, a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.area-details { min-width: 0; font-weight: 500; }
.area-details > summary { color: #685e54; font-weight: 500; padding-block: 5px; }
.area-details .fare-area-control { display: block; margin: 0; }
.field .fare-area-control select { height: auto; min-height: 44px; font-size: 1rem; }
.area-details .fare-area-help { margin: 8px 0 0; }
.booking-section { min-width: 0; border: 1px solid #d8d3cb; border-radius: 10px; }
.booking-section > summary { padding: 14px; color: var(--ink); flex-wrap: wrap; }
.summary-hint { color: #706b63; font-size: .8125rem; font-weight: 500; }
.details-fields { padding: 4px 14px 16px; }
.fare-details { grid-column: 1 / -1; min-width: 0; }
.fare-details > summary { padding-bottom: 0; color: #87400b; }
.fare-breakdown { margin-top: 8px; }
.fare-box > span { text-transform: none; letter-spacing: 0; }
.fare-box > strong { line-height: 1.2; }
.info-details { border-top: 1px solid var(--line); margin-top: 16px; }
.info-details > p { margin: 6px 0 14px; font-size: 1rem; }
.fare-conditions { margin-top: 10px; }
.info-details > .field-help { font-size: .875rem; }
.copy-booking { border: 0; background: none; text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }
.meeting-location { padding: 16px; gap: 14px; }
.location-pin { width: 42px; height: 42px; }
.location-pin svg { width: 23px; }
.meeting-contact-note { margin-bottom: 14px; }
.qr-disclosure { width: min(100% - 48px, 1100px); margin: 0 auto 40px; padding: 6px 20px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.qr-disclosure > summary { font-size: 1rem; }
.footer-links { flex-wrap: wrap; }

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 32px; }
  h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
  .fleet-band { padding: 32px; gap: 30px; }
  .meeting-card { gap: 36px; }
}

@media (max-width: 820px) {
  .site-header { width: min(100% - 32px, 1240px); }
  .header-phone { display: none; }
  .hero { min-height: auto; }
  .hero-road-scene, .hero-shade, .hero-light-sweep { height: 440px; }
  .hero-road-bg { object-position: 60% center; }
  .hero-watermark { top: 96px; right: 18px; width: 230px; opacity: .07; }
  .hero-shade { background: linear-gradient(90deg, rgba(11,10,9,.8), rgba(11,10,9,.3)), linear-gradient(0deg, var(--ink), transparent 60%); }
  .hero-layout { width: min(100% - 32px, 620px); min-height: auto; padding: 100px 0 36px; grid-template-columns: 1fr; gap: 26px; }
  .hero-copy { min-height: 260px; display: flex; flex-direction: column; justify-content: center; padding-top: 0; }
  h1 { max-width: 490px; font-size: clamp(2rem, 5vw, 2.5rem); }
  .quote-card { width: 100%; }
  .trust-strip { width: min(100% - 32px, 620px); margin-top: 0; grid-template-columns: 1fr 1fr; }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .section, .fleet-band { width: min(100% - 32px, 620px); }
  .section { padding: 40px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .destination-groups, .payment-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 8px 14px; padding: 18px; }
  .service-icon { width: 42px; height: 42px; margin: 0; grid-row: 1 / 3; }
  .service-card h3 { margin: 0; font-size: 1.0625rem; }
  .service-card p { grid-column: 2; line-height: 1.45; }
  .card-number { display: none; }
  .fleet-band { padding: 26px 22px; grid-template-columns: 1fr; gap: 24px; }
  .meeting-card { padding: 22px; grid-template-columns: 1fr; gap: 24px; }
  .meeting-photo { order: -1; }
  .meeting-photo img { max-height: 300px; }
  .qr-disclosure { width: min(100% - 32px, 620px); }
  .qr-booking { grid-template-columns: 1fr; gap: 24px; }
  .qr-card { width: min(100%, 260px); justify-self: center; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 520px) {
  .site-header { min-height: 72px; }
  .header-brand-logo { width: 104px; height: 68px; }
  .brand-logo { width: 92px; height: 56px; padding: 3px 5px; }
  .language-select { min-height: 44px; font-size: 1rem; }
  .hero-road-scene, .hero-shade, .hero-light-sweep { height: 400px; }
  .hero-road-bg { object-position: 63% center; }
  .hero-watermark { top: 82px; right: -14px; width: 190px; opacity: .065; }
  .hero-layout { padding-top: 92px; }
  .hero-copy { min-height: 240px; }
  h1 { max-width: 350px; font-size: clamp(1.875rem, 7.4vw, 2.125rem); }
  .hero-intro { max-width: 310px; margin-bottom: 0; }
  .hero-badges { display: none; }
  .hero-actions { margin-top: 18px; gap: 8px 18px; }
  .eyebrow { font-size: .75rem; letter-spacing: .12em; margin-bottom: 12px; }
  .quote-card { padding: 20px 16px; border-radius: 16px; }
  .quote-heading { margin-bottom: 16px; }
  .quote-heading h2 { font-size: 1.25rem; }
  .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 10px; }
  .field-wide { grid-column: 1 / -1; }
  .details-fields > .field { grid-column: 1 / -1; }
  .fare-area-control { grid-template-columns: 1fr; gap: 5px; }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 0 0 12px 12px; }
  .trust-strip article { padding: 16px; border-right: 1px solid rgba(255,255,255,.12); }
  .trust-strip article:nth-child(even) { border-right: 0; }
  .trust-strip article:nth-child(n+3) { border-bottom: 0; }
  .stat { font-size: 1.0625rem; }
  .trust-strip p { font-size: .875rem; line-height: 1.4; }
  .section-heading { margin-bottom: 20px; }
  .section-heading h2, .fleet-copy h2, .meeting-card h2, .final-cta h2 { font-size: 1.5rem; }
  .destination-groups { gap: 10px; }
  .place-list button { font-size: .875rem; }
  .meeting-location { align-items: center; padding: 14px; }
  .meeting-actions a { font-size: .875rem; }
  .meeting-content .meeting-location { margin-top: 16px; }
  .payment-grid { gap: 12px; }
  .payment-grid article { padding: 18px; display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 6px 12px; }
  .payment-grid article > span { width: 32px; height: 32px; margin: 0; grid-row: 1 / 3; }
  .payment-grid h3 { margin: 0; font-size: 1rem; }
  .payment-grid p { grid-column: 2; }
  .qr-booking { padding: 18px 0; }
  .final-cta { padding: 28px 20px; gap: 20px; }
  .final-cta .eyebrow { display: none; }
  footer { padding: 28px 20px 90px; gap: 16px; }
  .footer-links { flex-direction: column; gap: 8px; }
  .floating-whatsapp { right: 14px; bottom: 14px; min-height: 50px; padding: 0 14px; }
  .floating-whatsapp span { display: none; }
}

@media (max-width: 359px) {
  .field-grid { grid-template-columns: minmax(0, 1fr); }
  .quote-card { padding-inline: 12px; }
  .hero-actions { gap: 8px 12px; }
}

.support-launcher { position: fixed; z-index: 60; right: 86px; bottom: max(20px, env(safe-area-inset-bottom)); display: inline-flex; align-items: center; gap: 9px; max-width: calc(100vw - 106px); min-height: 50px; padding: 10px 16px; border: 1px solid #493a2d; border-radius: 999px; background: #171512; color: #fff; box-shadow: 0 8px 24px #0003; font-size: .875rem; font-weight: 700; cursor: pointer; }
.support-launcher svg { width: 23px; height: 23px; flex-shrink: 0; fill: none; stroke: #ff8a30; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.has-support .floating-whatsapp { right: 20px; bottom: max(20px, env(safe-area-inset-bottom)); width: 50px; min-height: 50px; padding: 0; justify-content: center; }
.has-support .floating-whatsapp span { display: none; }
.support-panel { position: fixed; z-index: 70; right: 20px; bottom: calc(84px + env(safe-area-inset-bottom)); width: min(370px, calc(100vw - 32px)); max-height: calc(100vh - 110px); max-height: calc(100dvh - 110px - env(safe-area-inset-bottom)); display: flex; flex-direction: column; overflow: auto; overscroll-behavior: contain; border: 1px solid #d6d5d2; border-radius: 18px; background: #fff; color: var(--ink); box-shadow: 0 18px 60px #0004; }
.support-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; color: #fff; background: #171512; }
.support-brand { font: 800 .75rem/1.4 "Manrope", sans-serif; color: #ff8a30; letter-spacing: .1em; }
.support-heading h2 { margin: 3px 0 0; font-size: 1.125rem; line-height: 1.4; }
.support-heading button { flex: 0 0 44px; min-height: 44px; background: transparent; color: #fff; border: 1px solid #ffffff40; border-radius: 10px; font-size: 1.5rem; cursor: pointer; }
.support-body { padding: 18px; }
.support-intro { margin: 0 0 16px; color: #625b53; font-size: .875rem; line-height: 1.5; }
.support-topics { display: flex; flex-wrap: wrap; gap: 8px; }
.support-topics button { min-height: 44px; max-width: 100%; padding: 8px 12px; border: 1px solid #d9d5ce; border-radius: 10px; background: #fff; color: #403c35; font-size: .875rem; cursor: pointer; overflow-wrap: anywhere; }
.support-topics button[aria-pressed="true"] { color: #803b05; border-color: #ed8a3a; background: #fff1e6; }
.support-answer { margin-top: 16px; padding: 14px; border-radius: 12px; background: #f4f5f6; font-size: 1rem; line-height: 1.5; overflow-wrap: anywhere; }
.support-answer p { margin: 0 0 12px; }
.support-answer p:last-child { margin-bottom: 0; }
.support-price, .support-place { color: #8c3a00; font-weight: 700; }
.support-answer img { display: block; width: 100%; height: 220px; object-fit: contain; margin: 12px 0 8px; }
.support-answer a { display: block; margin-bottom: 12px; color: #803b05; font-size: .875rem; text-underline-offset: 3px; }
.support-form-link { display: flex; align-items: center; justify-content: center; min-height: 46px; margin-top: 12px; padding: 10px; border-radius: 9px; background: #ff7f18; color: #171512; font-size: .875rem; font-weight: 700; text-decoration: none; }
.support-human { display: block; margin: 0 18px 18px; padding: 12px; border-radius: 9px; background: #17634a; color: #fff; text-align: center; font-size: .875rem; font-weight: 700; text-decoration: none; }
.support-launcher:focus-visible, .support-panel button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
@media (max-width: 520px) { .support-panel { right: 16px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .hero-light-sweep, .hero-road-bg, .cinema-grain { animation: none !important; }
  .hero-road-bg { transform: scale(1.06); }
}
