﻿/* ==========================================================================
   CSS Variables - Mellow Moss Color System & Typography
   ========================================================================== */

:root {
    /* Color Palette Extracted from Logo & Exterior */
    --color-moss: #1c3020;        /* Dark Forest Green from Logo */
    --color-moss-rgb: 28, 48, 32;
    --color-forest: #2a3e2c;      /* Slightly lighter green */
    --color-forest-rgb: 42, 62, 44;
    --color-cream: #f5f0e6;       /* Warm Cream from Logo Background */
    --color-cream-rgb: 245, 240, 230;
    --color-coffee: #6F4E37;      /* Coffee Brown */
    --color-espresso: #241712;    /* Dark Espresso */
    --color-gold: #c29a6b;        /* Straw/Bamboo Accent */
    --color-gold-rgb: 194, 154, 107;
    --color-sage: #96a598;        /* Soft Sage Green */
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-ui: 'Inter', sans-serif;
    
    /* Z-Index Hierarchy */
    --z-background: -10;
    --z-base: 1;
    --z-content: 10;
    --z-nav: 100;
    --z-intro: 200;
    --z-cursor: 9999;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-duration: 0.6s;
}

/* Base resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

