/* ============================================================
   FOOTER STYLES (loaded from functions.php enqueue)
   ============================================================ */

/* Main footer */
.site-footer {
    background: #1A1A1A;
    color: rgba(255,255,255,0.8);
}

.footer__main {
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 40px;
}

.footer__brand {}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer__about {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: opacity 0.2s;
}
.footer__socials a:hover { opacity: 0.85; }

/* Footer columns */
.footer__col {}

.footer__col-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

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

.footer__links a {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer__links a:hover { color: var(--color-accent); }

/* Footer contacts */
.footer__contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--color-accent);
}

.footer__contact-item a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer__contact-item a:hover { color: var(--color-accent); }

/* Bottom bar */
.footer__bottom {
    padding: 18px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__bottom p,
.footer__bottom-links a {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
}

.footer__bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* Footer responsive */
@media (max-width: 960px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .footer__brand { grid-column: auto; }
    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer__bottom-links { justify-content: center; }
}
