.site-footer {
    background: #211b17;
    color: #f8f3ec;
    padding: 3rem 1.5rem 1.25rem;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 1fr) minmax(180px, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.site-footer h2,
.site-footer h3 {
    margin-top: 0;
    color: #fffaf4;
    font-family: 'Dancing Script', cursive;
}

.site-footer h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.site-footer h3 {
    margin-bottom: 0.85rem;
    font-size: 1.65rem;
}

.site-footer p {
    max-width: 34rem;
    margin: 0;
    color: #d8cec3;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.65;
}

.site-footer a {
    color: #f8f3ec;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #e3b982;
}

.footer-nav {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    font-family: 'Quicksand', sans-serif;
}

.footer-nav a {
    width: fit-content;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.15rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    border-bottom-color: #e3b982;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #806e5d;
    border-radius: 50%;
    color: #fffaf4;
    font-size: 1.15rem;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    border-color: #e3b982;
    background: #3b3028;
    transform: translateY(-2px);
}

.footer-divider {
    max-width: 1100px;
    margin: 2.5rem auto 1rem;
    border: 0;
    border-top: 1px solid #4b3e34;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
    color: #bcae9f;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: inherit;
    font-size: inherit;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@media screen and (max-width: 700px) {
    .site-footer {
        padding: 2.5rem 1.25rem 1rem;
    }

    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.25rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-divider {
        margin-top: 2rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media screen and (max-width: 420px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}
