/* ---------------------------------------------------------------------------
   Accessibility adjustment to two semantic aliases.

   `tokens/` is a verbatim copy of the design system and is not edited. This one
   file, loaded straight after it, moves two aliases one step darker inside the
   same brand ramps, because the values they point at fall under the WCAG AA
   4.5:1 threshold at the 12–14px sizes the system uses them at:

     --text-muted   --ink-400   #807B72  4.21:1 on white, 3.64:1 on cream-100
                 →  --ink-600   #4A4741  ~7.6:1 on white, ~6.6:1 on cream-100

     --text-accent  --orange-600 #C1571A 4.34:1 on cream-50 (eyebrows, 12px)
                 →  --orange-700 #A34A17 ~5.4:1 on cream-50

   Both replacements are existing palette values, so nothing leaves the brand.
   The accent *actions* are untouched: --action-accent stays --orange-500, so
   every orange button, badge and the bottle cap render exactly as specified.

   If the brand owner would rather keep the lighter values, delete the import of
   this file from site.css — nothing else depends on it.
   --------------------------------------------------------------------------- */

:root {
  --text-muted: var(--ink-600);
  --text-accent: var(--orange-700);
}

/* On the deep green and soil bands the muted text is already a low-opacity
   cream, well above threshold; those rules live with their components and are
   unaffected by the aliases above. */
