.mdh-footer {
background: var(--mdh-charcoal);
padding: 5rem 0 0;
transition: background 0.4s;
}

[data-mdh-theme="dark"] .mdh-footer {
background: #0D0D0B;
}

.mdh-footer-grid {
display: grid;
grid-template-columns: 1.8fr 1fr 1fr 1fr;
gap: 4rem;
padding-bottom: 4rem;
border-bottom: 1px solid rgba(240,235,227,0.08);
}

.mdh-footer-brand {}

.mdh-footer-logo {
display: flex;
flex-direction: column;
gap: 0.15rem;
text-decoration: none;
margin-bottom: 1.5rem;
}

.mdh-footer-logo-name {
font-family: 'Playfair Display', serif;
font-size: 1.6rem;
font-weight: 900;
color: #F0EBE3;
letter-spacing: -0.02em;
}

.mdh-footer-logo-tagline {
font-size: 0.58rem;
font-weight: 700;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--mdh-amber);
}

.mdh-footer-desc {
font-size: 0.82rem;
color: rgba(240,235,227,0.45);
line-height: 1.75;
max-width: 280px;
margin-bottom: 2rem;
}

.mdh-footer-socials {
display: flex;
gap: 0.75rem;
}

.mdh-social-link {
width: 38px;
height: 38px;
border-radius: 8px;
border: 1px solid rgba(240,235,227,0.1);
display: flex;
align-items: center;
justify-content: center;
color: rgba(240,235,227,0.45);
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s;
}

.mdh-social-link:hover {
background: var(--mdh-accent);
border-color: var(--mdh-accent);
color: var(--mdh-white);
transform: translateY(-2px);
}

.mdh-footer-col-title {
font-size: 0.68rem;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--mdh-amber);
margin-bottom: 1.5rem;
}

.mdh-footer-links {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.mdh-footer-links a {
font-size: 0.85rem;
color: rgba(240,235,227,0.5);
text-decoration: none;
transition: color 0.3s;
}

.mdh-footer-links a:hover {
color: #F0EBE3;
}

.mdh-footer-contact-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
font-size: 0.82rem;
color: rgba(240,235,227,0.5);
line-height: 1.5;
margin-bottom: 0.85rem;
}

.mdh-footer-contact-item i {
color: var(--mdh-amber);
margin-top: 2px;
flex-shrink: 0;
font-size: 0.85rem;
}

.mdh-footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.75rem 0;
gap: 1rem;
flex-wrap: wrap;
}

.mdh-footer-copy {
font-size: 0.75rem;
color: rgba(240,235,227,0.3);
}

.mdh-footer-copy span {
color: var(--mdh-amber);
}

.mdh-footer-legal {
display: flex;
gap: 2rem;
}

.mdh-footer-legal a {
font-size: 0.73rem;
color: rgba(240,235,227,0.3);
text-decoration: none;
transition: color 0.3s;
}

.mdh-footer-legal a:hover {
color: rgba(240,235,227,0.7);
}

@media (max-width: 900px) {
    .mdh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .mdh-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mdh-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .mdh-footer-legal {
        gap: 1.25rem;
    }
}