/* =========================
   FOOTER
========================= */

.site-footer {
    background: #111;
    color: #fff;
    padding: 80px 0 0;
    padding-bottom: 50px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-col h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #9e8f3d;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.2s;
}

.footer-menu a:hover {
    color: #9e8f3d;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.footer-contact a:hover {
    color: #9e8f3d;
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}
.footer-logo img {
    height: 90px;
    width: auto;
}

.footer-contact a[href^="tel"] {
    font-size: 18px;
    font-weight: 600;
}
.footer-contact p {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

}
