.site-footer {
    background: #30261b;
    color: #f7f4ef;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 50px 5% 60px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: #b72716;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-column p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .2s;
}

.footer-column a:hover {
    color: #9e2213;
}

.contact-list li {
    margin-bottom: 15px;
}

.footer-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 24px;

    background: #b72716;
    color: white !important;

    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.footer-btn:hover {
    background: #9e2213;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 25px;
}

.footer-bottom p {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
}

@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }
}