@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@500;700&display=swap');

:root {
    --ink-900: #1a1714;
    --ink-500: #7b6e62;
    --sand-100: #f7f2eb;
    --teal-700: #2f5a63;
}

.site-footer {
    background: linear-gradient(135deg, #151311, #25201b 55%, #1b3439);
    color: #f7f2eb;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
}

.footer-brand {
    margin: 0;
    color: #fff;
    font: 700 clamp(1.6rem, 2.3vw, 2rem)/1 "Cormorant Garamond", serif;
}

.footer-copy {
    margin: 0.45rem 0 0;
    color: rgba(247, 242, 235, 0.85);
    font: 500 0.92rem/1.5 Manrope, sans-serif;
}

.footer-social-title {
    margin: 0 0 0.5rem;
    color: #fff;
    font: 700 0.88rem/1 Manrope, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-link:hover,
.social-link:focus {
    color: #fff;
    background: var(--teal-700);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .site-footer {
        text-align: center;
        padding: 1.7rem 0;
    }

    .footer-social-title {
        margin-top: 0.25rem;
    }
}
