.booking-page {
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: 0;
  background: #0c0a14;
}

.booking-header .site-header-inner {
  min-height: 64px;
}

.booking-back {
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.booking-main {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0c0a14;
}

.booking-main::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../media/offers-hero-original.webp") 62% 35% / cover no-repeat;
  content: "";
  filter: saturate(0.78);
}

.booking-main::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 13, 0.99) 0%, rgba(8, 7, 13, 0.94) 43%, rgba(8, 7, 13, 0.78) 100%),
    linear-gradient(0deg, #0c0a14 0%, transparent 38%);
  content: "";
}

.booking-shell {
  width: min(1180px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  margin: auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 9vw, 7rem);
}

.booking-intro {
  position: sticky;
  top: 110px;
}

.booking-intro h1 {
  max-width: 7ch;
  font-size: clamp(4rem, 8vw, 7.4rem);
}

.booking-lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 300;
  line-height: 1.65;
}

.booking-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  border: 1px solid rgba(245, 200, 76, 0.62);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 200, 76, 0.12), transparent 18rem),
    rgba(23, 19, 31, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.booking-card::before,
.booking-card::after {
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(245, 200, 76, 0.62);
  border-radius: 50%;
  background: #0c0a14;
  content: "";
  transform: translateY(-50%);
}

.booking-card::before { left: -1.35rem; }
.booking-card::after { right: -1.35rem; }

.booking-form,
.booking-success {
  position: relative;
  z-index: 1;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.booking-field {
  display: grid;
  gap: 0.5rem;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field small {
  color: #9f97aa;
  font-size: 0.78rem;
  font-weight: 400;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 58px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(245, 200, 76, 0.36);
  border-radius: 8px;
  background: #100d18;
  color: var(--cream);
  font: 400 1rem/1.3 "Barlow", sans-serif;
}

.booking-field input::placeholder {
  color: #7f7787;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--amber);
  outline: 3px solid rgba(245, 200, 76, 0.18);
  outline-offset: 1px;
}

.booking-note {
  margin: 1.5rem 0 1rem;
  color: #aaa2b4;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.55;
}

.booking-submit {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--amber);
  border-radius: 8px;
  background: var(--amber);
  color: var(--ink);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.booking-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--amber);
  background: rgba(245, 200, 76, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.booking-status[hidden],
.booking-success[hidden],
.booking-form[hidden] {
  display: none;
}

.booking-success {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-success h2 {
  font-size: clamp(3.5rem, 9vw, 6rem);
}

.booking-success > p:not(.eyebrow) {
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.booking-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.booking-footer {
  background: #0c0a14;
}

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

  .booking-intro {
    position: static;
  }

  .booking-intro h1 {
    max-width: none;
  }

}

@media (max-width: 640px) {
  .booking-page {
    padding-bottom: 0;
  }

  .booking-header .site-header-inner {
    min-height: 58px;
  }

  .booking-back {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .booking-main::before {
    background-position: 66% top;
  }

  .booking-main::after {
    background: linear-gradient(180deg, rgba(8, 7, 13, 0.7) 0, rgba(8, 7, 13, 0.98) 26rem, #0c0a14 100%);
  }

  .booking-shell {
    width: min(100% - 1rem, 1180px);
    gap: 1.7rem;
    padding: 3rem 0 calc(3rem + env(safe-area-inset-bottom));
  }

  .booking-intro {
    padding: 0 0.5rem;
  }

  .booking-intro h1 {
    max-width: 6ch;
    font-size: clamp(3.7rem, 20vw, 5.2rem);
  }

  .booking-lead {
    font-size: 1rem;
  }

  .booking-card {
    padding: 1.35rem 1.1rem calc(1.6rem + env(safe-area-inset-bottom));
    border-radius: 12px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-field--full {
    grid-column: auto;
  }

  .booking-field input,
  .booking-field select,
  .booking-submit {
    min-height: 60px;
    font-size: 16px;
  }

  .booking-note {
    margin-top: 1.25rem;
  }

  .booking-success {
    min-height: 24rem;
  }

  .booking-success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-success-actions .button {
    width: 100%;
  }
}
