/*
 * Potentia — design system tokens
 * ---------------------------------------------------------------------------
 * Single source of truth for the brand palette and typeface. Loaded site-wide
 * from layout.blade.php, before every other stylesheet.
 *
 * These values were previously declared inside `#sv2` in
 * resources/views/partials/sv2-styles.blade.php, which limited them to the
 * three redesigned pages. Declaring them on :root makes them available to
 * every page without changing any page's appearance — a custom property has
 * no effect until something references it.
 *
 * Migration in progress: public/css/styles.css still hardcodes these values as
 * hex literals. Replace them with the var() references below as each page is
 * converted, rather than in one sweep, so changes stay reviewable.
 */

:root {
    /* Brand */
    --gold:        #CBA052;
    --gold-border: rgba(203, 160, 82, 0.25);
    --gold-subtle: rgba(203, 160, 82, 0.2);

    /* Neutrals — dark to light */
    --dark:        #373A36;
    --charcoal:    #3A3830;
    --mid:         #6B6656;
    --light:       #A09880;

    /* Surfaces */
    --cream:       #FAF8F4;
    --white:       #FFFFFF;
    --rule:        #E8E4DC;

    /* Typography */
    --font-sans:   'Montserrat', sans-serif;
}
