/* ========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;
    color: rgba(255, 255, 255, .78);
    background: var(--forest-dark);
    overflow: hidden;
    font-family: var(--sans);
}

.site-footer::before {
    content: "VERDE";
    position: absolute;
    bottom: -3rem;
    left: 50%;
    color: rgba(255,255,255,.025);
    font-family: var(--serif);
    font-size: clamp(9rem, 22vw, 24rem);
    line-height: .7;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 6rem);

    width: min(92%, var(--max-width));

    margin: 0 auto;
    padding: 5.5rem 0 4.5rem;
    z-index: 1;
}


/* ========================================
   BRAND
========================================= */

.site-footer__brand {
    max-width: 18rem;
}

.site-footer__logo {
    display: block;

    width: 12rem;

    margin-bottom: 1.6rem;
}

.site-footer__logo img {
    display: block;

    width: 100%;
    height: auto;
}

.site-footer__tagline {
    margin: 0 0 2rem;

    color: rgba(255, 255, 255, .65);

    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.4;
}


/* ========================================
   SOCIAL ICONS
========================================= */

.site-footer__socials {
    display: flex;
    gap: .8rem;
}

.site-footer__socials a {
    display: grid;
    place-items: center;

    width: 2.4rem;
    height: 2.4rem;

    color: rgba(255, 255, 255, .75);

    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;

    transition:
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.site-footer__socials a:hover {
    color: #fff;

    border-color: rgba(255, 255, 255, .65);

    transform: translateY(-2px);
}

.site-footer__socials svg {
    width: 1rem;
    height: 1rem;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__socials a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}


/* ========================================
   FOOTER COLUMNS
========================================= */

.site-footer__column h3 {
    margin: 0 0 1.4rem;

    color: rgba(255, 255, 255, .78);

    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .16em;

    text-transform: uppercase;
}

.site-footer__column nav {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.site-footer__column a {
    color: rgba(255, 255, 255, .78);

    font-size: .82rem;
    line-height: 1.4;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.site-footer__column nav a:hover {
    color: #fff;

    transform: translateX(3px);
}


/* ========================================
   CONTACT COLUMN
========================================= */

.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__contact > a:not(.site-footer__cta) {
    margin-bottom: .75rem;
}

.site-footer__contact p {
    margin: .5rem 0 1.5rem;

    color: rgba(255, 255, 255, .78);

    font-size: .8rem;
    line-height: 1.7;
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    margin-top: .5rem;
    padding: .85rem 1.1rem;

    color: #fff !important;

    border: 1px solid rgba(255, 255, 255, .3);

    font-size: .68rem !important;
    font-weight: 600;
    letter-spacing: .12em;

    text-transform: uppercase;

    transition:
        background .25s ease,
        border-color .25s ease !important;
}

.site-footer__cta:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .7);
}

.site-footer__cta span {
    font-size: 1rem;
}


/* ========================================
   BOTTOM BAR
========================================= */

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    width: min(92%, var(--max-width));

    margin: 0 auto;
    padding: 1.5rem 0 2rem;

    border-top: 1px solid rgba(255, 255, 255, .1);
}

.site-footer__bottom p {
    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: .65rem;
}

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

.site-footer__legal a {
    color: rgba(255, 255, 255, .78);

    font-size: .62rem;
    letter-spacing: .08em;

    text-decoration: none;
    text-transform: uppercase;

    transition: color .25s ease;
}

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


/* ========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .site-footer__inner {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;

        max-width: 24rem;
    }

}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;

        width: calc(100% - 3rem);

        padding: 4rem 0 3rem;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__logo {
        width: 11rem;
    }

    .site-footer__tagline {
        font-size: 1.15rem;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;

        width: calc(100% - 3rem);

        padding: 1.5rem 0 2rem;
    }

}

/* ========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: auto;
    }

}