.site-footer {
    background: #b7a9a2;
    color: #fff;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 140px;
    margin-bottom: 15px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column h4 {
    font-size: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-contact li {
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: auto;
    }
}
