/* —— Booking modal —— */
.asc-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.asc-booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.asc-booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 3, 0.82);
  backdrop-filter: blur(6px);
}

.asc-booking-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 720px);
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0809;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.asc-booking-modal.is-open .asc-booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.asc-booking-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: #a89498;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.asc-booking-modal__close:hover {
  color: #f7f2f3;
  background: rgba(255, 255, 255, 0.06);
}

/* —— Booking app —— */
.asc-booking {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  color: #f7f2f3;
}

.asc-booking-header {
  flex-shrink: 0;
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.asc-booking-eyebrow {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c92d40;
}

.asc-booking-title {
  margin: 0 0 20px;
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f7f2f3;
}

.asc-booking-stepper-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.asc-booking-stepper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}

.asc-booking-stepper-item.is-active,
.asc-booking-stepper-item.is-done {
  opacity: 1;
}

.asc-booking-stepper-num {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #c4b4b8;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.asc-booking-stepper-item.is-active .asc-booking-stepper-num {
  border-color: #c92d40;
  background: #c92d40;
  color: #fff;
}

.asc-booking-stepper-item.is-done .asc-booking-stepper-num {
  border-color: rgba(201, 45, 64, 0.5);
  color: #f5d0d6;
}

.asc-booking-stepper-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a89498;
}

.asc-booking-stepper-item.is-active .asc-booking-stepper-label {
  color: #e8d6da;
}

.asc-booking-error {
  flex-shrink: 0;
  margin: 0 24px;
  padding: 10px 12px;
  border-left: 2px solid #c92d40;
  background: rgba(201, 45, 64, 0.08);
  color: #ffdce2;
  font-size: 0.88rem;
}

.asc-booking-error[hidden] {
  display: none !important;
}

.asc-booking-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  min-height: 280px;
}

.asc-booking-panel[hidden] {
  display: none !important;
}

.asc-booking-panel {
  animation: ascBookingFade 0.3s ease;
}

@keyframes ascBookingFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.asc-booking-step-title {
  margin: 0 0 6px;
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f7f2f3;
  letter-spacing: -0.01em;
}

.asc-booking-step-desc {
  margin: 0 0 20px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #8f7d82;
}

.asc-booking-step-desc--muted {
  margin-top: 8px;
  margin-bottom: 0;
}

.asc-booking-services {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
}

.asc-booking-service-btn {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  background: transparent;
  color: #e8d6da;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.asc-booking-service-btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.asc-booking-service-btn.is-selected {
  border-color: #c92d40;
  background: rgba(201, 45, 64, 0.12);
  color: #fff2f4;
}

.asc-booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.asc-booking-field {
  margin-bottom: 16px;
}

.asc-booking-field label,
.asc-booking-field legend,
.asc-booking-field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f7d82;
}

.asc-booking-field input[type="text"],
.asc-booking-field input[type="email"],
.asc-booking-field input[type="date"],
.asc-booking-field select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #f7f2f3;
  font-size: 0.95rem;
}

.asc-booking-field input:focus,
.asc-booking-field select:focus {
  outline: none;
  border-color: rgba(201, 45, 64, 0.65);
}

.asc-booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-height: 40px;
}

.asc-booking-slot-btn {
  padding: 10px 8px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #e8d6da;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.asc-booking-slot-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.asc-booking-slot-btn.is-selected {
  border-color: #c92d40;
  background: rgba(201, 45, 64, 0.15);
  color: #fff2f4;
}

.asc-booking-slots-hint {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #6e5c60;
}

.asc-booking-invest {
  border: none;
  padding: 0;
  margin: 0;
}

.asc-booking-invest legend {
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  color: #c4b4b8;
  line-height: 1.5;
}

.asc-booking-invest legend strong {
  color: #f5d0d6;
  font-weight: 600;
}

.asc-booking-choice-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.asc-booking-choice {
  display: block;
  cursor: pointer;
}

.asc-booking-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.asc-booking-choice span {
  display: block;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  font-size: 0.9rem;
  color: #c4b4b8;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.asc-booking-choice input:checked + span {
  border-color: #c92d40;
  background: rgba(201, 45, 64, 0.12);
  color: #fff2f4;
}

.asc-booking-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.asc-booking-summary {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.asc-booking-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.asc-booking-summary dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e5c60;
  flex-shrink: 0;
}

.asc-booking-summary dd {
  margin: 0;
  text-align: right;
  color: #f7f2f3;
}

.asc-booking-success {
  text-align: center;
  padding: 24px 0;
}

.asc-booking-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid rgba(201, 45, 64, 0.5);
  color: #c92d40;
  font-size: 1.25rem;
  font-weight: 600;
}

.asc-booking-footer {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0708;
}

.asc-booking-footer[hidden],
.asc-booking-btn[hidden] {
  display: none !important;
}

.asc-booking-btn {
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.asc-booking-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.asc-booking-btn--ghost {
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #c4b4b8;
}

.asc-booking-btn--ghost:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f7f2f3;
}

.asc-booking-btn--primary {
  border: 1px solid #c92d40;
  background: #c92d40;
  color: #fff;
}

.asc-booking-btn--primary:hover:not(:disabled) {
  background: #b52738;
  border-color: #b52738;
}

/* Inline section teaser (when not in modal) */

body.asc-booking-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .asc-booking-header {
    padding: 22px 18px 16px;
  }

  .asc-booking-body {
    padding: 18px;
  }

  .asc-booking-footer {
    padding: 14px 18px 18px;
  }

  .asc-booking-row {
    grid-template-columns: 1fr;
  }

  .asc-booking-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .asc-booking-stepper-label {
    font-size: 0.58rem;
  }

  .asc-booking-modal__dialog {
    max-height: 96vh;
  }
}
