/* Shared NobleLex site footer */

.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.03));
    position: relative;
    z-index: 1;
}

.site-footer-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 56px 0 28px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px 32px;
}

.footer-brand img.logo-engraved {
    height: 40px;
    width: 40px;
    border-radius: 0 !important;
    object-fit: contain;
    box-shadow: none;
    filter:
        drop-shadow(-0.5px -0.5px 0.5px rgba(0,0,0,0.35))
        drop-shadow(0.5px 0.5px 0.5px rgba(255,255,255,0.12));
    transition: filter 0.35s cubic-bezier(.2,.8,.2,1), transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.footer-brand img.logo-engraved:hover {
    transform: scale(1.06);
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    text-decoration: none;
    color: inherit;
}

.footer-brand-row strong {
    font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 32ch;
    font-weight: 300;
}

.footer-col h4 {
    font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-dim);
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--gold-2);
}

.footer-bottom {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 36px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    opacity: 0.75;
}

@media (max-width: 900px) {
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
