/* ============================================================
   INTELLICAMP — Book a call
   One question at a time, with a brief that assembles alongside.
   ============================================================ */

/* "thin answer" needs its own colour: --coral already means error on this
   page, and a short answer is a nudge, not a fault. This is the Amber from
   the accent presets, darkened on light backgrounds to stay legible. */
:root { --warn: #ffd166; --warn-rgb: 255, 209, 102; }
:root[data-theme="light"] { --warn: #b07d12; --warn-rgb: 176, 125, 18; }

.bk-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* The three panels — resume, flow, done — are switched with the hidden
   attribute, but each carries a display of its own further down this file,
   which silently beats the user-agent [hidden] rule. Without this they all
   render at once and sit side by side in .bk's flex row. */
[hidden] { display: none !important; }

/* ---------- 1. Ambient field ----------
   Warms up as the brief fills; --prog is 0 -> 1, --pulse spikes on
   each keystroke. Colours come from the derived palette, so it
   matches whatever the visitor picked in the appearance drawer. */
.bk-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: calc(0.35 + var(--prog, 0) * 0.5);
  transition: opacity 1.2s var(--ease);
}

.bk-ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  transform: scale(calc(1 + var(--pulse, 0) * 0.06));
  transition: transform 0.6s var(--ease), background 1.4s ease;
  will-change: transform;
}

@keyframes bk-drift-a {
  0%, 100% { translate: 0 0; }
  50% { translate: 8vw -6vh; }
}

@keyframes bk-drift-b {
  0%, 100% { translate: 0 0; }
  50% { translate: -7vw 7vh; }
}

.bk-ambient__blob--1 {
  width: 46vw; height: 46vw;
  top: -12vh; left: -8vw;
  background: var(--p1);
  opacity: calc(0.16 + var(--prog, 0) * 0.16);
  animation: bk-drift-a 22s ease-in-out infinite;
}

.bk-ambient__blob--2 {
  width: 40vw; height: 40vw;
  bottom: -14vh; right: -6vw;
  background: var(--p6);
  opacity: calc(0.14 + var(--prog, 0) * 0.18);
  animation: bk-drift-b 26s ease-in-out infinite;
}

.bk-ambient__blob--3 {
  width: 32vw; height: 32vw;
  top: 40%; left: 45%;
  background: var(--p4);
  opacity: calc(0.06 + var(--prog, 0) * 0.16);
  animation: bk-drift-a 30s ease-in-out infinite reverse;
}

/* ---------- 2. Saved indicator ----------
   The minimal booking bar was replaced by the site header, so this now sits
   in .header__actions. Everything else that bar carried is gone: the logo
   and the exit link are both covered by the header itself. */
.bk-saved {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bk-saved.show { opacity: 0.85; }

/* the header is sticky, so the flow needs to clear it when scrolled */
.bk-body .header { flex-shrink: 0; }

/* ---------- 3. Layout ---------- */
/* <main> was a flex container with a 1240px cap, left over from the wizard —
   which made the banner and the form siblings in a ROW, and clipped the
   banner's full-bleed background. It is an ordinary block now: banner, then
   section, one under the other. */
.bk {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

/* Likewise the 660px cap: correct when this held one question at a time,
   wrong now that the form is two columns and the right one is a calendar. */
.bk-flow {
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.bk-done { padding-inline: clamp(1.15rem, 4vw, 3rem); }

/* ---------- 4. Step ---------- */
.bk-step { position: relative; }

.bk-count {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-ink);
  margin-bottom: 1.1rem;
}

.bk-q {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 0.7rem;
  max-width: 18ch;
}

.bk-sub {
  color: var(--muted);
  font-size: var(--step-0);
  margin-bottom: 1.8rem;
  max-width: 46ch;
}

/* entering / leaving */
@keyframes bk-in {
  from { opacity: 0; transform: translateY(26px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}

.bk-step.is-in > * { animation: bk-in 0.55s var(--ease) both; }
.bk-step.is-in > *:nth-child(2) { animation-delay: 0.05s; }
.bk-step.is-in > *:nth-child(3) { animation-delay: 0.1s; }
.bk-step.is-in > *:nth-child(4) { animation-delay: 0.15s; }

/* ---------- 5. Inputs ---------- */
.bk-input,
.bk-area {
  width: 100%;
  max-width: 620px;
  background: none;
  border: 0;
  border-bottom: 2px solid var(--line);
  padding: 0.6rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--paper);
  transition: border-color 0.35s ease;
}

/* Space Grotesk, matching the single-line inputs on steps 1-3 — it used to
   drop back to Inter here. Size and line-height stay looser than the inputs
   because these answers run to several lines. */
.bk-area {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  min-height: 132px;
  resize: vertical;
}

.bk-input:focus,
.bk-area:focus { outline: none; border-color: var(--accent-ink); }
.bk-input::placeholder,
.bk-area::placeholder { color: var(--muted-3); }

.bk-err {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--coral);
  min-height: 1.1em;
}

/* prompts that help when someone stalls */
.bk-prompts { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.bk-prompt {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px dashed var(--line);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.35s var(--ease);
}

.bk-prompt:hover { border-style: solid; border-color: var(--accent-ink); color: var(--accent-ink); transform: translateY(-2px); }

/* ---------- 6. Option chips ---------- */
.bk-opts { display: grid; gap: 8px; max-width: 620px; }

@media (min-width: 560px) {
  .bk-opts--two { grid-template-columns: 1fr 1fr; }
}

.bk-opt {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  text-align: left;
  /* same family as the inputs; 500 rather than 600 because these are
     picked from, not typed into — and it is the lightest Space Grotesk
     weight this project loads, so 400 would render as 500 anyway */
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--paper);
  transition: border-color 0.3s ease, transform 0.35s var(--ease), background 0.3s ease;
}

.bk-opt:hover { border-color: var(--accent-ink); transform: translateX(4px); }

.bk-opt[aria-pressed="true"] {
  border-color: var(--accent-ink);
  background: rgba(var(--accent-rgb), 0.1);
}

.bk-opt__key {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-2);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.bk-opt[aria-pressed="true"] .bk-opt__key {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.bk-opt small { display: block; color: var(--muted-2); font-size: 0.76rem; margin-top: 0.15rem; }

/* ---------- 7. Slot picker ---------- */
.bk-slots { display: grid; gap: 10px; max-width: 660px; }

.bk-slots__tz { font-size: 0.78rem; color: var(--muted-2); margin-bottom: 0.3rem; }

.bk-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
}

.bk-day {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.7rem 0.6rem;
  background: var(--glass);
}

.bk-day__h {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.55rem;
}

.bk-day__h b { display: block; font-size: 1.05rem; color: var(--paper); letter-spacing: -0.02em; }

.bk-times { display: grid; gap: 5px; }

.bk-time {
  padding: 0.44rem 0.3rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.bk-time:hover { color: var(--paper); border-color: var(--line); }
.bk-time[aria-pressed="true"] { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.bk-time[disabled] { opacity: 0.28; pointer-events: none; }

/* ---------- 8. Review ---------- */
/* ---------- 8b. Review ----------
   An index of every answer beside the live control for the one in focus.
   The rail keeps the whole brief legible at a glance however long the
   answers get; the panel edits in place, so a mistake is fixed where it
   is spotted rather than by walking back through the flow. */
.bk-rv { display: grid; gap: 1.4rem; }

@media (min-width: 820px) {
  .bk-rv { grid-template-columns: 232px 1fr; gap: 2.2rem; align-items: start; }
}

/* ---- strength panel ---- */
/* The index doubles as a quality check: a thin answer is worth less to us
   than a filled one, so it is scored at half and called out rather than
   silently ticked off. */
.bk-rv__strength {
  padding: 0.9rem 1rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--glass);
  margin-bottom: 1.1rem;
}

.bk-rv__str-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }

.bk-rv__pct {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.bk-rv__pct small { font-size: 0.7rem; color: var(--muted-3); margin-left: 1px; }

/* one segment per answer, so the shape of the gap is visible at a glance */
.bk-rv__meter { display: flex; gap: 3px; margin: 0.7rem 0 0.6rem; }

.bk-rv__meter i {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  transform-origin: 50% 100%;
  animation: bk-seg 0.45s var(--ease) both;
  animation-delay: var(--d, 0s);
}

@keyframes bk-seg { from { transform: scaleX(0.2); opacity: 0; } to { transform: none; opacity: 1; } }

.bk-rv__meter i.is-good { background: var(--accent); }
.bk-rv__meter i.is-thin { background: var(--warn); opacity: 0.75; }

.bk-rv__str-note { font-size: 0.68rem; color: var(--muted-3); }

/* ---- status dots ---- */
.bk-rv__dot {
  grid-area: dot;
  align-self: center;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.bk-rv__dot.is-good { background: var(--accent); border-color: var(--accent); }
.bk-rv__dot.is-thin { background: var(--warn); border-color: var(--warn); opacity: 0.8; }

/* ---- rail ---- */
.bk-rv__rail {
  position: relative;
  display: grid;
  gap: 1px;
  border-left: 1px solid var(--line-soft);
}

.bk-rv__mark {
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.45s var(--ease), height 0.35s var(--ease), width 0.35s var(--ease);
}

.bk-rv__tab {
  display: grid;
  grid-template-areas: "dot k" ". v";
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.5rem;
  align-items: center;
  padding: 0.55rem 0.6rem 0.55rem 0.95rem;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background 0.28s ease, padding-left 0.35s var(--ease);
}

.bk-rv__tab:hover { background: var(--ink-2); }
.bk-rv__tab.is-on { background: var(--ink-3); padding-left: 1.2rem; }
.bk-rv__tab:focus-visible { outline: 1px solid var(--accent-ink); outline-offset: -1px; }

.bk-rv__tab-k {
  grid-area: k;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-3);
  transition: color 0.25s ease;
}

.bk-rv__tab.is-on .bk-rv__tab-k { color: var(--accent-ink); }

/* one line only — the rail is an index, not a second copy of the brief */
.bk-rv__tab-v {
  grid-area: v;
  font-size: 0.78rem;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bk-rv__tab-v.is-empty { color: var(--muted-3); font-style: italic; }
.bk-rv__tab.is-on .bk-rv__tab-v { color: var(--paper); }

/* ---- panel ---- */
.bk-rv__panel { min-width: 0; }

.bk-rv__panel.is-in { animation: bk-rv-in 0.5s var(--ease) both; }

@keyframes bk-rv-in {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}

.bk-rv__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.bk-rv__eyebrow {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.bk-rv__open {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--muted-2);
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.bk-rv__open:hover { color: var(--accent-ink); border-color: var(--accent-ink); }

.bk-rv__q {
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bk-rv__sub { font-size: var(--step--1); color: var(--muted-2); margin-top: 0.45rem; }
.bk-rv__ctl { margin-top: 1.2rem; }

/* ---- the nudge ---- */
.bk-rv__coach {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(var(--warn-rgb), 0.3);
  background: rgba(var(--warn-rgb), 0.08);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  animation: bk-rv-in 0.4s var(--ease) both;
}

.bk-rv__coach::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.42rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--warn);
}

.bk-rv__coach b { color: var(--paper); font-weight: 600; }

/* the controls are the real ones, just a shade tighter inside the panel */
.bk-rv__ctl .bk-input { font-size: clamp(1.05rem, 2.4vw, 1.45rem); }
/* the script sizes this to its content, so it must not scroll or be dragged */
.bk-rv__ctl .bk-area { min-height: 108px; resize: none; overflow: hidden; }
.bk-rv__ctl .bk-slots { margin-top: 0; }

/* ---- rail turns horizontal on narrow screens ---- */
@media (max-width: 819px) {
  .bk-rv__rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(132px, auto);
    gap: 4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0.6rem;
    border-left: 0;
    border-bottom: 1px solid var(--line-soft);
    scrollbar-width: none;
  }

  .bk-rv__rail::-webkit-scrollbar { display: none; }

  .bk-rv__mark { left: 0; top: auto; bottom: 0.6rem; width: auto; height: 2px; }
  .bk-rv__tab { padding: 0.4rem 0.7rem 0.75rem; border-radius: 8px 8px 0 0; }
  .bk-rv__tab.is-on { padding-left: 0.7rem; }
  .bk-rv__tab-v { max-width: 150px; }
  .bk-rv__strength { margin-bottom: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .bk-rv__meter i { animation: none; }
}

/* ---------- 9. Nav + keys ---------- */
.bk-nav { display: flex; align-items: center; gap: 0.9rem; margin-top: 2.2rem; }

.bk-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.35s var(--ease);
}

.bk-nav__btn:hover { color: var(--paper); transform: translateX(-3px); }
.bk-nav__btn[hidden] { display: none; }

/* The keyboard hint row was removed from the markup. Enter / Shift+Enter /
   Esc are still bound in book.js — only the on-screen legend is gone. */

/* ---------- 10. Live brief ---------- */
.bk-brief { position: relative; }

@media (min-width: 900px) {
  .bk-brief__inner { position: sticky; top: 2rem; }
}

.bk-brief__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.8rem;
}

.bk-brief__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  min-height: 210px;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  box-shadow: 0 24px 60px -40px var(--shadow-strong);
}

.bk-brief__empty { color: var(--muted-3); font-size: var(--step--1); }

@keyframes bk-line-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.bk-line { animation: bk-line-in 0.5s var(--ease) both; }

.bk-line dt {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.2rem;
}

.bk-line dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper);
  line-height: 1.35;
}

.bk-line--wrap dd { font-family: var(--font-body); font-weight: 400; font-size: 0.86rem; color: var(--muted); }

.bk-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 0.3rem; }

.bk-chip {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent-ink);
}

.bk-brief__meter { height: 3px; border-radius: 2px; background: var(--line-soft); overflow: hidden; }

.bk-brief__meter i {
  display: block;
  height: 100%;
  width: calc(var(--prog, 0) * 100%);
  background: linear-gradient(90deg, var(--p1), var(--p4), var(--p6));
  transition: width 0.6s var(--ease);
}

/* ---------- 11. Resume + done ---------- */
.bk-resume,
.bk-done {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 60vh;
}

.bk-resume__card,
.bk-done__card {
  max-width: 560px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: clamp(1.8rem, 5vw, 3rem);
}

.bk-resume__card .eyebrow,
.bk-done__card .eyebrow { justify-content: center; }
.bk-resume__card h2 em { font-style: normal; color: var(--accent-ink); }
.bk-resume__card .lede,
.bk-done__card .lede { margin: 1rem auto 0; font-size: var(--step-0); }

.bk-resume__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.bk-done__tick { color: var(--accent-ink); display: grid; place-items: center; margin-bottom: 1.2rem; }
.bk-done__tick svg { overflow: visible; }

.bk-done__ring,
.bk-done__check {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: bk-draw 0.8s var(--ease) forwards;
}

.bk-done__check { animation-delay: 0.45s; }

@keyframes bk-draw { to { stroke-dashoffset: 0; } }

.bk-done__summary {
  text-align: left;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.7rem;
}

/* ---------- 12. Progress rail ---------- */
/* ---------- 12b. Contact strip ----------
   Below the fold, so the flow still owns the first screen. For anyone who
   would rather write an email than answer nine questions. */
.bk-contact {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
}

/* Same tokens as .wrap and the same 1.6fr repeat(3, 1fr) tracks as
   .footer__grid, so the three headings here land on the same vertical lines
   as Services / Company / Elsewhere directly below. One column rhythm for
   the whole bottom of the page rather than two competing ones. */
.bk-contact__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(2.6rem, 6vw, 4rem) var(--gutter);
  display: grid;
  gap: 2.5rem;
  /* stretch, so the three cards share one height and their footnotes —
     pushed down by margin-top:auto — land on the same baseline */
  align-items: stretch;
}

@media (min-width: 780px) {
  .bk-contact__inner { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3rem; }
}

/* mirrors .footer h4, which is scoped under .footer and so out of reach */
.bk-contact h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.1rem;
}

/* ---- contact cards ---- */
/* .bk-cx only adds the palette tint and the note; the surface, the bloom
   and the tilt all come from .card, exactly as on the homepage. */
.bk-cx { display: flex; flex-direction: column; }

.bk-cx .card__icon { color: var(--pc, var(--accent)); }
.bk-cx h4 { margin-bottom: 0.9rem; color: var(--paper); }
.bk-cx .footer__links { gap: 0.5rem; }

.bk-cx__note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.72rem;
  color: var(--muted-3);
}

/* a slow pulse behind the 24/7 line, so "on call" reads as a live claim */
@keyframes bk-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.55); }
  70% { box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0); }
}

.bk-cx__live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  animation: bk-live 2.6s ease-out infinite;
}

/* ---- copy button ---- */
.bk-contact__mail { display: flex; align-items: center; flex-wrap: wrap; gap: 0.8rem; }

.bk-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.bk-copy:hover { color: var(--accent-ink); border-color: var(--accent-ink); }

.bk-copy.is-done {
  color: var(--on-accent);
  background: var(--accent);
  border-color: var(--accent);
}

/* .footer__links is reused wholesale for the anchors — including its
   slide-in arrow on hover — so only the plain-text rows need styling */
.bk-contact .footer__links span {
  color: var(--muted-2);
  font-size: var(--step--1);
}

/* .eyebrow is inline-flex, so on the homepage it works because a block <h2>
   follows it. Here the next element is inline, so it needs to claim its own
   line — while the link stays inline-block so its underline hugs the text. */
.bk-contact .eyebrow { display: flex; }

.bk-contact__lead {
  display: inline-block;
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--paper);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1.5px;
  transition: background-size 0.45s var(--ease), color 0.3s ease;
}

.bk-contact__lead:hover { color: var(--accent-ink); background-size: 100% 1.5px; }

.bk-contact p {
  margin-top: 0.9rem;
  max-width: 46ch;
  color: var(--muted-2);
  font-size: var(--step--1);
  line-height: 1.6;
}

/* the booking flow does not load main.js, so the site footer is used here
   without its scroll-reveal hooks, live clocks or magnetic wordmark */
.bk-foot { position: relative; z-index: 2; }

.bk-rail {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--line-soft);
  z-index: 5;
}

.bk-rail span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(var(--prog, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--p1), var(--p3), var(--p6));
  transition: transform 0.6s var(--ease);
}

/* ---------- 13. Motion off ---------- */
:root[data-motion="off"] .bk-step.is-in > *,
:root[data-motion="off"] .bk-line,
:root[data-motion="off"] .bk-done__ring,
:root[data-motion="off"] .bk-done__check { animation: none !important; opacity: 1; }

:root[data-motion="off"] .bk-ambient__blob { animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  .bk-ambient__blob { animation: none !important; }
  .bk-step.is-in > * { animation: none; }
}

/* ---------- 14. Mobile ---------- */
@media (max-width: 899px) {
    .bk-brief__card { min-height: 0; }
  .bk { padding-bottom: 4rem; }
}

/* ---------- submission failure, honeypot, scheduler ---------- */

.bk-err {
  margin: 0 0 0.8rem;
  min-height: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--coral);
}
.bk-err a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }

/* off-screen rather than display:none — some bots skip hidden fields */
.bk-pot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   The calendar

   A month grid beside a column of times, in place of the five-day strip this
   page shipped with. Weeks start on Monday because Indian school weeks do.
   ========================================================================== */

.bk-cal2 { display: grid; gap: 0.9rem; max-width: 720px; }

.bk-cal2__tz { margin: 0; font-size: 0.8rem; color: var(--muted-2); }

.bk-cal2__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12.5rem;
  gap: 1rem;
  align-items: start;
}
@media (max-width: 620px) { .bk-cal2__cols { grid-template-columns: 1fr; } }

.bk-cal2__month {
  padding: 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(var(--ink-rgb), 0.4);
}

.bk-cal2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.bk-cal2__head b {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--paper);
}
.bk-cal2__nav {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ink-3);
  color: var(--muted-2);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.bk-cal2__nav:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent-ink);
  background: rgba(var(--accent-rgb), 0.1);
}
.bk-cal2__nav:disabled { opacity: 0.3; cursor: default; }
.bk-cal2__nav:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 2px; }

.bk-cal2__dow,
.bk-cal2__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }

.bk-cal2__dow {
  margin-bottom: 4px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-3);
  text-align: center;
}

.bk-cal2__pad { aspect-ratio: 1; }

.bk-cal2__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: none;
  color: var(--text-2);
  font-size: 0.86rem;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.bk-cal2__day:hover:not(:disabled) { background: rgba(var(--accent-rgb), 0.1); color: var(--paper); }
.bk-cal2__day:disabled { color: var(--muted-3); opacity: 0.4; cursor: default; }
.bk-cal2__day[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}
.bk-cal2__day:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 1px; }

/* the times, or a prompt to pick a day first */
.bk-cal2__times,
.bk-cal2__empty {
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(var(--ink-rgb), 0.4);
  min-height: 100%;
}
.bk-cal2__times > b {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--paper);
  margin-bottom: 0.3rem;
}
.bk-cal2__empty p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted-2);
}

.bk-cal2__time {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--ink-3);
  color: var(--text-2);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease,
              transform 0.28s var(--ease);
}
.bk-cal2__time em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--muted-3);
}
.bk-cal2__time:hover:not(:disabled) {
  border-color: rgba(var(--accent-rgb), 0.5);
  color: var(--paper);
  transform: translateX(2px);
}
.bk-cal2__time:disabled { opacity: 0.38; cursor: default; }
.bk-cal2__time[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}
.bk-cal2__time[aria-pressed="true"] em { color: var(--on-accent); opacity: 0.75; }
.bk-cal2__time:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .bk-cal2__time:hover:not(:disabled) { transform: none; }
}

/* ==========================================================================
   Arriving from the coverage grid.

   Two states, deliberately different colours: a live selection is a promise
   we can keep today, a planned one is a request being logged. Reading the
   same would be the small dishonesty this whole section exists to avoid.
   ========================================================================== */

.bk-from { padding: 0 clamp(1rem, 4vw, 2rem); margin-bottom: 1.2rem; }

.bk-from__card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.1), transparent 65%),
    var(--ink-2);
  overflow: hidden;
}

.bk-from.is-soon .bk-from__card {
  border-color: rgba(var(--p5-rgb), 0.5);
  background:
    linear-gradient(180deg, rgba(var(--p5-rgb), 0.1), transparent 65%),
    var(--ink-2);
}

/* a light crossing the card once it arrives, so it is noticed before the
   first question takes over */
.bk-from__card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent,
    rgba(var(--accent-rgb), 0.13), transparent);
  animation: bk-from-sheen 2.4s var(--ease) 0.4s;
}

@keyframes bk-from-sheen { to { transform: translateX(100%); } }

.bk-from__k {
  display: inline-block;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bk-from.is-soon .bk-from__k { background: var(--p5); color: #0b0d11; }

.bk-from__card b {
  display: block;
  margin: 0.6rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  font-weight: 600;
}

.bk-from__card p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .bk-from__card::after { animation: none; }
}

/* ==========================================================================
   The six-field booking form, under a banner.

   The page follows the same shell as every Feature and Solution page: an
   .svc-hero with a decorative SVG on the right, then a section head, then the
   block itself. It was the only page on the site not built that way.
   ========================================================================== */

/* ---------- the banner ----------
   The call as a filling timeline. The line runs top to bottom over the first
   70% of the cycle and each node lights as it is reached — so the four
   keyframe sets below are not arbitrary, they are the node positions along
   the rail expressed as a fraction of that run. */

.bk-hero { position: relative; overflow: hidden; }

.bkb { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.9; }

.bkb__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--line-rgb), 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--line-rgb), 0.5) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(78% 68% at 70% 46%, #000 0, transparent 78%);
  -webkit-mask-image: radial-gradient(78% 68% at 70% 46%, #000 0, transparent 78%);
  opacity: 0.5;
}

.bkb__glow {
  position: absolute;
  top: -14%;
  right: -4%;
  width: 58%;
  height: 130%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--accent-rgb), 0.15), transparent 70%);
  filter: blur(30px);
  animation: bkb-breathe 9s var(--ease) infinite;
}

@keyframes bkb-breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.12); opacity: 1; }
}

.bkb__art {
  position: absolute;
  top: 50%;
  right: 4%;
  width: min(52%, 560px);
  transform: translateY(-50%);
}

@media (max-width: 900px) { .bkb__art { opacity: 0.28; right: -8%; } }

.bkb__lbl {
  fill: var(--muted-3);
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.bkb__rail { stroke: rgba(var(--line-rgb), 0.8); stroke-width: 1.4; }

.bkb__fill {
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  animation: bkb-run 9s var(--ease) infinite;
}

@keyframes bkb-run {
  0%       { stroke-dashoffset: 130; }
  70%, 88% { stroke-dashoffset: 0; }
  96%, 100%{ stroke-dashoffset: 130; }
}

.bkb__n circle {
  fill: var(--ink);
  stroke: rgba(var(--line-rgb), 0.9);
  stroke-width: 1.4;
}

.bkb__n--1 circle { animation: bkb-n1 9s var(--ease) infinite; }
.bkb__n--2 circle { animation: bkb-n2 9s var(--ease) infinite; }
.bkb__n--3 circle { animation: bkb-n3 9s var(--ease) infinite; }
.bkb__n--4 circle { animation: bkb-n4 9s var(--ease) infinite; }

@keyframes bkb-n1 { 0%, 2% { fill: var(--ink); }  5%, 90% { fill: var(--accent); stroke: var(--accent); } 96%, 100% { fill: var(--ink); } }
@keyframes bkb-n2 { 0%, 24% { fill: var(--ink); } 27%, 90% { fill: var(--accent); stroke: var(--accent); } 96%, 100% { fill: var(--ink); } }
@keyframes bkb-n3 { 0%, 46% { fill: var(--ink); } 49%, 90% { fill: var(--accent); stroke: var(--accent); } 96%, 100% { fill: var(--ink); } }
@keyframes bkb-n4 { 0%, 68% { fill: var(--ink); } 71%, 90% { fill: var(--accent); stroke: var(--accent); } 96%, 100% { fill: var(--ink); } }

.bkb__nl {
  fill: var(--muted-2);
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 600;
}

.bkb__nt { fill: var(--muted-3); font-size: 7px; }

/* the stat strip under the headline */
.bks {
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  max-width: 640px;
}

.bks li { padding-left: 0.85rem; border-left: 2px solid rgba(var(--accent-rgb), 0.45); }

.bks b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.bks span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .bkb__glow, .bkb__fill, .bkb__n circle { animation: none; }
  .bkb__fill { stroke-dashoffset: 0; }
  .bkb__n circle { fill: var(--accent); stroke: var(--accent); }
}

.bkf { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

.bkf__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(0.9rem, 2.2vw, 1.4rem);
  align-items: start;
}

@media (max-width: 900px) { .bkf__grid { grid-template-columns: 1fr; } }

.bkf__pane {
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
}

.bkf__side { position: sticky; top: 84px; display: grid; gap: 0.9rem; }
@media (max-width: 900px) { .bkf__side { position: static; } }

/* ---- fields ---- */

.bkf__f { margin-bottom: 1.1rem; }
.bkf__f:last-child { margin-bottom: 0; }

.bkf__l {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-3);
}

.bkf__l em {
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.bkf__i, .bkf__s {
  width: 100%;
  /* a fixed height makes the tick's offset arithmetic rather than a guess
     that drifts with the font's line metrics */
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(var(--ink-rgb), 0.5);
  color: var(--paper);
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bkf__s { font-size: 0.9rem; }

.bkf__i:focus, .bkf__s:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.16);
}

.bkf__i::placeholder { color: var(--muted-3); }
.bkf__i[aria-invalid="true"] { border-color: var(--p4); }

/* align-items:start stops a short field stretching to a tall neighbour —
   which is what pushed the tick below the input it belongs to */
.bkf__row  { display: grid; gap: 0.7rem; grid-template-columns: 1fr 1fr; align-items: start; }
.bkf__row3 { display: grid; gap: 0.7rem; grid-template-columns: repeat(3, 1fr); align-items: start; }

@media (max-width: 560px) {
  .bkf__row, .bkf__row3 { grid-template-columns: 1fr; }
}

.bkf__opts { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.bkf__o {
  padding: 0.58rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.bkf__o:hover { color: var(--paper); border-color: var(--accent); }
.bkf__o.is-on { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.bkf__o:focus-visible { outline: 2px solid var(--deco); outline-offset: 2px; }

.bkf__n { margin: 0.45rem 0 0; font-size: 0.77rem; line-height: 1.5; color: var(--muted-3); }

.bkf__e {
  display: none;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--p4);
}

.bkf__e.is-on { display: block; }

/* ---- calendar ---- */

.cal__h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.cal__h b { font-size: 0.95rem; }
.cal__nav { display: flex; gap: 0.35rem; }

.cal__nb {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: none;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.cal__nb:hover { color: var(--paper); border-color: var(--accent); }

.cal__g { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }

.cal__wd {
  text-align: center;
  font-size: 0.68rem;
  color: var(--muted-3);
  padding-bottom: 0.3rem;
}

.cal__d {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(var(--ink-rgb), 0.42);
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

/* a day with slots left carries a hint of the accent, so the month reads as
   mostly-available rather than as a wall of identical squares */
.cal__d--free { border-color: rgba(var(--accent-rgb), 0.26); }
.cal__d:hover:not([disabled]) { border-color: var(--accent); color: var(--paper); }

.cal__d.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
}

.cal__d[disabled] { opacity: 0.22; cursor: default; background: none; }
.cal__d:focus-visible { outline: 2px solid var(--deco); outline-offset: 2px; }

.cal__t {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 0.4rem;
  margin-top: 1rem;
}

.cal__ts {
  padding: 0.55rem 0.3rem;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cal__ts:hover { color: var(--paper); border-color: var(--accent); }

.cal__ts.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.cal__zone { margin: 0.7rem 0 0; font-size: 0.76rem; color: var(--muted-3); }

/* ---- the running summary, cta and promises ---- */

.bkf__sum {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.05);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted-2);
}

.bkf__sum b { color: var(--paper); }

.bkf__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; }
.bkf__cta .btn { flex: 0 0 auto; }
.bkf__cta .bkf__n { margin: 0; }

.bkf__promise {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted-2);
}

.bkf__promise li { display: grid; grid-template-columns: 15px 1fr; gap: 0.5rem; }

.bkf__promise li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.42rem;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* the coverage banner sits inside the form now */
.bkf .bk-from { padding: 0; margin-bottom: 1.1rem; }
.bkf .bk-from__card { max-width: none; }


/* A scan crossing the banner, so the right-hand half is never still even
   between beats of the timeline. */
.bkb__scan {
  position: absolute;
  top: 0;
  right: 4%;
  width: min(52%, 560px);
  height: 100%;
  background: linear-gradient(180deg, transparent,
    rgba(var(--accent-rgb), 0.11) 48%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  animation: bkb-scan 9s var(--ease) infinite;
  pointer-events: none;
}

@keyframes bkb-scan {
  0%, 100% { transform: translateY(-62%); opacity: 0; }
  30%      { opacity: 1; }
  72%      { transform: translateY(62%); opacity: 0; }
}

/* the minute label brightens as its beat lands */
.bkb__nl { transition: none; }
.bkb__n--1 ~ .bkb__nl { }

/* three motes drifting through the empty half, tying the banner to the
   ambient language the rest of the site uses */
.bkb__mote {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.7);
  box-shadow: 0 0 12px 2px rgba(var(--accent-rgb), 0.35);
  animation: bkb-float 14s var(--ease) infinite;
}

.bkb__mote--1 { left: 58%; top: 24%; animation-delay: 0s; }
.bkb__mote--2 { left: 71%; top: 68%; animation-delay: -5s; }
.bkb__mote--3 { left: 63%; top: 46%; animation-delay: -9s; }

@keyframes bkb-float {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  25%      { opacity: 0.85; }
  50%      { transform: translate(28px, -34px); opacity: 0.5; }
  75%      { transform: translate(-16px, -12px); opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  .bkb__scan, .bkb__mote { animation: none; }
  .bkb__scan { opacity: 0; }
}

/* ==========================================================================
   Making the form feel like something rather than a stack of inputs.

   Three ideas carry it:
     · the effort is visible and finite — six segments, not an open form
     · the brief writes itself as you fill, so every blank is a dashed slot
       rather than an error message waiting to happen
     · the audience chips carry the same palette the header nav does, so the
       page feels part of one system
   ========================================================================== */

/* ---- the completion meter ---- */

.bkf__meter {
  display: flex;
  align-items: center;
  gap: 0.7rem 0.9rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--line-soft);
}

.bkf__mcount { font-size: 0.78rem; color: var(--muted-2); white-space: nowrap; }

.bkf__mcount b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.bkf__meter.is-full .bkf__mcount b { color: var(--accent); }

.bkf__mbar { display: flex; gap: 4px; flex: 1 1 130px; }

.bkf__mbar i {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(var(--line-rgb), 0.7);
  transform-origin: left;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease);
}

.bkf__mbar i.is-on { background: var(--accent); }

/* the segment that just landed gives a small kick */
.bkf__mbar i.is-new { animation: bkf-seg 0.5s var(--ease); }

@keyframes bkf-seg {
  0%   { transform: scaleY(1); }
  45%  { transform: scaleY(2.4); }
  100% { transform: scaleY(1); }
}

.bkf__mnote { font-size: 0.76rem; color: var(--muted-3); white-space: nowrap; }

/* ---- fields ---- */

.bkf__f { position: relative; align-self: start; }

.bkf__l { transition: color 0.25s ease; }
.bkf__f:focus-within .bkf__l { color: var(--accent); }

.bkf__i:focus, .bkf__s:focus {
  background: rgba(var(--ink-rgb), 0.75);
}

/* a tick that draws itself once a field is good */
/* 46px input, 9px tick: (46 - 9) / 2 = 18.5px from the bottom of the field,
   which is now the bottom of the input */
.bkf__f::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  bottom: 18.5px;
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}

.bkf__f.is-good::after { opacity: 1; transform: rotate(-45deg) scale(1); }
.bkf__f.is-good .bkf__i { padding-right: 2.4rem; }

/* ---- audience chips ---- */

.bkf__opts { gap: 0.5rem; }

.bkf__o {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem 0.55rem 0.8rem;
  position: relative;
  overflow: hidden;
}

.bkf__o svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.4s var(--ease);
}

.bkf__o:hover { color: var(--c); border-color: var(--c); }
.bkf__o:hover svg { opacity: 1; transform: translateY(-1px) scale(1.06); }

/* the selected chip wears its own slot rather than the one accent */
.bkf__o.is-on {
  background: var(--c);
  border-color: var(--c);
  color: #0b0d11;
}

.bkf__o.is-on svg { opacity: 1; }

/* a ring pushes out from the chip as it is chosen */
.bkf__o.is-on::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(var(--c-rgb), 0.5);
  animation: bkf-chip 0.6s var(--ease);
}

@keyframes bkf-chip {
  from { box-shadow: 0 0 0 0 rgba(var(--c-rgb), 0.5); }
  to   { box-shadow: 0 0 0 12px rgba(var(--c-rgb), 0); }
}

/* ---- selects ---- */

.bkf__sw { position: relative; display: block; }

.bkf__sw::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-right: 1.6px solid var(--muted-2);
  border-bottom: 1.6px solid var(--muted-2);
  transform: rotate(45deg);
  pointer-events: none;
  transition: border-color 0.25s ease;
}

.bkf__sw:focus-within::after { border-color: var(--accent); }

.bkf__s {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.1rem;
  cursor: pointer;
}

/* live / planned, switched by the standard that is chosen */
.bkf__live {
  display: inline-block;
  margin-right: 0.4rem;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: var(--on-accent);
  transition: background 0.3s ease, color 0.3s ease;
}

.bkf__live.is-soon { background: rgba(var(--p5-rgb), 0.16); color: var(--p5);
  box-shadow: inset 0 0 0 1px rgba(var(--p5-rgb), 0.5); }

/* ---- the brief that writes itself ---- */

.bkf__brief {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.07), transparent 70%),
    rgba(var(--ink-rgb), 0.4);
}

.bkf__bk {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-3);
}

.bkf__brief p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
}

.bkf__brief b {
  display: inline-block;
  color: var(--paper);
  font-weight: 600;
  padding: 0 0.15rem;
  transition: color 0.3s ease, background 0.3s ease;
}

/* a blank is a dashed slot, not an error waiting to happen */
.bkf__brief b.is-empty {
  color: var(--muted-3);
  font-weight: 400;
  font-style: italic;
  border-bottom: 1px dashed rgba(var(--line-rgb), 0.9);
}

/* each word lights briefly as it lands */
.bkf__brief b.is-lit { animation: bkf-lit 0.9s var(--ease); }

@keyframes bkf-lit {
  0%   { background: rgba(var(--accent-rgb), 0.28); }
  100% { background: transparent; }
}

.bkf__bfoot {
  display: block;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(var(--accent-rgb), 0.18);
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ---- the day that is chosen keeps a soft pulse ---- */

.cal__d.is-on { animation: bkf-day 2.8s var(--ease) infinite; }

@keyframes bkf-day {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.45); }
  55%      { box-shadow: 0 0 0 7px rgba(var(--accent-rgb), 0); }
}

/* the times arrive in sequence rather than all at once */
.cal__ts { animation: bkf-slot 0.36s var(--ease) both; animation-delay: calc(var(--i, 0) * 0.045s); }

@keyframes bkf-slot {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ---- the submit fills as the form completes ---- */

.bkf__cta .btn { position: relative; overflow: hidden; }

.bkf__cta .btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 0%);
  background: rgba(255, 255, 255, 0.14);
  transition: width 0.5s var(--ease);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .bkf__mbar i.is-new, .bkf__o.is-on::after, .bkf__brief b.is-lit,
  .cal__d.is-on, .cal__ts { animation: none; }
  .bkf__f::after { transition: opacity 0.2s ease; }
}
