/* ==========================================================================
   CSS VARIABLES - Design System
   ========================================================================== */

:root {
    /* Colors */
    --color-dark: #2B2623;
    --color-light: #F9F7F2;
    --color-sand: #C9B298;
    --color-beige: #EBE5CE;
    --color-taupe: #8D7462;

    /* Typography */
    --font-family: 'Montserrat', sans-serif;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Z-index layers */
    --z-cursor: 9999;
    --z-header: 1000;
    --z-swoosh: 1000;
    --z-header-content: 999;
    --z-navigation: 996;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease-in-out;
    --transition-curve: cubic-bezier(0.4, 0, 0.2, 1);
}
