.booking-page {
  background:
    radial-gradient(ellipse at 8% 0%, rgba(215, 163, 173, 0.2), transparent 34%),
    radial-gradient(ellipse at 92% 10%, rgba(201, 163, 98, 0.18), transparent 32%),
    var(--cream-light);
  min-height: calc(100vh - 150px);
  padding: 58px 0 76px;
}

.booking-intro {
  margin: 0 auto 30px;
  max-width: 760px;
  text-align: center;
}

.booking-intro h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.booking-intro p {
  font-weight: 300;
  margin: 15px auto 0;
  max-width: 650px;
}

.booking-shell {
  background: #fff;
  border: 1px solid rgba(191, 178, 166, 0.36);
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
}

.booking-frame-note {
  align-items: center;
  background: rgba(201, 163, 98, 0.12);
  border-bottom: 1px solid rgba(201, 163, 98, 0.3);
  color: var(--navy);
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  padding: 11px 20px;
  text-align: center;
}

.booking-frame-note::before {
  color: var(--gold);
  content: "●";
  font-size: 0.7rem;
}

.booking-frame-wrap {
  background: #fff;
  min-height: 1050px;
  position: relative;
}

.booking-frame-loading {
  color: #6d6257;
  font-size: 0.82rem;
  left: 50%;
  position: absolute;
  top: 38px;
  transform: translateX(-50%);
}

.booking-frame-wrap.is-loaded .booking-frame-loading {
  display: none;
}

.booking-frame {
  background: #fff;
  border: 0;
  display: block;
  min-height: 1050px;
  width: 100%;
}

.booking-fallback {
  align-items: center;
  background: var(--cream);
  border-top: 1px solid rgba(191, 178, 166, 0.32);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 20px 24px;
}

.booking-fallback p {
  font-size: 0.8rem;
  font-weight: 300;
  margin: 0;
}

.booking-fallback .btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 9px 19px;
}

@media (max-width: 700px) {
  .booking-page { padding: 42px 0 58px; }
  .booking-shell { border-left: 0; border-radius: 0; border-right: 0; }
  .booking-frame-wrap, .booking-frame { min-height: 1300px; }
  .booking-fallback { align-items: stretch; flex-direction: column; text-align: center; }
}
