:root {
  --bg: #f7f5f0;
  --paper: #ffffff;
  --ink: #121212;
  --muted: #68635c;
  --line: #e4ded5;
  --gold: #c79a43;
  --gold-dark: #8a6521;
  --soft: #eee8de;
  --shadow: 0 22px 70px rgba(18, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(18, 18, 18, 0.94);
  color: #fff;
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.trust-row,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #f2d990);
  color: #111;
}

.nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a:hover {
  color: #fff;
}

.header-cta,
.primary-btn {
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  font-weight: 800;
}

.header-cta {
  background: #fff;
  color: #121212;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 54px) 56px;
}

.hero-left {
  display: grid;
  gap: 26px;
}

.hero-copy h1,
.section-heading h2,
.split h2,
.cta-band h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.lead-fr {
  margin-top: 12px;
  color: #3c3832;
  font-weight: 750;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 9px 13px;
  color: #3c3832;
  font-size: 0.88rem;
  font-weight: 700;
}

.booking-card {
  position: relative;
  z-index: 5;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow);
  padding: 18px;
}

.form-tabs,
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-tabs {
  margin-bottom: 12px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  padding: 12px;
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  color: #2f2b26;
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f4f1ec;
  color: var(--ink);
  min-height: 50px;
  padding: 0 13px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(199, 154, 67, 0.2);
}

textarea {
  min-height: 82px;
  padding-top: 12px;
  resize: vertical;
}

.booking-card .primary-btn {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, #111, #2e281e);
}

.secondary-btn {
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  min-height: 44px;
  padding: 0 14px;
  font-weight: 850;
}

.route-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.route-actions span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.route-actions span.is-ready {
  color: #28613b;
}

.route-actions span.is-error {
  color: #9a2b2b;
}

.quote-box {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  border: 1px solid rgba(199, 154, 67, 0.45);
  border-radius: 8px;
  background: #fffaf0;
  padding: 16px;
}

.quote-label {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-box strong {
  font-size: 1.7rem;
  line-height: 1.1;
}

.quote-box span:not(.quote-label) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-media {
  margin: 0;
  padding-top: 6px;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section {
  padding: 76px clamp(18px, 4vw, 54px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2,
.split h2,
.cta-band h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.7rem);
}

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

.service-grid article,
.fleet-grid article,
.policy-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--gold-dark);
  font-weight: 900;
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
}

article p,
.split p,
.cta-band p {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: #161616;
  color: #fff;
}

.routes-section {
  background: #fff;
}

.pricing-section {
  background: #f0ebe2;
}

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

.route-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f5ef;
  padding: 18px;
  color: #2f2b26;
  font-weight: 850;
}

.seo-line {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.split .eyebrow {
  color: #e8c77c;
}

.split p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
}

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

.steps li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  font-size: 1.2rem;
}

.steps span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
}

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

.fleet-grid p {
  color: var(--gold-dark);
  font-weight: 800;
}

.fleet-grid span {
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 32px clamp(18px, 4vw, 54px) 76px;
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 700px;
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  }
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .service-grid,
  .fleet-grid,
  .policy-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: grid;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .form-grid,
  .form-tabs {
    grid-template-columns: 1fr;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }
}
