.site-footer {
    background: var(--color-primary);
    color: #fff;
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer__heading {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem;
    opacity: .7;
}

.site-footer__body {
    font-size: var(--text-sm);
    opacity: .85;
    line-height: 1.8;
}

.site-footer__link {
    color: rgba(255,255,255,.75);
    font-size: var(--text-sm);
    display: block;
    margin-bottom: .25rem;
}

.site-footer__link:hover { color: #fff; text-decoration: none; }

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 1rem;
    font-size: var(--text-xs);
    opacity: .7;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

.site-footer__bottom a { color: rgba(255,255,255,.75); }
.site-footer__bottom a:hover { color: #fff; }

.site-footer__title {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .6;
    margin: 0 0 .4rem;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

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