/* ==========================================================================
   Accessibility corrections to the Bandhab tokens
   --------------------------------------------------------------------------
   Two values shipped in the design system fail WCAG AA. They are corrected
   here rather than in tokens.css so the vendored design system stays an
   untouched copy of its source — but THE SOURCE NEEDS THE SAME FIX.
   Measured against --surface-page #FAF9F7 and --surface-sand #F3F1EE.

   1. --text-faint  #918B86  gave 3.20:1 on page, 2.98:1 on sand.
      Needs 4.5:1 (WCAG 1.4.3, normal text). It is used for photo captions,
      story dates and meta — real content, not decoration.
      Corrected to #726C68: 4.92:1 on page, 4.59:1 on sand. This is the
      lightest value on the warm ramp that passes, so it keeps a visible
      step below --text-muted rather than collapsing into it.

   2. --focus-ring  --apricot-500 #B09948  gave 2.66:1 on page, 2.48:1 on
      sand. Needs 3:1 (WCAG 1.4.11, non-text UI). It passed only on the deep
      band, so keyboard focus was effectively invisible on most of the site.
      Corrected to --apricot-600 #8A7638: 4.22:1 page, 3.94:1 sand, 3.47:1
      deep — the only step in the ochre family that clears 3:1 on all three
      band tones.

   See tickets/BH-064.md.
   ========================================================================== */

:root {
	--text-faint: #726C68;
	--focus-ring: var(--apricot-600);
}
