@font-face {
    font-display: swap;
    font-family: "FooterMontserrat";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/montserrat-v26-latin-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "FooterMontserrat";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/montserrat-v26-latin-500.woff2") format("woff2");
}

body .site-footer {
    --footer-ink: #030303;
    --footer-gold: #b8984b;
    --footer-line: rgba(255, 255, 255, .075);
    --footer-muted: #78716c;
    --footer-text: #d6d3d1;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid var(--footer-line) !important;
    color: var(--footer-text) !important;
    background:
        radial-gradient(circle at 12% 0, rgba(184, 152, 75, .075), transparent 34%),
        var(--footer-ink) !important;
    font-family: "FooterMontserrat", Montserrat, sans-serif;
}

.site-footer,
.site-footer * {
    box-sizing: border-box;
}

.site-footer__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: min(1940px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 0;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(184, 152, 75, .32);
    border-radius: 999px;
    color: var(--footer-gold);
    background: rgba(255, 255, 255, .025);
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    border-color: rgba(184, 152, 75, .75);
    color: #f3e6bd;
    background: rgba(184, 152, 75, .12);
    transform: translateY(-2px);
}

.site-footer__social a:focus-visible {
    outline: 2px solid rgba(184, 152, 75, .65);
    outline-offset: 3px;
}

.site-footer__social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.site-footer__base p {
    font-size: 8px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.site-footer__base {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(1940px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 24px;
}

.site-footer__base p {
    margin: 0;
    color: var(--footer-muted);
}

@media (max-width: 575px) {
    .site-footer__social {
        width: calc(100% - 32px);
        padding-top: 22px;
    }

    .site-footer__base {
        width: calc(100% - 32px);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
