/* Famroost brand palette — spec §16. Exposed as CSS custom properties so every
   component can pick them up without hard-coding hex values. Tone is warm, private,
   unhurried — terracotta against cream, deep walnut text, sage as quiet accent. */

:root {
    --fr-terracotta: #C25A3B;
    --fr-cream:      #F5E9D9;
    --fr-walnut:     #3A2418;
    --fr-sage:       #7A8E6A;

    --fr-bg:         var(--fr-cream);
    --fr-surface:    #FFFFFF;
    --fr-text:       var(--fr-walnut);
    --fr-text-muted: #7A6557;
    --fr-primary:    var(--fr-terracotta);
    --fr-accent:     var(--fr-sage);

    --fr-border:     #E5D6BF;
    --fr-radius:     6px;
    --fr-shadow:     0 1px 2px rgba(58, 36, 24, 0.08);
}
