:root {
  --brand-blue: #3256ab;
  --brand-blue-dark: #23458d;
  --brand-blue-soft: #eaf0fb;
  --brand-green: #9dbc62;
  --brand-green-dark: #769a39;
  --ink: #071820;
  --ink-soft: #102a34;
  --surface: #ffffff;
  --surface-warm: #fbfaf6;
  --surface-muted: #f2f5f4;
  --border: #d9e0de;
  --border-strong: #b9c4c1;
  --text: #16272e;
  --text-muted: #66757a;
  --success: #507a22;
  --success-soft: #edf5df;
  --warning: #96650d;
  --danger: #a23a4a;
  --danger-soft: #fae9ec;
  --shadow-sm: 0 8px 28px rgba(7, 24, 32, 0.08);
  --shadow-md: 0 24px 64px rgba(7, 24, 32, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface-warm);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.035em;
}
p { color: var(--text-muted); }
main, section, .hero-layout, .availability-search, .trip-editor,
.fleet-layout, .results-column, .vehicle-content-layout, .request-column { min-width: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(50, 86, 171, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container, .header-inner, .utility-inner {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: #c8d2d5;
  font-size: 12px;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 36px;
}
.utility-inner > a, .utility-inner > div,
.utility-inner > div a { display: flex; align-items: center; gap: 10px; }
.utility-inner a { transition: color 160ms ease; }
.utility-inner a:hover { color: #fff; }
.utility-inner > div > * + * {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 224, 222, 0.85);
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 82px;
}
.brand {
  display: grid;
  flex: 0 0 auto;
  gap: 1px;
  justify-items: start;
}
.brand-logo {
  width: 212px;
  height: auto;
  aspect-ratio: 311.3875 / 40;
  object-fit: contain;
}
.brand-service {
  margin-left: 36px;
  color: var(--brand-green-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4e6168;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a {
  position: relative;
  padding: 30px 0 27px;
  transition: color 160ms ease;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--brand-blue); }
.desktop-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-green);
  content: "";
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.parent-site-link { color: var(--text-muted); font-size: 12px; font-weight: 700; }
.parent-site-link:hover, .text-call:hover { color: var(--brand-blue); }
.text-call { color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.menu-button span { display: block; height: 2px; margin: 4px 0; background: var(--ink); }
.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--surface-warm);
  box-shadow: var(--shadow-md);
}
.mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--brand-blue); color: #fff; box-shadow: 0 10px 26px rgba(50, 86, 171, 0.24); }
.button.primary:hover { background: var(--brand-blue-dark); box-shadow: 0 14px 32px rgba(50, 86, 171, 0.28); }
.button.cta { background: var(--brand-green); color: var(--ink); }
.button.cta:hover { background: #acd074; }
.button.secondary { border-color: var(--border-strong); background: transparent; color: var(--ink); }
.button.secondary:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.button.text-button { min-height: 44px; padding-inline: 6px; color: #fff; }
.button.text-button:hover { color: var(--brand-green); }
.button.danger { background: var(--danger); color: #fff; }
.button.wide { width: 100%; }
.button:disabled { cursor: not-allowed; opacity: 0.58; transform: none; }

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 9px;
  background: var(--brand-green);
  content: "";
  vertical-align: middle;
}
.eyebrow.on-dark { color: #dce7ca; }
.section { padding: clamp(76px, 8vw, 124px) 0; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}
.section-heading > div { max-width: 740px; }
.section-heading h2, .section-heading.stacked h2,
.requirements-intro h2, .location-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 0.98;
}
.section-heading p { max-width: 650px; margin-bottom: 0; font-size: 17px; }
.section-heading.stacked { display: block; margin: 0; }
.arrow-link { flex: 0 0 auto; padding-bottom: 7px; color: var(--brand-blue); font-weight: 850; }
.arrow-link span { margin-left: 8px; transition: transform 160ms ease; }
.arrow-link:hover span { display: inline-block; transform: translateX(4px); }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
  background: var(--ink);
}
.home-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 67%, rgba(255, 255, 255, 0.035) 67% 67.1%, transparent 67.1%),
    radial-gradient(circle at 86% 20%, rgba(50, 86, 171, 0.24), transparent 31%);
  content: "";
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.64fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}
.hero-content { max-width: 720px; padding-bottom: 98px; }
.hero-content h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(54px, 5.7vw, 78px);
  line-height: 0.97;
  letter-spacing: -0.052em;
}
.hero-lead { max-width: 610px; margin-bottom: 28px; color: #c8d3d6; font-size: 19px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-contact-line { display: flex; flex-wrap: wrap; gap: 10px; color: #dce3e5; font-size: 13px; font-weight: 700; }
.hero-operation {
  align-self: stretch;
  margin-bottom: 72px;
  padding: 36px 0 34px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-operation-label {
  margin-bottom: 22px;
  color: var(--brand-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero-operation h2 {
  max-width: 430px;
  margin-bottom: 34px;
  color: #fff;
  font-size: clamp(29px, 3.1vw, 43px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.hero-operation dl { margin: 0 0 30px; border-top: 1px solid rgba(255, 255, 255, 0.17); }
.hero-operation dl div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.hero-operation dt { color: #84979d; font-size: 10px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-operation dd { margin: 0; color: #ecf1f2; font-size: 13px; font-weight: 750; }
.hero-operation a:hover { color: var(--brand-green); }
.hero-location-link { color: #fff; font-size: 13px; font-weight: 850; }
.hero-location-link span { margin-left: 7px; color: var(--brand-green); }
.availability-search {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(125px, 0.82fr)) auto;
  align-items: stretch;
  margin-top: -32px;
  padding: 12px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--surface);
  box-shadow: 0 -12px 38px rgba(0, 0, 0, 0.23);
}
.availability-search label, .search-location,
.trip-editor label, .trip-location {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 10px 16px;
  border-right: 1px solid var(--border);
}
.availability-search label span, .field-label,
.trip-editor label span, .trip-location span {
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.availability-search input, .trip-editor input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}
.search-location strong, .trip-location strong { color: var(--ink); }
.search-location small { color: var(--text-muted); }
.availability-search .button, .trip-editor .button { align-self: stretch; min-height: 58px; }
.search-error, .trip-error { grid-column: 1 / -1; margin: 7px 8px 0; }

.benefit-strip { border-bottom: 1px solid var(--border); background: var(--surface); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit-grid > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 14px;
  align-content: center;
  min-height: 124px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}
.benefit-grid > div:first-child { border-left: 1px solid var(--border); }
.benefit-grid span { grid-row: 1 / 3; color: var(--brand-blue); font-size: 12px; font-weight: 900; }
.benefit-grid strong { color: var(--ink); font-size: 15px; }
.benefit-grid small { color: var(--text-muted); font-size: 12px; }

.featured-section { background: var(--surface-warm); }
.vehicle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(7, 24, 32, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.vehicle-card:hover { border-color: #c4cfcc; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.vehicle-card-media { position: relative; display: grid; height: 220px; overflow: hidden; place-items: center; background: #e7ecea; }
.vehicle-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(7, 24, 32, 0.3));
  content: "";
  pointer-events: none;
}
.vehicle-card-media img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 360ms ease; }
.vehicle-card:hover .vehicle-card-media img { transform: scale(1.025); }
.vehicle-media-status { position: absolute; right: 16px; bottom: 14px; z-index: 1; }
.vehicle-card-body { padding: 25px; }
.vehicle-card-heading { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.vehicle-card-heading h3 { margin: 8px 0 0; font-size: 23px; line-height: 1.12; }
.vehicle-category { color: var(--brand-blue); font-size: 10px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.status-badge.available { background: var(--success-soft); color: var(--success); }
.status-badge.available::before { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-green-dark); content: ""; }
.status-badge.inactive { background: var(--danger-soft); color: var(--danger); }
.vehicle-inline-specs { display: flex; flex-wrap: wrap; gap: 7px 15px; margin: 20px 0 14px; padding: 0; color: #53666d; font-size: 13px; list-style: none; }
.vehicle-inline-specs li + li::before { margin-right: 15px; color: var(--border-strong); content: "•"; }
.vehicle-location { display: flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: 12px; }
.vehicle-rate-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.vehicle-rate-row > div { display: flex; align-items: baseline; gap: 7px; }
.vehicle-rate-row strong { color: var(--ink); font-size: 28px; letter-spacing: -0.04em; }
.vehicle-rate-row span, .vehicle-rate-row small { color: var(--text-muted); font-size: 12px; }
.vehicle-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 220px;
  place-items: center;
  align-content: center;
  background: linear-gradient(145deg, #eaf0fb, #eef2e7);
  color: var(--text-muted);
  text-align: center;
}
.vehicle-fallback strong { margin-top: 11px; color: var(--ink-soft); }
.vehicle-fallback small { margin-top: 3px; }
.fallback-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-section { border-block: 1px solid var(--border); background: var(--surface-muted); }
.process-layout { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr); gap: 90px; align-items: start; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--border-strong); list-style: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--border); }
.process-list li > span { color: var(--brand-blue); font-size: 12px; font-weight: 900; }
.process-list strong { color: var(--ink); font-size: 20px; }
.process-list p { margin: 7px 0 0; }

.requirements-section { background: var(--ink); }
.requirements-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 100px; align-items: center; }
.requirements-intro h2 { color: #fff; }
.requirements-intro > p:not(.eyebrow) { max-width: 600px; color: #b9c7ca; font-size: 17px; }
.requirements-intro .button { margin-top: 15px; border-color: #718186; color: #fff; }
.requirements-list { border-top: 1px solid rgba(255, 255, 255, 0.2); }
.requirements-list > div { display: grid; grid-template-columns: 48px 0.8fr 1fr; gap: 22px; align-items: center; padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.requirements-list span { color: var(--brand-green); font-size: 12px; font-weight: 900; }
.requirements-list strong { color: #fff; font-size: 18px; }
.requirements-list p { margin: 0; color: #aebdc0; }

.location-section { background: var(--surface-warm); }
.location-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: stretch; }
.location-copy { align-self: center; }
.location-copy > p:not(.eyebrow) { max-width: 570px; font-size: 17px; }
.office-details { margin: 32px 0; border-top: 1px solid var(--border); }
.office-details div { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.office-details dt { color: var(--text-muted); font-size: 11px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.office-details dd { margin: 0; color: var(--ink); font-weight: 700; }
.office-details a { color: var(--brand-blue); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.map-frame { min-height: 470px; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface-muted); box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.page-hero { padding: 84px 0 76px; background: var(--ink); }
.page-hero-layout { display: grid; grid-template-columns: 1.15fr 0.65fr; gap: 70px; align-items: end; }
.page-hero h1 { max-width: 850px; margin: 0; color: #fff; font-size: clamp(50px, 6.6vw, 86px); line-height: 0.94; }
.page-hero p:not(.eyebrow) { max-width: 540px; margin: 0 0 6px; color: #b9c7ca; font-size: 17px; }
.fleet-workspace, .vehicle-page, .lookup-page { background: var(--surface-warm); }
.fleet-workspace { padding: 0 0 100px; }
.trip-editor {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(125px, 0.8fr)) auto;
  align-items: stretch;
  margin-top: -30px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.availability-note { display: flex; gap: 13px; align-items: start; margin: 28px 0 34px; padding: 16px 18px; border-left: 3px solid var(--brand-green); background: #f3f6ed; }
.availability-note > span { display: grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; border: 1px solid var(--brand-green-dark); border-radius: 50%; color: var(--success); font-size: 12px; font-weight: 900; }
.availability-note p { margin: 0; color: #52655a; font-size: 13px; }
.fleet-layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 44px; align-items: start; }
.filters-panel { position: sticky; top: 104px; padding: 0; }
.filters-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 2px solid var(--ink); }
.filters-heading > div { display: grid; }
.filters-heading span, .filters-panel label > span, .sort-control span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.filters-heading strong { color: var(--ink); font-size: 24px; letter-spacing: -0.03em; }
.link-button { padding: 0 0 2px; border: 0; background: transparent; color: var(--brand-blue); font-size: 12px; font-weight: 800; }
.filters-panel label { display: grid; gap: 8px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.filters-panel input, .filters-panel select, .sort-control select,
.lookup-card input, .reservation-form input, .reservation-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.money-input { position: relative; }
.money-input > span { position: absolute; top: 50%; left: 13px; color: var(--text-muted); transform: translateY(-50%); }
.money-input input { padding-left: 28px; }
.results-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.results-toolbar h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; }
.sort-control { display: grid; flex: 0 0 190px; gap: 7px; }
.fleet-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.fleet-grid .vehicle-card-media { height: 190px; }
.fleet-grid .vehicle-card-body { padding: 21px; }
.fleet-grid .vehicle-card-heading h3 { font-size: 20px; }

.state-panel { grid-column: 1 / -1; display: grid; min-height: 240px; padding: 48px; place-items: center; align-content: center; border: 1px dashed var(--border-strong); border-radius: var(--radius-md); background: var(--surface); text-align: center; }
.state-panel strong { color: var(--ink); font-size: 20px; }
.state-panel p { max-width: 520px; margin: 8px 0 18px; }
.error-state { border-color: #dfafb7; background: #fff9fa; }
.loading-spinner { width: 24px; height: 24px; margin-bottom: 14px; border: 3px solid var(--border); border-top-color: var(--brand-blue); border-radius: 50%; animation: spin 0.75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.vehicle-page { padding: 32px 0 110px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; padding: 14px 0 28px; color: var(--text-muted); font-size: 13px; }
.breadcrumb a { color: var(--brand-blue); font-weight: 800; }
.vehicle-gallery { position: relative; overflow: hidden; margin-bottom: 0; border-radius: var(--radius-lg); background: #e5ebe9; }
.vehicle-gallery figure { display: grid; min-width: 0; margin: 0; overflow: hidden; place-items: center; background: #e5ebe9; }
.vehicle-gallery img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-one, .gallery-zero { height: clamp(360px, 48vw, 640px); }
.gallery-two { display: grid; height: clamp(360px, 48vw, 640px); grid-template-columns: 1.5fr 0.8fr; gap: 3px; }
.gallery-many { display: grid; height: clamp(420px, 48vw, 640px); grid-template-columns: 1.55fr 0.8fr; gap: 3px; }
.gallery-feature { grid-row: 1 / 3; }
.gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.gallery-button { position: absolute; right: 18px; bottom: 18px; min-height: 42px; border-color: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px); }
.vehicle-summary { display: flex; align-items: end; justify-content: space-between; gap: 38px; padding: 40px 0 46px; border-bottom: 1px solid var(--border); }
.vehicle-summary h1 { margin: 14px 0 12px; font-size: clamp(44px, 5.5vw, 74px); line-height: 0.96; }
.summary-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.summary-location { display: flex; gap: 8px; align-items: center; margin-bottom: 24px; }
.summary-specs { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.summary-specs li { display: grid; min-width: 120px; padding: 0 24px; border-left: 1px solid var(--border); }
.summary-specs li:first-child { padding-left: 0; border-left: 0; }
.summary-specs strong { color: var(--ink); font-size: 16px; }
.summary-specs span { color: var(--text-muted); font-size: 11px; }
.summary-cta { flex: 0 0 auto; }
.vehicle-content-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, 0.52fr); gap: 70px; padding-top: 64px; }
.vehicle-content { border-top: 1px solid var(--border-strong); }
.content-section { display: grid; grid-template-columns: 58px 1fr; gap: 26px; padding: 40px 0; border-bottom: 1px solid var(--border); }
.section-number { color: var(--brand-blue); font-size: 11px; font-weight: 900; }
.content-section h2 { margin: 0 0 13px; font-size: 31px; }
.content-section p:last-child { margin-bottom: 0; }
.vehicle-detail-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 22px 0 0; border-top: 1px solid var(--border); }
.vehicle-detail-list div { padding: 17px 8px 17px 0; border-bottom: 1px solid var(--border); }
.vehicle-detail-list dt, .rental-info-list dt { color: var(--text-muted); font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.vehicle-detail-list dd, .rental-info-list dd { margin: 4px 0 0; color: var(--ink); font-weight: 750; }
.rental-info-list { display: grid; gap: 18px; margin: 22px 0 0; }
.request-card { position: sticky; top: 106px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.request-pricing { display: grid; grid-template-columns: 1.1fr 0.9fr; padding: 24px; background: var(--ink); }
.request-pricing > div { display: grid; }
.request-pricing > div + div { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, 0.18); }
.request-pricing span, .request-pricing small { color: #aebdc0; font-size: 11px; }
.request-pricing strong { color: #fff; font-size: 29px; letter-spacing: -0.04em; }
.request-heading { padding: 26px 26px 8px; }
.request-heading h2 { margin-bottom: 8px; font-size: 29px; }
.request-heading p:last-child { margin-bottom: 0; }
.request-progress { display: flex; gap: 0; margin: 16px 26px 2px; padding: 0 0 18px; border-bottom: 1px solid var(--border); list-style: none; }
.request-progress li { display: flex; flex: 1; gap: 6px; align-items: center; color: var(--text-muted); font-size: 10px; font-weight: 800; }
.request-progress span { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid var(--border-strong); border-radius: 50%; }
.request-progress .active { color: var(--brand-blue); }
.request-progress .active span { border-color: var(--brand-blue); background: var(--brand-blue); color: #fff; }
.reservation-form { display: grid; gap: 12px; padding: 24px 26px 28px; }
.checkout-step { display: grid; gap: 11px; margin: 0; padding: 0 0 22px; border: 0; border-bottom: 1px solid var(--border); }
.checkout-step legend { width: 100%; margin-bottom: 7px; color: var(--ink); font-size: 14px; font-weight: 850; }
.checkout-step legend span { margin-right: 8px; color: var(--brand-blue); font-size: 10px; }
.reservation-form label, .lookup-card label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.form-row.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.field-error, .form-error { min-height: 0; margin: 0; color: var(--danger); font-size: 12px; }
.form-error:not(:empty), .form-error-summary:not(:empty) { padding: 11px 12px; border-left: 3px solid var(--danger); background: var(--danger-soft); color: var(--danger); font-size: 12px; }
.invalid, [aria-invalid="true"] { border-color: var(--danger) !important; }
.sms-consent, .request-note { margin: 0; color: var(--text-muted); font-size: 12px; }
.request-note strong { color: var(--ink); }
.request-success { margin: 0 26px 28px; padding: 24px; border-left: 4px solid var(--brand-green); background: var(--success-soft); }
.request-success h2 { margin-bottom: 9px; }
.request-number { color: var(--brand-blue); font-weight: 900; }

.lookup-page .section { min-height: 520px; padding-top: 62px; }
.lookup-layout { display: grid; grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr); gap: 34px; align-items: stretch; }
.lookup-card { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.lookup-card h2 { margin-bottom: 12px; font-size: clamp(29px, 3vw, 42px); }
.lookup-card > p { max-width: 660px; }
.lookup-card form, .lookup-card label { width: 100%; }
.lookup-card .button { margin-top: 12px; }
.lookup-result { background: var(--surface-muted); }
.secure-access-note { display: grid; gap: 4px; margin-top: 38px; padding: 20px 0 0; border-top: 1px solid var(--border); }
.secure-access-note strong { color: var(--ink); }
.secure-access-note span { color: var(--text-muted); font-size: 13px; }
.reservation-detail-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 28px 0; border-top: 1px solid var(--border); }
.reservation-detail-list div { padding: 19px 12px 19px 0; border-bottom: 1px solid var(--border); }
.reservation-detail-list dt { color: var(--text-muted); font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.reservation-detail-list dd { margin: 5px 0 0; color: var(--ink); }

.site-footer { padding: 70px 0 26px; background: var(--ink); color: #d7e0e2; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.65fr 0.9fr; gap: 70px; }
.footer-brand .brand-service { color: var(--brand-green); }
.footer-grid > div { display: grid; align-content: start; gap: 11px; }
.footer-grid > div:first-child p { max-width: 360px; margin: 12px 0 0; color: #9fb0b4; }
.footer-grid strong { color: #fff; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { color: #aebdc0; font-size: 13px; }
.footer-grid a:hover { color: var(--brand-green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.13); color: #7f9297; font-size: 11px; }
.site-toast { position: fixed; right: 24px; bottom: 24px; z-index: 300; max-width: min(390px, calc(100% - 48px)); padding: 14px 18px; border-radius: var(--radius-sm); background: var(--ink); color: #fff; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity 160ms ease, transform 160ms ease; }
.site-toast.show { opacity: 1; transform: translateY(0); }
.site-toast.error { background: var(--danger); }

.photos-dialog { width: min(1120px, calc(100% - 30px)); max-height: 90vh; padding: 0; border: 0; border-radius: var(--radius-md); background: var(--surface-warm); box-shadow: var(--shadow-md); }
.photos-dialog::backdrop { background: rgba(7, 24, 32, 0.78); }
.photos-dialog-inner { padding: 28px; }
.dialog-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.dialog-heading h2 { margin: 0; }
.icon-button { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--surface); font-size: 22px; }
.all-photos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.all-photos-grid figure { display: grid; min-height: 260px; margin: 0; overflow: hidden; place-items: center; border-radius: var(--radius-sm); background: #e5ebe9; }
.all-photos-grid img { width: auto; height: auto; max-width: 100%; max-height: 360px; object-fit: contain; }

@media (max-width: 1160px) {
  .desktop-nav { gap: 18px; }
  .parent-site-link { display: none; }
  .hero-layout { grid-template-columns: 1fr minmax(320px, 0.62fr); gap: 48px; }
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .desktop-nav, .parent-site-link { display: none; }
  .menu-button { display: block; }
  .container, .header-inner, .utility-inner { width: min(var(--container), calc(100% - 40px)); }
  .hero-layout { grid-template-columns: 1fr 0.72fr; gap: 36px; }
  .hero-content h1 { font-size: clamp(50px, 7vw, 66px); }
  .hero-operation { padding-left: 30px; }
  .availability-search, .trip-editor { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search-location, .trip-location, .availability-search .button,
  .trip-editor .button { grid-column: 1 / -1; }
  .availability-search label:nth-of-type(2), .availability-search label:nth-of-type(4),
  .trip-editor label:nth-of-type(2), .trip-editor label:nth-of-type(4) { border-right: 0; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid > div:nth-child(2) { border-right: 1px solid var(--border); }
  .benefit-grid > div:nth-child(n+3) { border-top: 1px solid var(--border); }
  .process-layout, .requirements-layout, .location-layout { gap: 54px; }
  .fleet-layout { grid-template-columns: 1fr; gap: 34px; }
  .filters-panel { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 22px; }
  .filters-heading { grid-column: 1 / -1; }
  .vehicle-content-layout { grid-template-columns: 1fr; }
  .request-card { position: static; }
}

@media (max-width: 760px) {
  .container, .header-inner, .utility-inner { width: min(100% - 30px, var(--container)); }
  .utility-inner > div > span:first-child { display: none; }
  .header-inner { min-height: 72px; }
  .brand-logo { width: 188px; }
  .brand-service { margin-left: 32px; }
  .text-call { display: none; }
  .home-hero { padding-top: 58px; }
  .hero-layout { display: block; }
  .hero-content { max-width: none; padding-bottom: 42px; }
  .hero-content h1 { max-width: 620px; font-size: clamp(46px, 11vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-operation { margin-bottom: 48px; padding: 30px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .hero-operation h2 { max-width: 560px; }
  .availability-search { margin-top: 0; }
  .section { padding: 72px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .section-heading h2, .section-heading.stacked h2,
  .requirements-intro h2, .location-copy h2 { font-size: clamp(36px, 9vw, 50px); }
  .process-layout, .requirements-layout, .location-layout,
  .page-hero-layout, .lookup-layout { grid-template-columns: 1fr; }
  .requirements-list > div { grid-template-columns: 42px 1fr; }
  .requirements-list p { grid-column: 2; }
  .map-frame { min-height: 350px; }
  .page-hero { padding: 66px 0 64px; }
  .page-hero-layout { gap: 24px; }
  .page-hero h1 { font-size: clamp(46px, 12vw, 68px); }
  .page-hero p:not(.eyebrow) { font-size: 16px; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-summary { align-items: start; flex-direction: column; }
  .summary-cta { width: 100%; }
  .gallery-many, .gallery-two { height: auto; grid-template-columns: 1fr; }
  .gallery-many .gallery-feature, .gallery-two figure { height: 360px; }
  .gallery-thumbs { height: 200px; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container, .header-inner, .utility-inner { width: min(100% - 24px, var(--container)); }
  .utility-bar { display: none; }
  .header-inner { min-height: 68px; gap: 12px; }
  .brand-logo { width: 166px; }
  .brand-service { margin-left: 28px; font-size: 8px; }
  .header-button { display: none; }
  .mobile-nav { padding-inline: 18px; }
  .home-hero { padding-top: 48px; }
  .hero-content h1 { font-size: clamp(43px, 12vw, 54px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-contact-line { font-size: 12px; }
  .hero-operation { padding-top: 26px; }
  .hero-operation h2 { font-size: 30px; }
  .hero-operation dl div { grid-template-columns: 80px 1fr; }
  .availability-search, .trip-editor { grid-template-columns: 1fr; padding: 10px; }
  .availability-search label, .search-location, .trip-editor label, .trip-location { grid-column: auto; padding: 11px 8px; border-right: 0; border-bottom: 1px solid var(--border); }
  .availability-search .button, .trip-editor .button { grid-column: auto; margin-top: 6px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid > div { min-height: 104px; border-top: 1px solid var(--border); }
  .benefit-grid > div:first-child { border-top: 0; }
  .vehicle-card-media { height: 200px; }
  .vehicle-card-body { padding: 21px; }
  .vehicle-card-heading h3 { font-size: 22px; }
  .vehicle-rate-row { align-items: start; flex-direction: column; gap: 5px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 12px; }
  .requirements-layout, .location-layout { gap: 44px; }
  .button-row .button { width: 100%; }
  .office-details div { grid-template-columns: 1fr; gap: 4px; }
  .page-hero { padding: 54px 0; }
  .page-hero h1 { font-size: clamp(42px, 12.4vw, 56px); }
  .fleet-workspace { padding-bottom: 72px; }
  .filters-panel { grid-template-columns: 1fr; }
  .filters-heading { grid-column: auto; }
  .results-toolbar { align-items: stretch; flex-direction: column; }
  .sort-control { flex-basis: auto; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-grid .vehicle-card-media { height: 190px; }
  .gallery-one, .gallery-zero, .gallery-many .gallery-feature,
  .gallery-two figure { height: 270px; }
  .gallery-thumbs { height: 150px; }
  .vehicle-summary { padding: 28px 0 36px; }
  .vehicle-summary h1 { font-size: clamp(40px, 12vw, 55px); }
  .summary-specs { width: 100%; }
  .summary-specs li { width: 50%; min-width: 0; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--border); border-left: 0; }
  .vehicle-content-layout { gap: 44px; padding-top: 40px; }
  .content-section { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
  .vehicle-detail-list { grid-template-columns: 1fr; }
  .request-pricing { grid-template-columns: 1fr; gap: 15px; }
  .request-pricing > div + div { padding: 15px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.18); border-left: 0; }
  .request-heading { padding-inline: 20px; }
  .request-progress { margin-inline: 20px; }
  .reservation-form { padding-inline: 20px; }
  .form-row.two-up { grid-template-columns: 1fr; }
  .lookup-page .section { padding-top: 42px; }
  .lookup-card { padding: 25px 20px; }
  .reservation-detail-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .all-photos-grid { grid-template-columns: 1fr; }
  .all-photos-grid img { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
