:root {
    --linen: #f9f0e4;
    --coffee: #221006;
    --oxford: #0a3260;
    --rose: #9b444e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--linen);
    color: var(--coffee);
    font-family: "Inter", sans-serif;
    line-height: 1.7;
}

header {
    border-bottom: 1px solid rgba(34, 16, 6, 0.15);
    padding: 1.25rem 3rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--oxford);
    text-decoration: none;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--coffee);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--rose);
}

main {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--oxford);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
}

.section {
    margin-top: 5rem;
}

.section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--oxford);
    margin-bottom: 1rem;
}

footer {
    margin-top: 6rem;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}
