.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #000;
    padding: 2.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(245,243,233,0.8);
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.footer-column p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-nav a {
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.2s ease-out;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(245,243,233,0.6);
}

@media (min-width: 768px) {
    .footer-columns {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
