/*
Hawks Facility Solutions — Canada (hawksfs.ca) brand-color override.

Loaded ONLY when serving hawksfs.ca (see hawks_scripts() in functions.php),
after the base stylesheet, so this :root block wins the cascade for the
handful of custom properties style.css and every inline <style> block /
chatbot.js reference by name. That's the entire mechanism: nothing else
in the theme needs to know it's rendering red instead of navy.

Each value below is the corresponding navy color's own hue rotated to a
brand red, with that color's original lightness/saturation preserved —
not a single flat substitution, so the light/dark/deep relationships
between the six tokens carry over unchanged. Review these visually once
deployed; a mathematically faithful rotation of near-black navy values
lands in a deep red/maroon range rather than a bright red, which is
expected for colors this dark but is ultimately a design call.
*/
:root {
    --color-primary:        #810F18; /* from #0F4C81 */
    --color-primary-light:  #9E2A34; /* from #2A6B9E */
    --color-primary-dark:   #540A10; /* from #0A3254 */
    --color-navy:           #3F0005; /* from #001f3f */
    --color-navy-deep:      #280A0C; /* from #0a1628 */
    --color-navy-alt:       #5C0008; /* from #002d5c */

    --color-navy-rgb:       63, 0, 5;     /* rgb of --color-navy above */
    --shadow-color-rgb:     129, 15, 24;  /* rgb of --color-primary above */
}
