/* ==========================================================
   Footer
   ========================================================== */

.site-footer {
    width: 100%;
    background: var(--color-dark);
    color: var(--color-light);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: min(calc(100% - 80px), 1300px);
    margin: 0 auto;
    padding: 70px 0;
}

.site-footer-column h2 {
    margin: 0 0 25px;
    color: var(--color-light);
    font-size: var(--font-size-heading);
    font-weight: var(--font-extra-bold);
    line-height: 1.1;
    text-transform: uppercase;
}

.site-footer-column p {
    margin: 0;
    color: var(--color-light);
    font-size: var(--font-size-body);
    font-weight: var(--font-regular);
    line-height: 1.7;
}

.site-footer-column:first-child p {
    text-align: justify;
}

/* ----------------------------------------------------------
   Phone links
   ---------------------------------------------------------- */

.site-footer a[href^="tel:"] {
    color: var(--color-links);
}
.site-footer a[href^="tel:"]:hover {
    color: var(--color-lnkhvr);
}

/* ----------------------------------------------------------
   Social links
   ---------------------------------------------------------- */

.social-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.social-links a {
    display: block;
    width: 42px;
    height: 42px;
}

.social-links img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-links a {
    display: block;
    width: 42px;
    height: 42px;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.15);
}

.site-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer-bottom a {
    color: var(--color-light);
    text-decoration: none;
    font-size: var(--font-size-menu);
    font-weight: var(--font-bold);
    text-transform: uppercase;
}


/* ==========================================================
   Mobile
   ========================================================== */

@media screen and (max-width: 700px) {

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 45px;
        width: calc(100% - 40px);
        padding: 50px 0;
    }

    .site-footer-column h2 {
        font-size: 24px;
        text-align:center;
    }

    .site-footer-column {
        text-align: justify;
        hyphens: auto;
    }

    .social-links {
        gap: 20px;
        justify-content: center;
    }

}