/* ===== Footer ===== */
.site-footer {
    border-top: 1px solid rgba(232, 228, 223, 0.08);
    padding: 4rem 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-heading), 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--color-text_muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    color: var(--color-text_muted);
    transition: color 0.3s;
}
.footer-social a:hover { color: var(--color-accent); }

.footer-nav-section h4,
.footer-contact-section h4 {
    font-family: var(--font-body), 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text_muted);
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.footer-nav a {
    font-size: 0.9375rem;
    color: var(--color-text);
    transition: color 0.3s;
}
.footer-nav a:hover { color: var(--color-accent); }

.footer-contact-section a,
.footer-contact-section p {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: 0.375rem;
    transition: color 0.3s;
}
.footer-contact-section a:hover { color: var(--color-accent); }

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(232, 228, 223, 0.06);
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-text_muted);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.25rem;
    }
    .footer-bottom { padding: 1.5rem 1.25rem; }
}
