:root {
    /* 🎨 Brand Colors */
    --primary-color: #000000;        /* Elegant black (text, strong elements) */
    --secondary-color: #938B81;      /* Warm gray (subtle UI, borders) */
    --accent-color: #AD4110;         /* Terracotta (buttons, highlights) */
    --bg-color: #FFFFFF;             /* Pure white background */
    --bg-light: #F8F9FA;             /* Light gray background (optional sections) */
    --text-color: #000000;
    --text-light: #5A5A5A;
    --border-color: #E1E5E9;

    /* 🖋️ Typography */
    --font-primary: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    --font-heading: 'Playfair Display', serif;

    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-body: 1rem;

    /* 📏 Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* 💎 Effects */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}
