/* The booking form, one question at a time (concierge.js): on the contact
   page, and since 2026-09-26 in the booking drawer of every other page too
   (one form site-wide; it was scoped to .contact before). Without JS every
   question shows, set as a plain form.
   Chip rules carry three classes so they beat the drawer's own
   `.tx .txbook label` and `.tx .txbook :is(input, …)` (treatment.css). */
.cq .cq__step { border: 0; margin: 0 0 30px; padding: 0; min-width: 0; }
.cq .cq__q {
  display: block; padding: 0; margin: 0 0 22px;
  font: 500 clamp(30px, 2.8vw, 44px)/1.05 var(--serif, 'Cormorant Garamond', Georgia, serif);
  letter-spacing: -.02em; color: var(--char);
}
.cq .cq__q em { font-style: italic; }
.cq .cq__q:focus { outline: none; }
.cq .cq__chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.cq .cq__chips .cq__chip { position: relative; display: inline-block; cursor: pointer; font: 400 14px/1.35 Inter, Arial, sans-serif; letter-spacing: 0; text-transform: none; color: var(--char); }
.cq .cq__chips .cq__chip input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; padding: 0; border: 0; opacity: 0; cursor: pointer; }
.cq .cq__chips .cq__chip span { display: inline-block; padding: 11px 16px 10px; border: 1px solid var(--line, rgba(25, 24, 23, .13)); transition: background-color .2s, color .2s, border-color .2s; }
.cq .cq__chips .cq__chip:hover span { border-color: var(--char); }
.cq .cq__chips .cq__chip input:checked + span { background: var(--char); border-color: var(--char); color: #f5f2ec; }
.cq .cq__chips .cq__chip input:focus-visible + span { outline: 2px solid var(--char); outline-offset: 3px; }

.cq .cq__progress {
  display: flex; align-items: center; gap: 14px; margin: 0 0 30px;
  font: 500 10px/1 var(--mono, 'IBM Plex Mono', monospace); letter-spacing: .14em; color: var(--taupe);
}
.cq .cq__progress b { color: var(--char); font-weight: 500; }
.cq .cq__bar { position: relative; flex: 1; height: 1px; background: var(--line, rgba(25, 24, 23, .13)); }
.cq .cq__bar i { position: absolute; left: 0; top: 0; bottom: 0; width: calc(var(--p, .2) * 100%); background: var(--char); transition: width .45s ease; }
.cq .cq__nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 6px; }
.cq .cq__back {
  background: none; border: 0; padding: 12px 0; cursor: pointer;
  font: 500 10px/1 var(--mono, 'IBM Plex Mono', monospace); letter-spacing: .14em; text-transform: uppercase; color: var(--taupe);
}
.cq .cq__back:hover { color: var(--char); }
.cq .cq__back[disabled] { visibility: hidden; }

.cq.is-cq .cq__step { display: none; margin-bottom: 18px; }
.cq.is-cq .cq__step.is-on { display: block; animation: cq-in .45s ease both; }
.cq.is-last .cq__next { display: none; }
@keyframes cq-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .cq.is-cq .cq__step.is-on { animation: none; }
  .cq .cq__bar i { transition: none; }
}

/* In the drawer: the drawer spaces its form's rows itself, and the step's
   own fields keep the drawer's gap between them. */
.txbook .cq .cq__progress { margin: 0; }
.txbook .cq .cq__step { margin: 0; }
.txbook .cq .cq__step > * + * { margin-top: 18px; }
.txbook .cq .cq__step > .cq__q + * { margin-top: 0; }
.txbook .cq .cq__chips { margin-bottom: 10px; }
