/* ============================================================
   518 Official — BOOK page layout
   css/pages/book.css?v=4 — loads after tokens.css + site.css.
   Page-owned classes are prefixed bk- / f- (form). No shell
   overrides, no :root, no token changes. Contrast law respected:
   --rizz is surface/accent only; cobalt COPY is always
   --rizz-text. No amber here — this is not a commerce surface.

   TOC:
   01 Hero                    04 Form controls
   02 Ways-in cards           05 Wizard chrome (progress/nav)
   03 Form shell + steps      06 Review + confirmation
                              07 Process / honesty / closing
   ============================================================ */

/* Safety: hidden always wins over any display rule below */
[hidden] { display: none !important; }

/* ---------- 01 Hero ---------- */
.bk-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 5.5rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.bk-hero-grid {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}

@media (min-width: 980px) {
  .bk-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 6vw, 5.5rem);
  }
}

/* The hero is hand-built and skips .sect-head, so the house eyebrow→title
   rhythm (.sect-head gives the eyebrow a sp-4 bottom margin) is lost under the
   global `* { margin:0 }` reset. Restore it here so the conversion page's very
   first block breathes like every section below it. */
.bk-hero-copy .eyebrow { margin-bottom: var(--sp-4); }

/* Archivo Black runs far wider than the old condensed face — ceiling tuned
   down so "BUILD IT WITH RIZZ." holds the 360 floor without wrapping ugly. */
.bk-hero-title {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  max-width: 12ch;
}

.bk-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: var(--sp-5);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--ivory-80);
}

.bk-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--rizz-line);
  flex: none;
}

/* Small-viewport fit: at --ls-eyebrow the four-word kicker needs 319px of
   inline room and the 360 floor offers 272 — it wrapped to
   "EVENTS · MEDIA · APPAREL" / "· CULTURE", orphaning a separator onto its
   own line while align-items:center parked the cobalt rule in the gutter
   between the two lines. Label tracking + 0.9rem holds one line down to 360.
   flex-start + the measured offset is the belt-and-braces: below ~330px it
   still wraps, and the rule must sit on the FIRST line, not float mid-block.
   0.79em ≈ half of the 1.65 line-height, less the rule's own 1px. */
@media (max-width: 600px) {
  .bk-kicker {
    font-size: 0.9rem;
    letter-spacing: var(--ls-label);
    align-items: flex-start;
  }

  .bk-kicker::before { margin-top: 0.79em; }
}

.bk-hero-lead { margin-top: var(--sp-5); }

.bk-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.bk-hero-note {
  margin-top: var(--sp-5);
  font-size: var(--fs-small);
  color: var(--smoke);
}

/* Hero media — the crew's OWN silent brand film (med-promo-518-a)
   through the house poster-first vslot. Portrait-ish crop on desktop
   so it stands next to the copy column; wide crop on mobile so it
   doesn't swallow the viewport. */
.bk-hero-media {
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}

/* Single-column band (600–979): the 460px slot was centred under left-aligned
   copy, so the frame AND its caption sat on a second left edge ~114px inside
   the text axis. Below the two-column switch the media belongs on the copy's
   axis; at ≤600 the slot already fills the container, so this is a no-op. */
@media (max-width: 979.98px) {
  .bk-hero-media { margin-inline: 0; }
}

.bk-hero-media .vslot {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-2);
}

/* FACE-SAFE CROP LAW: this slot cover-crops a 16:9 frame to 16:10 and
   then to 4:5 — without the measured focal point the 4:5 crop takes the
   head off. promo-518-a = 67.4% 36% (armory Vision), re-measured after
   the poster was reframed to the lookbook beat; this is the single value
   registered in data/media.json. Both layers of the vslot crop, so both
   carry it. */
.bk-hero-media .vslot-poster,
.bk-hero-media .vslot video { object-position: 67.4% 36%; }

@media (min-width: 980px) {
  .bk-hero-media .vslot { aspect-ratio: 4 / 5; }
}

/* Honesty caption: client-owned brand film, not event footage and not
   licensed stock. */
.bk-hero-caption {
  margin-top: var(--sp-4);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--smoke);
}

/* Proof rail — replaces the old lane strip (the eight doors are already
   the section below it, so the rail was repeating itself). What a booker
   needs above the fold is evidence, and the only evidence that exists is
   the crew's own flyers: three titles, three dates, one venue. NO counts,
   attendance, years, testimonials or outcomes — nothing here that a flyer
   does not print. Read the dates as history; the closing line says so. */
.bk-proof {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}

.bk-proof-head {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--smoke);
  margin-bottom: var(--sp-5);
}

.bk-proof-list {
  display: grid;
  gap: var(--sp-5);
}

@media (min-width: 768px) {
  .bk-proof-list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
  }
}

.bk-proof-list li {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-left: var(--sp-4);
  border-left: 2px solid var(--rizz-line);
}

.bk-proof-date {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--rizz-text);       /* cobalt COPY is always --rizz-text */
}

.bk-proof-name {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ivory);
}

.bk-proof-venue {
  font-size: var(--fs-small);
  color: var(--smoke);
}

.bk-proof-foot {
  margin-top: var(--sp-5);
  font-size: var(--fs-small);
  color: var(--smoke);
  max-width: 68ch;
}

/* ---------- 02 Ways-in cards ---------- */
/* Whole card = tap target (house Click Protocol): the visible link is
   stretched over the card with a z-index above the card surface. */
.bk-ways { gap: var(--sp-5); }

@media (min-width: 768px) { .bk-ways { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .bk-ways { grid-template-columns: repeat(4, 1fr); } }

.bk-way {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-1) var(--ease),
              box-shadow var(--dur-2) var(--ease),
              transform var(--dur-1) var(--ease);
}

.bk-way:hover {
  border-color: var(--line-rizz);
  box-shadow: var(--glow-rizz-soft),
              inset 0 1px 0 color-mix(in srgb, var(--ivory) 5%, transparent);
  transform: translateY(-2px);
}

/* Anchor-landing targets (#sponsor / #creators from the footer contract)
   need clearance under the fixed header. */
.bk-way { scroll-margin-top: calc(var(--header-h) + var(--sp-5)); }

.bk-way-num {
  font-family: var(--font-logo);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--rizz-text);
  margin-bottom: var(--sp-4);
}

.bk-way-name {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Measure: 36ch stopped 89px short of the card's inner edge in the 2-up band
   (768–1279), so every card read as a narrow column of copy floating in a
   wide box. 44ch fills the 2-up card without breaking the comfortable-measure
   rule, and never binds in the 4-up band where the column is narrower. */
.bk-way-desc {
  margin-top: var(--sp-3);
  font-size: var(--fs-small);
  color: var(--ivory-60);
  max-width: 44ch;
}

/* The trailing arrow lives in its own <span>, which inline-flex promotes to a
   flex item — and flex strips the leading space in " →", butting the glyph
   against the Y of INQUIRY. gap restores the word space the markup intends. */
.bk-way-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  min-height: 44px;
  margin-top: auto;
  padding-top: var(--sp-4);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--rizz-text);
  text-decoration: none;
}

.bk-way-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;                    /* Click Protocol: stretched-link layer */
}

.bk-way:hover .bk-way-link { text-decoration: underline; text-underline-offset: 0.22em; }

.bk-way:focus-within {
  border-color: var(--line-rizz);
  box-shadow: var(--glow-rizz);
}

/* ---------- 03 Form shell + steps ---------- */
/* Gradient rhythm: --bg vs --bg-2 is 1.03:1, so without a lift the form —
   the money moment — reads as one more dark slab. The ivory radial makes it
   the brightest point of the scroll while spending no contrast headroom. */
.bk-form-sect {
  background:
    radial-gradient(90% 55% at 50% 0%,
      color-mix(in srgb, var(--ivory) 5%, transparent), transparent 70%),
    var(--bg);
  scroll-margin-top: var(--header-h);
}

.bk-shell {
  background: linear-gradient(to bottom, var(--panel-2), var(--panel) 45%);
  border: 1px solid var(--line);
  border-top: 3px solid var(--rizz);
  border-radius: var(--r-md);
  padding: clamp(1.25rem, 4vw, 3rem);
  /* A pure-black drop shadow is invisible on the near-black ground; the inset
     hairline highlight lights the top edge so the black-glass card separates
     from the surface. */
  box-shadow: var(--shadow-2), inset 0 1px 0 color-mix(in srgb, var(--ivory) 6%, transparent);
}

/* No-JS document flow: steps stack with rules between them */
.bk-step + .bk-step {
  margin-top: var(--sp-8);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-7);
}

/* Wizard mode (JS adds .is-wizard): one step on screen at a time, so the
   between-steps rule and gap must go — an adjacent sibling that is
   display:none still triggers `+`, which otherwise leaves a stray hairline
   and ~7rem of dead space above every step after the first. */
.bk-shell.is-wizard .bk-step + .bk-step {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

fieldset.bk-step,
.f-group {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.bk-legend,
.bk-review-title {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);   /* Archivo Black — tuned down */
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: var(--lh-tight);
  color: var(--ivory);
  padding: 0;
  margin-bottom: var(--sp-6);
  width: 100%;
}

.bk-legend:focus-visible,
.bk-review-title:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 4px;
}

.bk-legend-num {
  font-family: var(--font-logo);
  font-size: 0.8em;
  color: var(--rizz-text);
}

.bk-fields {
  display: grid;
  gap: var(--sp-6);
}

.f-duo { display: grid; gap: var(--sp-6); }

@media (min-width: 768px) {
  .f-duo { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
}

/* ---------- 04 Form controls ---------- */
.f-field { display: grid; gap: var(--sp-3); }

.f-label {
  display: block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--ivory-80);
}

.f-label .req { color: var(--ivory-60); }

.f-hint-inline {
  font-weight: 400;
  color: var(--smoke);
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.9rem;
}

/* Real guidance, not tertiary text: 15px keeps it AA-clear on the panel. */
.f-hint {
  font-size: var(--fs-small);
  color: var(--smoke);
}

.f-input,
.f-select,
.f-area {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  background: var(--flyer-ground);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ivory);
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}

.f-area { resize: vertical; min-height: 0; }

.f-input:hover, .f-select:hover, .f-area:hover {
  border-color: color-mix(in srgb, var(--ivory) 40%, transparent);
}

.f-input:focus, .f-select:focus, .f-area:focus {
  border-color: var(--ivory);
  outline: none;
}

.f-input:focus-visible, .f-select:focus-visible, .f-area:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 2px;
}

/* Placeholders carry real guidance on several fields — 50% ivory measures
   4.78:1 on the field fill: AA with headroom, still subordinate to typed
   ivory. (Inherited measurement; neutrals are unchanged in RIZZ.) */
.f-input::placeholder, .f-area::placeholder {
  color: color-mix(in srgb, var(--ivory) 50%, transparent);
}

.f-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  /* chevron is ivory (#F2EFE4) — neutral, unchanged in the RIZZ palette */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23F2EFE4' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.f-select option { background: var(--flyer-ground); color: var(--ivory); }

/* Error state — message text + border, never color alone. Cobalt is the
   house attention color (no red exists in this palette); the words carry
   the semantics, --rizz-text carries AA (7.24:1). */
.f-field.is-invalid .f-input,
.f-field.is-invalid .f-select,
.f-field.is-invalid .f-area,
.f-group.is-invalid .chip span {
  border-color: var(--rizz-hot);
}

.f-err {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--rizz-text);
}

.f-group > .f-err { margin-top: var(--sp-3); }

/* Radio / checkbox chips */
.f-group > .chip-row { margin-top: var(--sp-3); }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* inline-flex (not the label default `inline`) so the absolutely positioned
   input resolves `inset:0` against a real box on every engine */
.chip { position: relative; display: inline-flex; }

.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--flyer-ground);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ivory-80);
  cursor: pointer;
  transition: background var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease),
              color var(--dur-1) var(--ease);
}

.chip:hover span {
  border-color: color-mix(in srgb, var(--ivory) 45%, transparent);
  color: var(--ivory);
}

/* ivory on --rizz = 5.73:1 — passes AA (measured 2026-08-16) */
.chip input:checked + span {
  background: var(--rizz);
  border-color: var(--rizz);
  color: var(--ivory);
}

.chip input:focus-visible + span {
  outline: 2px solid var(--ivory);
  outline-offset: 3px;
}

/* Consent checkboxes — real boxes for clarity */
.bk-consents {
  display: grid;
  gap: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: var(--sp-5);
}

.f-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  padding-block: 0.35rem;
}

.f-consent input {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  flex: none;
  accent-color: var(--rizz);
  cursor: pointer;
}

.f-consent span {
  font-size: var(--fs-small);
  color: var(--ivory-80);
}

/* ---------- 05 Wizard chrome ---------- */
.bk-progress { margin-bottom: var(--sp-7); }

.bk-dots {
  display: flex;
  gap: var(--sp-2);
}

.bk-dots li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.7rem;
  border-top: 2px solid var(--line);
  min-width: 0;
}

.bk-dots li.is-done { border-top-color: var(--rizz-deep); }
.bk-dots li.is-active { border-top-color: var(--rizz); }

.bk-dot-num {
  font-family: var(--font-logo);
  font-size: 1.05rem;
  line-height: 1;
  color: var(--smoke);
}

.bk-dots li.is-active .bk-dot-num { color: var(--ivory); }

.bk-dot-label {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smoke);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bk-dots li.is-active .bk-dot-label { color: var(--ivory); }

/* Small-viewport fit: five flex:1 columns in a ~278px shell interior chop
   the ACTIVE label ("LOGISTI…") — exactly the label that orients the user.
   Inactive columns only need their 2-digit numeral; let the active step
   claim the room the hidden labels vacate. */
@media (max-width: 559.98px) {
  .bk-dots li:not(.is-active) .bk-dot-label { display: none; }

  .bk-dots li { flex: 0 1 1.75rem; }
  .bk-dots li.is-active { flex: 1 1 auto; }
}

.bk-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}

.bk-nav #bk-next,
.bk-nav #bk-send { margin-left: auto; }

/* Review step, narrow phones: Back (100px) + gap + "Send the Inquiry" (224px)
   needs 340px and the shell interior offers 308 — the primary CTA wrapped to
   two centred lines next to a one-line ghost button. Give it its own full
   width row instead; "Continue" is short enough to keep sharing row one. */
@media (max-width: 479.98px) {
  .bk-nav { flex-wrap: wrap; row-gap: var(--sp-4); }

  .bk-nav #bk-send {
    flex: 1 1 100%;
    margin-left: 0;
  }
}

/* Honesty copy at the decision point — present, subordinate to the button. */
.bk-honest {
  margin-top: var(--sp-5);
  font-size: var(--fs-small);
  color: var(--ivory-60);
}

/* Native (no-JS) submit block */
.bk-native {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  display: grid;
  gap: var(--sp-5);
  justify-items: start;
}

.bk-native .bk-honest { margin-top: 0; }

/* ---------- 06 Review + confirmation ---------- */
.bk-review-lead {
  color: var(--ivory-60);
  margin-bottom: var(--sp-6);
}

.bk-rev-group {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: var(--sp-5);
}

.bk-rev-group + .bk-rev-group { margin-top: var(--sp-5); }

.bk-rev-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.bk-rev-head h4 { letter-spacing: 0.08em; }

.bk-rev-edit {
  min-height: 44px;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ivory);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  cursor: pointer;
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}

.bk-rev-edit:hover {
  border-color: var(--ivory);
  background: color-mix(in srgb, var(--ivory) 6%, transparent);
}

.bk-rev-list {
  margin-top: var(--sp-4);
  display: grid;
  gap: var(--sp-2) var(--sp-5);
}

@media (min-width: 768px) {
  .bk-rev-list { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr); }
}

/* Review labels — the last screen before send stays readable: 15px ivory-60,
   values full-ivory 17px, hierarchy intact. */
.bk-rev-list dt {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--ivory-60);
  padding-top: 0.2rem;
}

.bk-rev-list dd {
  margin: 0 0 var(--sp-3);
  color: var(--ivory);
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .bk-rev-list dd { margin-bottom: 0; }
}

.bk-rev-empty {
  margin-top: var(--sp-3);
  font-size: var(--fs-small);
  color: var(--smoke);
}

/* Confirmation panel */
.bk-confirm { text-align: left; }

.bk-confirm:focus-visible { outline: 2px solid var(--ivory); outline-offset: 6px; }

.bk-confirm h3 { margin-top: var(--sp-4); }

.bk-confirm-copy {
  margin-top: var(--sp-4);
  color: var(--ivory-80);
  max-width: 58ch;
}

.bk-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

/* The copy result was `visually-hidden`, so it only ever existed for a
   screen reader. On the SUCCESS path a sighted user still got feedback
   (the button relabels itself "Copied ✓"), but on the FAILURE path —
   clipboard blocked, insecure context, permission denied — nothing on
   screen changed at all: the button said "Copy Inquiry Text" before the
   click and after it, and the "Email us directly" instruction was
   announced to nobody who could see. Same live region, now rendered. */
.bk-copy-status {
  margin-top: var(--sp-3);
  font-size: var(--fs-small);
  color: var(--ivory-80);
  max-width: 52ch;
}
.bk-copy-status:empty { display: none; }

.bk-confirm-alt {
  margin-top: var(--sp-6);
  font-size: var(--fs-small);
  color: var(--ivory-60);
  max-width: 52ch;
}

.bk-return {
  display: block;
  margin-top: var(--sp-6);
  min-height: 44px;
  padding: 0.6rem 0;
  background: transparent;
  border: 0;
  color: var(--smoke);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  cursor: pointer;
}

.bk-return:hover { color: var(--ivory); }

/* ---------- 07 Process / honesty / closing ---------- */
.bk-process { gap: var(--sp-6) var(--sp-7); }

@media (min-width: 768px) { .bk-process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .bk-process { grid-template-columns: repeat(4, 1fr); } }

.bk-proc-item { position: relative; }

.bk-proc-item::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--rizz-line);
  margin-bottom: var(--sp-4);
}

.bk-proc-num {
  display: block;
  font-family: var(--font-logo);
  font-size: var(--fs-stat);
  line-height: 1;
  color: var(--ivory);
  margin-bottom: var(--sp-3);
}

.bk-proc-item h3 {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bk-proc-item p {
  margin-top: var(--sp-2);
  font-size: var(--fs-small);
  color: var(--ivory-60);
  max-width: 30ch;
}

/* Honesty note band — same panel-2→panel depth as .bk-shell so the two
   cobalt-edged cards share one card-depth language. */
.bk-pay {
  background: linear-gradient(to bottom, var(--panel-2), var(--panel) 60%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rizz);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.bk-pay-title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  margin-top: var(--sp-4);
}

.bk-pay p:not(.eyebrow) {
  margin-top: var(--sp-4);
  color: var(--ivory-80);
  max-width: 62ch;
}

/* Closing CTA — ivory lift stacked above the cobalt glow so the accent
   reads without going neon. */
.bk-close {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(70% 50% at 50% 100%,
      color-mix(in srgb, var(--ivory) 4%, transparent), transparent 70%),
    radial-gradient(55% 45% at 50% 100%,
      color-mix(in srgb, var(--rizz) 14%, transparent), transparent 70%),
    var(--bg);
}

.bk-close-title {
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  max-width: 20ch;
  margin-inline: auto;
  margin-top: var(--sp-5);
}

.bk-close-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
