/* ============================================================================
   PAWDARE — Brand Design Tokens (Brandbook v1.0 "Warm Tech")
   ----------------------------------------------------------------------------
   Single source of truth for the :root custom properties. Loaded by every
   layout (default + login/auth) BEFORE brand.css so var() references resolve.
   Consumed by webroot/css/brand.css and by per-screen <style> blocks.
   ============================================================================ */
:root {
    /* Copper family */
    --copper:        #B88A66;
    --copper-deep:   #8C5A3C;
    --copper-ui:     #C08552;
    --champagne:     #E6C9A8;
    /* Surfaces */
    --linen:         #F7F2EB;
    --sand:          #EFE6DA;
    --white:         #FFFFFF;
    /* Ink */
    --charcoal:      #1A1A1B;
    --graphite:      #333333;
    /* Status */
    --green:         #27AE60;
    --red:           #EB5757;
    /* Gradients */
    --g1: linear-gradient(135deg, #8C5A3C 0%, #C08552 45%, #E6C9A8 100%);
    --g2: linear-gradient(135deg, #B88A66 0%, #E6C9A8 100%);
    /* Misc */
    --track:         #E8DDD0;
    --brand-border:  rgba(184,138,102,.25);
    --brand-shadow:  0 8px 28px rgba(140,90,60,.08);
    /* Type */
    --font-display:  'Marcellus', Georgia, 'Times New Roman', serif;
    --font-ui:       'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
