.booking-intro-grid,
.booking-planner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.booking-choice-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.booking-choice-stack {
  display: grid;
  gap: 0.85rem;
}

.booking-step {
  margin: 0;
  padding: 1.4rem;
  border: 1px solid rgba(230, 126, 34, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.booking-step + .booking-step {
  margin-top: 1rem;
}

.booking-step legend {
  padding: 0 0 1rem;
}

.booking-step__label,
.booking-step__title {
  display: block;
}

.booking-step__label {
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-orange);
}

.booking-step__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.booking-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-choice label {
  display: block;
  height: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(230, 126, 34, 0.12);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.94);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.booking-choice input:checked + label {
  border-color: rgba(230, 126, 34, 0.46);
  box-shadow: 0 18px 34px rgba(126, 75, 24, 0.12);
  transform: translateY(-2px);
}

.booking-choice__media {
  aspect-ratio: 4 / 3;
  margin: 0 0 0.9rem;
  overflow: hidden;
  border-radius: 16px;
}

.booking-choice__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-choice__content {
  display: grid;
  gap: 0.3rem;
}

.booking-choice__content strong {
  font-size: 1.4rem;
}

.booking-summary-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(107, 62, 38, 0.98), rgba(166, 88, 31, 0.96));
  color: #fff7ea;
  box-shadow: var(--shadow-strong);
}

.booking-summary-list {
  display: grid;
  gap: 0.85rem;
}

.booking-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-summary-item span {
  color: rgba(255, 247, 234, 0.76);
}

.booking-summary-note {
  margin-top: 1rem;
}

.booking-summary-footnote {
  margin: 1rem 0 0;
  color: rgba(255, 247, 234, 0.78);
}

.booking-summary-footnote a {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 981px) {
  .booking-planner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}
