@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital@0;1&family=Quicksand:wght@400;500&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #ffffff;
    color: #4a4038;
    font-family: 'Quicksand', Verdana, Geneva, sans-serif;
}

.site-header {
    padding: 48px 24px 32px;
    text-align: center;
}

.site-title {
    margin: 0 0 40px;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.site-title a {
    color: #4a3f35;
    text-decoration: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 48px;
}

.site-nav a {
    color: #6b6259;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.site-nav a:hover {
    color: #4a3f35;
}

.site-nav a.active {
    color: #4a3f35;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    padding: 56px 48px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
}

.footer-brand a {
    color: #4a3f35;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-nav a {
    color: #6b6259;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: #4a3f35;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-legal-link {
    color: #6b6259;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-legal-link:hover {
    color: #4a3f35;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #4a3f35;
    border-radius: 8px;
    color: #4a3f35;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}
