/* ============================================
   LivingHouse — Design Tokens
   Forest Green Scheme (Approved 2026-04-07)
   ============================================ */

:root {
    /* --- Color Palette --- */
    --bg-primary:      #F8F6F3;
    --bg-secondary:    #F0EEEB;
    --bg-card:         #FFFFFF;
    --bg-muted:        #E8E5E1;

    --text-primary:    #1F2421;
    --text-secondary:  #5C6360;
    --text-muted:      #8F9490;

    --accent:          #2D6A4F;
    --accent-hover:    #245540;
    --accent-light:    #D8F3DC;
    --accent-surface:  #F0FAF2;

    --warm:            #C48B3F;
    --warm-light:      #FFF3E0;

    --border:          #E0DDD9;
    --border-hover:    #C5C1BC;

    --white:           #FFFFFF;
    --red:             #DC3545;
    --blue:            #3B82F6;
    --green:           #10B981;
    --amber:           #F59E0B;

    /* --- Typography --- */
    --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display:    'DM Serif Display', Georgia, serif;

    /* --- Spacing & Radius --- */
    --radius:          10px;
    --radius-lg:       16px;
    --radius-sm:       8px;

    /* --- Shadows --- */
    --shadow-sm:       0 1px 3px rgba(0,0,0,0.04);
    --shadow-md:       0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg:       0 8px 32px rgba(0,0,0,0.08);

    /* --- Transitions --- */
    --transition:      0.2s ease;
}
