/* =============================================================================
   NBH Booking widget - scoped styles
   All rules live under .nbh-bk (or .nbh-bk-modal for the widget-owned overlay)
   so the widget is safe to drop onto any page. Site design tokens are consumed
   via var(--token, fallback); when the host page does not define them the
   fallbacks reproduce the 2026 design system (periwinkle contact theme).
   No emojis, no em or en dashes anywhere.
   ============================================================================= */

.nbh-bk,
.nbh-bk-modal {
  --bk-ink: var(--color-ink, #1a1a1a);
  --bk-accent: var(--accent, var(--color-websites, #9eb5ff));
  --bk-paper: #ffffff;
  --bk-line: #d9dcec;
  --bk-line-soft: #e7e9f6;
  --bk-muted: #5f6275;
  --bk-field-bg: #ffffff;
  --bk-good: #1f7a4d;
  --bk-bad: #c0392b;
  --bk-radius: 16px;
  --bk-radius-lg: 22px;
  box-sizing: border-box;
  font-family: var(--font-sans, "Inter 24pt", system-ui, -apple-system, sans-serif);
  color: var(--bk-ink);
  -webkit-font-smoothing: antialiased;
}

.nbh-bk *,
.nbh-bk *::before,
.nbh-bk *::after,
.nbh-bk-modal *,
.nbh-bk-modal *::before,
.nbh-bk-modal *::after { box-sizing: border-box; }

.nbh-bk :focus-visible,
.nbh-bk-modal :focus-visible {
  outline: 2.5px solid var(--bk-ink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Robustness: keep the widget inside its container even when the host places it
   in a flex/grid item (grid/flex items default to min-width:auto and would
   otherwise refuse to shrink below the slot grid's content width). */
.nbh-bk:not(.nbh-bk--ultra) { max-width: 100%; min-width: 0; }
.nbh-bk--full .nbh-bk__cols,
.nbh-bk__slots-col,
.nbh-bk__form-col,
.nbh-bk__days,
.nbh-bk__day,
.nbh-bk__times { min-width: 0; }

/* ----- Panels ----------------------------------------------------------- */
.nbh-bk__panel {
  background: var(--bk-paper);
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: var(--bk-radius-lg);
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.08);
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.nbh-bk__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.1;
  color: var(--bk-ink);
}
.nbh-bk__intro {
  color: var(--bk-muted);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  margin-top: 0.5rem;
  max-width: 52ch;
}
.nbh-bk__eyebrow {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bk-muted);
  margin-bottom: 0.4rem;
}

/* ----- Two-panel (full variant) ---------------------------------------- */
.nbh-bk--full .nbh-bk__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}
@media (min-width: 860px) {
  .nbh-bk--full .nbh-bk__cols { grid-template-columns: 0.92fr 1.08fr; align-items: start; }
}
.nbh-bk__col-head { margin-bottom: 1rem; }

/* ----- Loading ---------------------------------------------------------- */
.nbh-bk__loading { display: flex; flex-direction: column; gap: 0.75rem; padding: 0.5rem 0; }
.nbh-bk__skel {
  height: 46px; border-radius: 10px;
  background: linear-gradient(100deg, var(--bk-line-soft) 30%, #f4f5fb 50%, var(--bk-line-soft) 70%);
  background-size: 200% 100%;
  animation: nbh-bk-shimmer 1.2s ease-in-out infinite;
}
.nbh-bk__skel--wide { height: 22px; width: 60%; }
@keyframes nbh-bk-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .nbh-bk__skel { animation: none; } }

/* ----- Timezone row ----------------------------------------------------- */
.nbh-bk__tzrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.7rem;
  margin-bottom: 1rem; color: var(--bk-muted); font-size: 0.9rem;
}
.nbh-bk__tzrow label { font-weight: 600; color: var(--bk-ink); }
.nbh-bk__tz {
  font: inherit; font-size: 0.9rem; color: var(--bk-ink); background: var(--bk-field-bg);
  border: 1.5px solid var(--bk-line); border-radius: 9999px; padding: 0.4rem 2rem 0.4rem 0.85rem;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.7rem center;
}

/* ----- Day groups + slots ---------------------------------------------- */
.nbh-bk__days { display: flex; flex-direction: column; gap: 1.15rem; }
.nbh-bk__day-label {
  font-weight: 700; color: var(--bk-ink); font-size: 0.95rem; letter-spacing: -0.01em;
  margin-bottom: 0.6rem; display: flex; align-items: baseline; gap: 0.5rem;
}
.nbh-bk__day-label .nbh-bk__day-rel { font-weight: 500; color: var(--bk-muted); font-size: 0.82rem; }
.nbh-bk__times {
  display: grid; gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
}
.nbh-bk__slot {
  font: inherit; cursor: pointer; background: var(--bk-field-bg); color: var(--bk-ink);
  border: 1.5px solid var(--bk-line); border-radius: 11px; padding: 0.6rem 0.4rem;
  font-weight: 600; font-size: 0.94rem; text-align: center;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}
.nbh-bk__slot:hover { border-color: var(--bk-accent); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(26, 26, 26, 0.08); }
.nbh-bk__slot[aria-pressed="true"] {
  background: var(--bk-accent); border-color: var(--bk-accent); color: var(--bk-ink);
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.14);
}
@media (prefers-reduced-motion: reduce) { .nbh-bk__slot:hover { transform: none; } }

.nbh-bk__loadmore {
  margin-top: 1.15rem; font: inherit; cursor: pointer; align-self: flex-start;
  background: transparent; color: var(--bk-ink); border: 1.5px solid var(--bk-line);
  border-radius: 9999px; padding: 0.55rem 1.3rem; font-weight: 600; font-size: 0.92rem;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.nbh-bk__loadmore:hover { border-color: var(--bk-accent); background: rgba(158, 181, 255, 0.12); }
.nbh-bk__loadmore[disabled] { opacity: 0.55; cursor: progress; }

.nbh-bk__empty {
  border: 1.5px dashed var(--bk-line); border-radius: var(--bk-radius); padding: 1.5rem 1.25rem;
  text-align: center; color: var(--bk-muted); font-size: 0.98rem; line-height: 1.5;
}

/* ----- Pinned (selected) slot ------------------------------------------ */
.nbh-bk__pinned {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem 1rem;
  background: rgba(158, 181, 255, 0.16); border: 1.5px solid var(--bk-accent);
  border-radius: var(--bk-radius); padding: 0.85rem 1.1rem; margin-bottom: 1.35rem;
}
.nbh-bk__pinned-time { font-weight: 700; color: var(--bk-ink); font-size: 1rem; line-height: 1.35; }
.nbh-bk__pinned-time span { display: block; font-weight: 500; color: var(--bk-muted); font-size: 0.86rem; }
.nbh-bk__change {
  font: inherit; background: none; border: none; cursor: pointer; color: var(--bk-ink);
  font-weight: 600; font-size: 0.9rem; text-decoration: underline; text-underline-offset: 3px; padding: 0.2rem;
}
.nbh-bk__change:hover { color: var(--bk-accent); }

/* ----- Right-panel prompt (full variant, no slot yet) ------------------ */
.nbh-bk__prompt {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0.6rem;
  min-height: 220px; border: 1.5px dashed var(--bk-line); border-radius: var(--bk-radius);
  padding: 1.5rem; color: var(--bk-muted);
}
.nbh-bk__prompt svg { width: 34px; height: 34px; color: var(--bk-accent); }
.nbh-bk__prompt strong { color: var(--bk-ink); font-size: 1.05rem; font-weight: 700; }

/* ----- Question form ---------------------------------------------------- */
.nbh-bk__q { margin-top: 1.4rem; }
.nbh-bk__q:first-child { margin-top: 0; }
.nbh-bk__q-label {
  display: block; font-weight: 700; color: var(--bk-ink); font-size: 0.98rem; margin-bottom: 0.6rem;
}
.nbh-bk__q-label .nbh-bk__opt { font-weight: 400; color: var(--bk-muted); }
.nbh-bk__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 560px) { .nbh-bk__grid { grid-template-columns: 1fr 1fr; } }
.nbh-bk__field { display: flex; flex-direction: column; gap: 0.35rem; }
.nbh-bk__field--full { grid-column: 1 / -1; }
.nbh-bk__field label { font-weight: 600; color: var(--bk-ink); font-size: 0.9rem; }
.nbh-bk__input {
  width: 100%; font: inherit; color: var(--bk-ink); background: var(--bk-field-bg);
  border: 1.5px solid var(--bk-line); border-radius: 12px; padding: 0.8rem 1rem; line-height: 1.4;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
textarea.nbh-bk__input { resize: vertical; min-height: 110px; }
.nbh-bk__input::placeholder { color: #9aa0bd; }
.nbh-bk__input:focus {
  outline: none; border-color: var(--bk-accent); box-shadow: 0 0 0 3px rgba(158, 181, 255, 0.4);
}

/* chips - real keyboard-operable inputs (hidden input + styled face) */
.nbh-bk__chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.nbh-bk__chip { cursor: pointer; display: inline-flex; }
.nbh-bk__chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nbh-bk__chip-face {
  display: inline-flex; align-items: center; gap: 0.4rem; background: var(--bk-field-bg); color: var(--bk-ink);
  border: 1.5px solid var(--bk-line); border-radius: 9999px; padding: 0.55rem 1.05rem;
  font-weight: 600; font-size: 0.94rem; line-height: 1.2;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.nbh-bk__chip input:checked + .nbh-bk__chip-face {
  background: var(--bk-accent); border-color: var(--bk-accent); color: var(--bk-ink);
}
.nbh-bk__chip input:focus-visible + .nbh-bk__chip-face { outline: 2.5px solid var(--bk-ink); outline-offset: 2px; }
.nbh-bk__chip:hover .nbh-bk__chip-face { border-color: var(--bk-accent); }

.nbh-bk__err { color: var(--bk-bad); font-size: 0.83rem; line-height: 1.3; min-height: 0; }
.nbh-bk__q.is-invalid .nbh-bk__q-label { color: var(--bk-bad); }
.nbh-bk__field.is-invalid .nbh-bk__input { border-color: var(--bk-bad); }
.nbh-bk__field.is-invalid label { color: var(--bk-bad); }

/* conditional hubs block */
.nbh-bk__conditional { display: none; margin-top: 1rem; }
.nbh-bk__conditional.is-open { display: block; }

/* honeypot - visually hidden, off-screen */
.nbh-bk__hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ----- Actions ---------------------------------------------------------- */
.nbh-bk__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.nbh-bk__submit {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; font: inherit;
  background: var(--bk-ink); color: #fff; border: none; border-radius: 9999px;
  padding: 0.85rem 1.9rem; font-weight: 600; font-size: 1.05rem; line-height: 1;
  transition: filter 0.18s ease, transform 0.12s ease;
}
.nbh-bk__submit:hover { filter: brightness(1.14); }
.nbh-bk__submit svg { width: 16px; height: 16px; }
.nbh-bk__submit[disabled] { opacity: 0.6; cursor: progress; }
.nbh-bk__fineprint { color: var(--bk-muted); font-size: 0.85rem; line-height: 1.5; max-width: 40ch; }
.nbh-bk__fineprint a { color: var(--bk-ink); text-decoration: underline; text-underline-offset: 2px; }

/* ----- Banners (slot taken / error) ------------------------------------ */
.nbh-bk__banner {
  display: flex; gap: 0.6rem; align-items: flex-start; margin: 0 0 1.25rem;
  border-radius: 12px; padding: 0.85rem 1.05rem; font-size: 0.94rem; line-height: 1.45;
}
.nbh-bk__banner svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.nbh-bk__banner--warn { background: #fef6e7; color: #8a5a12; }
.nbh-bk__banner--warn svg { color: #b9770f; }

/* ----- Confirmation ----------------------------------------------------- */
.nbh-bk__confirm { text-align: left; }
.nbh-bk__confirm-badge {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 9999px; background: var(--bk-accent); color: var(--bk-ink); margin-bottom: 1rem;
}
.nbh-bk__confirm-badge svg { width: 28px; height: 28px; }
.nbh-bk__confirm-when {
  margin: 1.1rem 0; padding: 1rem 1.2rem; background: rgba(158, 181, 255, 0.16);
  border: 1.5px solid var(--bk-accent); border-radius: var(--bk-radius);
  font-weight: 700; font-size: 1.1rem; line-height: 1.35; color: var(--bk-ink);
}
.nbh-bk__confirm-when span { display: block; font-weight: 500; color: var(--bk-muted); font-size: 0.9rem; margin-top: 0.15rem; }
.nbh-bk__confirm-sub { color: var(--bk-muted); font-size: 1rem; line-height: 1.55; max-width: 48ch; }
.nbh-bk__confirm-sub strong { color: var(--bk-ink); font-weight: 700; }

/* ----- Error / fallback ------------------------------------------------- */
.nbh-bk__fallback {
  border: 1.5px solid var(--bk-line); border-radius: var(--bk-radius); padding: 1.35rem 1.4rem;
  background: #fff;
}
.nbh-bk__fallback h4 { font-weight: 800; font-size: 1.15rem; color: var(--bk-ink); margin-bottom: 0.5rem; }
.nbh-bk__fallback p { color: var(--bk-muted); font-size: 0.98rem; line-height: 1.55; }
.nbh-bk__fallback-contacts { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; margin-top: 0.9rem; }
.nbh-bk__fallback-contacts a { color: var(--bk-ink); font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.nbh-bk__fallback-contacts a:hover { text-decoration: underline; text-underline-offset: 3px; }
.nbh-bk__retry {
  margin-top: 1rem; font: inherit; cursor: pointer; background: var(--bk-ink); color: #fff;
  border: none; border-radius: 9999px; padding: 0.6rem 1.35rem; font-weight: 600; font-size: 0.95rem;
}
.nbh-bk__retry:hover { filter: brightness(1.14); }

.nbh-bk__sr {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================ SMALL variant ============================= */
.nbh-bk--small .nbh-bk__panel { padding: clamp(1.2rem, 2.4vw, 1.7rem); }
.nbh-bk__mini-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.nbh-bk__mini-avatar {
  width: 46px; height: 46px; border-radius: 9999px; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--bk-accent); background: var(--bk-accent);
}
.nbh-bk__mini-title { font-weight: 800; font-size: 1.05rem; line-height: 1.2; color: var(--bk-ink); }
.nbh-bk__mini-sub { color: var(--bk-muted); font-size: 0.85rem; margin-top: 0.1rem; }
.nbh-bk__mini-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.nbh-bk__mini-slot {
  font: inherit; cursor: pointer; background: var(--bk-field-bg); color: var(--bk-ink);
  border: 1.5px solid var(--bk-line); border-radius: 11px; padding: 0.55rem 0.4rem;
  font-weight: 600; font-size: 0.9rem; line-height: 1.25; text-align: center;
  transition: border-color 0.15s ease, transform 0.12s ease;
}
.nbh-bk__mini-slot span { display: block; font-weight: 500; color: var(--bk-muted); font-size: 0.76rem; }
.nbh-bk__mini-slot:hover { border-color: var(--bk-accent); transform: translateY(-1px); }
.nbh-bk__seeall {
  width: 100%; margin-top: 0.75rem; font: inherit; cursor: pointer; text-align: center;
  background: var(--bk-ink); color: #fff; border: none; border-radius: 9999px;
  padding: 0.7rem 1.2rem; font-weight: 600; font-size: 0.95rem;
}
.nbh-bk__seeall:hover { filter: brightness(1.14); }

/* ============================ ULTRA variant ============================= */
.nbh-bk--ultra { display: inline-block; }
.nbh-bk__pill {
  display: inline-flex; align-items: center; gap: 0.6rem; cursor: pointer; font: inherit;
  background: var(--bk-accent); color: var(--bk-ink); border: none; border-radius: 9999px;
  padding: 0.7rem 1.35rem; font-weight: 700; font-size: 1rem; line-height: 1;
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.12);
  transition: transform 0.14s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.nbh-bk__pill:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(26, 26, 26, 0.18); filter: brightness(1.02); }
.nbh-bk__pill svg { width: 17px; height: 17px; flex-shrink: 0; }
.nbh-bk__pill .nbh-bk__pill-when { font-weight: 500; opacity: 0.85; }
@media (prefers-reduced-motion: reduce) { .nbh-bk__pill:hover { transform: none; } }

/* ============================ MODAL ==================================== */
.nbh-bk-modal { position: fixed; inset: 0; z-index: 2147483000; display: none; }
.nbh-bk-modal.is-open { display: block; }
.nbh-bk-modal__overlay {
  position: absolute; inset: 0; background: rgba(20, 20, 30, 0.55);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  animation: nbh-bk-fade 0.2s ease;
}
.nbh-bk-modal__dialog {
  position: relative; margin: auto; max-width: 640px; width: calc(100% - 2rem);
  max-height: calc(100dvh - 2rem); overflow-y: auto;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--bk-paper); border-radius: var(--bk-radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: clamp(1.35rem, 3vw, 2.2rem);
  animation: nbh-bk-pop 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes nbh-bk-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes nbh-bk-pop { from { opacity: 0; transform: translate(-50%, -46%) scale(0.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@media (prefers-reduced-motion: reduce) { .nbh-bk-modal__overlay, .nbh-bk-modal__dialog { animation: none; } }
.nbh-bk-modal__close {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  background: #f1f2f8; color: var(--bk-ink); border: none; border-radius: 9999px;
  transition: background-color 0.18s ease;
}
.nbh-bk-modal__close:hover { background: #e4e6f1; }
.nbh-bk-modal__close svg { width: 20px; height: 20px; }
.nbh-bk-modal .nbh-bk__panel { box-shadow: none; border: none; padding: 0; }
.nbh-bk-modal .nbh-bk { padding-top: 0.5rem; }

/* ----- Premium polish: state-change motion ------------------------------ */
/* One entrance for every step swap (prompt -> form -> confirmation). Fast,
   exponential ease-out; transform and opacity only. */
.nbh-bk__enter { animation: nbh-bk-rise 0.34s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes nbh-bk-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* The confirmation is the peak moment: stagger its pieces. */
.nbh-bk__confirm > * { animation: nbh-bk-rise 0.42s cubic-bezier(0.16, 1, 0.3, 1) both; }
.nbh-bk__confirm > *:nth-child(2) { animation-delay: 0.06s; }
.nbh-bk__confirm > *:nth-child(3) { animation-delay: 0.12s; }
.nbh-bk__confirm > *:nth-child(4) { animation-delay: 0.18s; }

/* Tactile press feedback on every tappable face. */
.nbh-bk__slot:active,
.nbh-bk__mini-slot:active,
.nbh-bk__chip:active .nbh-bk__chip-face,
.nbh-bk__seeall:active,
.nbh-bk__loadmore:active,
.nbh-bk__pill:active,
.nbh-bk__submit:active { transform: scale(0.975); }
.nbh-bk__chip-face { transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.1s ease; }

/* Submit: lift on hover, arrow nudges forward. */
.nbh-bk__submit { transition: filter 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease; }
.nbh-bk__submit:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(26, 26, 26, 0.2); }
.nbh-bk__submit svg { transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1); }
.nbh-bk__submit:hover svg { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .nbh-bk__enter,
  .nbh-bk__confirm > * { animation: none; }
  .nbh-bk__slot:active,
  .nbh-bk__mini-slot:active,
  .nbh-bk__chip:active .nbh-bk__chip-face,
  .nbh-bk__seeall:active,
  .nbh-bk__loadmore:active,
  .nbh-bk__pill:active,
  .nbh-bk__submit:active,
  .nbh-bk__submit:hover { transform: none; }
}

/* ============================ BANNER variant ============================ */
/* Dark ink band against the lavender page, mirroring the site's footer CTA
   contrast. Times render as accent chips so they read as live, not static. */
.nbh-bk--banner { display: block; }
.nbh-bk__band {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem;
  background: var(--bk-ink); color: #f4f5fb;
  border-radius: var(--bk-radius-lg); padding: clamp(1.3rem, 2.6vw, 1.9rem) clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.16);
}
.nbh-bk__band-avatar {
  width: 56px; height: 56px; border-radius: 9999px; object-fit: cover; flex-shrink: 0;
  border: 2.5px solid var(--bk-accent); background: var(--bk-accent);
}
.nbh-bk__band-copy { flex: 1 1 220px; min-width: 0; }
.nbh-bk__band-title { font-weight: 800; font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.02em; line-height: 1.15; color: #ffffff; }
.nbh-bk__band-sub { color: rgba(244, 245, 251, 0.72); font-size: 0.92rem; margin-top: 0.3rem; line-height: 1.45; }
.nbh-bk__band-slots { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.nbh-bk__band-slot {
  font: inherit; cursor: pointer; background: rgba(158, 181, 255, 0.14); color: #ffffff;
  border: 1.5px solid rgba(158, 181, 255, 0.5); border-radius: 9999px;
  padding: 0.72rem 1.05rem; font-weight: 600; font-size: 0.88rem; line-height: 1;
  min-height: 44px;
  transition: background-color 0.16s ease, border-color 0.16s ease, transform 0.1s ease;
}
.nbh-bk__band-slot:hover { background: var(--bk-accent); border-color: var(--bk-accent); color: var(--bk-ink); }
.nbh-bk__band-slot:active { transform: scale(0.97); }
.nbh-bk__band-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; font: inherit;
  background: var(--bk-accent); color: var(--bk-ink); border: none; border-radius: 9999px;
  padding: 0.8rem 1.5rem; font-weight: 700; font-size: 0.98rem; line-height: 1;
  transition: transform 0.14s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.nbh-bk__band-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3); filter: brightness(1.03); }
.nbh-bk__band-cta:active { transform: scale(0.975); }
.nbh-bk__band-cta svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  .nbh-bk__band-slots { width: 100%; order: 3; }
  .nbh-bk__band-cta { width: 100%; order: 4; justify-content: center; }
}

/* ============================ STRIP variant ============================= */
.nbh-bk--strip { display: inline-block; max-width: 100%; }
.nbh-bk__strip {
  display: inline-flex; align-items: center; gap: 0.7rem; cursor: pointer; font: inherit;
  background: var(--bk-paper); color: var(--bk-ink);
  border: 1.5px solid var(--bk-line); border-radius: 9999px;
  padding: 0.45rem 1.1rem 0.45rem 0.45rem; max-width: 100%;
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.08);
  transition: border-color 0.16s ease, transform 0.14s ease, box-shadow 0.18s ease;
}
.nbh-bk__strip:hover { border-color: var(--bk-accent); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(26, 26, 26, 0.12); }
.nbh-bk__strip:active { transform: scale(0.98); }
.nbh-bk__strip-avatar {
  width: 38px; height: 38px; border-radius: 9999px; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--bk-accent); background: var(--bk-accent);
}
.nbh-bk__strip-label { font-weight: 700; font-size: 0.96rem; white-space: nowrap; }
.nbh-bk__strip-when {
  background: rgba(158, 181, 255, 0.2); color: var(--bk-ink); border-radius: 9999px;
  padding: 0.3rem 0.75rem; font-weight: 600; font-size: 0.84rem; white-space: nowrap;
}
.nbh-bk__strip svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--bk-muted); }
@media (max-width: 480px) { .nbh-bk__strip-when { display: none; } }

/* ============================ LINK variant ============================== */
.nbh-bk--link { display: inline; }
.nbh-bk__link {
  font: inherit; cursor: pointer; background: none; border: none; padding: 0;
  color: var(--bk-ink); font-weight: 700; font-size: inherit; line-height: inherit;
  text-decoration: underline; text-decoration-thickness: 2px;
  text-decoration-color: var(--bk-accent); text-underline-offset: 4px;
  transition: text-decoration-color 0.16s ease, color 0.16s ease;
}
.nbh-bk__link:hover { text-decoration-color: var(--bk-ink); }
.nbh-bk__link-when { font-weight: 500; color: var(--bk-muted); }

@media (prefers-reduced-motion: reduce) {
  .nbh-bk__band-slot:active, .nbh-bk__band-cta:active, .nbh-bk__band-cta:hover,
  .nbh-bk__strip:active, .nbh-bk__strip:hover { transform: none; }
}

/* ----- Day picker strip (rolled-up slot list) --------------------------- */
.nbh-bk__daybar {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 2px 2px 0.9rem;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.nbh-bk__daybar::-webkit-scrollbar { display: none; }
.nbh-bk__daypill {
  font: inherit; cursor: pointer; flex-shrink: 0; text-align: center;
  background: var(--bk-field-bg); color: var(--bk-ink);
  border: 1.5px solid var(--bk-line); border-radius: 13px;
  padding: 0.5rem 0.95rem; line-height: 1.2; min-width: 76px;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.1s ease;
}
.nbh-bk__daypill:hover { border-color: var(--bk-accent); }
.nbh-bk__daypill:active { transform: scale(0.97); }
.nbh-bk__daypill[aria-pressed="true"] {
  background: var(--bk-ink); border-color: var(--bk-ink); color: #ffffff;
}
.nbh-bk__daypill-wk { display: block; font-weight: 700; font-size: 0.88rem; }
.nbh-bk__daypill-dm { display: block; font-weight: 500; font-size: 0.78rem; opacity: 0.72; margin-top: 0.1rem; }
.nbh-bk__daypill--more { border-style: dashed; background: transparent; }
.nbh-bk__daypill--more[disabled] { opacity: 0.55; cursor: progress; }
.nbh-bk__daybar + .nbh-bk__day-label { margin-bottom: 0.6rem; }
@media (prefers-reduced-motion: reduce) { .nbh-bk__daypill:active { transform: none; } }

/* ----- Medium card header (avatar + title) ------------------------------ */
.nbh-bk__col-head--avatar {
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.25rem;
}
.nbh-bk__col-head--avatar .nbh-bk__intro { margin-top: 0.15rem; }
.nbh-bk__head-avatar {
  width: 52px; height: 52px; border-radius: 9999px; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--bk-accent); background: var(--bk-accent);
}
