.lpFooter--premium {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 48px 20px 34px;
    background:
        linear-gradient(180deg, rgba(15, 18, 23, 0.96), rgba(9, 11, 14, 1)),
        rgba(9, 11, 14, 1);
    overflow: hidden;
}

.lpFooter--premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(910px, calc(100% - 40px));
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--yakoru-brand-gold-rgb), 0.24), rgba(var(--yakoru-brand-gold-rgb), 0.16), rgba(var(--yakoru-brand-gold-rgb), 0.12), rgba(var(--yakoru-brand-gold-rgb), 0.16));
    transform: translateX(-50%);
    pointer-events: none;
}

.lpFooter--premium .lpFooter__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(128px, 0.44fr) minmax(150px, 0.52fr) minmax(210px, 0.72fr);
    align-items: start;
    gap: clamp(22px, 2.7vw, 36px);
    width: min(1180px, calc(100% - 1px));
    margin-inline: auto;
    padding-top: 0;
    border-top: 0;
}

.lpFooterPitch {
    display: grid;
    gap: 18px;
    max-width: 430px;
}

.lpFooterPitch p {
    margin: 0;
    color: rgba(229, 233, 226, 0.78);
    font-size: 1rem;
    line-height: 1.65;
}

.lpFooterBrand {
    position: relative;
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 0;
    color: rgba(247, 250, 255, 0.9);
    text-decoration: none;
    font-weight: 950;
}

.lpFooterBrand__lockup {
    display: block;
    width: 146px;
    height: 41px;
    object-fit: contain;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.28));
    transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

.lpFooterBrand:hover .lpFooterBrand__lockup,
.lpFooterBrand:focus-visible .lpFooterBrand__lockup {
    filter: var(--yakoru-logo-hover-filter) drop-shadow(0 12px 26px rgba(var(--yakoru-brand-gold-rgb), 0.28));
    transform: translateY(-1px);
}

@supports ((mask: url("") center / contain no-repeat) or (-webkit-mask: url("") center / contain no-repeat)) {
    .lpFooterBrand::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0;
        background: var(--yakoru-logo-hover-gradient);
        filter: drop-shadow(0 12px 26px rgba(var(--yakoru-brand-gold-rgb), 0.3));
        -webkit-mask: var(--yakoru-logo-hover-mask) center / contain no-repeat;
        mask: var(--yakoru-logo-hover-mask) center / contain no-repeat;
        transition: opacity .18s ease, transform .18s ease;
    }

    .lpFooterBrand:hover .lpFooterBrand__lockup,
    .lpFooterBrand:focus-visible .lpFooterBrand__lockup {
        opacity: 0;
    }

    .lpFooterBrand:hover::after,
    .lpFooterBrand:focus-visible::after {
        opacity: 1;
        transform: translateY(-1px);
    }
}

.lpFooterColumn {
    display: grid;
    align-content: start;
    gap: 10px;
}

.lpFooterColumn strong {
    margin-bottom: 3px;
    color: var(--yakoru-brand-gold);
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lpFooterColumn a,
.lpFooterColumn span {
    color: rgba(229, 233, 226, 0.78);
    text-decoration: none;
    font-weight: 800;
    line-height: 1.45;
}

.lpFooterColumn a {
    transition: color .18s ease, text-shadow .18s ease;
}

.lpFooterColumn a:hover,
.lpFooterColumn a:focus-visible {
    color: var(--yakoru-brand-gold);
    text-shadow: 0 0 18px rgba(var(--yakoru-brand-gold-rgb), 0.2);
}

.lpFooterColumn a:focus-visible {
    outline: 2px solid rgba(var(--yakoru-brand-gold-rgb), 0.38);
    outline-offset: 3px;
    border-radius: 4px;
}

.lpFooterColumn--contact a {
    overflow-wrap: anywhere;
}

.lpFooterBottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(1180px, calc(100% - 1px));
    margin: 30px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(205, 208, 198, 0.1);
    color: rgba(202, 210, 209, 0.46);
    font-size: 0.86rem;
    font-weight: 800;
}

@media (max-width: 1020px) {
    .lpFooter--premium .lpFooter__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
    }
}

@media (max-width: 760px) {
    .lpFooter--premium {
        padding-bottom: calc(34px + var(--mobile-bottom-nav-height, 76px) + env(safe-area-inset-bottom));
    }

    .lpFooter--premium .lpFooter__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lpFooterPitch {
        max-width: none;
    }

    .lpFooterBottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
