/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #1a1a1a;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(195, 160, 75, 0.15);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Brand column */
.footer-brand__logo {
    display: block;
    margin-bottom: 20px;
    line-height: 0;
}

.footer-brand__logo img {
    height: 64px;
    width: auto;
    filter: brightness(0.9);
}

.footer-brand__tagline {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 280px;
}

/* Footer nav columns */
.footer-col__heading {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(195, 160, 75, 0.2);
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col__link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col__link:hover {
    color: var(--gold);
    padding-left: 6px;
}

/* Bottom bar */
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: rgba(255,255,255,0.25);
}

.footer-copyright a {
    color: rgba(195, 160, 75, 0.5);
    transition: color 0.2s ease;
}
.footer-copyright a:hover {
    color: var(--gold);
}

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

.footer-legal a {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.5);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
