.fsm-booking-shell {
  --fsm-dark: #15100a;
  --fsm-gold: #d7b36a;
  --fsm-cream: #f7f0e4;
  --fsm-muted: #806f59;
  --fsm-line: rgba(215, 179, 106, .28);
  background: radial-gradient(circle at top left, rgba(215,179,106,.16), transparent 34%), linear-gradient(135deg, #17120b 0%, #21170d 48%, #0f0c08 100%);
  color: var(--fsm-cream);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 50px);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  margin: 32px auto;
  max-width: 1180px;
  overflow: hidden;
}

.fsm-booking-hero {
  max-width: 740px;
  margin-bottom: 30px;
}

.fsm-kicker {
  color: var(--fsm-gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: 12px;
}

.fsm-booking-hero h2 {
  color: #fff8ea;
  margin: 10px 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: .96;
  letter-spacing: -.04em;
}

.fsm-booking-hero p {
  color: rgba(247,240,228,.78);
  font-size: 17px;
  margin: 0;
}

.fsm-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: start;
}

.fsm-booking-form,
.fsm-booking-summary {
  border: 1px solid var(--fsm-line);
  background: rgba(255,255,255,.07);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.fsm-booking-form {
  padding: clamp(18px, 3vw, 30px);
}

.fsm-field,
.fsm-field-row {
  margin-bottom: 18px;
}

.fsm-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fsm-field label,
.fsm-booking-form > label,
.fsm-slot-title {
  display: block;
  color: #f8e6bd;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 14px;
}

.fsm-field input,
.fsm-field select,
.fsm-field textarea {
  width: 100%;
  border: 1px solid rgba(247,240,228,.18);
  background: rgba(255,255,255,.92);
  color: #19130d;
  border-radius: 16px;
  padding: 14px 15px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.fsm-field input:focus,
.fsm-field select:focus,
.fsm-field textarea:focus {
  border-color: var(--fsm-gold);
  box-shadow: 0 0 0 4px rgba(215,179,106,.2);
}

.fsm-slot-panel {
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(215,179,106,.22);
  border-radius: 22px;
  padding: 18px;
  margin: 20px 0;
}

.fsm-slot-status {
  color: rgba(247,240,228,.68);
  margin-bottom: 14px;
}

.fsm-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
  gap: 10px;
}

.fsm-slot-button {
  border: 1px solid rgba(215,179,106,.35);
  background: rgba(255,255,255,.08);
  color: #fff8ea;
  border-radius: 999px;
  padding: 11px 10px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.fsm-slot-button:hover,
.fsm-slot-button.is-selected {
  transform: translateY(-1px);
  background: var(--fsm-gold);
  color: #15100a;
}

.fsm-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: rgba(247,240,228,.78) !important;
  font-weight: 600 !important;
  margin: 8px 0 20px;
}

.fsm-check input {
  margin-top: 4px;
}

.fsm-booking-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #f0d58f, #c49b45);
  color: #15100a;
  font-weight: 950;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(215,179,106,.24);
}

.fsm-form-response {
  margin-top: 16px;
  min-height: 24px;
  font-weight: 800;
}

.fsm-response-error { color: #ffb3a8; }
.fsm-response-success { color: #caffd1; }
.fsm-response-loading { color: #f6e0a3; }

.fsm-booking-summary {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.fsm-summary-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 20px;
}

.fsm-summary-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(215,179,106,.18);
  color: var(--fsm-gold);
  margin-bottom: 10px;
  font-weight: 900;
}

.fsm-summary-card h3 {
  color: #fff8ea;
  margin: 0 0 6px;
  font-size: 18px;
}

.fsm-summary-card p {
  color: rgba(247,240,228,.7);
  margin: 0;
}

@media (max-width: 850px) {
  .fsm-booking-grid,
  .fsm-field-row {
    grid-template-columns: 1fr;
  }
  .fsm-booking-shell {
    border-radius: 24px;
  }
}

.fsm-help {
  display: block;
  color: rgba(247,240,228,.64);
  margin-top: 7px;
  line-height: 1.45;
  font-weight: 600;
}

.fsm-membership-field {
  display: none;
}
