/* ═══════════════════════════════════════════
   BOOKING PAGE
═══════════════════════════════════════════ */

/* ─── HERO ─── */
.book-hero {
  position: relative;
  padding: 150px 52px 100px;
  background: var(--cream);
  overflow: hidden;
}

.book-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(109, 145, 116, .14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(229, 168, 32, .08) 0%, transparent 70%);
  pointer-events: none;
}

.book-hero-inner {
  position: relative;
}

.book-hero-h {
  font-family: var(--ff-disp);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 28px 0 28px;
}

.book-hero-h em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-deep);
}

.book-hero-sub {
  font-family: var(--ff-body);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}

/* ─── WIZARD LAYOUT ─── */
.book-wizard {
  padding: 100px 52px;
  background: var(--w);
}

.bw-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 70px;
  align-items: start;
}

/* ─── STEPPER ─── */
.bw-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-10);
  margin-bottom: 50px;
}

.bw-step {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.bw-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-10);
  background: var(--w);
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s, border-color .3s;
  flex-shrink: 0;
}

.bw-step-label {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--muted);
  transition: color .3s;
}

.bw-step-line {
  height: 1px;
  background: var(--ink-10);
  flex: 1;
  margin: 0 18px;
  transition: background .3s;
}

.bw-step.is-active .bw-step-num {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--w);
}

.bw-step.is-active .bw-step-label {
  color: var(--ink);
}

.bw-step.is-done .bw-step-num {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: var(--w);
}

.bw-step.is-done .bw-step-label {
  color: var(--sage-deep);
}

.bw-step.is-done + .bw-step-line {
  background: var(--sage-deep);
}

/* ─── PANELS ─── */
.bw-form {
  display: flex;
  flex-direction: column;
}

.bw-panel {
  display: none;
  animation: bwFadeIn .45s var(--ease);
}

.bw-panel.is-active {
  display: block;
}

@keyframes bwFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bw-panel-head {
  margin-bottom: 36px;
}

.bw-panel-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.bw-panel-h {
  font-family: var(--ff-disp);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.022em;
  color: var(--ink);
  margin-bottom: 16px;
}

.bw-panel-h em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-deep);
}

.bw-panel-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
}

/* ─── FIELDS (reuse cf-field from contact.css, sleeker on booking) ─── */
.bw-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bw-fields .cf-field input,
.bw-fields .cf-field textarea,
.bw-fields .cf-dd-trigger {
  padding: 12px 16px;
  font-size: 15px;
}

.bw-fields .cf-field textarea {
  min-height: 110px;
}

.cf-opt {
  font-style: normal;
  color: var(--faint);
  font-weight: 400;
  text-transform: none;
  letter-spacing: .05em;
  margin-left: 4px;
}

/* ─── RADIO / CHOICE PILLS ─── */
.bw-radio-row,
.bw-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bw-radio,
.bw-choice {
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}

.bw-radio input,
.bw-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bw-radio span,
.bw-choice span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--ink-10);
  border-radius: 100px;
  transition: border-color .25s, background .25s, color .25s, transform .2s;
  user-select: none;
  line-height: 1.5;
}

.bw-radio:hover span,
.bw-choice:hover span {
  border-color: rgba(109, 145, 116, .4);
}

.bw-radio input:checked + span,
.bw-choice input:checked + span {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--w);
}

.bw-radio input:focus-visible + span,
.bw-choice input:focus-visible + span {
  box-shadow: 0 0 0 4px var(--sage-faint);
}

/* ─── DATE / TIME GRID ─── */
.bw-dt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ─── CALENDAR ─── */
.bw-calendar {
  background: var(--cream);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  padding: 26px;
}

.bw-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.bw-cal-title {
  font-family: var(--ff-disp);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  flex: 1;
  text-align: center;
}

.bw-cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink-10);
  background: var(--w);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}

.bw-cal-nav:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--w);
}

.bw-cal-nav svg,
.bw-cal-nav i {
  width: 18px;
  height: 18px;
}

.bw-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.bw-cal-dow > div {
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
}

.bw-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bw-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.bw-cal-day:hover:not(.is-off):not(.is-empty):not(.is-selected) {
  background: var(--w);
  border-color: var(--sage);
}

.bw-cal-day.is-empty {
  cursor: default;
  pointer-events: none;
}

.bw-cal-day.is-off {
  color: var(--faint);
  cursor: not-allowed;
  background: transparent;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(14, 13, 10, .14);
}

.bw-cal-day.is-today {
  font-weight: 700;
  color: var(--sage-deep);
  background: var(--w);
  border-color: var(--sage);
}

.bw-cal-day.is-selected {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--w);
  transform: scale(1.02);
}

.bw-cal-day.is-selected.is-today {
  color: var(--w);
}

.bw-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-10);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.bw-cal-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bw-cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.bw-cal-dot--selected { background: var(--sage); }
.bw-cal-dot--today    { background: transparent; border: 1.5px solid var(--sage); }
.bw-cal-dot--off      { background: var(--faint); }

/* ─── TIME SLOTS ─── */
.bw-slots {
  display: flex;
  flex-direction: column;
}

.bw-slots-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.bw-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.bw-slot {
  padding: 13px 10px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--ink-10);
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.bw-slot:hover:not(:disabled) {
  border-color: var(--sage);
  background: var(--w);
}

.bw-slot.is-selected {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--w);
}

.bw-slot.is-busy,
.bw-slot:disabled {
  color: var(--faint);
  background: transparent;
  border-style: dashed;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(14, 13, 10, .14);
}

/* ─── REVIEW ─── */
.bw-review {
  background: var(--cream);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  padding: 36px 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 24px;
}

.bw-review-item {
  min-width: 0;
}

.bw-review-item--full {
  grid-column: 1 / -1;
}

.bw-review-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.bw-review-val {
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  word-wrap: break-word;
}

.bw-review-val--muted {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.bw-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 14px;
}

.bw-consent input {
  accent-color: var(--sage);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ─── NAV BUTTONS ─── */
.bw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-10);
}

.bw-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: color .25s, background .25s;
}

.bw-back-btn:hover {
  color: var(--ink);
  background: var(--cream);
}

.bw-back-btn svg,
.bw-back-btn i {
  width: 16px;
  height: 16px;
  transition: transform .25s var(--ease);
}

.bw-back-btn:hover svg,
.bw-back-btn:hover i {
  transform: translateX(-3px);
}

.bw-back-btn.is-hidden {
  visibility: hidden;
}

.bw-next-btn,
.bw-submit-btn {
  margin-left: auto;
}

/* ─── SUMMARY SIDEBAR ─── */
.bw-summary-col {
  position: sticky;
  top: 110px;
}

.bw-summary {
  background: linear-gradient(180deg, var(--sage-bg) 0%, var(--cream) 100%);
  border: 1px solid rgba(109, 145, 116, .2);
  border-radius: 16px;
  padding: 34px 32px;
}

.bw-summary-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(109, 145, 116, .2);
  margin-bottom: 24px;
}

.bw-summary-head svg,
.bw-summary-head i {
  width: 16px;
  height: 16px;
}

.bw-summary-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bw-summary-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bw-summary-label {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.bw-summary-val {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  transition: color .25s;
}

.bw-summary-val.is-filled {
  color: var(--sage-deep);
  font-weight: 500;
}

.bw-summary-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed rgba(109, 145, 116, .25);
}

.bw-summary-note svg,
.bw-summary-note i {
  width: 15px;
  height: 15px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.bw-summary-note p {
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── SUCCESS SCREEN ─── */
.book-success {
  display: none;
  padding: 100px 52px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-success.is-visible {
  display: block;
  animation: bwFadeIn .5s var(--ease);
}

.book-success::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(109, 145, 116, .16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(229, 168, 32, .08) 0%, transparent 70%);
  pointer-events: none;
}

.bs-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.bs-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 50px rgba(109, 145, 116, .25);
}

.bs-icon svg,
.bs-icon i {
  width: 42px;
  height: 42px;
}

.bs-h {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 18px 0 22px;
}

.bs-h em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-deep);
}

.bs-sub {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 48px;
}

.bs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.bs-card {
  background: var(--w);
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  padding: 22px 24px;
  text-align: left;
}

.bs-card-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.bs-card-val {
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}

.bs-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Hide wizard after success */
.book-wizard.is-hidden {
  display: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — ≤960px
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .book-hero {
    padding: 110px 24px 60px;
  }

  .book-hero-h {
    font-size: clamp(44px, 11vw, 72px);
    margin: 22px 0 22px;
  }

  .book-hero-sub {
    font-size: 16px;
  }

  .book-wizard {
    padding: 60px 24px;
  }

  .bw-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bw-summary-col {
    position: static;
  }

  .bw-stepper {
    padding-bottom: 28px;
    margin-bottom: 32px;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .bw-stepper::-webkit-scrollbar {
    display: none;
  }

  .bw-step-label {
    display: none;
  }

  .bw-step-line {
    min-width: 24px;
    margin: 0 8px;
  }

  .bw-panel-head {
    margin-bottom: 28px;
  }

  .bw-panel-h {
    font-size: clamp(30px, 7vw, 42px);
  }

  .bw-fields {
    gap: 18px;
  }

  .cf-row {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .bw-dt-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bw-calendar {
    padding: 20px;
  }

  .bw-cal-title {
    font-size: 17px;
  }

  .bw-cal-day {
    font-size: 13px;
    border-radius: 8px;
  }

  .bw-slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bw-review {
    grid-template-columns: 1fr;
    padding: 26px 24px;
    gap: 20px;
  }

  .bw-nav {
    margin-top: 32px;
    padding-top: 24px;
  }

  .bw-summary {
    padding: 26px 24px;
  }

  .book-success {
    padding: 60px 24px;
  }

  .bs-icon {
    width: 68px;
    height: 68px;
  }

  .bs-icon svg,
  .bs-icon i {
    width: 34px;
    height: 34px;
  }

  .bs-cards {
    grid-template-columns: 1fr;
  }

  .bs-ctas {
    flex-direction: column;
    gap: 14px;
  }
}
