:root {
    /* Color Palette */
    --bg-color: #FBFAF9;
    --primary-color: #2E476B;
    --text-color: #213045;
    --accent-color: #CCA633;
    --muted-color: #718096;
    --white: #FFFFFF;
    --border-color: #E2E8F0;

    /* Typography */
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Inter', sans-serif;

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

    /* Container */
    --container-width: 1200px;
}

[data-theme="dark"] {
    --bg-color: #1a202c;
    --primary-color: #e2e8f0;
    /* Light slate for headings */
    --text-color: #f7fafc;
    --accent-color: #ecc94b;
    /* Brighter gold for dark mode */
    --muted-color: #a0aec0;
    --white: #2d3748;
    /* Dark grey for cards/sections */
    --border-color: #4a5568;
}