.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal[aria-hidden="false"] {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, .72);
  backdrop-filter: blur(5px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: min(875px, calc(100vw - 32px));
  height: min(690px, calc(100vh - 28px));
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 35px 90px rgba(16, 42, 67, .38);
}

.booking-modal-copy {
  min-height: 112px;
  padding: 24px 76px 20px 28px;
  background: var(--cream);
}

.booking-modal-copy h2 {
  margin: 0;
  font: normal clamp(28px, 3vw, 42px)/1 Georgia, serif;
  letter-spacing: -.045em;
}

.booking-modal-copy p:not(.kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font: 16px/1.5 Georgia, serif;
}

.booking-modal-copy a {
  font-weight: bold;
}

.booking-modal iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border: 0;
  background: #fff;
}

.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.booking-modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .booking-modal {
    padding: 10px;
  }

  .booking-modal-panel {
    width: min(875px, calc(100vw - 20px));
    height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .booking-modal-copy {
    min-height: 132px;
    padding: 22px 62px 16px 20px;
  }

  .booking-modal iframe {
    width: 100%;
    height: 100%;
  }
}
