.site-footer {
	color: var(--white);
}

.site-footer a {
    transition: var(--def-trans);
}

.site-footer a:hover {
    color: var(--bronze);
    transition: var(--def-trans);
}

.site-footer .footer-logo {
    grid-area: 1/3/1/span 3;
}

.site-footer .footer-logo .footer-logo-img {
    width: 100%;
    max-width: max(250px, 14.21875vw);
}

.site-footer .business-hours {
    grid-area: 2/3/2/span 3;
    grid-template-columns: auto 1fr;
    grid-column-gap: 1.2em;
    grid-row-gap: .3em;
}

.site-footer .footer-address-contact {
    grid-area: 2/6/span 2/span 3;
    line-height: 1.5;
}

.site-footer .footer-address-contact .address-container,
.site-footer .footer-address-contact .contact-container {
    margin-bottom: auto;
    font-weight: 600;
    text-transform: none;
}

.site-footer .footer-nav {
    grid-area: 2/9/2/span 4;
    font-size: var(--fs-30);
}

.site-footer .footer-nav .menu {
    display: flex;
    gap: max(20px, 3.125vw);
    justify-content: space-between;
}

.site-footer .footer-legal-nav {
    grid-area: 3/9/3/span 4;
    justify-content: space-between;
    gap: max(16px, 2.5vw);
}

.site-footer .footer-legal-nav .menu {
    display: flex;
    gap: max(16px, 2.5vw);
}

.site-footer .footer-social-nav {
    gap: 10px;
}

.site-footer .footer-copyright {
    grid-area: 3/3/3/span 3;
    font-size: var(--fs-16);
    gap: .75em;
}

.site-footer .footer-copyright .nill {
    display: inline-block;
    height: 1.25em;
    margin-bottom: -.35em;
    margin-right: .5em;
    aspect-ratio: 32/23;
    background: url(../img/nill.svg) no-repeat center/contain;
}

.site-footer .footer-copyright .copyright-text {
    display: inline;
}


@media (max-width: 1499.98px) {
    .site-footer .footer-logo {
        grid-area: 1/2/1/span 4;
    }
    
    .site-footer .business-hours {
        grid-area: 2/2/2/span 4;
    }

    .site-footer .footer-nav {
        grid-area: 2/9/2/span 5;
    }

    .site-footer .footer-legal-nav {
        grid-area: 3/9/3/span 5;
    }
    
    .site-footer .footer-copyright {
        grid-area: 3/2/3/span 4;
    }
    
    .site-footer .footer-address-contact {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 1199.98px) {
    .site-footer {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: var(--m-small) var(--grid-gap);
        gap: max(48px, 2.5vw);
    }

    .site-footer .business-hours {
        text-align: left;
    }

    .site-footer .footer-address-contact {
        gap: 30px;
    }

    .site-footer .footer-legal-nav {
        align-self: center;
    }
    
    .site-footer .footer-address-contact .contact-container {
        align-items: center;
        margin-top: 0;
    }
    
    .site-footer .footer-copyright {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--grid-gap);
    }
    
    .site-footer .footer-copyright .nill {
        margin: 0;
    }
}

@media (max-width: 767.98px) {
    .site-footer .footer-legal-nav {
        flex-direction: column;
        gap: 48px;
    }

    .site-footer .footer-copyright {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .site-footer .footer-nav .menu {
        gap: 30px;
        flex-direction: column;
    }

    .site-footer .footer-legal-nav {
        flex-direction: column;
        gap: 48px;
    }

    .site-footer .footer-legal-nav .menu {
        gap: 15px;
        flex-direction: column;
    }

    .site-footer .footer-copyright .copyright-text {
        max-width: 22ch;
    }

    .site-footer .footer-copyright {
        flex-direction: column;
        align-items: center;
    }

    .site-footer .footer-address-contact .address-container,
    .site-footer .footer-address-contact .contact-container  {
        text-transform: none;
    }
}