.booking-section {
  padding: 110px 8vw;
  background: #075c5a;
  color: #fff;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
}

.booking-copy h2 { font-size: clamp(36px, 4vw, 58px); }
.booking-copy > p:not(.section-kicker) { color: #c7d9d7; font-size: 18px; }
.booking-rule { border-left: 3px solid #b9d96d; padding-left: 18px; margin-top: 40px; }
.booking-rule strong, .booking-rule span { display: block; }
.booking-rule span { color: #c7d9d7; font-size: 13px; }
.booking-form { background: #fff; color: #142b2d; padding: 42px; }
.booking-form label { display: block; margin-bottom: 20px; }
.booking-form label > span { display: block; font-size: 12px; font-weight: 800; margin-bottom: 7px; }
.booking-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 5px 0 24px; }
.booking-checks label { display: flex; align-items: center; gap: 8px; border: 1px solid #d8dfda; padding: 12px; margin: 0; cursor: pointer; }
.booking-checks input { width: auto; }
.booking-checks label > span { margin: 0; font-weight: 600; }
.booking-button { width: 100%; }
.booking-status { text-align: center; color: #087f7b; min-height: 24px; margin: 15px 0 0; }
.date-picker { border: 1px solid #d8dfda; padding: 20px; margin-bottom: 24px; }
.date-picker-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.date-picker-label > span { font-size: 12px; font-weight: 800; }
.date-picker-label small { color: #687a7b; }
.calendar-header { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; text-align: center; margin-bottom: 12px; }
.calendar-header button { width: 38px; height: 38px; border: 1px solid #d8dfda; background: #fff; color: #142b2d; font-size: 24px; cursor: pointer; }
.calendar-header button:disabled { opacity: .3; cursor: default; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.calendar-weekdays { text-align: center; color: #687a7b; font-size: 10px; font-weight: 800; margin-bottom: 5px; }
.calendar-grid button { aspect-ratio: 1; border: 1px solid transparent; background: #f7f5ef; color: #142b2d; font-weight: 700; cursor: pointer; }
.calendar-grid button:hover:not(:disabled) { border-color: #087f7b; }
.calendar-grid button.selected { background: #087f7b; color: #fff; }
.calendar-grid button:disabled { color: #adb8b5; background: #fafafa; cursor: default; }
.selected-dates { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; min-height: 31px; }
.selected-dates button { border: 0; background: #edf7f5; color: #075c5a; padding: 7px 9px; font: 700 11px "DM Sans", sans-serif; cursor: pointer; }
.selected-dates button span { color: #f1735b; margin-left: 5px; font-size: 14px; }
.no-dates { color: #687a7b; font-size: 12px; }

@media (max-width: 980px) {
  .booking-section { gap: 5vw; }
  .booking-form { padding: 30px; }
}

@media (max-width: 700px) {
  .booking-section { padding: 72px 6vw; grid-template-columns: 1fr; }
  .booking-form { padding: 25px 20px; }
  .booking-checks { grid-template-columns: 1fr; }
  .date-picker { padding: 14px 10px; }
  .date-picker-label { display: block; }
  .date-picker-label small { display: block; }
}
