:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #65717e;
  --line: #d9e0e8;
  --paper: #f6f8fb;
  --white: #ffffff;
  --brand: #e72d39;
  --brand-dark: #b91c27;
  --night: #0f1822;
  --sky: #dceefe;
  --mint: #dff4ed;
  --gold: #ffcc66;
  --shadow: 0 18px 50px rgba(19, 33, 46, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 224, 232, 0.8);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--night));
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #40505f;
  font-size: 0.96rem;
  font-weight: 700;
}

.main-nav a:hover,
.header-call:hover {
  color: var(--brand);
}

.header-call {
  color: var(--night);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  min-height: calc(100vh - 76px);
  padding: 64px 5vw 72px;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(15, 24, 34, 0.86), rgba(15, 24, 34, 0.38)),
    url("./assets/brand/hero-road.svg") center / cover no-repeat;
  color: var(--white);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.6;
}

.hero-actions,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(231, 45, 57, 0.28);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  width: 100%;
  background: var(--night);
  color: var(--white);
}

.button.light {
  width: 100%;
  color: var(--night);
  background: var(--white);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 44px 0 0;
}

.trust-strip div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.trust-strip dt {
  font-size: 1.7rem;
  font-weight: 950;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.booking-panel {
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.booking-head span {
  padding: 6px 10px;
  color: var(--brand);
  background: #fff0f1;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #43515f;
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  min-height: 86px;
  padding-top: 11px;
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  min-height: 44px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-service-card {
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-service-card h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.hero-service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-service-card ul,
.terms-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: #41505f;
  line-height: 1.5;
}

.status-pill {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--brand);
  background: #fff0f1;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
}

.section {
  padding: 84px 5vw;
}

.section.compact {
  padding-top: 36px;
  padding-bottom: 36px;
  background: var(--white);
}

.section.muted {
  background: #edf3f8;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 32px;
  align-items: end;
  max-width: none;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-row article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-row h2 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.benefit-row p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--brand);
  background: #fff0f1;
  border-radius: 8px;
  font-weight: 950;
}

.filter {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #445160;
  cursor: pointer;
  font-weight: 850;
}

.filter.active,
.filter:hover {
  background: var(--night);
  color: var(--white);
  border-color: var(--night);
}

.availability-search {
  display: grid;
  gap: 18px;
  margin: 26px 0 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

.availability-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.availability-topline > div {
  display: grid;
  gap: 10px;
}

.availability-topline strong {
  font-size: 1.18rem;
}

.availability-topline p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.availability-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr repeat(4, minmax(120px, 0.8fr));
  gap: 12px;
}

.availability-search label {
  margin-bottom: 0;
}

.availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.check-row {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
}

.check-row input {
  width: auto;
  min-height: auto;
  margin-right: 8px;
}

.compact-select {
  min-width: 170px;
}

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

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

.section-cta .button {
  width: min(100%, 230px);
}

.vehicle-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

.vehicle-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  background: linear-gradient(135deg, #121923, #263241);
  color: inherit;
}

.vehicle-image img {
  width: min(94%, 390px);
  height: 176px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, 0.28));
}

.vehicle-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.vehicle-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.vehicle-body p {
  margin: 0;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: end;
  gap: 6px;
}

.price strong {
  color: var(--brand);
  font-size: 2.2rem;
  line-height: 0.9;
}

.price small,
.price span {
  color: var(--muted);
  font-weight: 800;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.specs div {
  padding: 10px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.specs dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.specs dd {
  margin: 3px 0 0;
  font-weight: 950;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.profile-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: start;
}

.profile-shell > div:first-child {
  position: sticky;
  top: 104px;
}

.profile-card {
  display: grid;
  gap: 20px;
  min-height: 360px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-card > img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--night);
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.profile-meta div {
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
}

.profile-meta strong {
  display: block;
  margin-top: 5px;
}

.profile-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 19px;
  color: #3f4f5e;
  line-height: 1.45;
}

.empty-state {
  align-self: center;
  justify-self: center;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--brand);
  background: #fff0f1;
  border-radius: 8px;
  font-weight: 950;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.page-hero,
.vehicle-hero {
  padding: 70px 5vw;
  background: #f2f6fa;
}

.page-hero {
  min-height: 390px;
  display: grid;
  align-content: center;
}

.page-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.vehicle-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: start;
}

.vehicle-detail-layout h1 {
  max-width: 840px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.dark-text {
  color: #465666;
}

.vehicle-stage {
  display: grid;
  place-items: center;
  min-height: 380px;
  margin-top: 30px;
  padding: 28px;
  background: linear-gradient(135deg, #111923, #2c3947);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.vehicle-stage img {
  width: min(100%, 780px);
  max-height: 330px;
  object-fit: contain;
  border-radius: 8px;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.detail-specs div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-specs span,
.contact-lines span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.detail-specs strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
}

.detail-booking {
  position: sticky;
  top: 104px;
}

.inclusion-grid,
.vehicle-info-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.inclusion-grid article,
.vehicle-info-grid > article,
.contact-card,
.faq-layout details {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inclusion-grid span,
.highlight-list span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 16px;
  padding: 0 8px;
  color: var(--brand);
  background: #fff0f1;
  border-radius: 8px;
  font-weight: 950;
}

.inclusion-grid p,
.vehicle-info-grid p {
  color: var(--muted);
  line-height: 1.55;
}

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

.highlight-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.highlight-list span {
  margin: 0;
}

.highlight-list p {
  margin: 9px 0 0;
}

.compact-fleet .vehicle-card:nth-child(n + 4) {
  display: none;
}

.faq-layout {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-layout summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.faq-layout p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-hero {
  background:
    linear-gradient(115deg, rgba(15, 24, 34, 0.82), rgba(15, 24, 34, 0.44)),
    url("./assets/brand/hero-road.svg") center / cover no-repeat;
}

.contact-hero h1,
.contact-hero p:not(.eyebrow) {
  color: var(--white);
}

.contact-card {
  display: grid;
  gap: 20px;
}

.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-lines {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
}

.contact-lines a:hover {
  color: var(--brand);
}

.location-box {
  display: grid;
  gap: 12px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(15, 24, 34, 0.86), rgba(15, 24, 34, 0.42)),
    url("./assets/brand/map-region.svg") center / cover no-repeat;
  color: var(--white);
  border-radius: 8px;
}

.location-box span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-box strong {
  font-size: 1.5rem;
}

.location-box p {
  color: rgba(255, 255, 255, 0.78);
}

.offer-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card,
.review-grid blockquote {
  margin: 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-card.strong {
  background: var(--night);
  color: var(--white);
}

.offer-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 950;
}

.offer-card.strong span {
  color: var(--gold);
}

.offer-card p,
.review-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.offer-card.strong p {
  color: rgba(255, 255, 255, 0.72);
}

.locations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 24px;
}

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

.location-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 4px 16px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.location-list span {
  grid-row: span 2;
  color: var(--brand);
  font-weight: 950;
}

.location-list p {
  margin: 0;
  color: var(--muted);
}

.map-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 33, 43, 0.76), rgba(23, 33, 43, 0.22)),
    url("./assets/brand/map-region.svg") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: 8px 10px;
  background: var(--white);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.map-card span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 10px;
  height: 10px;
  background: var(--brand);
  border: 3px solid var(--white);
  border-radius: 999px;
  transform: translateX(-50%);
}

.route-line {
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.review-grid blockquote {
  display: grid;
  gap: 20px;
}

.review-grid p {
  color: var(--ink);
  font-size: 1.08rem;
}

.review-grid cite {
  color: var(--brand);
  font-style: normal;
  font-weight: 950;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 46px 5vw;
  color: var(--white);
  background: var(--night);
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--white);
  background: var(--night);
  border-radius: 8px;
  font-weight: 950;
}

.sticky-cta a:first-child {
  background: var(--brand);
}

.sticky-cta a:nth-child(2) {
  background: #138c4d;
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  gap: 10px;
  min-width: 260px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 1060px) {
  .hero,
  .locations-layout,
  .section-heading.split,
  .vehicle-detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .booking-panel {
    max-width: 680px;
  }

  .fleet-grid,
  .offer-grid,
  .review-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-shell {
    grid-template-columns: 1fr;
  }

  .profile-shell > div:first-child {
    position: static;
  }

  .detail-booking {
    position: static;
  }

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

  .availability-topline {
    display: grid;
  }

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

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

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 18px 5vw;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 42px 5vw 50px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .trust-strip,
  .benefit-row,
  .fleet-grid,
  .offer-grid,
  .review-grid,
  .process-grid,
  .field-grid,
  .profile-meta,
  .detail-specs,
  .inclusion-grid,
  .vehicle-info-grid,
  .availability-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .availability-actions {
    display: grid;
  }

  .compact-select {
    min-width: 0;
  }

  .section {
    padding: 58px 5vw;
  }

  .benefit-row article {
    grid-template-columns: 48px 1fr;
  }

  .map-card {
    min-height: 340px;
  }

  .sticky-cta {
    display: grid;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 430px) {
  .booking-panel {
    padding: 18px;
  }

  .specs {
    grid-template-columns: 1fr;
  }
}
