.cs-final-footer {
    position: relative;
    background:
        radial-gradient(
            circle at 83% 20%,
            rgba(228,170,25,.07),
            transparent 28rem
        ),
        #030303;
    border-top:
        1px solid rgba(228,170,25,.24);
    color: #f1ece3;
}

.cs-final-footer__inner {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}

.cs-final-footer__top {
    display: grid;
    grid-template-columns:
        1.15fr
        1.25fr
        .75fr;
    gap: 72px;
    padding: 68px 0 52px;
}

.cs-final-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.cs-final-footer__mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border:
        1px solid rgba(228,170,25,.55);
    color: #f4f0e8;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 19px;
}

.cs-final-footer__logo strong,
.cs-final-footer__logo small {
    display: block;
}

.cs-final-footer__logo strong {
    color: #eee9e0;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 19px;
    letter-spacing: .04em;
}

.cs-final-footer__logo strong em {
    color: #e4aa19;
    font-style: normal;
}

.cs-final-footer__logo small {
    margin-top: 4px;
    color: #777168;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .18em;
}

.cs-final-footer__brand p {
    max-width: 390px;
    margin: 24px 0 0;
    color: #8e8981;
    font-size: 12px;
    line-height: 1.8;
}

.cs-final-footer__label {
    display: block;
    margin-bottom: 13px;
    color: #e4aa19;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .2em;
}

.cs-final-footer__contact h3 {
    max-width: 520px;
    margin: 0 0 20px;
    color: #f0ebe4;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(24px, 2.2vw, 36px);
    font-weight: 400;
    line-height: 1.12;
}

.cs-final-footer__email {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 16px 0;
    border-top:
        1px solid rgba(228,170,25,.18);
    border-bottom:
        1px solid rgba(228,170,25,.18);
    color: #d9d2c6;
    font-size: 13px;
    transition:
        color .25s ease;
}

.cs-final-footer__email span {
    color: #e4aa19;
}

.cs-final-footer__email:hover {
    color: #e4aa19;
}

.cs-final-footer__contact-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.cs-final-footer__contact-row a {
    color: #8f8980;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cs-final-footer__contact-row a:hover {
    color: #e4aa19;
}

.cs-final-footer__links nav {
    display: grid;
    gap: 11px;
}

.cs-final-footer__links nav a {
    width: fit-content;
    color: #9b958c;
    font-size: 11px;
    transition:
        color .22s ease,
        transform .22s ease;
}

.cs-final-footer__links nav a:hover {
    color: #e4aa19;
    transform: translateX(4px);
}

.cs-final-footer__social {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top:
        1px solid rgba(228,170,25,.16);
}

.cs-final-footer__social > span {
    color: #777168;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .19em;
}

.cs-final-footer__icons {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.cs-final-footer__icons a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border:
        1px solid rgba(228,170,25,.27);
    border-radius: 50%;
    color: #a9a296;
    background: rgba(228,170,25,.015);
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.cs-final-footer__icons a:hover {
    color: #050505;
    background: #e4aa19;
    border-color: #e4aa19;
    transform: translateY(-3px);
}

.cs-final-footer__icons svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.cs-final-footer__icons .cs-icon-fill {
    fill: currentColor;
    stroke: none;
}

.cs-final-footer__bottom {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top:
        1px solid rgba(255,255,255,.07);
    color: #69655f;
    font-size: 8px;
    letter-spacing: .04em;
}

@media (max-width: 900px) {

    .cs-final-footer__inner {
        width: calc(100% - 40px);
    }

    .cs-final-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .cs-final-footer__links {
        grid-column: 1 / -1;
    }

    .cs-final-footer__links nav {
        grid-template-columns:
            repeat(3, minmax(0,1fr));
    }

}

@media (max-width: 620px) {

    .cs-final-footer__inner {
        width: calc(100% - 28px);
    }

    .cs-final-footer__top {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 52px 0 40px;
    }

    .cs-final-footer__links {
        grid-column: auto;
    }

    .cs-final-footer__links nav {
        grid-template-columns: 1fr 1fr;
    }

    .cs-final-footer__social {
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .cs-final-footer__bottom {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

}
