.site-footer {
    background-color: #050817;
    color: #e2e8f0;
}

.site-footer__container {
    margin: 0 auto;
    display: flex;
    width: 100%;
    max-width: 1200px;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 1.5rem 3rem;
}

@media (min-width: 640px) {
    .site-footer__container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .site-footer__container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

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

.site-footer__brand > * + * {
    margin-top: 1.5rem;
}

.site-footer__logo {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #ffffff;
}

.site-footer__tagline {
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(203, 213, 225, 0.9);
}

.site-footer__visit > * + * {
    margin-top: 0.75rem;
}

.site-footer__section-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #94a3b8;
}

.site-footer__address {
    font-style: normal;
    font-size: 1rem;
    line-height: 2;
    color: rgba(226, 232, 240, 0.9);
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}

.site-footer__social-link {
    display: flex;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: transform 300ms ease-out, border-color 300ms ease-out, background-color 300ms ease-out;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
}

.site-footer__social-icon {
    height: 1.25rem;
    width: 1.25rem;
    fill: currentColor;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer__links {
    width: 100%;
    max-width: 280px;
}

.site-footer__nav ul {
    display: grid;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #cbd5e1;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__nav a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease-out;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    color: #ffffff;
    outline: none;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: #64748b;
}

@media (min-width: 640px) {
    .site-footer__bottom {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__credit {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    color: #94a3b8;
}
