
    :root {
        --gold: #b8924a;
        --gold-dark: #9a7a3a;
        --f-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
        --f-body: 'Inter', 'Segoe UI', sans-serif;
        --f-label: 'Manrope', 'Segoe UI', sans-serif;
        --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    }

    .mf-footer {
        background: #0a0806;
        color: #d4d0cb;
        font-family: var(--f-body);
        padding: 70px 48px 30px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
    }

    .mf-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: var(--gold);
        border-radius: 1px;
    }

    .mf-footer-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.4fr 0.9fr 1.2fr;
        gap: 40px 60px;
    }

    /* Brand Column */
    .mf-footer-brand .brand-logo {
        font-family: var(--f-heading);
        font-size: 28px;
        font-weight: 500;
        color: #fff;
        letter-spacing: 1px;
        margin-bottom: 14px;
        line-height: 1.1;
        text-transform: uppercase;
    }
    .mf-footer-brand .brand-logo span {
        font-size: 16px;
        font-weight: 300;
        vertical-align: super;
        color: var(--gold);
        letter-spacing: 0.5px;
    }
    .mf-footer-brand p {
        font-size: 13px;
        line-height: 1.7;
        color: #9f9a93;
        max-width: 260px;
        margin-bottom: 22px;
    }
    .mf-footer-brand .social-row {
        display: flex;
        gap: 16px;
    }
    .mf-footer-brand .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(184, 146, 74, 0.3);
        color: var(--gold);
        transition: all 0.35s var(--ease-out-expo);
        cursor: pointer;
        background: transparent;
    }
    .mf-footer-brand .social-icon:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #0a0806;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(184, 146, 74, 0.3);
    }
    .mf-footer-brand .social-icon--pending {
        cursor: default;
        pointer-events: none;
        opacity: 0.55;
    }
    .mf-footer-brand .social-icon--pending:hover {
        background: transparent;
        border-color: rgba(184, 146, 74, 0.3);
        color: var(--gold);
        transform: none;
        box-shadow: none;
    }
    .mf-footer-brand .social-icon svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    /* Links Columns */
    .mf-footer-links h4,
    .mf-footer-contact h4 {
        font-family: var(--f-label);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 22px;
    }
    .mf-footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mf-footer-links ul li {
        margin-bottom: 10px;
    }
    .mf-footer-links ul li a {
        text-decoration: none;
        color: #9f9a93;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
        position: relative;
        padding-left: 0;
        display: inline-block;
    }
    .mf-footer-links ul li a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.4s var(--ease-out-expo);
    }
    .mf-footer-links ul li a:hover {
        color: #fff;
    }
    .mf-footer-links ul li a:hover::after {
        width: 100%;
    }

    /* Contact Column */
    .mf-footer-contact p {
        font-size: 13px;
        color: #9f9a93;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    .mf-footer-contact p strong {
        color: #d4d0cb;
        font-weight: 500;
    }
    .mf-footer-contact .contact-hours {
        font-size: 12px;
        color: #7a746e;
        margin-bottom: 18px;
    }
    .mf-footer-contact .contact-detail {
        font-size: 13px;
        color: #d4d0cb;
        display: block;
        margin-bottom: 6px;
        text-decoration: none;
        transition: color 0.3s;
    }
    .mf-footer-contact .contact-detail:hover {
        color: var(--gold);
    }

    /* Bottom Bar */
    .mf-footer-bottom {
        max-width: 1280px;
        margin: 50px auto 0;
        border-top: 1px solid rgba(255,255,255,0.07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        font-size: 11px;
        color: #7a746e;
        letter-spacing: 0.6px;
    }
    .mf-footer-bottom .copyright,
    .mf-footer-bottom .footer-credit {
        font-family: var(--f-label);
        width: 100%;
        text-align: center;
    }
    .mf-footer-bottom .footer-credit {
        margin-top: -6px;
        font-size: 10px;
        letter-spacing: 0.5px;
        color: #6f6a64;
    }
    .mf-footer-bottom .footer-credit a {
        color: #9f9a93;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .mf-footer-bottom .footer-credit a:hover {
        color: var(--gold);
    }

    /* Responsive */
    @media (max-width: 1000px) {
        .mf-footer-inner {
            grid-template-columns: 1fr 1fr;
            gap: 40px 30px;
        }
    }
    @media (max-width: 768px) {
        .mf-footer {
            padding: 48px 20px 24px;
        }

        .mf-footer-inner {
            grid-template-columns: 1fr 1fr;
            gap: 28px 20px;
        }

        .mf-footer-brand {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 600px) {
        .mf-footer {
            padding: 44px 18px 22px;
        }

        .mf-footer-inner {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .mf-footer-brand p {
            max-width: 100%;
        }

        .mf-footer-bottom {
            flex-direction: column;
            text-align: center;
            margin-top: 36px;
            padding-top: 20px;
        }

        .mf-footer-links h4,
        .mf-footer-contact h4 {
            margin-bottom: 14px;
        }
    }
