/* Ported from ~/Work/comfortly-prototype/app/booking-flow for public booking fast flow parity. */
/* booking.css */
/* Comfort.ly — Guest-facing booking flow
   Layered on tokens.css. No app shell — pure paper canvas.
*/

/* Reset within booking artboards (the canvas hosts may zoom; keep px-based) */
.bk-page {
  color: var(--ink);
  font-family: var(--font-sans);
  min-height: 100vh;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.bk-page * { box-sizing: border-box; }

/* ── Property header ────────────────────────────── */
.bk-header {
  --bk-header-y-padding: 20px;
  --bk-header-x-padding: 40px;
  --bk-header-top-bleed: max(env(safe-area-inset-top, 0px), 96px);

  position: sticky;
  top: calc(0px - var(--bk-header-top-bleed));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: calc(0px - var(--bk-header-top-bleed));
  padding: calc(var(--bk-header-y-padding) + var(--bk-header-top-bleed)) var(--bk-header-x-padding) var(--bk-header-y-padding);
  border-bottom: 1.5px dashed rgba(31,31,31,.18);
  background: rgba(250,246,238,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bk-header .left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bk-header .property-mark {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--char);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  position: relative;
}
.bk-header .property-mark span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bk-header .property-mark::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px dashed rgba(31,31,31,.35);
  border-radius: 999px;
}
.bk-header .property-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1;
}
.bk-header .property-name em { font-style: italic; font-weight: 400; }
.bk-header .property-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.bk-header .property-meta .dot {
  width: 3px; height: 3px; border-radius: 999px; background: var(--ink-mute);
}
.bk-header .right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bk-header-utility {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.bk-header-utility a { color: var(--ink-2); text-decoration: none; cursor: default; }
.bk-header-utility a:hover { color: var(--ink); }

/* Mobile-only header controls (back button, step counter, hamburger) — hidden on desktop */
.bk-header-back,
.bk-header-step,
.bk-header-menu { display: none; }
.bk-header-back {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(31,31,31,.16);
  background: var(--paper-card);
  color: var(--ink-2);
  align-items: center;
  justify-content: center;
}
.bk-header-step {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.bk-header-menu { position: relative; }
.bk-header-menu-toggle {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(31,31,31,.16);
  background: var(--paper-card);
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.bk-header-menu-toggle span { width: 13px; height: 1.5px; background: currentColor; }
.bk-header-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: 232px;
  padding: 14px 16px;
  background: var(--paper-card);
  border: 1px solid rgba(31,31,31,.14);
  border-radius: 14px;
  box-shadow: 0 18px 40px -22px rgba(40,28,10,.45);
}
.bk-header-menu-panel:not(.hidden) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-header-menu-prop .property-name { font-size: 17px; }
.bk-header-menu-prop .property-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-2);
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.bk-header-menu-link {
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  padding-top: 10px;
  border-top: 1.5px dashed rgba(31,31,31,.16);
}
.bk-header-menu-langs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
  border-top: 1.5px dashed rgba(31,31,31,.16);
}
.bk-header-menu-langs-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.bk-header-menu-langs .lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
}
.bk-header-menu-langs .lang-option:not(.is-active) { padding-left: 29px; }
.bk-header-menu-langs .lang-option.is-active { color: var(--ink); font-weight: 600; }
.bk-header-menu-langs .lang-check { color: var(--terra); }
.bk-header .lang { position: relative; }
.bk-header .lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(31,31,31,.16);
  background: var(--paper-card);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: var(--ink-2);
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.bk-header .lang-toggle:hover { color: var(--ink); border-color: rgba(31,31,31,.28); }
.bk-header .lang-caret { opacity: .55; }
.bk-header .lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 168px;
  padding: 6px;
  background: var(--paper-card);
  border: 1px solid rgba(31,31,31,.12);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(31,31,31,.14);
}
.bk-header .lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.bk-header .lang-option:hover { background: rgba(31,31,31,.05); color: var(--ink); }
.bk-header .lang-option.is-active { color: var(--ink); font-weight: 600; }
.bk-header .lang-option .lang-check { color: var(--terra); }
.bk-header .lang-option:not(.is-active) { padding-left: 31px; }

/* ── Stepper ────────────────────────────────────── */
.bk-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0 12px;
  flex-wrap: wrap;
}
.bk-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bk-step .num {
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 1.5px dashed rgba(31,31,31,.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-family: var(--font-mono);
  background: var(--paper-card);
  letter-spacing: 0;
  line-height: 1;
  text-indent: 0;
}
.bk-step.done .num { background: var(--char); color: var(--paper); border: 1px solid var(--char); }
.bk-step.current { color: var(--ink); }
.bk-step.current .num {
  background: var(--terra); color: #fff; border: 1px solid var(--terra);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--terra) 12%, transparent);
}
.bk-step .check { display: inline-flex; }
.bk-step-sep {
  width: 36px; height: 1px;
  border-top: 1.5px dashed rgba(31,31,31,.25);
  margin: 0 -2px;
}

/* ── Layout containers ─────────────────────────── */
.bk-shell {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 40px 56px;
}

.bk-pagehead {
  text-align: left;
  padding: 22px 0 28px;
}
.bk-pagehead .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.bk-pagehead .eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--ink);
}
.bk-pagehead h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--ink);
}
.bk-pagehead h1 em { font-style: italic; font-weight: 400; }
.bk-pagehead .sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0;
}

/* Two-col with sticky cart */
.bk-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
.bk-cart-col {
  position: sticky;
  /* clears the sticky header (~80px) so the cart isn't tucked underneath */
  top: 100px;
}

/* Single-col narrower for search & checkout */
.bk-single {
  max-width: 640px;
  margin: 0 auto;
}

/* ── Cards ─────────────────────────────────────── */
.bk-card {
  background: var(--paper-card);
  border: 1px solid rgba(15,14,11,.10);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 1px 2px rgba(60,40,15,.05),
    0 22px 40px -28px rgba(40,28,10,.28);
  position: relative;
  /* Allow popovers (date picker) to escape the card */
  overflow: visible;
}
.bk-card > .bk-card-head { border-radius: 16px 16px 0 0; }
.bk-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1.5px dashed rgba(31,31,31,.18);
}
.bk-card-head h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bk-card-head .head-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--paper-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
}
.bk-card-body { padding: 20px 22px 22px; overflow: visible; }

/* ── Forms ─────────────────────────────────────── */
.bk-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
/* Form-field labels match the app's standard forms (sentence-case sans, not mono caps) */
.bk-field .bk-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.bk-input, .bk-select, .bk-textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper-card);
  border: 1px solid rgba(31,31,31,.18);
  border-radius: 10px;
  padding: 13px 14px;
  width: 100%;
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.bk-input:focus, .bk-select:focus, .bk-textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(31,31,31,.08);
  background: #fff;
}
.bk-textarea { resize: vertical; min-height: 96px; line-height: 1.55; font-family: inherit; }

/* Date input — show as paper ticket-ish */
.bk-date-tile {
  border: 1px solid rgba(31,31,31,.16);
  background: var(--paper-card);
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  cursor: default;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.bk-date-tile:hover { border-color: rgba(31,31,31,.32); box-shadow: 0 8px 18px -16px rgba(60,40,15,.4); }
.bk-date-tile .ic { color: var(--ink-mute); }
.bk-date-tile .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.bk-date-tile .val {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
}
.bk-date-tile .val em { font-style: italic; font-weight: 400; }
.bk-date-tile .meta {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* Stepper number control */
.bk-counter {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(31,31,31,.16);
  border-radius: 999px;
  background: var(--paper-card);
  overflow: hidden;
}
.bk-counter button {
  width: 36px; height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font-size: 16px;
  cursor: default;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
}
.bk-counter button:hover { background: rgba(31,31,31,.05); color: var(--ink); }
.bk-counter button:disabled { opacity: 0.35; pointer-events: none; }
.bk-counter .v {
  min-width: 36px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Guests row card */
.bk-guests-tile {
  border: 1px solid rgba(31,31,31,.16);
  background: var(--paper-card);
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
}
.bk-guests-tile .ic { color: var(--ink-mute); }
.bk-guests-tile .lbl {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bk-guests-tile .val {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 1px;
}

/* ── Buttons ───────────────────────────────────── */
.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: default;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease), box-shadow .15s var(--ease);
  white-space: nowrap;
  user-select: none;
}
.bk-btn:hover { transform: translateY(-1px); }
.bk-btn.primary {
  background: var(--ink);
  color: var(--paper);
}
.bk-btn.primary:hover { background: #000; }
.bk-btn.accent {
  background: var(--terra);
  color: #fff;
}
.bk-btn.accent:hover { background: color-mix(in srgb, var(--terra) 85%, #000); }
.bk-btn.ghost {
  border: 1px solid rgba(31,31,31,.18);
  background: var(--paper-card);
}
.bk-btn.ghost:hover { background: rgba(31,31,31,.04); border-color: rgba(31,31,31,.3); }
.bk-btn.lg { padding: 14px 26px; font-size: 15px; }
.bk-btn.sm { padding: 8px 14px; font-size: 12.5px; }
.bk-btn.block { width: 100%; }
.bk-btn.text {
  background: transparent;
  color: var(--ink-2);
  padding: 6px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bk-btn.text:hover { color: var(--terra); }
.bk-btn.link {
  background: transparent;
  border: none;
  color: var(--ink);
  padding: 8px 4px;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.bk-btn.link:hover { color: var(--terra); }
.bk-btn.disabled,
.bk-btn:disabled,
.bk-btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }
.bk-btn:disabled:hover,
.bk-btn[aria-disabled="true"]:hover { transform: none; }
.bk-btn .bk-loading-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
.bk-btn.lg .bk-loading-icon {
  width: 16px;
  height: 16px;
}
.bk-btn .bk-btn-icon {
  display: inline-flex;
}
.bk-btn .bk-btn-icon.hidden {
  display: none;
}

/* ── Chips ─────────────────────────────────────── */
.bk-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(31,31,31,.18);
  background: var(--paper-card);
  color: var(--ink-2);
}
.bk-chip.terra { color: var(--terra); border-color: color-mix(in srgb, var(--terra) 40%, transparent); background: color-mix(in srgb, var(--terra) 8%, transparent); }
.bk-chip.sage  { color: #5b6b52; border-color: rgba(122,138,111,.45); background: rgba(122,138,111,.12); }
.bk-chip.amber { color: #8a6c1f; border-color: rgba(233,185,73,.55); background: rgba(242,200,121,.18); }

/* "Stamp" — rotated bordered terra label */
.bk-stamp {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1.5px solid var(--terra);
  padding: 3px 8px;
  border-radius: 4px;
  transform: rotate(-3deg);
  background: color-mix(in srgb, var(--terra) 6%, transparent);
  white-space: nowrap;
  flex-shrink: 0;
}
.bk-stamp.sage { color: #5b6b52; border-color: #7a8a6f; background: rgba(122,138,111,.08); }

/* ── Search summary bar (top of step 2/3) ─────── */
.bk-summary {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(31,31,31,.14);
  background: var(--paper-card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 8px 22px -16px rgba(60,40,15,.18);
}
.bk-summary-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 22px;
  flex: 1;
  border-right: 1.5px dashed rgba(31,31,31,.16);
  min-width: 0;
}
.bk-summary-cell:last-child { border-right: 0; }
.bk-summary-cell .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.bk-summary-cell .val {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.bk-summary-cell .val em { font-style: italic; font-weight: 400; }
.bk-summary-cell .val .small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  display: block;
  margin-top: 2px;
}
.bk-summary-edit {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--paper-soft);
}

/* Compact one-line summary (mobile only — see media query) */
.bk-summary-compact {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(31,31,31,.14);
  background: var(--paper-card);
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 8px 22px -16px rgba(60,40,15,.18);
}
.bk-summary-compact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.bk-summary-compact-info svg { color: var(--ink-mute); flex-shrink: 0; }
.bk-summary-compact-info .dates { color: var(--ink); }
.bk-summary-compact-info .arr { color: var(--ink-mute); margin: 0 2px; }
.bk-summary-compact-info .sep { color: var(--ink-mute); }
.bk-summary-compact .bk-btn.text { flex-shrink: 0; }
.bk-room-intro { margin-top: 22px; margin-bottom: 6px; }

/* ── Unit card (step 2) ───────────────────────── */
.bk-unit-card {
  background: var(--paper-card);
  border: 1px solid rgba(15,14,11,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 1px 2px rgba(60,40,15,.05),
    0 22px 40px -28px rgba(40,28,10,.28);
}
.bk-unit-photo {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.bk-unit-photo .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(31,31,31,.045) 0 12px,
      rgba(31,31,31,.02) 12px 24px
    ),
    var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bk-unit-photo .pill-row {
  position: absolute;
  bottom: 14px; left: 14px;
  display: flex; gap: 6px;
}
.bk-unit-card .body { padding: 22px 24px 14px; }
.bk-unit-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.bk-unit-card h3 em { font-style: italic; font-weight: 400; }
.bk-unit-card .descrip {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 8px 0 14px;
  max-width: 56ch;
}
.bk-unit-card .specs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  padding-bottom: 6px;
}
.bk-unit-card .specs > span {
  display: inline-flex; gap: 6px; align-items: center;
}
.bk-unit-card .specs .ic { color: var(--ink-mute); display: inline-flex; }
.bk-unit-card .rates {
  border-top: 1.5px dashed rgba(31,31,31,.18);
  padding: 0 24px;
}
.bk-rate-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}
.bk-rate-row + .bk-rate-row { border-top: 1.5px dashed rgba(31,31,31,.16); }
.bk-rate-row .name {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.bk-rate-row .desc {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 4px;
  max-width: 50ch;
  line-height: 1.5;
}
.bk-rate-row .price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.bk-rate-row .price .struck {
  font-size: 13px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.bk-rate-row .price .now {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bk-rate-row .price .now.italic { font-style: italic; font-weight: 400; }
.bk-rate-row .price .now.terra { color: var(--terra); }
.bk-rate-row .price .per {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ── Cart sidecard ─────────────────────────────── */
.bk-cart {
  background: var(--paper-card);
  border: 1px solid rgba(15,14,11,.10);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 1px 2px rgba(60,40,15,.05),
    0 22px 40px -28px rgba(40,28,10,.28);
  position: relative;
  overflow: visible;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bk-cart .tape {
  position: absolute;
  top: -10px; left: 24px;
  width: 84px; height: 20px;
  transform: rotate(-3deg);
  background: color-mix(in srgb, var(--terra) 40%, transparent);
  border-left: 1px dashed rgba(0,0,0,.18);
  border-right: 1px dashed rgba(0,0,0,.18);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  z-index: 2;
}
.bk-cart hr.rule { border: 0; border-top: 1.5px dashed rgba(31,31,31,.18); margin: 0; }
.bk-cart .cart-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.bk-cart .cart-head .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.bk-cart .cart-head .label .rule { width: 24px; height: 1px; background: var(--ink); }
.bk-cart .cart-head .nights {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.bk-cart .empty {
  padding: 24px 0;
  text-align: center;
  font-style: italic;
  color: var(--ink-2);
  font-size: 14px;
  font-family: var(--font-serif);
}
.bk-cart .cart-room { display: flex; flex-direction: column; gap: 4px; }
.bk-cart .cart-room .row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.bk-cart .cart-room .name { font-family: var(--font-serif); font-weight: 500; font-size: 16px; letter-spacing: -0.01em; }
.bk-cart .cart-room .amount { font-size: 14px; font-variant-numeric: tabular-nums; color: var(--ink); }
.bk-cart .cart-room .sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--ink-mute); }
.bk-cart .cart-row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.bk-cart .cart-row.aux { font-size: 13px; color: var(--ink-2); }
.bk-cart .cart-row.aux .name { font-style: italic; }
.bk-cart .cart-row .qty { font-family: var(--font-mono); font-style: normal; margin-right: 6px; }
.bk-cart .cart-row .amount { font-variant-numeric: tabular-nums; }
.bk-cart .cart-row.promo { font-size: 13px; color: var(--terra); }
.bk-cart .cart-total { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.bk-cart .cart-total .lbl { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--ink); }
.bk-cart .cart-total .amt { font-family: var(--font-serif); font-weight: 500; font-size: 30px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.bk-cart .small-note { font-size: 11.5px; color: var(--ink-2); font-style: italic; text-align: right; }
.bk-cart .bk-cart-promo { display: flex; flex-direction: column; gap: 6px; }
.bk-promo-remove { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); text-decoration: none; white-space: nowrap; }
.bk-promo-remove:hover { color: var(--terra); }

.bk-cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 14px;
}
.bk-cart-line .l-name {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
}
.bk-cart-line .l-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-top: 2px;
}
.bk-cart-line .l-amt {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bk-cart-line.dim .l-amt, .bk-cart-line.dim .l-name { color: var(--ink-2); font-weight: 400; }

.bk-cart .totals {
  border-top: 1.5px dashed rgba(31,31,31,.18);
  margin-top: 8px;
  padding-top: 12px;
}
.bk-cart .totals .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--ink-2);
  padding: 4px 0;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.bk-cart .totals .row.grand {
  border-top: 1.5px dashed rgba(31,31,31,.18);
  margin-top: 8px;
  padding-top: 14px;
}
.bk-cart .totals .row.grand .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.bk-cart .totals .row.grand .amt {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  color: var(--terra);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ── Promo applied banner ──────────────────────── */
.bk-promo-banner {
  border: 1.5px dashed rgba(122,138,111,.55);
  background: rgba(122,138,111,.10);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
}
.bk-promo-banner .l {
  display: flex; gap: 10px; align-items: center;
  color: #4d5a45;
}
.bk-promo-banner em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: #3a4435;
}

/* ── Add-on (product) tile ─────────────────────── */
.bk-addon {
  background: var(--paper-card);
  border: 1px solid rgba(15,14,11,.10);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 16px 30px -24px rgba(40,28,10,.22);
}
.bk-addon .pic {
  height: 100%;
  min-height: 160px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(31,31,31,.045) 0 10px,
      rgba(31,31,31,.02) 10px 20px
    ),
    var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-right: 1.5px dashed rgba(31,31,31,.18);
  position: relative;
}
.bk-addon .pic.gift {
  background:
    radial-gradient(120% 80% at 50% 30%, color-mix(in srgb, var(--terra) 16%, transparent), transparent 60%),
    repeating-linear-gradient(135deg, color-mix(in srgb, var(--terra) 12%, transparent) 0 10px, color-mix(in srgb, var(--terra) 4%, transparent) 10px 20px),
    var(--paper-2);
  color: var(--terra);
}
.bk-addon .body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-addon h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}
.bk-addon h4 em { font-style: italic; font-weight: 400; }
.bk-addon p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
  max-width: 60ch;
}
.bk-addon .foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  gap: 16px;
  padding-top: 8px;
}
.bk-addon .price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bk-addon .price.struck {
  font-size: 14px;
  color: var(--ink-mute);
  text-decoration: line-through;
  font-family: var(--font-mono);
  margin-right: 8px;
}
.bk-addon .price-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.bk-addon-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.bk-addon .package-includes {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1.5px dashed rgba(31,31,31,.16);
  padding-top: 12px;
  margin-top: 4px;
}
.bk-addon .package-includes .row {
  display: inline-flex; gap: 8px; align-items: center;
}
.bk-addon .package-includes .row .ic {
  color: var(--terra);
}

/* Section group */
.bk-group {
  margin-bottom: 32px;
}
.bk-group .group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.bk-group .group-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
}
.bk-group .group-head h2 em { font-style: italic; font-weight: 400; }
.bk-group .group-head .ey {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.bk-stack { display: grid; gap: 18px; }

/* ── Checkbox ───────────────────────────────────── */
.bk-checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 4px 0;
  -webkit-user-select: none;
  user-select: none;
}
.bk-checkbox .box {
  width: 20px; height: 20px;
  border: 1.5px solid rgba(31,31,31,.4);
  border-radius: 6px;
  background: var(--paper-card);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
  cursor: pointer;
  color: transparent;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.bk-checkbox.on .box {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.bk-checkbox .lbl {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  cursor: pointer;
}
.bk-checkbox .lbl a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(31,31,31,.3); text-decoration-style: dashed; text-underline-offset: 3px; }

/* ── Card surface (payment) ─────────────────────── */
.bk-payment-mock {
  border: 1px solid rgba(31,31,31,.18);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--paper-card);
  display: block;
}
.bk-payment-mock .dots {
  font-family: var(--font-mono);
  letter-spacing: 0.3em;
  font-size: 16px;
  color: var(--ink);
  flex: 1;
}
.bk-payment-mock .right {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
}

/* ── Confirmation ─────────────────────────────── */
.bk-confirm-stage {
  text-align: center;
  padding: 60px 40px 24px;
}
.bk-confirm-stage .seal {
  width: 110px; height: 110px;
  border: 2px dashed var(--terra);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--terra);
  background: color-mix(in srgb, var(--terra) 7%, transparent);
  transform: rotate(-4deg);
  margin-bottom: 22px;
  position: relative;
}
.bk-confirm-stage .seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--terra);
  border-radius: 999px;
  opacity: 0.55;
}
.bk-confirm-stage h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  line-height: 1;
}
.bk-confirm-stage h1 em { font-style: italic; font-weight: 400; }
.bk-confirm-stage .conf-id {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1.5px dashed rgba(31,31,31,.3);
  background: var(--paper-card);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.bk-confirm-stage .lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto 18px;
  line-height: 1.55;
}

/* ── Footer ───────────────────────────────────── */
.bk-footer {
  border-top: 1.5px dashed rgba(31,31,31,.18);
  padding: 28px 40px 36px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bk-footer .powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bk-footer .powered .lbl { opacity: 0.7; }

/* ── Mobile sticky bar (for choose room / addons) ─ */
.bk-stickybar {
  position: absolute;
  left: 16px; right: 16px;
  bottom: 16px;
  background: var(--char);
  color: var(--on-char);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 14px 36px -16px rgba(0,0,0,.55);
}
.bk-stickybar .l {
  display: flex; gap: 12px; align-items: center; min-width: 0;
}
.bk-stickybar .l .ic { color: rgba(250,246,238,.6); }
.bk-stickybar .l .name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--on-char);
  line-height: 1;
}
.bk-stickybar .l .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--on-char-2);
  margin-top: 4px;
}
.bk-stickybar .r {
  display: inline-flex; gap: 8px; align-items: center;
}

/* ── small util ───────────────────────────────── */
.bk-mt-12 { margin-top: 12px; }
.bk-mt-18 { margin-top: 18px; }
.bk-mt-24 { margin-top: 24px; }
.bk-flex { display: flex; align-items: center; gap: 10px; }
.bk-gap-6 { gap: 6px; }
.bk-spread { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.bk-mono { font-family: var(--font-mono); }
.bk-serif { font-family: var(--font-serif); }
.bk-mute { color: var(--ink-mute); }

@media (max-width: 640px) {
  /* Room rate rows stack vertically (the 3-col grid overflows on phones) */
  .bk-rate-row { grid-template-columns: 1fr; gap: 10px; }
  .bk-rate-row .price { text-align: left; flex-direction: row; align-items: baseline; flex-wrap: wrap; gap: 8px; }
  .bk-rate-row .price .now { font-size: 24px; }
  .bk-rate-row .price .struck { display: none; } /* SAVE chip already conveys the discount */
  .bk-rate-row .desc { font-size: 13px; margin-top: 2px; }
  .bk-rate-row .bk-btn { width: 100%; justify-content: center; }

  /* Add-on cards stack (photo over body) — the 200px photo col overflows */
  .bk-addon { grid-template-columns: 1fr; }
  .bk-addon .pic { height: 120px; min-height: 120px; border-right: 0; border-bottom: 1.5px dashed rgba(31,31,31,.18); }
  .bk-addon h4 { font-size: 19px; }

  /* Stack the stepper + remove link (remove sits under the stepper) so the row doesn't squish */
  .bk-addon-actions { flex-direction: column; align-items: flex-end; gap: 8px; }
}

/* Interactive controls use a pointer cursor */
.bk-btn,
.bk-page button,
.bk-checkbox { cursor: pointer; }
.bk-btn.disabled,
.bk-btn:disabled,
.bk-page button:disabled { cursor: not-allowed; }

/* bk-datepicker.css */
/* Date Picker — paper popover, two-month range
   Anchors under the dates row. Mobile: single-month, sticky footer.
*/

.bk-dp-anchor { position: relative; }

.bk-dp-trigger {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(31,31,31,.16);
  background: var(--paper-card);
  border-radius: 14px;
  overflow: hidden;
  cursor: default;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.bk-dp-trigger:hover { border-color: rgba(31,31,31,.32); box-shadow: 0 8px 18px -16px rgba(60,40,15,.4); }
.bk-dp-trigger.open {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(31,31,31,.08);
}
/* Reset native button defaults — these were leaking before user opened the picker */
.bk-dp-trigger-cell {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: default;
  font: inherit;
  color: inherit;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  outline: none;
}
.bk-dp-trigger-cell:focus-visible { box-shadow: inset 0 0 0 2px rgba(31,31,31,.18); }
.bk-dp-trigger-cell:hover { background: rgba(31,31,31,.03); }
.bk-dp-trigger-cell.active { background: color-mix(in srgb, var(--terra) 6%, transparent); }
.bk-dp-trigger-cell .ic { color: var(--ink-mute); display: inline-flex; align-self: center; }
.bk-dp-trigger-cell > span { display: block; min-width: 0; }
.bk-dp-trigger-cell > span.ic { display: inline-flex; }
.bk-dp-trigger-cell > span:last-child {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px;
  min-width: 0;
}
.bk-dp-trigger-cell > span:last-child > span {
  display: block !important;
}
.bk-dp-trigger-cell .lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.bk-dp-trigger-cell .val {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
}
.bk-dp-trigger-cell .val em { font-style: italic; font-weight: 400; }
.bk-dp-trigger-cell .val.placeholder {
  color: var(--ink-mute);
  font-style: italic;
}
.bk-dp-trigger-cell .meta {
  display: block;
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-top: 2px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.bk-dp-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  position: relative;
}
.bk-dp-arrow::before {
  content: "";
  position: absolute;
  top: 12px; bottom: 12px;
  left: 50%;
  width: 1.5px;
  border-left: 1.5px dashed rgba(31,31,31,.18);
}

/* ── Popover panel ──────────────────────────────── */
/* No z-index here: the closed trigger must scroll under the sticky header.
   The open popover (.bk-dp-panel, z-index: 1000) still overlays via root stacking. */
.bk-dp-anchor { position: relative; }

.bk-dp-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--paper-card);
  border: 1px solid rgba(15,14,11,.10);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 28px 56px -22px rgba(40,28,10,.4),
    0 12px 24px -10px rgba(40,28,10,.18);
  overflow: hidden;
  animation: bk-dp-pop .18s var(--ease);
  transform-origin: top center;
}
@keyframes bk-dp-pop {
  from { opacity: 0; transform: translateY(-6px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* notch — hidden in portal mode (cannot reliably point at trigger) */
.bk-dp-panel.bk-dp-portal::before { display: none; }
.bk-dp-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 80px;
  width: 14px; height: 14px;
  background: var(--paper-card);
  border-left: 1px solid rgba(15,14,11,.10);
  border-top: 1px solid rgba(15,14,11,.10);
  transform: rotate(45deg);
}

/* Header strip — selected range chips + presets */
.bk-dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1.5px dashed rgba(31,31,31,.18);
  background: var(--paper-soft);
  flex-wrap: wrap;
}
.bk-dp-range {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bk-dp-range .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--paper-card);
  border: 1.5px dashed rgba(31,31,31,.3);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.bk-dp-range .pill em { font-style: italic; font-weight: 400; }
.bk-dp-range .pill.empty {
  color: var(--ink-mute);
  font-style: italic;
}
.bk-dp-range .pill.active {
  background: var(--ink);
  color: var(--paper);
  border-style: solid;
  border-color: var(--ink);
}
.bk-dp-range .arr { color: var(--ink-mute); }

.bk-dp-presets {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bk-dp-preset {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 5px 11px;
  background: var(--paper-card);
  border: 1px solid rgba(31,31,31,.16);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  cursor: default;
  transition: background .12s var(--ease), border-color .12s var(--ease), color .12s var(--ease);
}
.bk-dp-preset:hover { background: rgba(31,31,31,.04); border-color: rgba(31,31,31,.3); color: var(--ink); }

/* Months row */
.bk-dp-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.bk-dp-month {
  padding: 14px 18px 6px;
}
.bk-dp-month + .bk-dp-month {
  border-left: 1.5px dashed rgba(31,31,31,.16);
}
.bk-dp-month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bk-dp-month-head h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.bk-dp-month-head h4 em { font-style: italic; font-weight: 400; }
.bk-dp-nav {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  width: 30px; height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(31,31,31,.16);
  background: var(--paper-card);
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: default;
  transition: background .12s var(--ease), border-color .12s var(--ease), color .12s var(--ease);
}
.bk-dp-nav:hover { background: rgba(31,31,31,.04); border-color: rgba(31,31,31,.3); color: var(--ink); }
.bk-dp-nav:disabled { opacity: 0.35; pointer-events: none; }
.bk-dp-nav.spacer { visibility: hidden; }

.bk-dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.bk-dp-dow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 6px 0 8px;
  text-align: center;
}

.bk-dp-day {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: default;
  border-radius: 0;
  user-select: none;
  transition: background .1s var(--ease), color .1s var(--ease);
  outline: none;
}
.bk-dp-day:focus-visible { box-shadow: inset 0 0 0 2px var(--terra); border-radius: 8px; }
.bk-dp-day .heat {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ink-mute);
}
.bk-dp-day .heat.tier-0 { background: var(--sage); }
.bk-dp-day .heat.tier-1 { background: var(--caution); }
.bk-dp-day .heat.tier-2 { background: var(--destructive); }
.bk-dp-day:hover {
  background: rgba(31,31,31,.05);
  border-radius: 8px;
}
.bk-dp-day.outside {
  color: var(--ink-mute);
  opacity: 0.35;
  pointer-events: none;
}
.bk-dp-day.disabled {
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: rgba(31,31,31,.3);
  opacity: 0.55;
  pointer-events: none;
}
.bk-dp-day.disabled .heat { display: none; }
.bk-dp-day.today::before {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 8px;
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--terra);
}
.bk-dp-day.today.in-range::before,
.bk-dp-day.today.endpoint::before { background: var(--paper); }

/* In-range — band fills cell */
.bk-dp-day.in-range {
  background: color-mix(in srgb, var(--terra) 14%, transparent);
  border-radius: 0;
}
.bk-dp-day.in-range:hover { background: color-mix(in srgb, var(--terra) 22%, transparent); }

/* Endpoints — solid terra disc */
.bk-dp-day.endpoint {
  color: #fff;
  background: color-mix(in srgb, var(--terra) 14%, transparent);
}
.bk-dp-day.endpoint::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: var(--terra);
  z-index: -0;
  box-shadow: 0 4px 10px -4px var(--terra-deep);
}
.bk-dp-day.endpoint .heat { background: rgba(255,255,255,.9); position: relative; }
.bk-dp-day.endpoint > * { position: relative; z-index: 1; }
.bk-dp-day.endpoint.start {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.bk-dp-day.endpoint.end {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
/* Single-day selection — just disc, no flanking band */
.bk-dp-day.endpoint.start.end { background: transparent; border-radius: 12px; }

/* Hover preview range (lighter terra) */
.bk-dp-day.preview {
  background: color-mix(in srgb, var(--terra) 7%, transparent);
  border-radius: 0;
}
.bk-dp-day.preview .heat { opacity: 0.85; }

/* Footer */
.bk-dp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  border-top: 1.5px dashed rgba(31,31,31,.18);
  background: var(--paper-soft);
}
.bk-dp-foot .legend {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  align-items: center;
  flex-wrap: wrap;
}
.bk-dp-foot .legend .swatch {
  display: inline-flex; align-items: center; gap: 5px;
}
.bk-dp-foot .legend .sw {
  width: 10px; height: 10px; border-radius: 3px;
  display: inline-block;
}
.bk-dp-foot .legend .sw.terra { background: var(--terra); }
.bk-dp-foot .legend .sw.band { background: color-mix(in srgb, var(--terra) 22%, transparent); border: 1px dashed color-mix(in srgb, var(--terra) 50%, transparent); }
.bk-dp-foot .legend .sw.dis {
  background: transparent; border-top: 1.5px solid rgba(31,31,31,.4);
  height: 2px; width: 14px; border-radius: 0;
}
.bk-dp-foot .legend .sw.dot { width: 7px; height: 7px; border-radius: 999px; }
.bk-dp-foot .legend .sw.dot.tier-0 { background: var(--sage); }
.bk-dp-foot .legend .sw.dot.tier-1 { background: var(--caution); }
.bk-dp-foot .legend .sw.dot.tier-2 { background: var(--destructive); }
.bk-dp-foot .actions {
  display: flex; gap: 8px; align-items: center;
}

/* Live "stay summary" pill in footer */
.bk-dp-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.bk-dp-summary .nights {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--terra);
  text-transform: none;
}

/* Mobile-ish: stack months when narrow */
@media (max-width: 720px) {
  .bk-dp-months { grid-template-columns: 1fr; }
  .bk-dp-month + .bk-dp-month {
    border-left: 0;
    border-top: 1.5px dashed rgba(31,31,31,.16);
  }
}

.bk-dp-months-solo { grid-template-columns: 1fr; }

/* Inline single-month calendar — blends into the host card (if used) */
.bk-dp-inline {
  position: static; animation: none; width: 100%;
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
  border-top: 1.5px dashed rgba(31,31,31,.16); margin-top: 4px;
}
.bk-dp-inline::before { display: none; }

/* Modal bottom-sheet calendar (mobile) — full-viewport overlay + bottom sheet */
/* The panel is neutralized so only its fixed children (backdrop + sheet) paint */
.bk-dp-panel.bk-dp-modal {
  position: static;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  animation: none;
}
.bk-dp-panel.bk-dp-modal::before { display: none; }
.bk-dp-backdrop {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(15,12,8,.42);
}
.bk-dp-sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 61;
  background: var(--paper-card);
  border-radius: 24px 24px 0 0;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 -22px 50px -22px rgba(0,0,0,.5);
  padding: 16px 18px calc(18px + env(safe-area-inset-bottom));
}
.bk-dp-sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.bk-dp-sheet-x { appearance: none; border: 0; background: transparent; color: var(--ink-mute); font-size: 16px; cursor: pointer; padding: 4px 6px; }
.bk-dp-sheet .bk-dp-head { padding-left: 0; padding-right: 0; }
.bk-dp-sheet .bk-dp-month { padding: 8px 0 4px; }
/* Footer spans the full sheet width (cancels the sheet's horizontal padding) */
.bk-dp-sheet .bk-dp-foot {
  margin: 14px -18px calc(-18px - env(safe-area-inset-bottom));
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
}

/* Compact date trigger on phones (avoids the squished two-line labels) */
@media (max-width: 640px) {
  .bk-dp-trigger-cell { padding: 12px 12px; grid-template-columns: 16px 1fr; gap: 8px; }
  .bk-dp-trigger-cell .ic svg { width: 16px; height: 16px; }
  .bk-dp-trigger-cell .lbl { white-space: nowrap; }
  .bk-dp-trigger-cell .val { font-size: 16px; white-space: nowrap; }
  .bk-dp-trigger-cell .meta { white-space: nowrap; }
}

/* Rails implementation adapters */
.bk-counter input.v {
  border: 0;
  background: transparent;
  padding: 0;
  width: 36px;
  min-width: 36px;
  height: 36px;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}
.bk-counter input.v::-webkit-inner-spin-button,
.bk-counter input.v::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.bk-field .bk-input[type="date"] { min-height: 47px; }
.bk-submit-row { display: flex; justify-content: flex-end; margin-top: 18px; }
.bk-page .field_with_errors { display: contents; }
.bk-page .validation-errors, .bk-page .error-message { color: #C0492D; }
.bk-logo-img { height: 40px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.bk-confirm-card { transform: rotate(-0.4deg); }
.bk-confirm-check {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bk-postbook-grid { display: grid; gap: 18px; }
@media (max-width: 920px) {
  .bk-two-col { grid-template-columns: 1fr; }
  .bk-cart-col { position: static; }
}
.bk-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.bk-note { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); line-height: 1.55; }
.bk-note svg { flex-shrink: 0; margin-top: 2px; }
.bk-trust-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bk-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 640px) { .bk-grid-2 { grid-template-columns: 1fr; } }
.bk-cart-wrap { display: flex; flex-direction: column; gap: 16px; }
.bk-promo-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--terra);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
}
.bk-promo-toggle:hover { color: var(--terra-deep); }
.bk-promo-row { display: flex; gap: 6px; align-items: center; }
.bk-promo-row .bk-input { flex: 1; padding: 10px 12px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.bk-reassurance { padding: 18px; border: 1.5px dashed rgba(31,31,31,.22); border-radius: 12px; display: flex; flex-direction: column; gap: 10px; }
.bk-reassurance > span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-2); }
.bk-reassurance p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.bk-reassurance .call-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.bk-reassurance .ey { color: var(--ink-2); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.bk-reassurance .num { font-weight: 500; font-variant-numeric: tabular-nums; }
.bk-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(250,246,238,.92);
  border: 1px solid rgba(31,31,31,.16);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.bk-promo-applied {
  margin-top: 18px;
  background: color-mix(in srgb, var(--sage) 8%, transparent);
  border: 1.5px dashed color-mix(in srgb, var(--sage) 55%, transparent);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #5b6b52;
  font-size: 13px;
}
.bk-promo-applied span { display: inline-flex; align-items: center; gap: 8px; }
.bk-checkout-stay-grid {
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  border-bottom: 1.5px dashed rgba(31,31,31,.16);
}
.bk-checkout-lines { padding: 16px 22px; }
.bk-checkout-totals { border-top: 1.5px dashed rgba(31,31,31,.18); margin-top: 8px; padding-top: 12px; display: grid; gap: 4px; }
.bk-checkout-total { border-top: 1.5px dashed rgba(31,31,31,.18); margin-top: 8px; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; }
.bk-checkout-total span { font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--ink); }
.bk-checkout-total strong { font-family: var(--font-serif); font-size: 36px; font-style: italic; font-weight: 500; color: var(--terra); letter-spacing: -0.02em; line-height: 1; }
.bk-error { color: #C0492D; font-size: 13px; margin-top: 8px; }
.bk-terms-copy { font-size: 14px; color: var(--ink-2); line-height: 1.6; background: var(--paper-soft); border: 1.5px dashed rgba(31,31,31,.16); border-radius: 12px; padding: 14px 16px; margin-bottom: 14px; }
.bk-checkout-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.bk-confirm-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.bk-confirm-cta > span { font-size: 11.5px; color: var(--ink-2); font-style: italic; }
@media (max-width: 640px) { .bk-checkout-stay-grid { grid-template-columns: 1fr; } .bk-confirm-cta { align-items: stretch; width: 100%; } }
.bk-checkbox input:checked + .box { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.bk-checkbox input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(31,31,31,.08); }
.bk-checkbox .lbl a { color: var(--terra); text-decoration: underline; text-decoration-style: dashed; text-underline-offset: 4px; }
.bk-confirm-heading { display: flex; align-items: center; gap: 10px; }
.bk-confirm-badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.bk-confirm-card hr { border: 0; border-top: 1.5px dashed rgba(31,31,31,.18); margin: 0; width: 100%; }
.bk-confirm-card .tape {
  position: absolute;
  width: 84px; height: 20px;
  background: color-mix(in srgb, var(--terra) 40%, transparent);
  border-left: 1px dashed rgba(0,0,0,.18);
  border-right: 1px dashed rgba(0,0,0,.18);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  z-index: 2;
}
.bk-confirm-code { border: 1.5px dashed rgba(31,31,31,.18); background: var(--paper-soft); border-radius: 12px; padding: 14px 16px; display: inline-flex; flex-direction: column; gap: 4px; align-self: flex-start; }
.bk-confirm-code .bk-serif { font-size: 24px; font-style: italic; font-weight: 500; letter-spacing: -0.02em; color: var(--terra); }
.bk-confirm-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bk-detail > div:last-child { font-size: 15px; color: var(--ink); }
.bk-detail .bk-serif em { font-style: italic; font-weight: 400; }
.bk-confirm-charged { border-top: 1.5px dashed rgba(31,31,31,.18); margin-top: 10px; padding-top: 14px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.bk-confirm-charged .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.bk-confirm-charged .amt { font-family: var(--font-serif); font-size: 30px; font-style: italic; font-weight: 500; color: var(--terra); letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.bk-confirm-note { display: flex; flex-direction: column; gap: 6px; }
.bk-confirm-note p { margin: 0; font-style: italic; color: var(--ink-2); font-size: 13.5px; line-height: 1.55; }
.bk-confirm-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.bk-postbook-section { margin-bottom: 32px; }
.bk-postbook-head { margin-bottom: 14px; }
.bk-postbook-head .bk-mono { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.bk-postbook-head h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin: 0; }
.bk-postbook-head h2 em { font-style: italic; font-weight: 400; }
.bk-postbook-head p { color: var(--ink-2); font-size: 14px; margin: 6px 0 0; }
.bk-remove-link {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-decoration: underline;
  cursor: pointer;
}
.bk-remove-link:hover { color: var(--ink); }
.bk-book-another { display: flex; justify-content: center; margin-top: 24px; }
@media (max-width: 640px) { .bk-confirm-details { grid-template-columns: 1fr 1fr; } }

/* Pixel parity refinements for fast-flow search */
.bk-step .num {
  font-size: 10px;
  line-height: 22px;
  align-items: center;
  justify-content: center;
}

.bk-dp-trigger-cell {
  position: relative;
}

.bk-date-native {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.bk-date-native::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.bk-reach-hold {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.bk-submit-row.full-width {
  display: block;
  max-width: 640px;
}

.bk-submit-row.full-width .bk-btn {
  width: 100%;
}
.bk-dp-trigger-cell .val .placeholder {
  color: var(--ink-mute);
  font-style: italic;
}

/* ── Sticky mobile bottom bar (running total + CTA) ── */
.bk-mobile-bar {
  --bk-mobile-bar-y-padding: 14px;
  --bk-mobile-bar-bottom-bleed: max(env(safe-area-inset-bottom, 0px), 96px);

  display: none;
  position: fixed;
  left: 0; right: 0; bottom: calc(0px - var(--bk-mobile-bar-bottom-bleed));
  z-index: 40;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: var(--bk-mobile-bar-y-padding) 18px calc(var(--bk-mobile-bar-y-padding) + var(--bk-mobile-bar-bottom-bleed));
  background: var(--paper-card);
  border-top: 1.5px dashed rgba(31,31,31,.25);
  box-shadow: 0 -10px 30px -20px rgba(60,40,15,.25);
}
.bk-mobile-bar-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bk-mobile-bar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bk-mobile-bar-total {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.bk-mobile-bar-sub { font-size: 11px; color: var(--ink-2); font-style: italic; }
.bk-mobile-bar .bk-btn { flex-shrink: 0; }
.bk-mobile-bar .bk-btn.is-disabled { opacity: 0.45; pointer-events: none; }

/* Sticky bottom bar shows wherever the cart stacks (≤920px), replacing inline CTAs */
@media (max-width: 920px) {
  .bk-mobile-bar { display: flex; }
  .bk-checkout-actions { display: none; }
  .bk-submit-row,
  .bk-submit-row.full-width { display: none; }
  .bk-page:has(.bk-mobile-bar) .bk-footer {
    padding-bottom: calc(32px + 92px + env(safe-area-inset-bottom));
  }
}

/* ── Mobile refinements (phone) ─────────────────── */
@media (max-width: 640px) {
  .bk-shell { padding: 16px 18px 28px; }
  .bk-pagehead { padding: 22px 0 20px !important; }
  .bk-pagehead h1 { font-size: 30px; }
  .bk-pagehead .sub { font-size: 15px; }
  .bk-confirm-headline { font-size: 28px !important; }

  /* Compact header: back + logo/name on the left, counter + hamburger on the right */
  .bk-header {
    --bk-header-y-padding: 10px;
    --bk-header-x-padding: 16px;
  }
  .bk-header .left { gap: 8px; }
  .bk-header .left .property-name { font-size: 16px; }
  .bk-header .left .property-meta { display: none; }
  .bk-header .left .bk-logo-img { height: 24px; }
  .bk-header .property-mark { width: 30px; height: 30px; font-size: 14px; }
  .bk-header-back { display: inline-flex; }
  .bk-header-step { display: inline-block; }
  .bk-header-menu { display: block; }
  .bk-header-utility { display: none; }
  .bk-stepper { display: none; }

  /* Tighter card titles so a title + stamp (e.g. "When are you visiting?") fit one line */
  .bk-card-head { gap: 8px; }
  .bk-card-head h3 { font-size: 16px; }
  .bk-card-head .head-icon { width: 24px; height: 24px; }
  .bk-card-head .bk-stamp { font-size: 9px; padding: 3px 7px; letter-spacing: 0.12em; }

  /* Secondary card-head note ("we'll hold rooms…") drops to its own line */
  .bk-card-head:has(.bk-reach-hold) { flex-wrap: wrap; }
  .bk-reach-hold { flex-basis: 100%; margin-top: 6px; }

  /* Footer stacks and centers */
  .bk-footer {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    padding: 24px 18px 32px;
  }

  /* Replace the heavy cell grid with a compact single-line summary */
  .bk-summary { display: none; }
  .bk-summary-compact { display: flex; margin-bottom: 16px; }
  /* Breathing room above the summary; a bit more before the H1 below it */
  .bk-room-intro { margin-top: 0; }
  .bk-room-intro .bk-pagehead { padding-top: 16px !important; }

  /* Card titles stay on one line; a chip (e.g. "Secured by Stripe") drops to its own line */
  .bk-card-head h3 { white-space: nowrap; }
  .bk-chip { white-space: nowrap; flex-shrink: 0; }
  .bk-card-head:has(.bk-chip) { flex-wrap: wrap; }
  .bk-card-head:has(.bk-chip) h3 { flex-basis: 100%; }
  .bk-card-head:has(.bk-chip) .bk-chip { margin-top: 8px; }
}

/* ── Reduce all-caps: labels, taglines & meta read in sentence case ──
   Editorial accents stay uppercase: section eyebrows, the stepper, the
   "Direct rate" stamp, chips, the cart's "Your stay" eyebrow, calendar
   day-of-week headers, and the confirmation ID. */
.bk-header .property-meta,
.bk-header-menu-langs-label,
.bk-reach-hold,
.bk-trust-row,
.bk-label,
.bk-summary-cell .lbl,
.bk-date-tile .lbl,
.bk-guests-tile .lbl,
.bk-dp-trigger-cell .lbl,
.bk-dp-range,
.bk-dp-summary,
.bk-rate-row .price .per,
.bk-addon .price-meta,
.bk-checkout-total span,
.bk-confirm-charged .lbl,
.bk-cart .cart-total .lbl,
.bk-cart .totals .row.grand .lbl,
.bk-promo-remove,
.bk-reassurance > span,
.bk-reassurance .ey,
.bk-mobile-bar-label {
  text-transform: none;
  letter-spacing: 0.01em;
}
