.mhb-site-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-display, "Space Grotesk", sans-serif);
}

.mhb-site-footer__cta,
.mhb-site-footer__bar {
    margin: 0 auto;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
}

.mhb-site-footer__cta {
    padding-bottom: 128px;
    padding-top: 112px;
}

.mhb-site-footer__cta p {
    color: rgba(255, 255, 255, 0.3);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.mhb-site-footer__cta a {
    color: #fff;
    display: block;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    text-decoration: none;
}

.mhb-site-footer__cta a span {
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease;
}

.mhb-site-footer__cta a:hover,
.mhb-site-footer__cta a:hover span {
    color: #60a5fa;
}

.mhb-site-footer__cta strong {
    color: rgba(255, 255, 255, 0.4);
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 24px;
}

.mhb-site-footer__bar {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-bottom: 24px;
    padding-top: 24px;
}

.mhb-site-footer__bar p,
.mhb-site-footer__bar a {
    color: rgba(255, 255, 255, 0.3);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8rem;
    margin: 0;
    text-decoration: none;
}

.mhb-site-footer__bar nav {
    display: flex;
    gap: 24px;
}

.mhb-site-footer__bar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 782px) {
    .mhb-site-footer__cta,
    .mhb-site-footer__bar {
        padding-left: 24px;
        padding-right: 24px;
    }

    .mhb-site-footer__bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mhb-site-footer__bar nav {
        flex-wrap: wrap;
    }
}

