/* RFM Custom Footer — extracted from mu-plugin */
/* ═══ HIDE DEFAULT GP FOOTER (replaced by mu-plugin) ═══ */
    .footer-widgets,
    .site-info {
        display: none !important;
    }

    /* ═══ RFM CUSTOM FOOTER — matches static site ═══ */
    .rfm-footer {
        background: #2a3f5e;
        border-top: 3px solid #c9a84c;
        color: #f5f2ec;
    }

    .rfm-footer-main {
        max-width: 1100px;
        margin: 0 auto;
        padding: 40px 24px 32px;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 40px;
        align-items: start;
    }

    /* Left column: branding */
    .rfm-footer-brand-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }
    .rfm-footer-logo {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .rfm-footer-brand-name {
        font-family: 'Great Vibes', cursive;
        font-size: 28px;
        color: #f5f2ec;
        margin-bottom: 0;
        -webkit-text-stroke: 0.4px rgba(245, 240, 232, 0.9);
        text-shadow:
            1px 1px 2px rgba(0, 0, 0, 0.3),
            0 0 4px rgba(184, 134, 11, 0.15),
            0 1px 0 rgba(0, 0, 0, 0.2);
    }

    .rfm-footer-tagline-line {
        font-size: 14px;
        color: #c9a84c;
        margin: 0 0 4px 0;
        line-height: 1.5;
    }

    .rfm-footer-jude-line {
        font-size: 13px;
        color: rgba(245, 240, 232, 0.65);
        margin: 0;
        line-height: 1.5;
    }

    /* Middle column: vertical rule */
    .rfm-footer-divider-col {
        display: flex;
        align-items: center;
    }

    .rfm-footer-vert-rule {
        width: 1px;
        background: linear-gradient(to bottom, transparent, #c9a84c, transparent);
        height: 80px;
    opacity: 0.4;
    }

    /* Right column: nav + contact */
    .rfm-footer-links-col {
        text-align: right;
    }

    .rfm-footer-nav-wrap {
        margin-bottom: 12px;
    }

    ul.rfm-footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0;
    }

    ul.rfm-footer-nav li {
        padding: 0;
        border: none;
    }

    ul.rfm-footer-nav li::before {
        display: none !important;
        content: none !important;
    }

    ul.rfm-footer-nav li a {
        font-size: 14px;
        font-weight: 700;
        color: #f5f2ec;
        text-decoration: none;
        padding: 2px 10px;
        border-right: 1px solid rgba(245, 240, 232, 0.25);
        line-height: 1;
        display: inline-block;
    }

    ul.rfm-footer-nav li:last-child a {
        border-right: none;
        padding-right: 0;
    }

    ul.rfm-footer-nav li a:hover {
        color: #D4A017;
    }

    .rfm-footer-email {
        margin: 0 0 4px 0;
        font-size: 14px;
    }

    .rfm-footer-email a {
        color: #c9a84c;
        text-decoration: none;
        font-weight: 600;
    }

    .rfm-footer-email a:hover {
        color: #D4A017;
    }

    .rfm-footer-copy {
        font-size: 13px;
        color: rgba(245, 240, 232, 0.7);
        margin: 0;
    }

    /* Bottom bar: motto */
    .rfm-footer-bottom {
        background: #1a2b44;
        padding: 14px 24px;
        text-align: center;
    }

    .rfm-footer-bottom p {
        margin: 0;
        font-family: 'Merriweather', Georgia, serif;
        font-size: 14px;
        font-style: italic;
        color: rgba(245, 240, 232, 0.5);
        letter-spacing: 0.02em;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .rfm-footer-main {
            grid-template-columns: 1fr;
            gap: 24px;
            text-align: center;
        }

        .rfm-footer-divider-col {
            display: none;
        }

        .rfm-footer-links-col {
            text-align: center;
        }

        ul.rfm-footer-nav {
            justify-content: center;
        }

        .rfm-footer-brand-name {
            font-size: 24px;
        }
    }
