.site-footer {
    position: relative;
    padding: 120px 0 56px;
    margin-top: 72px;
    background: transparent;
}

.site-footer::before {
    content: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
}

.footer-panel {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 28px;
    align-items: end;
    padding: 30px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 72px rgba(23, 27, 23, 0.08);
}

.footer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--nv-color-text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.footer-eyebrow::before {
    content: '';
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.8;
}

.footer-brand__title {
    margin: 0;
    color: var(--nv-color-text);
    font-family: var(--nv-font-display);
    font-size: clamp(2.2rem, 4.4vw, 3.8rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    max-width: 11ch;
}

.footer-brand__copy {
    max-width: 34rem;
    margin: 18px 0 0;
    color: var(--nv-color-text-muted);
    font-size: 1rem;
}

.footer-bottom__copy {
    margin: 22px 0 0;
    color: rgba(76, 86, 79, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.footer-links-wrap {
    display: grid;
    gap: 18px;
    justify-items: end;
}

.footer-navigation {
    width: 100%;
    max-width: 280px;
}

.footer-menu {
    display: grid;
    gap: 12px;
    width: 100%;
}

.footer-menu .menu-item {
    width: 100%;
}

.footer-menu .nav-link,
.footer-menu .menu-link,
.footer-menu .dropdown-item,
.footer-link-pill {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--nv-color-line);
    background: rgba(255, 255, 255, 0.78);
    color: var(--nv-color-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background-color .24s ease, border-color .24s ease, color .24s ease;
}

.footer-menu .nav-link:hover,
.footer-menu .nav-link:focus-visible,
.footer-menu .menu-item.current-menu-item > .nav-link,
.footer-menu .menu-item.current_page_item > .nav-link,
.footer-link-pill:hover,
.footer-link-pill:focus-visible {
    color: var(--nv-color-text);
    border-color: rgba(94, 106, 99, 0.22);
    background: rgba(94, 106, 99, 0.08);
}

.footer-links-cta {
    width: 100%;
    max-width: 280px;
    display: grid;
    gap: 12px;
}

.footer-link-pill--primary {
    border-color: rgba(94, 106, 99, 0.18);
}

@media (max-width: 991px) {
    .site-footer {
        padding: 96px 0 40px;
    }

    .footer-panel {
        grid-template-columns: 1fr;
    }

    .footer-links-wrap {
        justify-items: stretch;
    }

    .footer-navigation,
    .footer-links-cta {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 80px 0 32px;
        margin-top: 56px;
    }

    .footer-panel {
        padding: 24px;
        border-radius: 28px;
    }

    .footer-brand__title {
        max-width: none;
    }
}
