.footer--new,
.footer--new * {
    box-sizing: border-box;
}

.footer--new {
    background: #2f4e9d;
    padding: 5.3vw 0 4.8vw;
    color: #fff;
    font-family: "Inter", sans-serif;
    line-height: 1.2;
}

.footer--new .container {
    width: 75vw;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.footer--new .footer__inner {
    display: grid;
    grid-template-columns: 1.05fr .9fr 1.1fr 1fr;
    gap: 4vw;
    align-items: start;
    height: auto;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 1vw;
    color: #fff;
    font-family: "Playfair Display", sans-serif;
    font-size: 1.35vw;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.footer__logo img {
    width: 3.2vw;
    height: auto;
}

.footer__col h3,
.footer__blog {
    display: block;
    margin: 0 0 1.15vw;
    color: #fff;
    font-family: "Playfair Display", sans-serif;
    font-size: 1.7vw;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.footer__legal h3 {
    margin-top: 0;
}

.footer__blog {
    margin-bottom: 1.7vw;
}

.footer__col a {
    display: block;
    width: fit-content;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 1.04vw;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}

.footer__col a:hover,
.footer__col a:focus-visible {
    color: #ff8648;
}

.footer__contact > a:first-of-type {
    font-weight: 600;
}

.footer__soc {
    display: flex;
    align-items: center;
    gap: .75vw;
    margin: 1.8vw 0 0;
    padding: 0;
    list-style: none;
}

.footer__soc li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.55vw;
    height: 2.55vw;
    border-radius: 50%;
    background: #ed641c;
    transition: background-color .25s ease, transform .25s ease;
}

.footer__soc li a:hover,
.footer__soc li a:focus-visible {
    background: #ff8648;
    transform: translateY(-.15vw);
}

.footer__soc img {
    width: 48%;
    height: 48%;
    object-fit: contain;
}

.footer__salon {
    margin-bottom: .72vw;
}

.footer__salon strong,
.footer__salon span {
    display: block;
}

.footer__salon strong {
    font-weight: 600;
}

.footer__salon span {
    position: relative;
    width: fit-content;
}

.footer__salon span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: .12em;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}

.footer__salon:hover span::after,
.footer__salon:focus-visible span::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .footer--new {
        padding: 50px 0 44px;
    }

    .footer--new .container {
        width: 100%;
        padding: 0 20px;
    }

    .footer--new .footer__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 34px;
        text-align: center;
    }

    .footer__logo {
        gap: 10px;
        font-size: 22px;
    }

    .footer__logo img {
        width: 52px;
    }

    .footer__col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__col h3,
    .footer__blog {
        margin-bottom: 14px;
        font-size: 28px;
    }

    .footer__col a {
        font-size: 16px;
        line-height: 1.55;
    }

    .footer__soc {
        gap: 12px;
        margin-top: 20px;
    }

    .footer__soc li a {
        width: 42px;
        height: 42px;
    }

    .footer__salon {
        margin-bottom: 14px;
    }

    .footer__blog {
        margin-bottom: 20px;
    }
}
