.booking-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.54), rgba(244, 241, 235, 0.92) 44%, rgba(244, 241, 235, 0.98)),
    url("assets/booking-bg.png") 62% top / cover fixed no-repeat,
    var(--cream);
}

.booking-header {
  color: var(--ink);
  border-color: rgba(5, 5, 5, 0.12);
  background: rgba(255, 250, 242, 0.9);
}

.booking-header .brand img {
  filter: none;
}

.booking-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 28px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 58px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.booking-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.68) 45%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.02) 58%),
    url("assets/booking-bg.png") 64% 38% / cover no-repeat;
  filter: saturate(1.02);
  transform: scale(1.01);
}

.booking-hero-content,
.booking-hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.booking-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.booking-hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.booking-hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.booking-hero-panel span {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-hero-panel strong {
  display: block;
  margin-top: 10px;
  font-family: "Playfair Display", serif;
  font-size: 29px;
  line-height: 1.02;
}

.booking-hero-panel p {
  margin: 14px 0 0;
  color: rgba(255, 250, 242, 0.68);
  line-height: 1.5;
}

.booking-shell {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
  margin: -38px auto 92px;
  position: relative;
  z-index: 2;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-card,
.summary-card,
.support-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 22px 62px rgba(5, 5, 5, 0.1);
  backdrop-filter: blur(18px);
}

.booking-card {
  padding: clamp(22px, 3vw, 34px);
}

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

.booking-card-heading .section-kicker {
  margin-bottom: 9px;
}

.booking-card h2,
.summary-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.booking-card-heading > span {
  min-width: max-content;
  padding: 9px 11px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: 10px;
}

.vehicle-option {
  position: relative;
  min-height: 245px;
  display: grid;
  align-content: start;
  padding: 142px 14px 14px;
  overflow: hidden;
  cursor: pointer;
  color: var(--ivory);
  background:
    radial-gradient(circle at 58% 16%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(150deg, #050505, #292929);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vehicle-option::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 250, 242, 0.1);
  pointer-events: none;
}

.vehicle-option.is-selected {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.22);
}

.vehicle-option.is-selected::after {
  border-color: rgba(255, 253, 248, 0.72);
}

.vehicle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vehicle-option img {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 120%;
  max-width: none;
  height: 106px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.4));
}

.vehicle-option span {
  position: relative;
  z-index: 1;
  color: var(--champagne);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vehicle-option strong {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 0.98;
}

.vehicle-option small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.68);
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field,
.trip-type {
  display: grid;
  gap: 8px;
}

.field.wide,
.trip-type.wide {
  grid-column: 1 / -1;
}

.field span,
.trip-type legend {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(5, 5, 5, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 0;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 112px;
  padding-block: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(5, 5, 5, 0.46);
  background: var(--ivory);
  box-shadow: 0 0 0 4px rgba(5, 5, 5, 0.06);
}

.trip-type {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}

.trip-type legend {
  margin-bottom: 8px;
}

.trip-type label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-right: 8px;
  padding: 0 14px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.trip-type input {
  accent-color: var(--ink);
}

.trip-type label span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.booking-summary {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 14px;
}

.summary-card {
  padding: 26px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(150deg, #050505, #1d1d1d 64%, #343434);
}

.availability-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  color: var(--champagne);
  background: rgba(255, 253, 248, 0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.availability-status svg {
  width: 16px;
  height: 16px;
}

.availability-status.is-limited {
  color: #efe3c7;
}

.availability-status.is-booked {
  color: #f2c7c0;
}

.summary-card > p {
  margin: 14px 0 0;
  color: rgba(255, 250, 242, 0.7);
  line-height: 1.55;
}

.summary-list {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  border: 1px solid rgba(255, 250, 242, 0.12);
}

.summary-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.065);
}

.summary-list dt {
  color: var(--champagne);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  color: rgba(255, 250, 242, 0.82);
  font-weight: 700;
  line-height: 1.35;
}

.summary-submit {
  width: 100%;
  margin-top: 22px;
  color: var(--ink);
}

.booking-note {
  margin-top: 16px;
  padding: 14px;
  color: rgba(255, 250, 242, 0.7);
  background: rgba(255, 253, 248, 0.07);
  font-size: 13px;
  line-height: 1.5;
}

.booking-note.is-confirmed {
  color: var(--ivory);
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.12);
}

.support-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.support-card > svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  color: var(--ivory);
  background: var(--ink);
}

.support-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-card a {
  display: inline-block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.booking-footer {
  margin-top: 0;
}

@media (max-width: 1060px) {
  .vehicle-options {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }
}

@media (max-width: 900px) {
  .booking-hero,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .booking-hero {
    min-height: auto;
    padding: 124px 20px 48px;
  }

  .booking-hero-content,
  .booking-hero-panel {
    width: min(100%, 350px);
  }

  .booking-hero h1 {
    font-size: clamp(37px, 10vw, 42px);
    line-height: 0.98;
  }

  .booking-hero-panel strong {
    font-size: 26px;
  }

  .booking-shell {
    width: calc(100% - 28px);
    margin-top: -26px;
    margin-bottom: 68px;
  }

  .vehicle-options,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .booking-card-heading {
    display: grid;
    gap: 12px;
  }

  .booking-card-heading > span {
    width: max-content;
  }

  .vehicle-option {
    min-height: 222px;
    padding-top: 128px;
  }

  .vehicle-option img {
    width: 88%;
    height: 96px;
  }

  .trip-type label {
    display: flex;
    width: 100%;
    margin: 0 0 8px;
  }

  .summary-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
