/* Explain: Theme design tokens with a serif font for headings and a plum/gold color scheme. - */
:root {
    --primary-color: #2d1b2e;
    --primary-hover: #1f1220;
    --secondary-color: #5e3a5f;
    --accent-color: #d4af37;
    --accent-hover: #b5952f;
    --accent-soft: #f9f1d8;
    --background-color: #fdfbf7;
    --surface-color: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #e6e2db;
    --success-color: #2b7a4b;
    --error-color: #b42318;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --radius-xl: 24px;
    --shadow-card: 0 12px 40px rgba(45, 27, 46, 0.08);
    --shadow-soft: 0 8px 24px rgba(45, 27, 46, 0.05);
}