/* Nova Pelvis footer visual design */
.site-footer#colophon {
    display: none !important;
}

.np-site-footer {
    --np-footer-bg: #fbf7f4;
    --np-footer-bg-soft: #fffdfb;
    --np-footer-ink: #262320;
    --np-footer-muted: #6f6a64;
    --np-footer-accent: #8b4f68;
    --np-footer-accent-dark: #62384a;
    --np-footer-line: rgba(139, 79, 104, 0.18);
    --np-footer-chip: rgba(139, 79, 104, 0.09);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--np-footer-line);
    background:
        radial-gradient(circle at 14% 18%, rgba(226, 184, 198, 0.30), transparent 28%),
        linear-gradient(135deg, var(--np-footer-bg) 0%, var(--np-footer-bg-soft) 58%, #f5ece9 100%);
    color: var(--np-footer-ink);
}

.np-site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 38%),
        radial-gradient(circle at 88% 72%, rgba(139, 79, 104, 0.10), transparent 24%);
}

.np-site-footer__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) minmax(130px, 0.65fr) minmax(170px, 0.8fr) minmax(220px, 1fr);
    gap: clamp(28px, 4vw, 56px);
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(44px, 6vw, 68px) 0 clamp(30px, 4vw, 42px);
}

.np-site-footer__brand,
.np-site-footer__column {
    min-width: 0;
}

.np-site-footer__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 16px;
    padding: 8px 12px;
    border: 1px solid var(--np-footer-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--np-footer-accent-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.np-site-footer h2 {
    max-width: 360px;
    margin: 0;
    color: var(--np-footer-ink);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.np-site-footer__text {
    max-width: 380px;
    margin: 16px 0 0;
    color: var(--np-footer-muted);
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.72;
}

.np-site-footer__copyright {
    margin: 26px 0 0;
    color: rgba(38, 35, 32, 0.58);
    font-size: 13px;
    line-height: 1.55;
}

.np-site-footer__column h3 {
    margin: 4px 0 17px;
    color: var(--np-footer-ink);
    font-size: 14px;
    font-weight: 760;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.np-site-footer__column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.np-site-footer__column li {
    margin: 0;
}

.np-site-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--np-footer-muted) !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none !important;
    transition:
        color 180ms ease,
        transform 180ms ease,
        background-color 180ms ease;
}

.np-site-footer a::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 999px;
    background: var(--np-footer-accent);
    opacity: 0.36;
    transition: opacity 180ms ease, transform 180ms ease;
}

.np-site-footer a:hover,
.np-site-footer a:focus {
    color: var(--np-footer-accent-dark) !important;
    transform: translateX(3px);
}

.np-site-footer a:hover::before,
.np-site-footer a:focus::before {
    opacity: 0.92;
    transform: scale(1.22);
}

.np-site-footer a:focus-visible {
    outline: 2px solid rgba(139, 79, 104, 0.35);
    outline-offset: 4px;
    border-radius: 6px;
}

@media (max-width: 980px) {
    .np-site-footer__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .np-site-footer__brand {
        grid-column: 1 / -1;
    }

    .np-site-footer h2,
    .np-site-footer__text {
        max-width: 620px;
    }
}

@media (max-width: 640px) {
    .np-site-footer__inner {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 560px);
        gap: 30px;
        padding-top: 42px;
        padding-bottom: 34px;
    }

    .np-site-footer__column {
        padding-top: 22px;
        border-top: 1px solid var(--np-footer-line);
    }

    .np-site-footer__column h3 {
        margin-bottom: 14px;
    }

    .np-site-footer__column ul {
        gap: 9px;
    }

    .np-site-footer a {
        min-height: 34px;
        font-size: 15.5px;
    }
}
