/* Wolf-Rayet interior-dark -> page ground only.
 *
 * Hand-authored. For the portfolio pages that take the family roles but keep
 * their own palette: case studies, playbooks, the AI lab, work and design
 * systems indexes.
 *
 * Those pages set their own prefixed inks and accents (Fetch uses --ft-*) but
 * they never set a page background -- the body ground comes from Bootstrap's
 * --bs-body-bg in assets/css/style.css, which is #161618 in dark. Once
 * portfolio/index.html moved to Wolf-Rayet's substrate at #111417, every one
 * of these became a visible seam on navigation. This closes it.
 *
 * GROUND ONLY. Deliberately not --bs-body-color: these pages drive their
 * reading text from their own prefixed ramps, and mapping Bootstrap's ink here
 * would half-convert them -- prose outside a prefixed class would jump to
 * Wolf-Rayet white while everything inside one stayed on the page's own value.
 * A palette tuned to the product being documented stays whole or stays alone.
 *
 * The ground is going DOWN in lightness (0.201 -> 0.189), so every existing
 * ink on these pages gains contrast against it rather than losing it.
 */

html:root[data-wr-theme="interior-dark"][data-bs-theme="dark"]{
  --bs-body-bg: var(--wr-surface-page);
  --bs-mode:    var(--wr-surface-raised);

  /* style.css:23675 sets this to the hex #161618 where Bootstrap expects a
     comma-separated triplet, breaking rgba(var(--bs-body-bg-rgb), .85) in the
     three rules that read it. Triplet form of the new value. */
  --bs-body-bg-rgb: 17, 20, 23;
}
