:root {
    --color-gold: #ffc14d;
    --color-gold-light: #ffe4a3;
    --color-brown: #7f3511;
    --color-brown-light: #a85a2e;
    --color-brown-dark: #4a240b;
    --color-bg: #fdfbf7;
    --color-bg-warm: #faf6f0;
    --color-text: #2d2418;
    --color-text-muted: #6b5a4a;
    --color-cream: #fff8e7;

    --font-display: 'Nunito', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
}

.center {
    display: flex;
    justify-content: center;
}
