/* ── BOOKING MODAL ─────────────────────────────────── */

.bm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(10, 0, 5, 0.88);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@media (min-width: 540px) {
  .bm-overlay {
    align-items: center;
    padding: 24px;
  }
}

.bm-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 92dvh;
  overflow-y: auto;
  background: #1a060d;
  border: 1px solid rgba(210, 110, 135, 0.22);
  border-radius: 24px 24px 0 0;
  padding: 32px 24px 44px;
  box-sizing: border-box;
  animation: bm-slide-up 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@media (min-width: 540px) {
  .bm-box {
    border-radius: 24px;
    animation-name: bm-fade-scale;
  }
}

@keyframes bm-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bm-fade-scale {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.bm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(220, 155, 170, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #f0dde2;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.bm-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.bm-close:focus-visible {
  outline: 3px solid rgba(220, 100, 130, 0.6);
  outline-offset: 2px;
}

/* Honeypot — invisible to real users, traps bots */
.bm-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Global (non-field) error banner */
.bm-err-global {
  margin: 0 0 4px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.28);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #ff8585;
  text-align: center;
}

/* ── Title ── */
.bm-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 7vw, 32px);
  font-weight: 500;
  color: #fff0f0;
  margin: 0 0 24px;
  padding-right: 40px;
  line-height: 1.2;
}

@media (max-width: 539px) {
  .bm-title {
    font-size: clamp(21px, 6vw, 25px);
    margin-bottom: 16px;
  }
}

/* ── Form ── */
.bm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bm-label {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(210, 175, 185, 0.7);
}

.bm-input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(200, 110, 135, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: #fff0f0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.bm-input::placeholder {
  color: rgba(200, 175, 185, 0.38);
}

.bm-input:focus {
  border-color: rgba(210, 80, 115, 0.65);
  box-shadow: 0 0 0 3px rgba(210, 80, 115, 0.12);
}

.bm-field--err .bm-input {
  border-color: rgba(255, 100, 100, 0.65);
}

.bm-field--err .bm-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.12);
}

.bm-err-msg {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 12px;
  color: #ff8585;
  line-height: 1.4;
}

/* ── Payment stub ── */
.bm-payment-stub {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(200, 110, 135, 0.28);
  background: rgba(100, 20, 40, 0.22);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bm-payment-title {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(210, 175, 185, 0.7);
}

.bm-payment-option {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(210, 110, 135, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: #f0dde2;
  cursor: pointer;
}

.bm-payment-option input {
  margin-top: 2px;
  accent-color: #e8a84e;
}

.bm-payment-option span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  font-weight: 700;
}

.bm-payment-option small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(210, 175, 185, 0.58);
}

/* ── Submit ── */
.bm-submit {
  margin-top: 8px;
}

.bm-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Thank you screen ── */
.bm-thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0 8px;
  gap: 20px;
}

.bm-ty-star {
  margin: 0;
  font-size: 52px;
  filter: drop-shadow(0 0 20px rgba(200, 95, 130, 0.65));
}

.bm-ty-text {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 5vw, 22px);
  line-height: 1.65;
  font-style: italic;
  color: #f0dde2;
}

.bm-ty-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.bm-ty-link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #1a0a10;
  background: linear-gradient(135deg, #f8d29f 0%, #e8a84e 100%);
  box-shadow: 0 12px 24px rgba(232, 168, 78, 0.26);
}

.bm-ty-link--secondary {
  color: #f9f3f5;
  background: linear-gradient(135deg, #7e2b5b 0%, #c45d8e 100%);
  box-shadow: 0 12px 24px rgba(196, 93, 142, 0.24);
}
