:root {
    --bg: #fbf7f1;
    --text: #1e1e1e;
    --muted: #666;
    --accent: #d06d4f;

    --font-body: 'Inter', system-ui, sans-serif;
    --font-title: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
}
