.site-footer {
    background: #050505;
    padding: 96px 24px 48px;
    color: #fff;
}

.site-footer__shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 72px;
}

.site-footer__brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #fff;
    text-decoration: none;
}

.site-footer__brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
}

.site-footer__brand-mark-ring {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid #f7f0f5;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255, 45, 133, 0.14) 0%, rgba(0, 0, 0, 0) 42%), #040404;
    box-shadow:
        0 0 0 3px rgba(255, 45, 133, 0.72),
        0 14px 28px rgba(0, 0, 0, 0.24);
}

.site-footer__brand-emblem {
    width: 26px;
    height: 26px;
    color: #d4af37;
}

.site-footer__brand-mark-copy {
    position: absolute;
    right: 6px;
    bottom: 8px;
    left: 6px;
    display: grid;
    gap: 1px;
    text-align: center;
    line-height: 1;
}

.site-footer__brand-mark-copy strong,
.site-footer__brand-mark-copy small {
    display: block;
}

.site-footer__brand-mark-copy strong {
    color: rgba(255, 255, 255, 0.84);
    font-size: 5px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.site-footer__brand-mark-copy small {
    color: #ff2d85;
    font-size: 4px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.site-footer__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.site-footer__brand-text strong {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.site-footer__brand-text small {
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.site-footer__brand-text em {
    color: rgba(255, 255, 255, 0.56);
    font-size: 7px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.site-footer__brand p,
.site-footer__column ul a,
.site-footer__contact-list span,
.site-footer__contact-list a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    line-height: 1.75;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__brand p {
    max-width: 280px;
    margin: 0 0 24px;
}

.site-footer__socials {
    display: flex;
    gap: 16px;
}

.site-footer__socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.site-footer__socials a:hover {
    background: #ff2d85;
    border-color: #ff2d85;
    transform: scale(1.08);
}

.site-footer__social-icon {
    width: 16px;
    height: 16px;
}

.site-footer__column h4 {
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-footer__column ul,
.site-footer__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li + li,
.site-footer__contact-list li + li {
    margin-top: 16px;
}

.site-footer__column ul a:hover,
.site-footer__contact-list a:hover,
.site-footer__legal a:hover {
    color: #ff2d85;
}

.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.site-footer__contact-icon {
    width: 20px;
    height: 20px;
    color: #ff2d85;
    flex: 0 0 auto;
    margin-top: 2px;
}

.site-footer__bottom {
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer__bottom p,
.site-footer__legal a {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-footer {
        padding: 80px 16px 40px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 56px;
    }

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

    .site-footer__legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
