.footer {
    background: #080808;
    color: #fff;
    padding: 70px 0 0;
    border-top: 1px solid rgba(212, 175, 55, .25);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 18px;
}

.footer h3 {
    color: #d4af37;
    margin-bottom: 18px;
}

.footer p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer a:hover {
    color: #d4af37;
}

.footer-bottom {
    margin-top: 50px;
    padding: 22px;
    text-align: center;
    background: #050505;
}

@media (max-width: 800px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}