.site-footer {
    background-color: #1a1a1a;
}

.site-footer__main {
    color: rgba(255, 255, 255, .7);
    display: grid;
    gap: 3rem 2.5rem;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    margin: 0 auto;
    max-width: var(--content-max-width);
    padding: 4rem 2rem;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.site-footer__col {
    pointer-events: auto;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 1.2rem;
    max-width: 180px;
}

.site-footer__logo img {
    display: block;
    height: auto;
    width: 100%;
}

.site-footer__col--about p {
    font-size: .85rem;
    line-height: 1.6;
}

.site-footer__social {
    display: flex;
    gap: .8rem;
    margin-top: 1.5rem;
}

.site-footer__social a {
    align-items: center;
    background-color: rgba(255, 255, 255, .08);
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 2.4rem;
    justify-content: center;
    transition: background-color .3s ease-in-out;
    width: 2.4rem;
}

.site-footer__social a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.site-footer__social svg {
    height: 1.15rem;
    width: 1.15rem;
}

.site-footer__heading {
    color: #fff;
    font-size: .8rem;
    margin-bottom: 1.2rem;
}

.site-footer__heading--hours,
.site-footer__heading--social {
    margin-top: 2rem;
}

.site-footer__nav li + li {
    margin-top: .2rem;
}

.site-footer__nav a {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: color .2s ease-in-out;
}

.site-footer__nav a:hover {
    color: #fff;
}

.site-footer__address {
    font-style: normal;
}

.site-footer__address p {
    align-items: flex-start;
    display: flex;
    font-size: .85rem;
    gap: .6rem;
    line-height: 1.55;
}

.site-footer__address p + p {
    margin-top: .8rem;
}

.site-footer__address svg {
    flex-shrink: 0;
    height: 1.1rem;
    margin-top: .2rem;
    opacity: .5;
    width: 1.1rem;
}

.site-footer__address a {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: color .2s ease-in-out;
}

.site-footer__address a:hover {
    color: #fff;
}

.site-footer__hours {
    font-size: .85rem;
}

.site-footer__hours div {
    display: flex;
    gap: .6rem;
    justify-content: space-between;
    max-width: 200px;
}

.site-footer__hours div + div {
    margin-top: .3rem;
}

.site-footer__hours dt {
    font-size: .85rem;
    font-weight: 600;
}

.site-footer__hours dd {
    font-size: .85rem;
}

.site-footer__map {
    margin-top: -12rem;
    position: relative;
}

.site-footer__map::before {
    background: linear-gradient(to bottom, #1a1a1a 0%, #1a1a1a 20%, transparent 100%);
    content: '';
    height: 140px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.site-footer__map a {
    display: block;
}

.site-footer__map img {
    display: block;
    height: auto;
    width: 100%;
}

.site-footer__bottom {
    align-items: center;
    background-color: #111;
    color: rgba(255, 255, 255, .35);
    display: flex;
    font-size: .75rem;
    justify-content: space-between;
    padding: 1.25rem 2rem;
}

.site-footer__bottom p {
    font-size: .75rem;
}

.site-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.site-footer__legal a {
    color: rgba(255, 255, 255, .35);
    font-size: .75rem;
    transition: color .2s ease-in-out;
}

.site-footer__legal a:hover {
    color: rgba(255, 255, 255, .6);
}

@media (max-width: 1199.98px) {
    .site-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__map {
        margin-top: -8rem;
    }

    .site-footer__map::before {
        height: 100px;
    }
}

@media (max-width: 575.98px) {
    .site-footer__main {
        gap: 2.5rem 2rem;
        grid-template-columns: 1fr 1fr;
        padding: 3rem 2rem;
    }

    .site-footer__col--about {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .site-footer__col:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .site-footer__col:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .site-footer__col:nth-child(4) {
        align-content: start;
        display: grid;
        gap: 0 2rem;
        grid-column: 1 / -1;
        grid-row: 3;
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__col:nth-child(4) > .site-footer__heading:first-of-type {
        grid-column: 1;
        grid-row: 1;
    }

    .site-footer__col:nth-child(4) > .site-footer__address {
        grid-column: 1;
        grid-row: 2;
    }

    .site-footer__col:nth-child(4) > .site-footer__heading--hours {
        grid-column: 2;
        grid-row: 1;
        margin-top: 0;
    }

    .site-footer__col:nth-child(4) > .site-footer__hours {
        grid-column: 2;
        grid-row: 2;
    }

    .site-footer__map {
        margin-top: -4rem;
    }

    .site-footer__map::before {
        height: 60px;
    }

    .site-footer__logo {
        max-width: 130px;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: .8rem;
        padding: 1.2rem 2rem;
        text-align: center;
    }
}

@media (max-width: 399.98px) {
    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__col--about,
    .site-footer__col:nth-child(2),
    .site-footer__col:nth-child(3),
    .site-footer__col:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .site-footer__col:nth-child(4) {
        display: block;
    }

    .site-footer__col:nth-child(4) > .site-footer__heading:first-of-type,
    .site-footer__col:nth-child(4) > .site-footer__address,
    .site-footer__col:nth-child(4) > .site-footer__heading--hours,
    .site-footer__col:nth-child(4) > .site-footer__hours {
        grid-column: auto;
        grid-row: auto;
    }

    .site-footer__col:nth-child(4) > .site-footer__heading--hours {
        margin-top: 2rem;
    }
}