.site-footer {
    margin-top: 4rem;
    background: linear-gradient(180deg, #f5eee0 0%, #efe4cf 100%);
    border-top: 1px solid rgba(18, 18, 18, 0.14);
}

.footer-inner {
    padding: 2.2rem 0 1.8rem;
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.55fr;
    gap: 1.8rem;
    align-items: start;
}

.footer-brand-block {
    max-width: 560px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.65rem;
}

.footer-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.footer-brand-block p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.96rem;
    line-height: 1.5;
}

.footer-socials {
    margin-top: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-socials-block h3 {
    margin: 0;
    font-family: "Archivo Black", Georgia, serif;
    font-size: 1.02rem;
    letter-spacing: 0.03em;
    color: var(--text-color);
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(18, 18, 18, 0.14);
    background: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social-link:hover {
    transform: translateY(-1px);
    background: var(--accent-color);
    color: var(--secondary-color);
}

.footer-links-block h3 {
    margin: 0 0 0.65rem;
    font-family: "Archivo Black", Georgia, serif;
    font-size: 1.02rem;
    letter-spacing: 0.03em;
    color: var(--text-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 0.45rem 1.4rem;
}

.footer-links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(18, 18, 18, 0.14);
    background: rgba(196, 167, 104, 0.18);
}

.footer-bottom-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--accent-color);
    font-weight: 700;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.3rem;
        padding: 1.8rem 0 1.4rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        min-height: auto;
        padding: 0.8rem 0;
    }
}
