.blh-booking {
  --blh-forest: #13261a;
  --blh-forest-soft: #1d3525;
  --blh-ink: #172016;
  --blh-muted: #536150;
  --blh-gold: #d7b77c;
  --blh-paper: #fbf7ef;
  --blh-line: #e6dfd1;
  --blh-opu-blue: #23599a;
  --blh-opu-pale: #e6effb;
  box-sizing: border-box;
  max-width: 1160px;
  margin: 32px auto;
  padding: 0 0 24px;
  border: 1px solid var(--blh-line);
  border-radius: 25px;
  overflow: hidden;
  background: var(--blh-paper);
  color: var(--blh-ink);
  font-family: "Open Sans", Arial, sans-serif;
  box-shadow: 0 20px 55px rgba(19, 38, 26, .09);
}
.blh-booking *, .blh-booking *::before, .blh-booking *::after { box-sizing: border-box; }
.blh-booking__intro {
  margin: 0 0 25px;
  padding: 37px 43px 36px;
  background: radial-gradient(circle at 96% 12%, #294633 0, transparent 38%), var(--blh-forest);
  color: #fff;
}
.blh-booking__eyebrow {
  margin: 0 0 13px;
  color: var(--blh-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.blh-booking h2 {
  margin: 0 0 13px;
  color: #fff;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 400;
  line-height: 1.2;
}
.blh-booking__intro > p:last-child {
  max-width: 750px;
  margin: 0;
  color: #f0eee6;
  font-size: 15px;
  line-height: 1.7;
}
.blh-booking__layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 20px;
  align-items: start;
  padding: 0 24px;
}
.blh-booking__panel {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--blh-line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(19, 38, 26, .035);
}
.blh-booking__panel h3 {
  margin: 0 0 18px;
  color: var(--blh-forest);
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
}
.blh-booking__calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.blh-booking__calendar-top h3 { margin: 0; text-align: center; text-transform: capitalize; }
.blh-booking__nav {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #dbc8a4;
  border-radius: 50%;
  background: var(--blh-paper);
  color: var(--blh-forest);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.blh-booking__nav:disabled { opacity: .4; cursor: default; }
.blh-booking__weekdays, .blh-booking__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}
.blh-booking__weekdays { margin-bottom: 6px; text-align: center; color: var(--blh-muted); font-size: 11px; font-weight: 700; }
.blh-booking__blank { min-height: 51px; }
.blh-booking__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 51px;
  gap: 2px;
  padding: 2px;
  border: 1px solid #eee8dc;
  border-radius: 10px;
  background: var(--blh-paper);
  color: var(--blh-forest);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.blh-booking__day small { font-size: 9px; font-weight: 800; letter-spacing: .09em; line-height: 1; }
.blh-booking__day.is-opu { border-color: #c6d9f0; background: var(--blh-opu-pale); color: var(--blh-opu-blue); }
.blh-booking__day.is-selected { border-color: var(--blh-forest); box-shadow: inset 0 0 0 1px var(--blh-forest); }
.blh-booking__day.is-opu.is-selected { border-color: var(--blh-opu-blue); background: var(--blh-opu-blue); box-shadow: inset 0 0 0 1px #fff; color: #fff; }
.blh-booking__day:disabled { opacity: .32; cursor: not-allowed; text-decoration: line-through; }
.blh-booking__day:not(:disabled):hover, .blh-booking__nav:not(:disabled):hover { border-color: var(--blh-gold); }
.blh-booking button:focus-visible, .blh-booking input:focus-visible, .blh-booking select:focus-visible, .blh-booking textarea:focus-visible {
  outline: 3px solid #aa813d;
  outline-offset: 2px;
}
.blh-booking__legend { display: flex; flex-wrap: wrap; gap: 11px 18px; margin-top: 22px; font-size: 12px; line-height: 1.4; }
.blh-booking__legend span { display: inline-flex; align-items: center; gap: 7px; }
.blh-booking__swatch { display: inline-block; width: 14px; height: 14px; border-radius: 4px; }
.blh-booking__swatch.is-opu { border: 1px solid #c6d9f0; background: var(--blh-opu-pale); }
.blh-booking__swatch.is-other { border: 1px solid #eee8dc; background: var(--blh-paper); }
.blh-booking__hint, .blh-booking__fine { margin: 16px 0 0; color: var(--blh-muted); font-size: 12px; line-height: 1.6; }
.blh-booking__form { display: grid; gap: 9px; }
.blh-booking__form label:not(.blh-booking__consent, .blh-booking__check-item) { margin-top: 8px; color: var(--blh-forest); font-size: 12px; font-weight: 700; }
.blh-booking__form label em { color: #8e6635; font-style: normal; }
.blh-booking__form input:not([type=checkbox]), .blh-booking__form select, .blh-booking__form textarea {
  display: block;
  width: 100%;
  min-height: 43px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid #d7cdbc;
  border-radius: 9px;
  background: #fffefa;
  color: var(--blh-ink);
  font: 14px "Open Sans", Arial, sans-serif;
}
.blh-booking__form textarea { resize: vertical; }
.blh-booking__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.blh-booking__row > div { display: grid; gap: 9px; }
.blh-booking__selected { min-height: 20px; margin: 0 0 4px; color: var(--blh-forest-soft); font-size: 12px; line-height: 1.5; }
.blh-booking__checklist { min-width: 0; margin: 20px 0 9px; padding: 0; border: 0; }
.blh-booking__checklist legend { margin: 0 0 7px; color: var(--blh-forest); font-family: "Libre Baskerville", Georgia, serif; font-size: 18px; line-height: 1.4; }
.blh-booking__checklist > p { margin: 0 0 12px; color: var(--blh-muted); font-size: 12px; line-height: 1.6; }
.blh-booking__checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.blh-booking__form .blh-booking__check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 58px;
  margin: 0;
  padding: 13px 12px;
  border: 1px solid var(--blh-line);
  border-radius: 10px;
  background: var(--blh-paper);
  color: var(--blh-forest);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}
.blh-booking__check-item:has(input:checked) { border-color: #c9a769; background: #fbf0da; }
.blh-booking__check-item input { flex: 0 0 auto; width: 19px; height: 19px; margin: 1px 0 0; accent-color: var(--blh-forest-soft); cursor: pointer; }
.blh-booking__checklist .blh-booking__check-note { margin: 10px 0 0; font-size: 11px; }
.blh-booking__consent { display: flex; align-items: flex-start; gap: 9px; margin: 12px 0 5px; color: var(--blh-muted); font-size: 12px; line-height: 1.55; }
.blh-booking__consent input { flex: 0 0 auto; margin: 3px 0 0; accent-color: var(--blh-forest-soft); }
.blh-booking__consent a { color: var(--blh-forest-soft); text-decoration: underline; }
.blh-booking__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 17px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--blh-gold);
  color: var(--blh-forest);
  font: 800 12px "Open Sans", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.blh-booking__submit:hover { background: #e5c98f; }
.blh-booking__submit span { font-size: 21px; line-height: .8; }
.blh-booking__fine { margin-top: 2px; }
.blh-booking__notice { margin: 0 24px 20px; padding: 15px 18px; border-radius: 10px; font-size: 14px; line-height: 1.5; }
.blh-booking__notice.is-success { border: 1px solid #b7cbb9; background: #eaf3e9; color: #1d482a; }
.blh-booking__notice.is-error { border: 1px solid #e5c7ac; background: #fff0e2; color: #724326; }
.blh-booking__trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media (max-width: 800px) {
  .blh-booking__layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .blh-booking { margin: 15px 0; padding-bottom: 15px; border-radius: 15px; }
  .blh-booking__intro { margin-bottom: 15px; padding: 27px 20px; }
  .blh-booking__layout { gap: 14px; padding: 0 15px; }
  .blh-booking__panel { padding: 17px; }
  .blh-booking__day, .blh-booking__blank { min-height: 46px; }
  .blh-booking__row, .blh-booking__checks { grid-template-columns: 1fr; gap: 8px; }
  .blh-booking__notice { margin: 0 15px 15px; }
}
