:root {
    --color-bg: #FAF8F5;
    --color-text: #3a2f27;
    --color-muted: #8f7f6b;
    --font-headline: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    margin-top: 0;
}

img {
    max-width: 100%;
    height: auto;
}
