:root {
  --ink: #11191b;
  --muted: #647175;
  --line: #dce4e2;
  --paper: #f4f6f5;
  --card: #ffffff;
  --teal: #0d6263;
  --teal-dark: #082f32;
  --teal-soft: #e8f0ee;
  --orange: #e9a23b;
  --orange-dark: #9a6117;
  --red: #a84842;
  --red-soft: #f6e3e0;
  --green: #23694e;
  --green-soft: #e2f1e9;
  --shadow: 0 20px 55px rgba(17, 25, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(233, 162, 59, 0.85);
  outline-offset: 3px;
}

.site-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topline {
  min-height: 36px;
  background: var(--ink);
  color: #dce5e4;
  font-size: 12px;
}

.topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 36px;
}

.topline-links {
  display: flex;
  gap: 22px;
}

.topline a,
.contact-details a,
.footer-links a {
  transition: color 0.2s ease;
}

.topline a:hover,
.contact-details a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 36px;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: #ffffff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand > span:last-child {
  display: grid;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover {
  color: #ffffff;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  background: var(--orange);
  color: #171311;
}

.primary-button:hover {
  background: #f2b14e;
  transform: translateY(-1px);
}

.primary-button:disabled {
  opacity: 0.58;
  transform: none;
}

.ghost-button {
  border-color: rgba(255, 255, 255, 0.44);
  color: #ffffff;
}

.ghost-button:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  min-height: 40px;
  padding: 0 15px;
}

.mobile-nav,
.mobile-reserve {
  display: none;
}

.hero-section {
  position: relative;
  height: calc(100svh - 72px);
  min-height: 640px;
  max-height: 760px;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center bottom;
}

.hero-overlay {
  background: rgba(5, 18, 20, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 92px;
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
}

.hero-proof span {
  min-width: 135px;
}

.hero-proof strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 17px;
}

.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 23px 0;
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  display: grid;
  flex: 0 0 39px;
  place-items: center;
  width: 39px;
  height: 39px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 13px;
}

.fleet-section,
.process-section,
.faq-section {
  padding-top: 100px;
  padding-bottom: 105px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
}

.section-heading h2,
.service-copy h2,
.contact-section h2 {
  max-width: 720px;
  margin: 0;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.fleet-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.fleet-toolbar > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.fleet-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.fleet-filters button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.fleet-filters button:hover,
.fleet-filters button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

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

.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.vehicle-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #d9dfde;
}

.vehicle-photo::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 20, 0.2);
  content: "";
}

.vehicle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.vehicle-card:hover .vehicle-photo img {
  transform: scale(1.035);
}

.vehicle-photo span {
  position: absolute;
  z-index: 1;
  bottom: 15px;
  left: 17px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 850;
}

.vehicle-photo small {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  padding: 6px 8px;
  background: rgba(8, 28, 30, 0.76);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-card-body {
  padding: 21px;
}

.vehicle-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-category,
.vehicle-count {
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-count {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.vehicle-card h3 {
  min-height: 50px;
  margin: 16px 0 0;
  font-size: 21px;
  line-height: 1.18;
}

.vehicle-note {
  min-height: 65px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  line-height: 1.35;
}

.vehicle-specs span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.vehicle-specs small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vehicle-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  margin-top: 18px;
}

.vehicle-card-footer p {
  display: grid;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.vehicle-card-footer p strong {
  color: var(--ink);
  font-size: 21px;
}

.vehicle-card-footer button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  background: transparent;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
}

.vehicle-card-footer button:hover {
  background: var(--teal);
  color: #ffffff;
}

.photo-disclaimer {
  margin: 18px 0 0;
  color: #7b878a;
  font-size: 10px;
}

.booking-section {
  padding: 100px 0 105px;
  background: var(--teal-dark);
  color: #ffffff;
}

.booking-heading .eyebrow {
  color: var(--orange);
}

.booking-heading > p {
  color: rgba(255, 255, 255, 0.69);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-top: 48px;
  overflow: hidden;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.booking-calendar-panel,
.booking-form {
  padding: 34px;
}

.booking-calendar-panel {
  background: #edf3f1;
}

.booking-form {
  display: grid;
  align-content: start;
  gap: 15px;
}

.booking-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.booking-panel-heading .eyebrow {
  margin-bottom: 7px;
}

.booking-panel-heading h3 {
  margin: 0;
  font-size: 27px;
}

.availability-status,
.price-estimate {
  flex: 0 0 auto;
  padding: 8px 10px;
  background: #d9e8e5;
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.availability-status.is-error {
  background: var(--red-soft);
  color: var(--red);
}

.price-estimate {
  background: #fff0d7;
  color: var(--orange-dark);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.selected-vehicle-note {
  display: grid;
  gap: 3px;
  margin: 17px 0 16px;
  padding: 11px 12px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.selected-vehicle-note span {
  color: var(--muted);
}

.availability-error {
  display: grid;
  gap: 3px;
  margin-bottom: 14px;
  padding: 12px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
}

.availability-error a {
  font-weight: 850;
  text-decoration: underline;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin: 12px 0 18px;
  text-transform: capitalize;
}

.calendar-toolbar strong {
  text-align: center;
}

.calendar-toolbar button {
  width: 36px;
  height: 36px;
  border: 1px solid #c9d6d3;
  border-radius: 3px;
  background: #ffffff;
  color: var(--teal);
  font-size: 19px;
  line-height: 1;
}

.calendar-toolbar button:hover:not(:disabled) {
  border-color: var(--teal);
}

.calendar-toolbar button:disabled {
  opacity: 0.38;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.calendar-weekdays {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  text-align: center;
}

.calendar-day,
.calendar-empty {
  min-width: 0;
  aspect-ratio: 1;
}

.calendar-day {
  border: 1px solid transparent;
  border-radius: 3px;
  background: #ffffff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.calendar-day:hover:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal);
}

.calendar-day.is-booked {
  background: var(--red-soft);
  color: var(--red);
  text-decoration: line-through;
}

.calendar-day.is-past {
  background: #e2e8e6;
  color: #a2adaa;
}

.calendar-day.is-selected {
  background: var(--teal);
  color: #ffffff;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 9px;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #c9d6d3;
  background: #ffffff;
}

.legend-dot.booked {
  border-color: #e4b9b5;
  background: var(--red-soft);
}

.legend-dot.selected {
  border-color: var(--teal);
  background: var(--teal);
}

.selected-range {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #cddbd7;
  color: var(--muted);
  font-size: 11px;
}

.selected-range strong {
  color: var(--ink);
  text-align: center;
}

.selected-range b {
  padding: 0 4px;
  color: var(--teal);
}

.selected-range button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid #d6dfdd;
  border-radius: 3px;
  outline: none;
  background: #fafcfc;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.booking-form textarea {
  min-height: 82px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 98, 99, 0.1);
}

.form-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.booking-summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
}

.booking-summary.is-error {
  background: var(--red-soft);
  color: var(--red);
}

.full-width {
  width: 100%;
  border: 0;
}

.form-feedback {
  margin: 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
}

.form-feedback.success {
  background: var(--green-soft);
  color: var(--green);
}

.form-feedback.error {
  background: var(--red-soft);
  color: var(--red);
}

.form-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.form-footnote a {
  color: var(--teal);
  font-weight: 750;
}

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

.process-grid article {
  min-height: 210px;
  padding: 26px;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 5px 5px;
  background: #ffffff;
}

.process-grid span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
}

.process-grid h3 {
  margin: 38px 0 10px;
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-section {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: stretch;
  min-height: 580px;
}

.service-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 11px;
  background: rgba(8, 47, 50, 0.84);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 70px 70px;
}

.service-copy h2 {
  font-size: 47px;
}

.service-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-copy ul {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 13px;
}

.service-copy li {
  position: relative;
  padding-left: 22px;
}

.service-copy li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.text-link {
  align-self: flex-start;
  margin-top: 30px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--teal);
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.faq-section {
  padding-bottom: 100px;
}

.faq-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--teal);
  font-size: 22px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 760px;
  margin: -3px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.contact-section {
  padding: 82px 0;
  background: var(--teal-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: end;
  gap: 70px;
}

.contact-section h2 {
  font-size: 50px;
}

.contact-section p:not(.eyebrow) {
  max-width: 590px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 17px;
  padding-left: 28px;
  border-left: 3px solid var(--orange);
}

.contact-details a,
.contact-details span {
  display: grid;
  gap: 5px;
  overflow-wrap: anywhere;
  font-size: 17px;
  font-weight: 850;
}

.contact-details small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 105px;
}

.footer-main .brand {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 62px;
  }

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

  .booking-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-calendar-panel,
  .booking-form {
    padding: 28px;
  }

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

  .service-image {
    min-height: 450px;
  }

  .service-copy {
    padding: 58px 0 70px;
  }

  .contact-grid {
    gap: 35px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 62px;
  }

  .site-container {
    width: min(100% - 28px, 1180px);
  }

  .topline {
    min-height: 50px;
  }

  .topline-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 50px;
    font-size: 10px;
  }

  .topline-links {
    flex-wrap: wrap;
    gap: 4px 14px;
  }

  .site-header {
    top: 50px;
  }

  .nav-inner {
    min-height: 66px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 3px;
    color: #ffffff;
    font-size: 20px;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav > div {
    position: absolute;
    top: 47px;
    right: 0;
    display: grid;
    width: 210px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: var(--teal-dark);
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    padding: 13px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 12px;
    font-weight: 750;
  }

  .hero-section {
    height: calc(100svh - 92px);
    min-height: 530px;
    max-height: 650px;
  }

  .hero-image {
    object-position: 56% bottom;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 80px;
    padding-bottom: 33px;
  }

  .hero-content h1 {
    max-width: 430px;
    font-size: 44px;
    line-height: 1;
  }

  .hero-copy {
    max-width: 450px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button {
    min-height: 42px;
    font-size: 11px;
  }

  .hero-proof {
    gap: 15px 22px;
    margin-top: 28px;
    padding-top: 13px;
  }

  .hero-proof span {
    min-width: 110px;
  }

  .hero-proof strong {
    font-size: 14px;
  }

  .trust-grid,
  .fleet-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 13px;
    padding: 17px 0;
  }

  .fleet-section,
  .process-section,
  .faq-section {
    padding-top: 72px;
    padding-bottom: 75px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .section-heading h2,
  .service-copy h2,
  .contact-section h2 {
    font-size: 37px;
    line-height: 1.06;
  }

  .fleet-toolbar {
    align-items: flex-end;
    margin-top: 30px;
  }

  .fleet-filters {
    padding-bottom: 4px;
  }

  .fleet-grid {
    margin-top: 18px;
  }

  .vehicle-photo {
    height: 220px;
  }

  .vehicle-card h3,
  .vehicle-note {
    min-height: 0;
  }

  .booking-section {
    padding: 72px 0 75px;
  }

  .booking-shell {
    margin-top: 32px;
  }

  .booking-calendar-panel,
  .booking-form {
    padding: 19px;
  }

  .booking-panel-heading h3 {
    font-size: 23px;
  }

  .selected-range {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .selected-range strong {
    text-align: left;
  }

  .selected-range button {
    justify-self: start;
  }

  .form-grid-two {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .process-grid {
    margin-top: 31px;
  }

  .process-grid article {
    min-height: 180px;
  }

  .service-grid {
    width: 100%;
  }

  .service-image {
    min-height: 370px;
  }

  .service-copy {
    width: min(100% - 28px, 1180px);
    margin: 0 auto;
    padding: 48px 0 60px;
  }

  .faq-list {
    margin-top: 30px;
  }

  .faq-list summary {
    min-height: 66px;
    font-size: 14px;
  }

  .contact-section {
    padding: 62px 0;
  }

  .contact-grid {
    gap: 30px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 25px 0;
  }

  .footer-links {
    gap: 15px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 62px;
    background: var(--orange);
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 -10px 30px rgba(17, 25, 27, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
