:root {
  --ink: #09111f;
  --deep: #101a2b;
  --muted: #647084;
  --line: #d9e0ea;
  --paper: #f5f7f8;
  --white: #ffffff;
  --accent: #f5c244;
  --accent-dark: #c89414;
  --blue: #0e65a4;
  --red: #d03a2f;
  --green: #267764;
  --shadow: 0 24px 80px rgba(9, 17, 31, 0.18);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

img, iframe, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus { transform: translateY(0); }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 14px 34px rgba(9,17,31,.12);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}

.topbar.is-scrolled .brand,
.topbar.is-scrolled .nav-links,
.topbar.is-scrolled .phone-icon { color: var(--ink); }

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  font-weight: 950;
}

.brand strong, .brand small { display: block; }
.brand small { opacity: .74; font-size: .78rem; }

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--white);
  font-weight: 850;
}

.nav-links a { text-decoration: none; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language {
  display: flex;
  padding: 3px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: var(--radius);
}

.topbar.is-scrolled .language {
  background: #eef2f5;
  border-color: var(--line);
}

.language button {
  border: 0;
  background: transparent;
  color: var(--white);
  min-width: 42px;
  min-height: 36px;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.topbar.is-scrolled .language button { color: var(--ink); }
.language button.is-active { background: var(--accent); color: var(--ink); }

.phone-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.hero {
  min-height: 94vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,17,31,.94), rgba(9,17,31,.72) 46%, rgba(9,17,31,.18)),
    linear-gradient(0deg, rgba(9,17,31,.92), rgba(9,17,31,.1) 42%);
}

.hero-grid {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  width: min(790px, 100%);
  margin: 0;
  font-size: clamp(2.6rem, 5rem, 5.4rem);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  width: min(730px, 100%);
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 1.12rem;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
}

.btn-primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-dark); }
.btn-secondary { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-route { background: var(--blue); color: var(--white); border-color: var(--blue); }

.hero-panel {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.28);
  box-shadow: var(--shadow);
}

.hero-panel div {
  background: rgba(9,17,31,.74);
  padding: 18px;
}

.hero-panel span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .8rem;
  font-weight: 850;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.14rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  color: var(--white);
}

.signal-strip div {
  min-width: 0;
  padding: 20px clamp(16px, 4vw, 42px);
  background: var(--deep);
}

.signal-strip span {
  display: block;
  color: #b6c1cf;
  font-size: .82rem;
  font-weight: 850;
}

.signal-strip strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head.compact {
  display: block;
  width: min(680px, 100%);
}

.section h2, .fleet-band h2, .contact h2 {
  margin: 0;
  font-size: clamp(2rem, 3.45rem, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow), .proof-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.path-controls {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.path-tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}

.path-tab.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.path-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 16px;
}

.path-panel {
  min-height: 450px;
  display: grid;
  align-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.path-panel.is-hidden { display: none; }

.path-panel h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.05;
}

.path-panel p { color: var(--muted); font-size: 1.05rem; }

.path-panel ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.path-panel li {
  position: relative;
  padding-left: 28px;
  font-weight: 850;
}

.path-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.path-photo {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fleet-band {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 42px;
  padding: 86px max(16px, calc((100vw - 1180px) / 2));
}

.fleet-cards {
  display: grid;
  gap: 12px;
}

.fleet-cards article {
  background: #152235;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px;
}

.fleet-cards span {
  color: var(--accent);
  font-weight: 950;
}

.fleet-cards h3 {
  margin: 8px 0;
  font-size: 1.35rem;
}

.fleet-cards p { margin: 0; color: #c6d0dc; }

.proof {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.rating {
  width: min(330px, 100%);
  margin-top: 26px;
  display: grid;
  gap: 2px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
}

.rating strong { font-size: 4rem; line-height: .9; }
.rating span { color: var(--accent); }
.rating small { color: #c8d1dc; font-weight: 850; }

.proof-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 10px;
  align-items: stretch;
}

.proof-images img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr .9fr 1fr;
  gap: 6px;
  background: var(--ink);
}

.gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.request {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 42px;
}

.request-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.request-form label span, .request-form legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 950;
}

.request-form input, .request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  resize: vertical;
}

.request-form fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  padding: 14px;
}

.request-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.request-form fieldset input { width: auto; }

.output {
  min-height: 76px;
  border-radius: var(--radius);
  background: #eef4f8;
  border: 1px dashed #aeb9c6;
  padding: 14px;
  color: var(--muted);
}

.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: 92px 0;
}

.hours {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  padding: 14px 16px;
}

.map {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 34px max(16px, calc((100vw - 1180px) / 2));
}

.footer p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #c8d1dc;
}

.footer a {
  color: var(--white);
  font-weight: 950;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: translateY(140%);
  transition: transform 180ms ease;
}

.mobile-cta.is-visible { transform: translateY(0); }

.mobile-cta a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(9,17,31,.28);
}

.mobile-cta a:last-child { color: var(--white); background: var(--blue); }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .hero-grid, .signal-strip, .section-head, .path-stage, .fleet-band, .proof, .request, .contact { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 3rem; }
  .hero-panel { width: min(520px, 100%); }
  .path-panel, .path-photo { min-height: auto; }
  .proof-images { grid-template-columns: 1fr; }
  .proof-images img { height: 320px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 300px; }
  .footer { flex-direction: column; padding: 30px 16px 88px; }
  .mobile-cta { display: grid; }
}

@media (max-width: 560px) {
  .nav { width: calc(100% - 20px); min-height: 68px; }
  .brand span:last-child { display: none; }
  .brand-mark { width: 44px; height: 44px; }
  .hero-grid { width: calc(100% - 24px); padding-bottom: 38px; }
  .hero h1 { font-size: 2.35rem; }
  .hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .section, .contact { width: calc(100% - 24px); padding: 64px 0; }
  .section h2, .fleet-band h2, .contact h2 { font-size: 2rem; }
  .path-panel, .request-form { padding: 20px; }
  .btn { width: 100%; }
}
