/* FOOTER */
footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 60px 5vw 30px
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 70px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    background: var(--white);
    padding: 8px;
    border-radius: 4px;
}

.footer-brand p {
    font-weight: 500;
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5);
    margin-top: 1rem;
    max-width: 260px
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: .95rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.2rem
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.footer-col a {
    font-weight: 600;
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--amber)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-copy {
    font-weight: 600;
    font-size: .82rem;
    color: rgba(255, 255, 255, .3)
}

.social-row {
    display: flex;
    gap: .8rem
}

.soc-btn {
    width: 2.4rem;
    height: 2.4rem;
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: all .2s
}

.soc-btn:hover {
    background: var(--amber);
    color: var(--brown-dark)
}

@media(max-width:1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
    }
}

@media(max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
