/* =====================================================================
   yakware.com palette — house navy-and-brass, on the shared yw-theme.css
   ---------------------------------------------------------------------
   Load order (yak-ware/app.cpp): yakware-style.css → yw-theme.css → THIS.
   The shared yw-theme.css carries the whole design-language re-skin +
   neutral light/dark token blocks; this file only sets the suite hub's
   BRASS accent (the historical yakware brand colour, so the hub still
   reads as "yakware" inside the shared system). Light-first (the server
   stamps html.yw-light unless the yw-theme cookie says dark). Fonts stay
   the yakware defaults (Fraunces display + Public Sans body).

   Contrast (WCAG AA): brass fill carries DARK ink (white on #b07d34 is
   only 3.6:1) — accent-contrast #241703 on #b07d34 ≈ 4.7:1 and on
   #cda05a ≈ 6.5:1 · light accent-ink #7d5715 on #fff ≈ 6.5:1 · dark
   accent-ink #ddb26e on --surface #121d31 ≈ 8:1.
   ===================================================================== */

/* footer is a dark anchor in both themes → a bright brass link-hover */
:root { --footer-accent: #ddb26e; }

/* —— accents: LIGHT (brass fill carries dark ink) —— */
html.yw-light {
    --accent:          #b07d34;
    --accent-strong:   #9a6a26;
    --accent-soft:     #cda05a;
    --accent-contrast: #241703;
    --accent-tint:     rgba(176,125,52,0.12);
    --accent-ink:      #7d5715;
}

/* —— accents: DARK (brass brightens; still dark ink on the fill) —— */
html.yw-dark {
    --accent:          #cda05a;
    --accent-strong:   #ddb26e;
    --accent-soft:     #b07d34;
    --accent-contrast: #241703;
    --accent-tint:     rgba(205,160,90,0.14);
    --accent-ink:      #ddb26e;
}
