.waves-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
    color: rgba(255, 255, 255, .76);
    background:
        radial-gradient(circle at 8% 0, rgba(var(--rgb-primary), .22), transparent 32rem),
        var(--dark-background, #11151c);
}

.waves-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--rgb-primary), .75), transparent);
}

.waves-footer .footer-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(12rem, 1fr));
    gap: clamp(2rem, 5vw, 5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.waves-footer .footer-brand {
    max-width: 32rem;
}

.waves-footer .footer-logo {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
}

.waves-footer .footer-logo img {
    width: min(15.625rem, 100%);
    max-height: 4.5rem;
    object-fit: contain;
    object-position: left center;
}

.waves-footer .footer-brand p {
    max-width: 29rem;
    margin: 0;
    line-height: 1.75;
}

.waves-footer .footer-column h2 {
    margin: 0 0 1.25rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.waves-footer .footer-contact-list {
    display: grid;
    gap: .85rem;
}

.waves-footer .footer-contact-list a {
    display: grid;
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: .6rem;
    align-items: center;
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
}

.waves-footer .footer-contact-list i {
    color: var(--primary-color);
    text-align: center;
}

.waves-footer .footer-contact-list a:hover,
.waves-footer .footer-contact-list a:focus-visible,
.waves-footer .footer-bottom a:hover,
.waves-footer .footer-bottom a:focus-visible {
    color: #fff;
}

.waves-footer .footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.waves-footer .footer-socials a {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.waves-footer .footer-socials a:hover,
.waves-footer .footer-socials a:focus-visible {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: translateY(-2px);
}

.waves-footer .footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .82rem;
}

.waves-footer .footer-bottom p {
    margin: 0;
}

.waves-footer .footer-bottom a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .waves-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .waves-footer .footer-bottom {
        flex-direction: column;
        gap: .5rem;
    }
}
