.public-shell > .site-header {
  display: none;
}

.vehicle-choice-image.no-image {
  display: grid;
  place-items: center;
  background: #292b2d;
  color: #8d9093;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.reservation-global-header {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 4px solid var(--red);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.reservation-brand {
  display: block;
  width: min(100%, 330px);
}

.reservation-brand img {
  display: block;
  width: 100%;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.reservation-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 28px);
}

.reservation-desktop-nav a {
  position: relative;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
}

.reservation-desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.reservation-desktop-nav a:hover::after {
  transform: scaleX(1);
}

.reservation-header-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.reservation-language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(17, 17, 17, .28);
  background: #fff;
}

.reservation-language-switch a {
  min-width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0 7px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .03em;
}

.reservation-language-switch a.active {
  color: #fff;
  background: #111;
}

.reservation-language-switch a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.reservation-current {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.reservation-mobile-menu {
  display: none;
}

.vehicle-picker {
  min-width: 0;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.vehicle-picker legend {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
}

.vehicle-picker legend em {
  color: var(--red);
  font-style: normal;
  font-size: 10px;
}

.vehicle-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vehicle-choice {
  display: block !important;
  cursor: pointer;
}

.vehicle-choice > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vehicle-choice-card {
  position: relative;
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--line);
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vehicle-choice:hover .vehicle-choice-card {
  border-color: #111;
  transform: translateY(-3px);
}

.vehicle-choice > input:focus-visible + .vehicle-choice-card {
  outline: 3px solid rgba(230, 0, 18, .25);
  outline-offset: 2px;
}

.vehicle-choice > input:checked + .vehicle-choice-card {
  border-color: var(--red);
  box-shadow: 6px 6px 0 var(--red);
}

.vehicle-choice-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e6e0;
}

.vehicle-choice-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vehicle-choice-copy {
  display: grid;
  gap: 5px;
  min-height: 112px;
  padding: 14px;
}

.vehicle-choice-copy strong {
  font-size: 14px;
  letter-spacing: .04em;
}

.vehicle-choice-copy small {
  min-height: 32px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.vehicle-choice-copy b {
  margin-top: auto;
  color: var(--red);
  font-size: 13px;
}

.vehicle-choice-card > i {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 5px 7px;
  color: #fff;
  background: rgba(16, 16, 16, .84);
  font: normal 8px monospace;
  letter-spacing: .08em;
}

.vehicle-choice > input:checked + .vehicle-choice-card > i {
  background: var(--red);
}

.form-support-copy {
  align-self: end;
  padding: 14px 16px;
  color: var(--muted);
  border-left: 3px solid var(--red);
  background: #ece9e2;
  font-size: 11px;
  line-height: 1.7;
}

.availability-calendar[hidden] {
  display: none;
}

.availability-calendar {
  margin: 0 0 30px;
  padding: clamp(18px, 3vw, 28px);
  border: 2px solid #111;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(230, 0, 18, .16);
}

.calendar-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid #111;
}

.calendar-heading .eyebrow {
  margin: 0 0 7px;
}

.calendar-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -.04em;
}

.calendar-navigation {
  display: grid;
  grid-template-columns: 42px minmax(120px, auto) 42px;
  align-items: center;
  gap: 8px;
}

.calendar-navigation strong {
  text-align: center;
  font-size: 15px;
}

.calendar-navigation button {
  width: 42px;
  height: 42px;
  border: 1px solid #111;
  color: #fff;
  background: #111;
  cursor: pointer;
  font-weight: 900;
}

.calendar-navigation button:hover:not(:disabled) {
  border-color: var(--red);
  background: var(--red);
}

.calendar-navigation button:disabled {
  cursor: not-allowed;
  opacity: .25;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 16px 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

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

.calendar-legend i {
  width: 11px;
  height: 11px;
  display: block;
  border: 1px solid rgba(0, 0, 0, .12);
}

.legend-available {
  background: #dff4e8;
}

.legend-unavailable {
  background: #ffe1e1;
}

.legend-selected {
  background: var(--red);
}

.legend-past {
  background: #e4e3df;
}

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

.calendar-weekdays {
  margin-bottom: 5px;
}

.calendar-weekdays span {
  padding: 7px 0;
  color: #666;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.calendar-weekdays span:first-child {
  color: var(--red);
}

.calendar-weekdays span:last-child {
  color: #2465a6;
}

.calendar-blank {
  min-height: 48px;
}

.calendar-day {
  position: relative;
  min-height: 50px;
  padding: 5px;
  border: 1px solid transparent;
  color: #111;
  background: #f0efeb;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.calendar-day.available {
  border-color: #9bd1b4;
  background: #dff4e8;
}

.calendar-day.available:hover {
  z-index: 1;
  border-color: #16784a;
  background: #c5ecd6;
  transform: translateY(-2px);
}

.calendar-day.unavailable {
  color: #9b3838;
  border-color: #efb3b3;
  background: #ffe1e1;
}

.calendar-day.past,
.calendar-day.loading {
  color: #aaa;
  border-color: #ddd;
  background: #e8e7e3;
}

.calendar-day:disabled {
  cursor: not-allowed;
}

.calendar-day.sunday:not(.range-start):not(.range-end) {
  color: #b40000;
}

.calendar-day.saturday:not(.range-start):not(.range-end) {
  color: #174f91;
}

.calendar-day.in-range {
  border-color: #f27a84;
  background: #ffd3d7;
}

.calendar-day.range-start,
.calendar-day.range-end {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 2px #fff;
}

.calendar-help {
  min-height: 22px;
  margin: 15px 0 0;
  padding-left: 12px;
  border-left: 3px solid #111;
  color: #555;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.8;
}

.calendar-help.available {
  color: var(--green);
  border-color: var(--green);
}

.calendar-help.unavailable {
  color: var(--red);
  border-color: var(--red);
}

.calendar-help.selecting,
.calendar-help.loading {
  border-color: #d48b00;
}

.calendar-loading {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #666;
  background: #f2f1ed;
  font-size: 12px;
  font-weight: 800;
}

.calendar-loading.error {
  color: var(--red);
  background: #fff0f0;
}

.booking-form input[readonly] {
  color: #111;
  background: #f0efeb;
  cursor: default;
}

@media (max-width: 1120px) {
  .reservation-global-header {
    grid-template-columns: minmax(210px, 320px) 1fr auto;
  }

  .reservation-desktop-nav {
    display: none;
  }

  .reservation-current {
    display: none;
  }

  .reservation-mobile-menu {
    position: relative;
    display: block;
  }

  .reservation-mobile-menu summary {
    display: grid;
    width: 54px;
    height: 48px;
    place-items: center;
    color: #fff;
    background: #111;
    cursor: pointer;
    list-style: none;
    font: 800 9px monospace;
    letter-spacing: .1em;
  }

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

  .reservation-mobile-menu nav {
    position: absolute;
    top: calc(100% + 17px);
    right: 0;
    width: min(320px, 88vw);
    padding: 12px;
    border-top: 4px solid var(--red);
    background: #111;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  }

  .reservation-mobile-menu nav a {
    display: block;
    padding: 14px 12px;
    color: #fff;
    border-bottom: 1px solid #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
  }
}

@media (max-width: 760px) {
  .reservation-global-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 0 10px;
  }

  .reservation-brand {
    max-width: 230px;
  }

  .reservation-brand img {
    height: 58px;
  }

  .reservation-current {
    display: none;
  }

  .reservation-header-actions {
    gap: 6px;
  }

  .reservation-language-switch {
    padding: 2px;
  }

  .reservation-language-switch a {
    min-width: 30px;
    height: 28px;
    padding: 0 5px;
    font-size: 8px;
  }

  .vehicle-choice-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-choice-card {
    grid-template-columns: 132px 1fr;
  }

  .vehicle-choice-image {
    height: 100%;
    min-height: 124px;
    aspect-ratio: auto;
  }

  .vehicle-choice-copy {
    min-height: 124px;
  }

  .form-support-copy {
    margin-top: -12px;
  }

  .availability-calendar {
    padding: 15px 10px;
    box-shadow: 5px 5px 0 rgba(230, 0, 18, .16);
  }

  .calendar-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-navigation {
    grid-template-columns: 42px 1fr 42px;
  }

  .calendar-legend {
    gap: 8px 12px;
  }

  .calendar-weekdays,
  .calendar-days {
    gap: 3px;
  }

  .calendar-day {
    min-height: 43px;
    font-size: 12px;
  }

  .calendar-blank {
    min-height: 43px;
  }
}
