/* ================================================
   COTAPAREDES — Footer (clases BEM del tema)
   ================================================ */

.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 0 40px;
}

.site-footer__inner {
    max-width: var(--container-width, 1000px);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 40px);
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: start;
}

/* Brand */
.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__logo img {
    height: 14px;
    width: auto;
    filter: invert(1) brightness(2);
}

.site-footer__tagline {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

/* Links / Social */
.site-footer__heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 12px;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__list a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__list a:hover {
    color: #fff;
}

/* Copyright */
.site-footer__copy {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 10px;
}

.site-footer__copy p {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: rgba(255,255,255,0.2);
    margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__copy {
        text-align: center;
    }
}
