:root {
    /* Color Palette - Isamendes Conceito (Black & Gold) */
    --color-primary: #0A0A0A;
    /* Rich Black / Dark Charcoal */
    --color-primary-dark: #000000;
    /* Pure Black */
    --color-secondary: #C5A028;
    /* Chic Metallic Gold - Balanced */
    --color-accent: #C5A028;
    /* Gold - Highlights */
    --color-accent-light: #D4AF37;
    /* Lighter Gold */
    --color-accent-dark: #996515;
    /* Deep Gold */

    --color-bg: #FFFFFF;
    /* Pure White - Clean Background */
    --color-surface: #F9F9F9;
    /* Very Light Gray - Cards/Sections */
    --color-text: #1A1A1A;
    /* Almost Black - Body Text */
    --color-text-light: #555555;
    /* Dark Gray - Muted Text */
    --color-border: #EEEEEE;
    /* Subtle Borders */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-xxl: 120px;
    /* "Museum" spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Shadows & Radius */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 40px rgba(0, 51, 102, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Transitions */
    --transition-standard: all 0.3s ease;
    --transition-slow: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}