/* Brand tokens — single source of truth for inline styles in components.
   Mirrors PourMetrics.Web.Theme.BrandTheme (C#) so markup can use var(--…)
   instead of hardcoded hex. */
:root {
    --brand-amber:      #C17D2B;
    --brand-amber-dark: #7A4A0F;
    --brand-amber-light:#FDF3E3;
    --brand-gold:       #D9A547;
    --brand-ink:        #1A1208;
    --brand-cream:      #FAF6F0;
    --brand-midnight:   #0F0A05;

    /* Neutral text */
    --text-muted:  #9E9E9E;  /* captions, overlines, secondary labels */
    --text-subtle: #757575;  /* body-secondary text */

    /* Semantic */
    --semantic-error:   #DC2626;
    --semantic-warning: #F59E0B;
}
