.site-footer {
    background: rgba(12, 16, 20, 0.9);
    color: #2b2b32;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 20, 0.9);
    opacity: 0.25;
    pointer-events: none;
}

.site-footer__grid,
.site-footer__meta {
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.25fr 0.85fr 0.9fr;
        gap: 3.5rem;
        align-items: flex-start;
    }
}

@media (min-width: 1200px) {
    .site-footer__grid {
        gap: 4.5rem;
    }
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .site-footer__brand {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.site-footer__logo {
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: rgba(255, 255, 255, 0.6);
}

.site-footer__intro {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
    margin: 0;
    max-width: 36ch;
}

.site-footer__heading {
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 1.2rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer ul li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.site-footer__info ul li {
    display: block;
}

.site-footer__info ul li+li,
.site-footer__contact ul li+li {
    margin-top: 0.35rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.site-footer__link-button {
    display: inline;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.site-footer__link-button:hover,
.site-footer__link-button:focus-visible {
    color: #d2b899;
}

.site-footer__contact-icon {
    width: 1.25rem;
    display: inline-flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.site-footer__contact a {
    color: inherit;
}

.site-footer__meta {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .site-footer__meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.site-footer__social {
    display: inline-flex;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.site-footer__social a {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    color: #2b2b32;
    background: #d2b899;
    border-color: #d2b899;
}
