:root {
  --wc-ink: #16181d;
  --wc-flash: #f2b636;
  --wc-paper: #f6f5f2;
  --wc-line: #e4e1da;
}

.public-body { background: var(--wc-paper); font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }

.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--wc-flash); color: var(--wc-ink); font-weight: 800;
}

.public-hero { background: var(--wc-ink); color: #fff; }
.hero-title { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
.hero-title::after { content: ""; display: block; width: 72px; height: 6px; background: var(--wc-flash); margin-top: .9rem; border-radius: 3px; }
.hero-sub { color: #b8bcc5; max-width: 460px; margin-top: 1rem; }

.booking-main { max-width: 880px; margin-top: -1.5rem; padding-bottom: 3rem; }

.step-card {
  background: #fff; border: 1px solid var(--wc-line); border-radius: 16px;
  padding: 1.75rem; margin-bottom: 1.25rem;
}
.step-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.step-head h2 { font-size: 1.15rem; font-weight: 700; margin: 0; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--wc-ink); color: var(--wc-flash); font-weight: 700; font-size: .9rem;
}

/* Session cards */
.session-card {
  text-align: left; background: #fff; border: 2px solid var(--wc-line);
  border-radius: 12px; padding: 1rem; height: 100%; transition: border-color .15s, transform .1s;
}
.session-card:hover { border-color: #c9c4b8; }
.session-card.selected { border-color: var(--wc-flash); background: #fffbf0; }
.session-name { font-weight: 700; }
.session-desc { font-size: .82rem; color: #8a8f98; margin-top: .2rem; }
.session-meta { display: flex; justify-content: space-between; margin-top: .7rem; font-size: .85rem; color: #666; }
.session-price { font-weight: 700; color: var(--wc-ink); }

/* Slots */
.slot-grid { display: flex; flex-wrap: wrap; gap: .5rem; min-height: 48px; align-items: flex-start; }
.slot-btn {
  border: 2px solid var(--wc-line); background: #fff; border-radius: 8px;
  padding: .45rem .8rem; font-weight: 600; font-size: .9rem;
}
.slot-btn:hover { border-color: #c9c4b8; }
.slot-btn.selected { border-color: var(--wc-flash); background: var(--wc-flash); }

/* Payment */
.pay-instructions {
  white-space: pre-line; background: #faf8f3; border: 1px dashed #d8d2c4;
  border-radius: 10px; padding: 1rem; font-size: .92rem;
}

/* Summary */
.summary { border: 1px solid var(--wc-line); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; }
.summary-row span { color: #8a8f98; }

.btn-book { background: var(--wc-ink); color: var(--wc-flash); font-weight: 700; border: none; }
.btn-book:hover { background: #000; color: var(--wc-flash); }

/* Success page */
.success-card { padding: 2.5rem 1.75rem; }
.success-icon { font-size: 3rem; color: var(--wc-flash); }
.success-icon.confirmed { color: #2d6a4f; }
.success-icon.muted { color: #adb5bd; }
.booking-code {
  font-size: 1.6rem; font-weight: 800; letter-spacing: .18em;
  background: var(--wc-ink); color: var(--wc-flash);
  display: inline-block; padding: .4rem 1.2rem; border-radius: 10px; margin: .75rem 0 .5rem;
}

.public-footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  color: #8a8f98; font-size: .88rem; padding: 1rem .25rem 0;
}
.public-footer a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

.brand-logo { height: 44px; width: 44px; object-fit: contain; border-radius: 8px; background: #fff; }
.gallery-strip { display: flex; gap: .6rem; overflow-x: auto; padding: .25rem 0 .5rem; }
.gallery-strip img { height: 130px; border-radius: 10px; flex-shrink: 0; }
.bs-inline { color: #8a8f98; font-size: .9rem; }

.session-details {
  background: #faf8f3; border: 1px solid var(--wc-line); border-radius: 10px;
  padding: 1rem 1.25rem; margin-top: .75rem; font-size: .93rem;
}
.session-details-title { font-weight: 700; margin-bottom: .5rem; }
.session-details ul, .session-details ol { margin: 0 0 .5rem; padding-left: 1.25rem; }
.session-details li { margin-bottom: .25rem; }
.session-details p { margin-bottom: .5rem; }
.session-details :last-child { margin-bottom: 0; }
