/* Explain: Theme design tokens (colors, fonts) — single source of truth. */
:root {
    --primary-color: #5d564e;
    --primary-hover: #4a443e;
    --secondary-color: #efece6;
    --accent-color: #b89672;
    --background-color: #fcfbf9;
    --surface-color: #f4f2ee;
    --text-color: #3d3834;
    --text-muted: #7a7268;
    --border-color: #e6e2db;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}