/* La V Ley - Premium Design Tokens */

:root {
    /* Colors - Earthy, organic, premium */
    --color-deep-forest: #1a2e1a;
    --color-forest: #2d4a2d;
    --color-moss: #4a6741;
    --color-sage: #8b9a7d;
    --color-sage-light: #b5c4a7;

    --color-warm-cream: #f5f2ed;
    --color-sand: #e8e0d5;
    --color-stone: #d4cfc4;

    --color-terracotta: #c17f59;
    --color-terracotta-light: #d4a07c;
    --color-bronze: #a67c52;
    --color-gold-subtle: #c9a962;

    --color-ink: #1a1a1a;
    --color-charcoal: #2d3436;
    --color-stone-dark: #636e72;

    /* Semantic */
    --color-bg: var(--color-warm-cream);
    --color-bg-alt: var(--color-sand);
    --color-text: var(--color-ink);
    --color-text-muted: var(--color-stone-dark);
    --color-primary: var(--color-moss);
    --color-primary-dark: var(--color-forest);
    --color-accent: var(--color-terracotta);
    --color-border: rgba(26, 26, 26, 0.1);

    /* Typography */
    --font-display: "Cormorant Garamond", "Playfair Display", serif;
    --font-body: "Plus Jakarta Sans", -apple-system, sans-serif;
    --font-accent: "Playfair Display", serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-2xl: 1400px;

    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(193, 127, 89, 0.15);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
}
