.site_footer {
    background-color: var(--background_panel);
    border-top: 1px solid var(--background_hover);
    padding: 40px 20px 24px;
    color: var(--text_secondary);
    font-family: var(--text_font);
}

.footer_inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--background_hover);
}

.footer_logo {
    font-family: var(--header_font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text_primary);
    margin-bottom: 10px;
}

.accent_dot {
    color: var(--accent);
}

.footer_tagline {
    font-size: 0.9rem;
    color: var(--text_secondary);
    max-width: 100%;
    margin-bottom: 18px;
}

.footer_socials_group {
    margin-top: 15px;
}

.footer_links_groups {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.footer_links_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_links_group a {
    color: var(--text_secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer_links_group a:hover {
    color: var(--accent);
}

.footer_links_group h4 {
    font-family: var(--header_font);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text_primary);
    margin-bottom: 14px;
}

.footer_social_icons {
    display: flex;
    gap: 12px;
}

.footer_social_icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--background_hover);
    color: var(--text_primary);
    border-radius: var(--rad_small);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer_social_icons a:hover {
    background-color: var(--accent);
    color: var(--background_main);
}

.footer_bottom {
    width: 90%;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text_secondary);
}

.footer_domain {
    font-family: var(--header_font);
    color: var(--text_primary);
    opacity: 0.8;
}

@media (min-width: 768px) {
    .site_footer {
        padding: 50px 30px 28px;
    }

    .footer_inner {
        width: 85%;
        flex-direction: row;
        justify-content: space-between;
        gap: 3vw;
        padding-bottom: 2.5rem;
    }

    .footer_logo {
        font-size: 1.4rem;
    }

    .footer_tagline {
        font-size: 0.95rem;
        max-width: 280px;
    }

    .footer_links_groups {
        flex-direction: row;
        justify-content: flex-end;
        gap: 3vw;
    }

    .footer_bottom {
        width: 85%;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .site_footer {
        padding: 60px 40px 30px;
    }

    .footer_inner {
        width: 60%;
        gap: 2vw;
        padding-bottom: 40px;
    }

    .footer_logo {
        font-size: 1.5rem;
    }

    .footer_tagline {
        font-size: 0.95rem;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .footer_links_groups {
        justify-content: space-between;
        gap: 2vw;
    }

    .footer_links_group a {
        font-size: 0.95rem;
    }

    .footer_links_group h4 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .footer_bottom {
        width: 60%;
        margin-top: 30px;
        font-size: 0.85rem;
    }
}