/* ============================================================
 * Palmer's Home Care — Brand Palette (canonical)
 * Centralized source of truth for brand colors.
 * Load order: mainstyle.css -> brand.css -> custom-style.css
 *
 * Usage: var(--phc-gold), var(--phc-gold-dark), etc.
 * Existing CSS continues using hex literals; new CSS work
 * should reference these variables instead of hex codes.
 *
 * Palette extracted 2026-05-24 via color-frequency analysis
 * of mainstyle.css + custom-style.css + palmers-tags.css.
 * ============================================================ */

:root {
    /* === Primary === */
    --phc-gold:        #ecc50e;  /* 116 uses sitewide — hero brand color */
    --phc-gold-dark:   #be9f0c;  /* 40 uses — hover / active state */
    --phc-gold-tint:   rgba(236, 197, 14, 0.15); /* subtle gold backgrounds */

    /* === Secondary === */
    --phc-rose:        #d411a4;  /* 11 uses — secondary accent */
    --phc-rose-dark:   #b00e8a;  /* secondary hover */
    --phc-rose-tint:   #f0d8ec;  /* rose backgrounds */

    /* === Tertiary === */
    --phc-blue:        #003d99;  /* 8 uses — tertiary accent */
    --phc-blue-tint:   #d5e6ff;  /* blue backgrounds */
    --phc-navy:        #0b1b3b;  /* deep navy — footer / heavy headings */

    /* === Neutrals === */
    --phc-text:        #262626;  /* 128 uses — body text */
    --phc-bg:          #ffffff;  /* page background */
    --phc-cream:       #f9f8f4;  /* section tinting */

    /* === Status === */
    --phc-error:       #f43334;  /* alert / error */
}
