/*
 * iSagha gold palette — the single source of truth for every gold in the UI.
 *
 * Before this file the site rendered six near-identical golds (#deb059,
 * #d3bb7b, #c9a96e, #d3a84f and two gradient stops), several of them carrying
 * text at 2:1 contrast — below the 4.5:1 WCAG AA floor. Four tokens replace
 * them; the rule that keeps them apart is fill vs. text:
 *
 *   --gold-fill    surfaces only: buttons, badges, borders, tab fills.
 *                  2.01:1 on white — never put text in it.
 *   --gold-text    any gold-coloured text on white. 5.07:1, passes AA.
 *   --gold-tint    near-white wash: hover states, highlighted rows, panels.
 *   --gold-strong  same hue as --gold-fill, darkened to 3.05:1. Passes AA for
 *                  large text (>=24px, or >=18.66px bold) and for non-text UI
 *                  per WCAG 1.4.11 — icons, focus rings, hover-darkening.
 *                  Held in reserve; not yet consumed.
 *
 * Linked from every layout, so the tokens resolve on pages whose stylesheets
 * are not built by Vite (the frontend_v14/v15 bundles).
 */

:root {
    --gold-fill: #deb059;
    --gold-text: #8A6A00;
    --gold-tint: #FEF9EC;
    --gold-strong: #BF8A26;
}
