/* KNGMVMT booking — dark + gold, matching style.css tokens.
   No inline styles anywhere: the site CSP is style-src 'self' with no
   'unsafe-inline', so every state here is a class. */

.bk { padding-top: var(--nav-h); }
.bk .container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }

/* ── Hero ─────────────────────────────────────────── */
.bk-hero { padding: 72px 0 44px; }
.bk-hero h1 { font-size: clamp(46px, 6vw, 78px); margin-bottom: 20px; }
.bk-sub { max-width: 46ch; color: var(--muted); font-size: 16px; line-height: 1.72; }

/* ── Layout ───────────────────────────────────────── */
.bk-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 96px;
}

/* ── Left column ──────────────────────────────────── */
.bk-aside { position: sticky; top: calc(var(--nav-h) + 32px); }
.bk-coach {
  display: flex; align-items: center; gap: 18px;
  padding-bottom: 26px; margin-bottom: 26px;
  border-bottom: 1px solid var(--border-sub);
}
.bk-coach img {
  width: 76px; height: 76px; object-fit: cover;
  border-radius: 50%; border: 1px solid var(--border);
}
.bk-coach-name { font-size: 15px; font-weight: 600; letter-spacing: 0.01em; }
.bk-coach-role { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

.bk-facts { list-style: none; margin-bottom: 30px; }
.bk-facts li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 14.5px; color: var(--fg); padding: 9px 0;
}
.bk-facts li span { color: var(--muted); min-width: 78px; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.09em; }

.bk-expect h4 { margin-bottom: 16px; color: var(--accent); letter-spacing: 0.14em; }
.bk-expect ol { list-style: none; counter-reset: e; }
.bk-expect li {
  counter-increment: e; position: relative; padding: 0 0 18px 34px;
  font-size: 14.5px; line-height: 1.65; color: var(--muted);
}
.bk-expect li::before {
  content: counter(e); position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border: 1px solid var(--border);
  color: var(--accent); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.bk-expect strong { color: var(--fg); font-weight: 600; }

/* ── Panel ────────────────────────────────────────── */
.bk-panel {
  background: var(--surface);
  border: 1px solid var(--border-sub);
  padding: 34px 36px 36px;
}
.bk-step + .bk-step { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border-sub); }
.bk-step[hidden] { display: none; }
.bk-step h4 { margin-bottom: 16px; letter-spacing: 0.12em; }
.bk-step h4 em {
  font-style: normal; color: var(--accent); margin-right: 9px;
  font-family: "Bebas Neue", sans-serif; font-size: 15px; letter-spacing: 0.06em;
}

/* Mode toggle */
.bk-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-mode {
  background: transparent; border: 1px solid var(--border-sub);
  color: var(--muted); text-align: left; padding: 16px 18px; cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.bk-mode:hover { border-color: var(--border); color: var(--fg); }
.bk-mode strong { display: block; font-size: 14.5px; font-weight: 600; color: inherit; }
.bk-mode span { display: block; font-size: 12.5px; margin-top: 4px; color: var(--muted-2); }
.bk-mode.is-on { border-color: var(--accent); background: var(--accent-dim); color: var(--fg); }
.bk-mode.is-on span { color: var(--muted); }

/* Month header */
.bk-month {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.bk-month-label {
  font-family: "Bebas Neue", sans-serif; font-size: 24px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.bk-nav { display: flex; gap: 8px; }
.bk-nav button {
  width: 34px; height: 34px; background: transparent; cursor: pointer;
  border: 1px solid var(--border-sub); color: var(--fg);
  font-size: 15px; line-height: 1; transition: border-color .15s, color .15s;
}
.bk-nav button:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.bk-nav button:disabled { opacity: .28; cursor: default; }

/* Calendar grid */
.bk-dow, .bk-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.bk-dow {
  margin-bottom: 8px; font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted-2); text-align: center;
}
.bk-day {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid transparent; color: var(--muted-2);
  font-family: inherit; font-size: 14px; cursor: default; position: relative;
  transition: border-color .15s, color .15s, background .15s;
}
.bk-day.is-open { color: var(--fg); border-color: var(--border-sub); cursor: pointer; }
.bk-day.is-open:hover { border-color: var(--accent); color: var(--accent); }
.bk-day.is-open::after {
  content: ""; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 3px; background: var(--accent);
}
.bk-day.is-sel { background: var(--accent); border-color: var(--accent); color: var(--bg); font-weight: 600; }
.bk-day.is-sel::after { background: var(--bg); }
.bk-day.is-empty { border: 0; }

/* Times */
.bk-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 8px; }
.bk-time {
  padding: 13px 8px; background: transparent; border: 1px solid var(--border-sub);
  color: var(--fg); font-family: inherit; font-size: 14px; cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.bk-time:hover { border-color: var(--accent); color: var(--accent); }
.bk-time.is-sel { background: var(--accent); border-color: var(--accent); color: var(--bg); font-weight: 600; }
.bk-tz { margin-top: 12px; font-size: 12.5px; color: var(--muted-2); }

/* Form */
.bk-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-field { display: flex; flex-direction: column; gap: 7px; }
.bk-field.bk-wide { grid-column: 1 / -1; }
.bk-field label {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.bk-field input, .bk-field textarea {
  background: var(--bg); border: 1px solid var(--border-sub); color: var(--fg);
  font-family: inherit; font-size: 15px; padding: 13px 14px; width: 100%;
  transition: border-color .15s;
}
.bk-field textarea { resize: vertical; min-height: 86px; line-height: 1.6; }
.bk-field input:focus, .bk-field textarea:focus { outline: 0; border-color: var(--accent); }
.bk-field input::placeholder, .bk-field textarea::placeholder { color: var(--muted-2); }
.bk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.bk-summary {
  margin: 20px 0 18px; padding: 16px 18px;
  background: var(--accent-dim); border-left: 2px solid var(--accent);
  font-size: 14.5px; line-height: 1.55;
}
.bk-summary strong { display: block; font-size: 16px; margin-bottom: 3px; }
.bk-summary span { color: var(--muted); font-size: 13px; }

.bk-submit { width: 100%; margin-top: 4px; }
.bk-submit:disabled { opacity: .5; cursor: default; }
.bk-fine { margin-top: 14px; font-size: 12.5px; color: var(--muted-2); line-height: 1.6; }

/* States */
.bk-msg { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.bk-msg.is-error { color: #e08a7a; }
.bk-msg[hidden] { display: none; }

.bk-skeleton { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.bk-skeleton i {
  aspect-ratio: 1 / 1; background: var(--surface-2);
  animation: bk-pulse 1.4s ease-in-out infinite;
}
@keyframes bk-pulse { 0%, 100% { opacity: .45 } 50% { opacity: .9 } }

/* Confirmed */
.bk-done { text-align: center; padding: 22px 0 10px; }
.bk-tick {
  width: 58px; height: 58px; margin: 0 auto 24px;
  border: 1px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 25px;
}
.bk-done h3 { margin-bottom: 14px; }
.bk-done .bk-summary { text-align: left; }
.bk-done p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 8px; }
.bk-done .btn { margin-top: 22px; }

/* Footer */
.bk-footer { padding: 36px 0; border-top: 1px solid var(--border-sub); background: var(--bg); }
.bk-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.bk-footer a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.bk-footer a:hover { color: var(--accent); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 940px) {
  .bk-grid { grid-template-columns: 1fr; gap: 44px; }
  .bk-aside { position: static; }
}
@media (max-width: 768px) {
  .bk .container, .nav-inner { padding: 0 20px; }
  .bk-hero { padding: 48px 0 32px; }
  .bk-grid { padding-bottom: 64px; }
  .bk-panel { padding: 26px 20px 30px; }
  .bk-modes { grid-template-columns: 1fr; }
  .bk-fields { grid-template-columns: 1fr; }
  .bk-times { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); }
}


/* "I'm due for skinfolds" — absorbed into the booked hour, not a separate slot. */
.bk-check label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-weight: 500; }
.bk-check input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--accent-fill, #c9a84c); }
.bk-check .bk-hint { margin: 6px 0 0 28px; font-size: 13px; line-height: 1.45; color: #6b6b6b; }
