/* ============================================================================
   The Wellness — standalone booking-widget stylesheet.

   SELF-CONTAINED: renders the #bk2 booking widget (skeleton + /book/booking.js)
   OUTSIDE its original marketing page, looking identical to new-landing.html.

   Sources (extracted VERBATIM unless noted):
     - apps/wellness/public/new-landing.html  <style id="app-css">  (blue palette)
         · :root vars ....................... lines 139-150
         · base box-sizing .................. line 153  (re-scoped to #bk2 here)
         · .best / .bk2 / .bk2__* / .bkx / .bookfab / keyframes . lines 312-530
         · .confProfile / .qrPanel .......... lines 750-757
         · widget @media ovr (960px) ........ line 823
     - apps/wellness/public/new-landing.html  <style id="gfonts">  @font-face
         · lines 8-125  (only the families the widget uses are kept)
     - apps/wellness/public/clinicians/_assets/booking-flow.css  (extra .bkx-* +
       mobile polish + gate de-pill + location restyle that booking.js emits but
       that new-landing.html's inline <style> does NOT carry). Palette-neutralised
       to the BLUE new-landing look (#2e406c / #5682ce), not the green clinicians one.

   booking.js also injects its OWN small inline <style> at runtime (gate chips,
   AI bubble, questions, Stripe mount, voice indicator, focus screen). Those rules
   are NOT duplicated here — they arrive with the script. This file supplies the
   dependencies that inline style relies on (the :root vars + fonts + .bk2 base).

   Scoped under #bk2 / .bk2 (and .best wrapper) so it can't clobber the host app.
   ========================================================================== */

/* ============================== FONTS ==============================
   Only the families the widget uses: Open Sans (--sans / body), Libre
   Baskerville (--logo, also our serif fallback) and Jost (--bkchip / chips).
   Paths point at the new-landing asset folder; copy those .woff2 alongside
   or repoint the url()s if you host the widget elsewhere. */
@font-face {
  font-family: 'Open Sans';
  font-style: normal; font-weight: 300; font-stretch: 100%; font-display: swap;
  src: url(/book/b05cc4fdc848.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap;
  src: url(/book/b05cc4fdc848.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap;
  src: url(/book/b05cc4fdc848.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap;
  src: url(/book/b05cc4fdc848.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap;
  src: url(/book/b05cc4fdc848.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic; font-weight: 400; font-stretch: 100%; font-display: swap;
  src: url(/book/d130e5c30491.woff2) format('woff2');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url(/book/648b36a8e012.woff2) format('woff2');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url(/book/648b36a8e012.woff2) format('woff2');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url(/book/312a935c7026.woff2) format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url(/book/603e82669e4f.woff2) format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url(/book/603e82669e4f.woff2) format('woff2');
}

/* ============================== TOKENS ==============================
   :root custom properties the widget + booking.js's injected style depend on.
   --serif's first family "Reckless Standard M-TRIAL" has NO @font-face bundled
   with the widget assets (it lives elsewhere on the marketing site); the widget
   degrades gracefully to Libre Baskerville / Georgia, which we DO ship. */
:root {
  --ink: #0f0e0d;
  --ink2: #0a0a0a;
  --paper: #fafaf9;
  --muted: #5f5f5f;
  --body: #33312c;
  --line: #cccac6;
  --blue-card: #5682ce;
  --serif: "Reckless Standard M-TRIAL", "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --logo: "Libre Baskerville", Georgia, serif;
}

/* ============================== BASE ==============================
   Scoped to #bk2 (NOT a global reset) so the host admin app's own styles
   are untouched. Gives the widget its box model, font + colour baseline. */
#bk2, #bk2 *, #bk2 *::before, #bk2 *::after { box-sizing: border-box; }
#bk2 { font-family: var(--sans); font-size: 16px; line-height: 1.4; color: var(--fa, #fafafa); -webkit-font-smoothing: antialiased; }
#bk2 button { font-family: inherit; }

/* ============================== WIDGET ==============================
   From new-landing.html <style id="app-css"> lines 312-530 (blue palette). */

.best { background: var(--paper); padding: clamp(40px,5.5vw,90px) clamp(16px,4vw,70px); display: flex; justify-content: center; }
.bk2 { position: relative; width: min(1320px, 100%); aspect-ratio: 1320 / 660; border-radius: 25px; overflow: hidden;
  background: #2e406c; box-shadow: 0 40px 100px -40px rgba(13,21,37,.6);
  --bkserif: var(--serif); --bkbody: var(--sans); --bkchip: "Jost", var(--sans);
  --fa: #fafafa; --fa5: rgba(250,250,250,.5); --fa8: rgba(250,250,250,.8); --paperw: #fafdff; --ink2: #0a0a0a;
  --ease: cubic-bezier(.4,0,.2,1); color: var(--fa); }
.bk2__field { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }

/* fixed chrome: locator ALWAYS top-right, footer fixed bottom-centre */
.bk2__loc { position: absolute; z-index: 4; top: 34px; right: 42px; display: flex; gap: 8px; align-items: center; height: 24px; }
.bk2__loc svg { width: 18px; height: 18px; color: var(--fa); }
.bk2__city { font-family: var(--bkbody); font-size: 16px; color: var(--fa); letter-spacing: -.32px; white-space: nowrap; }
.bk2__change { font-family: var(--bkbody); font-size: 12px; color: var(--fa8); letter-spacing: -.24px; white-space: nowrap; cursor: pointer; }
.bk2__change:hover { color: var(--fa); }
.bk2__foot { position: absolute; z-index: 4; left: 50%; transform: translateX(-50%); bottom: 30px; display: flex; gap: 50px; align-items: center; }
.bk2__c { display: flex; gap: 6px; align-items: center; }
.bk2__foot svg { width: 17px; height: 17px; color: var(--fa8); }
.bk2__foot span, .bk2__foot a { font-family: var(--bkbody); font-size: 14px; color: var(--fa8); letter-spacing: -.28px; text-decoration: none; white-space: nowrap; }
.bk2__foot a:hover { color: var(--fa); }

.bk2__stage { position: absolute; inset: 0; z-index: 2; }
.bk2 .screen { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6% 5% 8%; text-align: center; }

.bk2 .head { font-family: var(--bkserif); font-weight: 400; color: var(--fa); letter-spacing: -.01em; line-height: 1.1; text-align: center; }
.bk2 .h-entry { font-size: clamp(30px,4.2vw,55px); }
.bk2 .h-step { font-size: clamp(24px,2.7vw,35px); }

/* search field */
.bk2 .searchWrap { margin-top: 36px; width: min(1027px,86%); border-radius: 20px; padding: 7px;
  background: rgba(250,250,250,.08); border: 1px solid rgba(250,250,250,.16); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.bk2 .searchCard { background: var(--paperw); border-radius: 15px; padding: 10px; }
.bk2 .tfield { border-radius: 8px; padding: 12px 12px 12px 18px; }
.bk2 .tfieldRow { display: flex; height: 34px; align-items: center; gap: 12px; }
.bk2 .tfieldRow input { flex: 1; border: 0; outline: 0; background: transparent; font-family: var(--bkbody); font-size: 16px; color: var(--ink2); letter-spacing: -.32px; }
.bk2 .tfieldRow input::placeholder { color: rgba(10,10,10,.55); }
.bk2 .tfieldRight { display: flex; gap: 8px; align-items: center; }
.bk2 .micBtn { width: 32px; height: 32px; border-radius: 100px; background: rgba(10,10,10,.06); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .25s var(--ease); }
.bk2 .micBtn svg { width: 18px; height: 18px; color: var(--ink2); }
.bk2 .micBtn.live { background: #2e406c; } .bk2 .micBtn.live svg { color: #fff; }
.bk2 .findcare { border: .8px solid rgba(10,10,10,.3); border-radius: 100px; height: 32px; padding: 0 16px; display: flex; gap: 6px; align-items: center; cursor: pointer; background: transparent; transition: background .25s var(--ease); }
.bk2 .findcare span { font-family: var(--bkbody); font-size: 13px; color: var(--ink2); letter-spacing: -.24px; white-space: nowrap; }
.bk2 .findcare svg { width: 14px; height: 14px; color: var(--ink2); }
.bk2 .findcare:hover { background: rgba(13,47,51,.1); }

/* listening overlay */
.bk2 .entryWrap { display: flex; flex-direction: column; align-items: center; width: 100%; transition: opacity .55s var(--ease), transform .55s var(--ease); }
.bk2 .entryWrap.hushed { opacity: 0; transform: translateY(-8px) scale(.99); pointer-events: none; }
.bk2 .listenCue { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; opacity: 0; pointer-events: none; transition: opacity .6s var(--ease) .15s; }
.bk2 .listenCue.on { opacity: 1; pointer-events: auto; }
.bk2 .listenCue .lWord { font-family: var(--bkserif); font-weight: 400; color: var(--fa); letter-spacing: -.01em; font-size: clamp(26px,3vw,40px); animation: bk2lbreath 2.6s var(--ease) infinite; }
@keyframes bk2lbreath { 0%,100% { opacity: .72; } 50% { opacity: 1; } }
.bk2 .listenCue .lHint { font-family: var(--bkbody); font-size: 14px; color: var(--fa8); letter-spacing: -.28px; }
.bk2 .listenCue .lStop { margin-top: 4px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); color: var(--fa); font-family: var(--bkbody); font-size: 14px; letter-spacing: -.28px; border-radius: 100px; padding: 11px 26px; cursor: pointer; display: flex; gap: 8px; align-items: center; transition: background .25s var(--ease), transform .25s var(--ease); }
.bk2 .listenCue .lStop:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.bk2 .listenCue .lStop svg { width: 15px; height: 15px; }

/* entry chips */
.bk2 .chipRow { display: flex; gap: 15px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 26px; max-width: 1000px; }
.bk2 .chip { border: .5px solid var(--fa); border-radius: 100px; padding: 7px 18px; background: rgba(255,255,255,.14); font-family: var(--bkchip); font-size: 13px; color: var(--fa); cursor: pointer; white-space: nowrap; transition: background .3s var(--ease), color .3s var(--ease), transform .25s var(--ease); }
.bk2 .chip:hover { background: rgba(255,255,255,.26); transform: translateY(-1px); }
.bk2 .chip.sel { background: #fff; color: #2e406c; border-color: #fff; }

/* package cards */
.bk2 .pkgRow { display: flex; gap: 22px; align-items: stretch; justify-content: center; margin-top: 34px; }
.bk2 .pkgCard { background: var(--paperw); border-radius: 15px; padding: 10px; width: clamp(248px,22vw,310px); display: flex; flex-direction: column; gap: 10px; cursor: pointer; box-shadow: 0 8px 24px -12px rgba(0,0,0,.4); transition: box-shadow .45s var(--ease), transform .35s var(--ease); }
.bk2 .pkgCard:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -14px rgba(0,0,0,.5); }
.bk2 .pkgCard.sel { box-shadow: 0 0 0 1px rgba(232,200,122,.5), 0 0 22px rgba(232,200,122,.28), 0 8px 24px -12px rgba(0,0,0,.4); }
.bk2 .pkgCard .panel { border-radius: 5px; padding: 14px 12px 14px 15px; filter: drop-shadow(0 0 5px rgba(0,0,0,.08)); display: flex; flex-direction: column; gap: 5px; align-items: flex-start; text-align: left; background: #fff; }
.bk2 .pkgCard .name { font-family: var(--bkbody); font-size: 20px; color: var(--ink2); letter-spacing: -.4px; line-height: 24px; }
.bk2 .pkgCard .price { font-family: var(--bkserif); font-size: 32px; color: var(--ink2); letter-spacing: -.64px; line-height: 1.05; }
.bk2 .pkgCard .sub { font-family: var(--bkbody); font-size: 13px; color: var(--ink2); letter-spacing: -.26px; line-height: 1.4; }
.bk2 .pkgCard .body { display: flex; flex-direction: column; flex: 1; padding: 0; text-align: left; }
.bk2 .pkgCard .tests { font-family: var(--bkbody); font-size: 13px; color: rgba(10,10,10,.6); line-height: 1.55; }
.bk2 .pkgCard .viewall { font-family: var(--bkbody); font-size: 11px; color: rgba(10,10,10,.45); margin-top: auto; padding-top: 14px; text-decoration: underline; text-underline-offset: 2px; }
.bk2 .pkgCard .selbtn { margin-top: 12px; background: #2e406c; color: #fff; border-radius: 100px; padding: 11px 0; text-align: center; font-family: var(--bkbody); font-size: 13px; display: flex; gap: 6px; align-items: center; justify-content: center; transition: filter .25s var(--ease); }
.bk2 .pkgCard:hover .selbtn { filter: brightness(1.3); }
.bk2 .pkgCard .selbtn svg { width: 13px; height: 13px; }

/* chosen-package card */
.bk2 .card { background: var(--paperw); border-radius: 15px; padding: 10px; box-shadow: 0 0 20px 0 #f0f5f2, 0 0 30px 2px rgba(240,245,242,.42), 0 12px 30px -16px rgba(0,0,0,.55); display: flex; flex-direction: column; gap: 5px; align-items: flex-start; width: max-content; max-width: 360px; }
.bk2 .card .panel { border-radius: 5px; padding: 10px 10px 10px 15px; filter: drop-shadow(0 0 5px rgba(0,0,0,.1)); display: flex; flex-direction: column; gap: 5px; align-items: flex-start; color: var(--ink2); text-align: left; width: 100%; background: #fff; }
.bk2 .card .date { font-family: var(--bkbody); font-size: 13px; letter-spacing: -.26px; line-height: 1.3; color: rgba(10,10,10,.6); }
.bk2 .card .conf { font-family: var(--bkbody); font-size: 11px; letter-spacing: -.16px; color: rgba(10,10,10,.55); }
.bk2 .card .name { font-family: var(--bkbody); font-size: 20px; line-height: 24px; letter-spacing: -.4px; }
.bk2 .card .price { font-family: var(--bkserif); font-size: 32px; letter-spacing: -.64px; line-height: 1.05; }
.bk2 .card .sub { font-family: var(--bkbody); font-size: 13px; letter-spacing: -.26px; line-height: 1.4; }

/* three-column row for date / contact / pay */
.bk2 .triRow { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; justify-items: center; gap: clamp(30px,5vw,90px); width: 100%; max-width: 1180px; margin-top: 8px; }
.bk2 .triRow .slotL { justify-self: start; } .bk2 .triRow .slotR { justify-self: end; }

.bk2 .dateList { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.bk2 .dateList.right { align-items: flex-end; }
.bk2 .dateItem { font-family: var(--bkserif); font-size: 32px; color: var(--fa8); cursor: pointer; white-space: nowrap; transition: color .4s var(--ease), opacity .4s var(--ease); opacity: .55; }
.bk2 .dateItem:hover { opacity: .85; }
.bk2 .dateItem.sel { opacity: 1; color: var(--fa); }
/* tier-aware dates: disabled date (e.g. Today for a next-day appointment) */
.bk2 .dateItem.off { opacity: .28; pointer-events: none; cursor: default; }

/* contact capture */
.bk2 .contactRight { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 0; }
.bk2 .contactRight .cInput { border-bottom: 0; padding: 0; line-height: 40px; }   /* no underline on name / email */
.bk2 .cInput { font-family: var(--bkbody); font-size: 20px; color: var(--fa8); letter-spacing: -.4px; line-height: 36px; background: transparent; border: 0; border-bottom: 1px solid rgba(250,250,250,.16); outline: 0; text-align: left; padding: 4px 2px; width: 280px; transition: color .25s var(--ease), border-color .25s var(--ease); }
.bk2 .cInput::placeholder { color: var(--fa5); opacity: 1; }
.bk2 .cInput:focus, .bk2 .cInput.filled { color: var(--fa); }
.bk2 .cInput:focus { border-color: var(--fa); }
.bk2 .cGo { margin-top: 18px; background: none; border: 0; cursor: pointer; color: var(--fa8); font-family: var(--bkbody); font-size: 12.5px; letter-spacing: -.22px; display: flex; gap: 6px; align-items: center; opacity: .45; pointer-events: none; transition: opacity .3s var(--ease), color .2s; }
.bk2 .cGo.on { opacity: 1; pointer-events: auto; }
.bk2 .cGo:hover { color: var(--fa); }
.bk2 .cGo svg { width: 14px; height: 14px; }

/* pay column */
.bk2 .payRight { display: flex; gap: 8px; align-items: center; cursor: pointer; transition: opacity .2s; }
.bk2 .payRight:hover { opacity: .85; }
.bk2 .payRight .pw { font-family: var(--bkserif); font-weight: 400; font-size: 35px; color: var(--fa); letter-spacing: -.01em; white-space: nowrap; }
.bk2 .payRight .apple { display: flex; align-items: center; gap: 4px; color: var(--fa); font-weight: 600; font-size: 30px; }
.bk2 .payRight .apple svg { width: 26px; height: 30px; }

/* ---- location selector menu ---- */
.bk2 .bk2__loc { cursor: pointer; }
.bk2__cityMenu { position: absolute; z-index: 6; top: 64px; right: 42px; min-width: 210px; display: flex; flex-direction: column; padding: 6px;
  border-radius: 14px; background: rgba(20,28,52,.82); -webkit-backdrop-filter: blur(18px) saturate(1.3); backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(250,250,250,.12); box-shadow: 0 24px 60px -24px rgba(0,0,0,.7);
  opacity: 0; transform: translateY(-6px) scale(.98); transform-origin: top right; transition: opacity .22s var(--ease), transform .22s var(--ease); }
.bk2__cityMenu.open { opacity: 1; transform: none; }
.bk2__cityOpt { appearance: none; background: none; border: 0; cursor: pointer; text-align: left; padding: 10px 12px; border-radius: 9px;
  font-family: var(--bkbody); font-size: 15px; letter-spacing: -.3px; color: var(--fa8); transition: background .18s, color .18s; }
.bk2__cityOpt:hover { background: rgba(250,250,250,.08); color: var(--fa); }
.bk2__cityOpt.on { color: var(--fa); }
.bk2__cityOpt.on::after { content: ""; float: right; width: 7px; height: 7px; margin-top: 7px; border-radius: 50%; background: var(--fa); }

/* ---- payment: methods + consent ---- */
.bk2 .payCol { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bk2 .payOpt { appearance: none; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: .35; pointer-events: none; transition: opacity .25s var(--ease), transform .2s var(--ease), background .2s, border-color .2s; }
.bk2 .payCol.ready .payOpt { pointer-events: auto; }
.bk2 .payOpt .pw { font-family: var(--bkserif); font-size: 28px; color: var(--fa); letter-spacing: -.01em; white-space: nowrap; }
.bk2 .payMark { display: flex; align-items: center; gap: 5px; color: var(--fa); font-family: var(--bkserif); font-size: 26px; }
.bk2 .payMark.apple svg { width: 22px; height: 26px; fill: var(--fa); }
.bk2 .payMark.gpay svg { width: 24px; height: 24px; }
.bk2 .payOpt--primary { padding: 2px 4px; }
.bk2 .payCol.ready .payOpt--primary { opacity: 1; }
.bk2 .payCol.ready .payOpt--primary:hover { transform: translateY(-2px); }
.bk2 .payOpt--alt .pw { font-size: 22px; }
.bk2 .payOpt--alt .payMark { font-size: 22px; }
.bk2 .payOpt--alt .payMark.gpay svg { width: 21px; height: 21px; }
.bk2 .payCol.ready .payOpt--alt { opacity: .66; }
.bk2 .payCol.ready .payOpt--alt:hover { opacity: 1; }
.bk2 .payCardLink { margin-top: 8px; appearance: none; background: none; border: 0; cursor: pointer; font-family: var(--bkbody); font-size: 14px; letter-spacing: -.2px;
  color: var(--fa8); opacity: .35; pointer-events: none; transition: opacity .25s var(--ease), color .2s; }
.bk2 .payCol.ready .payCardLink { opacity: 1; pointer-events: auto; }
.bk2 .payCardLink:hover { color: var(--fa); }
.bk2 .payConsent { position: absolute; left: 5%; right: 5%; bottom: 30px; z-index: 3; display: flex; gap: 48px; justify-content: space-between; }
.bk2 .payConsent.nudge { animation: bkNudge .5s ease; }
@keyframes bkNudge { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-6px); } 60% { transform: translateX(6px); } }
.bk2 .cbx { display: flex; align-items: flex-start; gap: 10px; max-width: 400px; cursor: pointer; }
.bk2 .cbx input { position: absolute; opacity: 0; width: 0; height: 0; }
.bk2 .cbx__box { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; border-radius: 5px; border: 1px solid var(--fa5);
  display: flex; align-items: center; justify-content: center; color: transparent; transition: border-color .2s, background .2s, color .2s; }
.bk2 .cbx__box svg { width: 13px; height: 13px; }
.bk2 .cbx input:checked + .cbx__box { background: var(--fa); border-color: var(--fa); color: #2e406c; }
.bk2 .cbx input:focus-visible + .cbx__box { box-shadow: 0 0 0 3px rgba(250,250,250,.25); }
.bk2 .cbx__t { font-family: var(--bkbody); font-size: 13px; line-height: 1.45; letter-spacing: -.2px; color: var(--fa8); text-align: left; }

/* ---- card form ---- */
.bk2 .cardForm { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.bk2 .cardRow { display: flex; gap: 14px; justify-content: flex-end; }
.bk2 .cInput--sm { width: 130px; }

/* ---- success: download / add-to-calendar fine print ---- */
.bk2 .cardWrap { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.bk2 .confFine { display: flex; gap: 10px; align-items: center; justify-content: flex-end; padding-right: 2px; }
.bk2 .confFine button { appearance: none; background: none; border: 0; cursor: pointer; font-family: var(--bkbody); font-size: 12px; letter-spacing: -.2px; color: var(--fa5); transition: color .2s; }
.bk2 .confFine button:hover { color: var(--fa); }
.bk2 .confFine__dot { color: var(--fa5); font-size: 12px; }

/* status line */
.bk2 .status { font-family: var(--bkserif); font-size: clamp(22px,2.6vw,32px); color: var(--fa); text-align: center; display: flex; gap: 12px; align-items: center; justify-content: center; }
.bk2 .status .dots { display: inline-flex; gap: 6px; }
.bk2 .status .dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--fa); opacity: .4; animation: bk2bd 1.2s infinite; }
.bk2 .status .dots i:nth-child(2) { animation-delay: .18s; } .bk2 .status .dots i:nth-child(3) { animation-delay: .36s; }
@keyframes bk2bd { 0%,60%,100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }

/* confirmation */
.bk2 .confRow { display: flex; align-items: center; justify-content: center; gap: clamp(40px,7vw,100px); width: 100%; max-width: 1100px; }
.bk2 .confText { text-align: left; max-width: 440px; }
.bk2 .confText .head { text-align: left; margin-bottom: 14px; }
.bk2 .confText .sub { font-family: var(--bkbody); font-size: 18px; color: var(--fa8); text-align: left; line-height: 1.5; }
/* confirmation profile line */
.bk2 .confProfile { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--bkbody); font-size: 13px; letter-spacing: -.2px; color: var(--fa8); cursor: pointer; transition: color .2s; pointer-events: auto; }
.bk2 .confProfile:hover { color: var(--fa); }

/* scan-to-pay QR panel */
.bk2 .qrPanel { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.bk2 .qrPanel canvas { display: block; background: #fff; padding: 14px; border-radius: 16px; box-shadow: 0 0 20px 0 #f0f5f2, 0 12px 30px -16px rgba(0,0,0,.55); }
.bk2 .qrPanel__wait { font-family: var(--bkbody); font-size: 13px; color: var(--fa8); letter-spacing: -.26px; animation: bk2wait 2.2s ease-in-out infinite; }
@keyframes bk2wait { 0%, 100% { opacity: .85; } 50% { opacity: .45; } }

/* entrance / exit */
.bk2 .rise { opacity: 0; animation: bk2rise .7s var(--ease) forwards; }
@keyframes bk2rise { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.bk2 .leaving { animation: bk2leave .5s var(--ease) forwards; }
@keyframes bk2leave { to { opacity: 0; transform: translateY(-7px); } }
.bk2 .d1 { animation-delay: .05s; } .bk2 .d2 { animation-delay: .16s; } .bk2 .d3 { animation-delay: .27s; } .bk2 .d4 { animation-delay: .38s; }

/* ==================================================================
   EXTRA .bkx-* screen rules booking.js emits (Help / recommend, Back,
   location restyle, gate de-pill, progress dots) that live in
   clinicians/_assets/booking-flow.css — NOT in new-landing's inline
   <style>. Carried here (palette-neutralised to blue) so those screens
   don't render broken. booking.js's own injected <style> covers the rest.
   ================================================================== */

/* de-AI: no ALL CAPS on the gate chips / badges */
.bk2 .bkx-gate, .bk2 .bkx-badge { text-transform: none; letter-spacing: normal; }
/* cleaner package cards: de-pill the gate label into a plain caption, bottom-align Select */
.bk2 .bkx-gate { background: none; padding: 0; border-radius: 0; margin-bottom: 10px; font-weight: 600; font-size: 11.5px; }
.bk2 .bkx-gate--direct { color: var(--muted); }
.bk2 .bkx-gate--consult { color: #3a5a96; }
.bk2 .bkx-gate--free { color: #1f7a4d; }
.bk2 .pkgCard .body { justify-content: flex-end; }
.bk2 .pkgCard .selbtn { margin-top: auto; }

/* in-flow "Back" link above a step heading */
.bk2 .bkx-stepback { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; padding: 0 0 14px; margin: 0; cursor: pointer; color: var(--fa8); font-family: var(--bkbody); font-size: 14px; letter-spacing: -.2px; transition: color .2s; }
.bk2 .bkx-stepback:hover { color: var(--fa); }
.bk2 .bkx-stepback svg { width: 17px; height: 17px; }

/* "Help me decide" recommender links + recommendation CTAs */
.bk2 .bkx-helprow { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 18px; }
.bk2 .bkx-help { background: none; border: 0; color: var(--fa8); font-family: var(--bkbody); font-size: 14px; letter-spacing: -.2px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.bk2 .bkx-help:hover { color: var(--fa); }
.bk2 .bkx-help svg { width: 15px; height: 15px; }
.bk2 .bkx-helpcta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 8px; }

/* location selector → styled like the date list (serif, lights up on select) */
.bk2 .bkx-locRow { flex-direction: column; gap: 4px; align-items: flex-start; flex-wrap: nowrap; margin-top: 16px; }
.bk2 .bkx-loc { flex: 0 0 auto; min-width: 0; width: auto; border: 0; border-radius: 0; padding: 4px 2px; background: none; font-family: var(--bkserif); font-weight: 400; font-size: 22px; color: var(--fa); opacity: .55; transition: opacity .3s var(--ease), color .3s var(--ease); }
.bk2 .bkx-loc.sel { opacity: 1; color: var(--fa); background: none; border: 0; }
.bk2 .bkx-loc:not(.sel) { color: var(--fa); }
/* drop the AI-ish progress dots — the "1 of N" eyebrow already shows progress */
.bk2 .bkx-prog { display: none; }

/* legibility: booking.js injects light-background chips with no text colour,
   so text would inherit near-white --fa and vanish. Force dark text. */
.bk2 .bkx-ask input { color: var(--ink2); }
.bk2 .bkx-ask input::placeholder { color: rgba(10,10,10,.5); }

/* Stripe Payment Element wrapper: taller than a single card field → let the pay
   screen scroll inside the fixed-height card instead of clipping. */
.bk2 .bkx-payel { width: 100%; min-height: 52px; }
.bk2 .bkx-pay { width: min(460px, 100%); }
.bk2 .screen:has(.bkx-pay) {
  justify-content: flex-start; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch;
  padding-top: clamp(20px, 4vh, 48px); padding-bottom: clamp(20px, 5vh, 56px);
}
/* section eyebrows: stop the ALL-CAPS transform (source text is sentence case) */
.bk2 .bkx-qeyebrow { text-transform: none; letter-spacing: normal; }

/* the "See <lane> options" follow-up chip carries an arrow SVG; constrain it. */
.bk2 .chip svg { width: 15px; height: 15px; flex: 0 0 auto; vertical-align: -2px; margin-left: 5px; }

/* card content alignment: one shared left edge for gate/name/price/items/Select */
.bk2 .pkgCard { padding: 12px 16px 16px; }
.bk2 .pkgCard .panel { padding: 6px 0 12px; }
.bk2 .pkgCard .body { padding: 0; }

/* ============================== RESPONSIVE ==============================
   Widget-only responsive rules (new-landing 509-515 + 823, plus the mobile
   polish from booking-flow.css). Marketing-page rules are intentionally omitted.
   ========================================================================== */
@media (max-width: 960px) {
  .best { padding: 80px 24px; }
}

@media (max-width: 760px) {
  .bk2 { aspect-ratio: auto; min-height: 560px; }
  .bk2 .triRow, .bk2 .confRow { grid-template-columns: 1fr; flex-direction: column; gap: 26px; }
  .bk2 .pkgRow { flex-direction: column; align-items: center; }
  .bk2 .triRow .slotL, .bk2 .triRow .slotR { justify-self: center; }
  .bk2 .dateList, .bk2 .dateList.right { align-items: center; }
}

/* chrome: tighten top locator + let the bottom contact row wrap on phones */
@media (max-width: 760px) {
  .bk2__loc { top: 16px; right: 16px; }
  .bk2__city { font-size: 14px; }
  .bk2__change { font-size: 11px; }
  .bk2__foot { bottom: 16px; gap: 10px 20px; flex-wrap: wrap; justify-content: center; max-width: 92%; }
  .bk2__foot span, .bk2__foot a { font-size: 12px; }
  .bk2__foot svg { width: 15px; height: 15px; }
  .bk2 .screen { padding-bottom: 16%; }
}

/* per-screen mobile: entry, AI answer, pickers, dates, contact, questions, pay, confirm */
@media (max-width: 760px) {
  .bk2 .h-entry { font-size: clamp(26px, 7vw, 34px); }
  .bk2 .searchWrap { width: 92%; margin-top: 28px; }
  .bk2 .tfieldRow { height: auto; min-height: 44px; }
  .bk2 .tfieldRow input { font-size: 16px; }
  .bk2 .micBtn { width: 40px; height: 40px; }
  .bk2 .findcare { height: 40px; }
  .bk2 .chipRow { gap: 10px; margin-top: 22px; }
  .bk2 .chip { font-size: 13px; padding: 9px 16px; }
  .bk2 .listenCue .lStop { min-height: 44px; }

  .bk2 .bkx-ai { width: 100%; font-size: 16px; line-height: 1.55; max-height: 46vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .bk2 .bkx-ask { width: 100%; }
  .bk2 .bkx-ask input { font-size: 16px; }
  .bk2 .chip { display: inline-flex; align-items: center; min-height: 40px; }

  .bk2 .screen:has(.pkgRow) { justify-content: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-top: clamp(26px, 6vh, 54px); padding-bottom: 36px; }
  .bk2 .pkgRow { width: 100%; gap: 14px; margin-top: 22px; }
  .bk2 .pkgCard { width: min(360px, 100%); }
  .bk2 .pkgCard .price { font-size: 28px; }
  .bk2 .pkgCard .selbtn { padding: 13px 0; font-size: 14px; }
  .bkx-contWrap { width: 100%; }
  .bk2 .cGo { min-height: 44px; padding: 8px 6px; font-size: 14px; }

  .bk2 .pkgRow:has([data-sub]) { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
  .bk2 .pkgRow:has([data-sub]) .pkgCard { width: auto; }
  .bk2 .pkgRow:has([data-sub]) .pkgCard .panel { align-items: center; text-align: center; }

  .bk2 .screen:has(.triRow) { justify-content: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-top: clamp(24px, 5vh, 50px); padding-bottom: 36px; }
  .bk2 .dateList { gap: 4px; }
  .bk2 .dateItem { font-size: 26px; padding: 8px 6px; }
  .bk2 .triRow .bkx-contWrap { justify-content: center !important; }
  .bk2 .bkx-locRow { justify-content: center; }
  .bk2 .bkx-loc { min-width: 0; flex: 1 1 140px; font-size: 15px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

  .bk2 .contactRight { width: 100%; align-items: stretch; text-align: left; gap: 6px; }
  .bk2 .cInput, .bk2 .contactRight .cInput { width: 100%; text-align: left; font-size: 18px; min-height: 48px; line-height: 1.4; padding: 10px 4px; border-bottom: 1px solid rgba(250,250,250,.18); }
  .bk2 .cInput::placeholder { color: rgba(250,250,250,.45); }
  .bk2 .contactRight .cGo { align-self: flex-start; margin-top: 14px; }

  .bk2 .screen:has(.bkx-qstep) { justify-content: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-top: clamp(22px, 5vh, 46px); padding-bottom: 44px; }
  .bk2 .bkx-qstep { width: 100%; }
  .bk2 .bkx-mic { width: 40px; height: 40px; }
  .bk2 .bkx-qnav { margin-top: 22px; gap: 12px; }
  .bk2 .bkx-back { min-height: 44px; display: inline-flex; align-items: center; }
  .bk2 .bkx-check { padding: 8px 0; }
  .bk2 .bkx-choice { min-height: 52px; }

  .bk2 .screen:has(.bkx-pay) { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
  .bk2 .bkx-pay { gap: 14px; }
  .bk2 .bkx-paysum { font-size: 15px; }
  .bk2 .bkx-paybtn { height: 54px; font-size: 16px; }
  .bk2 .screen:has(.bkx-pay):not(:has(.bkx-payel)) { justify-content: center; }

  .bk2 .screen:has(.confRow) { justify-content: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-top: clamp(28px, 7vh, 64px); padding-bottom: 40px; }
  .bk2 .confText { text-align: center; max-width: 100%; }
  .bk2 .confText .head { text-align: center; }
  .bk2 .confText .sub { text-align: center; font-size: 16px; }
  .bk2 .confProfile { justify-content: center; margin-top: 18px; min-height: 44px; font-size: 14px; }
  .bk2 .confFine { justify-content: center; gap: 14px; }
  .bk2 .confFine button { font-size: 14px; color: var(--fa8); min-height: 44px; display: inline-flex; align-items: center; padding: 0 4px; }
}

/* entry composer (ChatGPT-style): text on top, mic + circular send below */
@media (max-width: 760px) {
  .bk2 .tfieldRow input { min-width: 0; }
  .bk2 .searchWrap { width: 100%; margin-top: 24px; padding: 0; background: transparent; border: 0; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .bk2 .searchCard { background: #fafdff; border-radius: 22px; padding: 0; box-shadow: 0 12px 34px -18px rgba(0,0,0,.55); }
  .bk2 .tfield { border-radius: 22px; padding: 12px 14px 10px; }
  .bk2 .tfieldRow { flex-direction: column; align-items: stretch; height: auto; min-height: 0; gap: 6px; }
  .bk2 .tfieldRow input { width: 100%; min-width: 0; font-size: 16px; line-height: 1.4; padding: 2px; }
  .bk2 .tfieldRight { justify-content: flex-end; gap: 10px; }
  .bk2 .micBtn, .bk2 .findcare { width: 38px; height: 38px; }
  .bk2 .findcare { padding: 0; gap: 0; border-radius: 50%; justify-content: center; background: #2e406c; border: 0; }
  .bk2 .findcare:hover { background: #2e406c; }
  .bk2 .findcare span { display: none; }
  .bk2 .findcare svg { width: 18px; height: 18px; color: #fff; }
}

/* smaller type across the card on phones */
@media (max-width: 760px) {
  .bk2 .h-entry { font-size: clamp(21px, 5.6vw, 26px); }
  .bk2 .h-step { font-size: clamp(20px, 5.2vw, 25px); }
  .bk2 .bkx-qhead { font-size: clamp(19px, 5vw, 24px); margin-bottom: 18px; }
  .bk2 .bkx-qeyebrow { font-size: 11px; margin-bottom: 12px; }
  .bk2 .chip { font-size: 12.5px; min-height: 38px; padding: 8px 14px; }
  .bk2 .pkgCard .name { font-size: 17px; line-height: 21px; }
  .bk2 .pkgCard .price { font-size: 24px; }
  .bk2 .pkgCard .sub, .bk2 .pkgCard .tests { font-size: 12.5px; }
  .bk2 .dateItem { font-size: 24px; }
  .bk2 .confText .sub { font-size: 15px; }
  .bk2 .bkx-ai { font-size: 15px; }
  .bk2 .bk2__city { font-size: 14px; }
  .bk2 .bk2__change { font-size: 11.5px; }
  .bk2 .bk2__foot span, .bk2 .bk2__foot a { font-size: 13px; }
}

/* show just two quick chips on mobile (less busy) */
@media (max-width: 760px) {
  .bk2 .chip[data-lane="best"], .bk2 .chip[data-lane="longevity"] { display: none; }
}
