.aftir-footer {
    margin-top: 80px;
    padding: 38px 22px 28px;
    background: rgba(255,248,236,0.94);
    border-top: 1px solid rgba(125,105,70,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.aftir-footer.aftir-footer-olive {
    background: rgba(255,248,236,0.94);
}

.aftir-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.aftir-footer-brand {
    max-width: 560px;
}

.aftir-footer-name {
    color: #5a4028;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: bold;
}

.aftir-footer-name a {
    color: inherit;
    text-decoration: none;
}

.aftir-footer-name a:hover {
    opacity: .8;
}

.aftir-footer-brand p {
    margin: 0;
    color: #2f2f2f;
    line-height: 1.8;
    font-size: 16px;
}

.aftir-footer-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 36px;
    row-gap: 12px;
    justify-content: end;
}

.aftir-footer-links a {
    color: #5a4028;
    text-decoration: none;
    font-size: 15px;
    transition: opacity .2s ease;
}

.aftir-footer-links a:hover {
    opacity: .7;
}

.aftir-footer-bottom {
    max-width: 1120px;
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(125,105,70,0.16);
    color: rgba(47,47,47,0.62);
    font-size: 13px;
}

@media (max-width: 700px) {
    .aftir-footer {
        margin-top: 44px;
        padding: 24px 18px 18px;
    }

    .aftir-footer-inner {
        flex-direction: column;
        gap: 18px;
    }

    .aftir-footer-name {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .aftir-footer-brand p {
        font-size: 14px;
        line-height: 1.45;
    }

    .aftir-footer-links {
        display: grid;
        grid-template-columns: repeat(2, max-content);
        column-gap: 26px;
        row-gap: 8px;
        justify-content: start;
    }

    .aftir-footer-links a {
        font-size: 14px;
    }

    .aftir-footer-bottom {
        margin-top: 18px;
        padding-top: 12px;
        font-size: 12px;
    }
}