/* ============================================================
   BOOKING PAGE
   ============================================================ */

/* ----------------------------------------------------------
   BANNER
---------------------------------------------------------- */
.booking-banner {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: clamp(40px, 6vw, 64px);
  padding-inline: var(--pad-x);
  overflow: hidden;
}

.booking-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.booking-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 27, 68, 0.82) 0%,
    rgba(8, 27, 68, 0.45) 55%,
    rgba(8, 27, 68, 0.25) 100%
  );
  z-index: 1;
}

.booking-banner__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.booking-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: oklch(0.88 0.12 82);
  margin-bottom: 1.25rem;
}

.booking-banner__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background-color: oklch(0.85 0.14 78);
  box-shadow: 0 0 10px oklch(0.85 0.14 78);
  flex-shrink: 0;
}

.booking-banner__headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: #fff;
  max-width: 820px;
}

.booking-banner__gold {
  font-style: italic;
  font-weight: 300;
  color: oklch(0.88 0.12 82);
}

/* ----------------------------------------------------------
   WIDGET + SIDEBAR
---------------------------------------------------------- */
.booking-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  padding-inline: var(--pad-x);
  background-color: var(--bg-light);
}

.booking-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(280px, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

@media (max-width: 900px) {
  .booking-section__grid {
    grid-template-columns: 1fr;
  }
}

.booking-section__widget {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  min-height: 480px;
}

.booking-section__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-sidebar-logo {
  text-align: center;
}

.booking-sidebar-logo img {
  max-width: 180px;
  height: auto;
}

.booking-sidebar-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.booking-sidebar-map iframe {
  display: block;
  width: 100%;
  border: 0;
}
