/* ============================================================
   Footer chrome
   ============================================================ */
.mpf-footer {
    background: var(--mpf-bg-alt);
    border-top: 4px solid var(--mpf-navy);
    color: var(--mpf-text);
    padding-top: clamp(40px, 5vw, 60px);
}
.mpf-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: clamp(36px, 4vw, 52px);
}
.mpf-footer__brand .custom-logo,
.mpf-footer__brand .mpf-logo__text { max-height: 70px; margin-bottom: 16px; }
.mpf-footer__tagline { color: var(--mpf-muted); font-size: .92rem; max-width: 30ch; }

.mpf-footer__title {
    font-size: 1.05rem; color: var(--mpf-navy); margin: 0 0 16px;
    position: relative; padding-bottom: 10px;
}
.mpf-footer__title::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px;
    background: var(--mpf-teal); border-radius: 2px;
}

.mpf-footer__menu,
.mpf-footer__contact-list {
    list-style: none; margin: 0; padding: 0;
}
.mpf-footer__menu li,
.mpf-footer__contact-list li { margin-bottom: 10px; font-size: .92rem; }
.mpf-footer__menu a,
.mpf-footer__contact-list a { color: var(--mpf-muted); }
.mpf-footer__menu a:hover,
.mpf-footer__contact-list a:hover { color: var(--mpf-navy); }
.mpf-footer__address { color: var(--mpf-muted); line-height: 1.5; }

/* social icon list (shared with topbar/blocks) */
.mpf-social { list-style: none; margin: 16px 0 0; padding: 0; display: flex; gap: 10px; }
.mpf-social a {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
    background: var(--mpf-navy); color: #fff; transition: background .15s, transform .15s;
}
.mpf-social a:hover { background: var(--mpf-teal); transform: translateY(-2px); color: #fff; }
.mpf-social svg { width: 17px; height: 17px; }

/* copyright bar */
.mpf-copyright { background: var(--mpf-navy-dark); color: rgba(255,255,255,.85); }
.mpf-copyright__inner { padding-block: 16px; text-align: center; font-size: .85rem; }
.mpf-copyright p { margin: 0; }
.mpf-copyright a { color: #fff; text-decoration: underline; }
.mpf-copyright a:hover { color: rgba(255,255,255,.8); }

@media (max-width: 900px) {
    .mpf-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
    .mpf-footer__grid { grid-template-columns: 1fr; }
}
