/* =====================================================
   FOOTER
===================================================== */

footer {
    margin-top: 1rem;
    padding: 0 1.5rem 1.5rem;
}

footer p {
    white-space: nowrap;
}

.footer-glass {
    max-width: 1750px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s;
}

.footer-col ul li a:hover {
    color: var(--brand-gold-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    footer {
        margin-top: 0;
        padding: 0 1rem 1rem;
    }

    footer p {
        white-space: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}