html,
body {
  background: linear-gradient(180deg, #0f1114 0%, #14191f 42%, #101417 100%) !important;
}

.booking-stage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 110vh;
  z-index: 0;
  pointer-events: none;
}

.booking-stage-media,
.booking-stage-media img,
.booking-stage-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.booking-stage-media img {
  object-fit: cover;
}

.booking-stage-overlay {
  background:
    linear-gradient(100deg, rgba(5, 7, 10, 0.92) 14%, rgba(8, 12, 16, 0.62) 50%, rgba(8, 12, 16, 0.82) 100%),
    radial-gradient(circle at 74% 18%, rgba(184, 204, 100, 0.22) 0%, rgba(184, 204, 100, 0) 32%);
}

.booking-page {
  position: relative;
  z-index: 1;
}

.booking-hero {
  position: relative;
  min-height: 110vh;
  padding-top: clamp(8rem, 10vw, 10rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}

.booking-hero-inner {
  position: relative;
  z-index: 2;
}

.booking-copy {
  width: min(100%, 680px);
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.booking-eyebrow,
.booking-process-eyebrow,
.booking-shell-eyebrow,
.booking-panel-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
}

.booking-title {
  max-width: 12ch;
  margin: 0.85rem 0 1rem;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.booking-subtitle {
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
}

.booking-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(19, 25, 31, 0.82), rgba(15, 19, 24, 0.66)),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

.booking-shell-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 2rem;
  margin-bottom: 1.3rem;
}

.booking-shell-head h2 {
  max-width: 16ch;
  margin-top: 0.55rem;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
}

.booking-shell-note {
  max-width: 34ch;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.booking-shell-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.booking-panel {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(30, 36, 42, 0.44), rgba(19, 24, 29, 0.26)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(1rem, 1.6vw, 1.3rem);
}

.booking-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-panel-head h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.booking-form-intro,
.booking-slot-head-note {
  max-width: 28ch;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.booking-month-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.booking-month-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.booking-month-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.booking-month-label {
  min-width: 7.5rem;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.booking-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.booking-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.booking-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(184, 204, 100, 0.12);
}

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

.booking-calendar-weekday {
  padding: 0.25rem 0.1rem 0.55rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-calendar-day {
  min-height: 82px;
  padding: 0.65rem 0.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  color: rgba(255, 255, 255, 0.58);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.booking-calendar-day:disabled {
  cursor: default;
}

.booking-calendar-day:not(:disabled):hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.booking-calendar-day.is-available {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(184, 204, 100, 0.08);
  border-color: rgba(184, 204, 100, 0.18);
}

.booking-calendar-day.is-selected {
  background: linear-gradient(180deg, rgba(184, 204, 100, 0.22), rgba(184, 204, 100, 0.1));
  border-color: rgba(184, 204, 100, 0.6);
  box-shadow: inset 0 0 0 1px rgba(184, 204, 100, 0.24);
}

.booking-calendar-day.is-muted {
  opacity: 0.36;
}

.booking-day-number {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.booking-day-meta {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.booking-slot-wrap {
  margin-top: 1.15rem;
}

.booking-slot-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.booking-slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.booking-slot-btn {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.93rem;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.booking-slot-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.booking-slot-btn.is-selected {
  background: rgba(184, 204, 100, 0.18);
  color: #fff;
  border-color: rgba(184, 204, 100, 0.55);
}

.booking-summary-card {
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(12, 18, 24, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-summary-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.booking-summary-value {
  margin-top: 0.35rem;
  color: #fff;
  font-size: 1.05rem;
}

.booking-summary-meta {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.66);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.booking-field label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.booking-field textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: rgba(184, 204, 100, 0.58);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(184, 204, 100, 0.12);
}

.booking-confirmations {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-check {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 0.95rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.booking-check input {
  width: 24px;
  height: 24px;
  margin: 0.15rem 0 0;
  accent-color: var(--brand);
}

.booking-check span {
  display: block;
  align-self: start;
}

.booking-check a {
  color: var(--brand);
}

.booking-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.booking-status.is-error {
  color: #ff9a9a;
}

.booking-status.is-success {
  color: #bfe58b;
}

.booking-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), #d8e58f);
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(184, 204, 100, 0.18);
}

.booking-disclaimer {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.58);
}

.booking-process {
  position: relative;
  padding-top: clamp(4.5rem, 7vw, 6rem);
  padding-bottom: clamp(4.5rem, 7vw, 6rem);
  background: #11161b;
}

.booking-process-wrap {
  display: grid;
  gap: 2rem;
}

.booking-process-intro {
  max-width: 820px;
}

.booking-process-title {
  max-width: 17ch;
  margin-top: 0.75rem;
}

.booking-process-subtitle {
  max-width: 60ch;
  margin-top: 1rem;
}

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

.booking-process-card {
  padding: 1.4rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(31, 37, 44, 0.34), rgba(18, 24, 30, 0.2)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(184, 204, 100, 0.14);
  color: var(--brand);
  font-weight: 700;
}

.booking-process-card h3 {
  margin-bottom: 0.7rem;
}

.booking-page + #site-footer {
  position: relative;
  z-index: 2;
}

.booking-page + #site-footer .fch-footer {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.booking-page + #site-footer .fch-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #11161b;
}

.booking-page + #site-footer .footer-hero {
  position: relative;
  background: #11161b;
}

.booking-page + #site-footer .footer-hero::before {
  display: none;
}

.booking-page + #site-footer .footer-glass {
  background:
    linear-gradient(180deg, rgba(31, 37, 44, 0.34), rgba(18, 24, 30, 0.2)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 1080px) {
  .booking-shell-head,
  .booking-panel-head,
  .booking-slot-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-shell-note,
  .booking-form-intro,
  .booking-slot-head-note {
    max-width: 100%;
    text-align: left;
  }

  .booking-shell-grid,
  .booking-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .booking-hero {
    min-height: 110vh;
    padding-top: 7rem;
  }

  .booking-copy {
    margin-bottom: 1.6rem;
  }

  .booking-title {
    max-width: 12ch;
  }

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

  .booking-month-switch {
    width: 100%;
    justify-content: space-between;
  }

  .booking-month-label {
    flex: 1;
  }

  .booking-legend {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-calendar {
    gap: 0.35rem;
  }

  .booking-calendar-day {
    min-height: 74px;
    padding: 0.55rem 0.4rem;
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  .booking-hero {
    padding-top: 6.4rem;
    padding-bottom: 3.4rem;
  }

  .booking-shell,
  .booking-panel,
  .booking-process-card {
    border-radius: 22px;
  }

  .booking-calendar {
    gap: 0.28rem;
  }

  .booking-calendar-weekday {
    font-size: 0.7rem;
    padding-bottom: 0.35rem;
  }

  .booking-calendar-day {
    min-height: 66px;
    padding: 0.5rem 0.35rem;
  }

  .booking-day-number {
    font-size: 0.95rem;
  }

  .booking-day-meta {
    margin-top: 0.55rem;
    padding: 0.16rem 0.36rem;
    font-size: 0.66rem;
  }

  .booking-slot-btn {
    width: 100%;
    justify-content: center;
  }
}
