:root {
    --color-maroon: #5A0F1A;
    --color-gold: #C8A15A;
    --color-warm-ivory: #F7F2E9;
    --color-charcoal: #2B2B2B;
    --color-rose: #C88E92;
    --color-white: #FFFFFF;
    --color-soft-sand: #EAE0D2;
    --font-heading: 'EB Garamond', serif;
    --font-inter: 'Inter', sans-serif;

    --color-maroon: #5A0F1A;
    --color-gold: #C8A15A;
    --color-ivory: #F7F2E9;
    --color-charcoal: #2B2B2B;
    --color-rose: #C88E92;
    --color-white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', serif;
    color: var(--color-charcoal);
    margin-top: 0;
    font-weight: 500;
}

a {
    color: var(--color-maroon);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-gold);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
