/* ═══════════════════════════════════════════════════════════════════════
   BOOKING MODAL
   ═══════════════════════════════════════════════════════════════════════ */

.bk-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(11, 17, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  animation: bk-fade 0.18s ease-out;
}
@keyframes bk-fade { from { opacity: 0; } to { opacity: 1; } }

.bk-modal {
  position: relative;
  width: 100%; max-width: 720px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(11,17,22,0.25), 0 6px 16px rgba(11,17,22,0.10);
  overflow: hidden;
  animation: bk-pop 0.22s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0E1116;
}
@keyframes bk-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bk-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(11,17,22,0.04); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px; line-height: 1; color: #6B7280;
  transition: background 0.15s, color 0.15s;
  z-index: 2;
}
.bk-close:hover { background: rgba(11,17,22,0.08); color: #0E1116; }

/* ── Header ── */
.bk-head {
  padding: 28px 32px 18px;
  border-bottom: 1px solid #F1F2F5;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(37,99,235,0.06), transparent 50%),
    #FFFFFF;
}
.bk-head-text { padding-right: 40px; }
.bk-eyebrow {
  font-size: 11px; font-weight: 700; color: #2563EB;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.bk-head h2 {
  margin: 6px 0 4px;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 24px; font-weight: 700; line-height: 1.2;
  letter-spacing: -0.012em;
}
.bk-head p {
  margin: 0; font-size: 13.5px; color: #475569; line-height: 1.55;
}

.bk-steps {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: flex; align-items: center; gap: 0;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.bk-steps li {
  display: flex; align-items: center; gap: 8px;
  color: #94A3B8; padding: 4px 14px 4px 0;
  position: relative; flex: 0 0 auto;
}
.bk-steps li:not(:last-child)::after {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: #E5E7EB;
  margin-left: 4px;
}
.bk-steps li > span {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #E5E7EB; color: #64748B;
  font-size: 11px; font-weight: 700; letter-spacing: 0;
}
.bk-steps li.is-active { color: #0E1116; }
.bk-steps li.is-active > span { background: #2563EB; color: #FFF; }
.bk-steps li.is-done { color: #16A34A; }
.bk-steps li.is-done > span { background: #16A34A; color: #FFF; }

/* ── Body ── */
.bk-body { padding: 22px 32px 8px; }
.bk-step { display: flex; flex-direction: column; gap: 18px; }
.bk-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .bk-grid-2 { grid-template-columns: 1fr; } }

.bk-field {
  display: flex; flex-direction: column; gap: 6px;
}
.bk-field > span {
  font-size: 12px; font-weight: 600; color: #1F2937;
  letter-spacing: 0.02em;
}
.bk-field > span > small {
  font-size: 11px; font-weight: 500; color: #94A3B8;
  margin-left: 4px;
}
.bk-field > small {
  font-size: 11.5px; color: #6B7280; line-height: 1.4;
}
.bk-field > em {
  font-style: normal; font-size: 11.5px; font-weight: 600; color: #DC2626;
}
.bk-error { font-style: normal; font-size: 12px; font-weight: 600; color: #DC2626; }

.bk-field input,
.bk-field select,
.bk-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: #0E1116;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 10px 12px;
  transition: border-color 0.14s, box-shadow 0.14s;
}
.bk-field input::placeholder,
.bk-field textarea::placeholder { color: #9CA3AF; }
.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.bk-field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

/* ── Chips (trade picker) ── */
.bk-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.bk-chip {
  font-family: inherit;
  border: 1px solid #D1D5DB;
  background: #FFFFFF;
  color: #1F2937;
  font-size: 12.5px; font-weight: 500;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.14s;
}
.bk-chip:hover { border-color: #2563EB; color: #2563EB; }
.bk-chip.is-active {
  background: #2563EB; border-color: #2563EB; color: #FFFFFF;
  box-shadow: 0 1px 4px rgba(37,99,235,0.3);
}

/* ── Option cards (band + tier picker) ── */
.bk-options {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.bk-options-tiers { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 760px) {
  .bk-options { grid-template-columns: repeat(2, 1fr); }
  .bk-options-tiers { grid-template-columns: 1fr; }
}
.bk-option {
  font-family: inherit;
  border: 1px solid #D1D5DB;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column; gap: 2px;
  transition: all 0.14s;
}
.bk-option:hover { border-color: #2563EB; }
.bk-option.is-active {
  border-color: #2563EB;
  background: rgba(37,99,235,0.06);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.bk-option > strong { font-size: 13px; font-weight: 600; color: #0E1116; }
.bk-option > small { font-size: 11.5px; color: #6B7280; }

/* ── Consent ── */
.bk-consent {
  display: flex; gap: 10px;
  font-size: 12.5px; line-height: 1.5; color: #475569;
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 14px;
}
.bk-consent input { margin-top: 2px; flex-shrink: 0; accent-color: #2563EB; }

/* ── Footer ── */
.bk-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 32px; border-top: 1px solid #F1F2F5;
  background: #FAFBFC;
  flex-wrap: wrap;
}
.bk-foot-left {
  font-size: 12px; color: #6B7280;
  font-variant-numeric: tabular-nums;
}
.bk-foot-right { display: flex; gap: 8px; }

.bk-btn {
  font-family: inherit;
  font-size: 13.5px; font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.14s;
  letter-spacing: 0;
}
.bk-btn-primary {
  background: linear-gradient(180deg, #2563EB, #1D4ED8);
  color: #FFFFFF;
  border-color: #1D4ED8;
  box-shadow: 0 1px 4px rgba(37,99,235,0.25);
}
.bk-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(37,99,235,0.32); }
.bk-btn-ghost {
  background: transparent; color: #475569; border-color: #D1D5DB;
}
.bk-btn-ghost:hover { background: #F1F5F9; color: #0E1116; }

/* ── Success ── */
.bk-success {
  padding: 48px 36px 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.bk-success-mark { animation: bk-mark 0.4s ease-out; }
@keyframes bk-mark {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.bk-success h2 {
  margin: 4px 0 0;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 22px; font-weight: 700; line-height: 1.25;
  max-width: 460px;
}
.bk-success p {
  margin: 0; font-size: 13.5px; color: #475569; line-height: 1.6;
  max-width: 480px;
}
.bk-success p strong { color: #0E1116; }
.bk-success-meta {
  font-size: 11.5px !important; color: #94A3B8 !important;
  letter-spacing: 0.02em;
}
.bk-success-meta code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  background: #F1F5F9;
  padding: 2px 6px;
  border-radius: 4px;
  color: #1F2937;
}
.bk-success .bk-btn { margin-top: 10px; }

/* ── Small screens ── */
@media (max-width: 560px) {
  .bk-head { padding: 22px 20px 16px; }
  .bk-body { padding: 18px 20px 4px; }
  .bk-foot { padding: 14px 20px; }
  .bk-steps li { font-size: 0; gap: 4px; padding-right: 8px; }
  .bk-steps li.is-active { font-size: 11.5px; }
  .bk-steps li > span { font-size: 11px; }
}
