/* ── Fulgira Global Footer ─────────────────────────────────────────── */
/* All selectors scoped under .fulgira-footer to avoid conflicts with page styles */

.fulgira-footer {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem 2.5rem;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 116, 0.02) 100%);
}

.fulgira-footer .footer-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.fulgira-footer .footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.fulgira-footer .footer-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201, 184, 168, 0.45);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    opacity: 1;
}

.fulgira-footer .footer-wordmark:hover {
    color: rgba(212, 165, 116, 0.7);
}

.fulgira-footer .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.88rem;
    font-style: italic;
    color: rgba(201, 184, 168, 0.3);
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.fulgira-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fulgira-footer .footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(212, 165, 116, 0.55);
    margin-bottom: 1.2rem;
}

.fulgira-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fulgira-footer .footer-col ul li {
    margin-bottom: 0.65rem;
}

.fulgira-footer .footer-col ul li a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(240, 235, 228, 0.4);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
    border-bottom: none;
}

.fulgira-footer .footer-col ul li a:hover {
    color: rgba(212, 165, 116, 0.75);
    border-bottom: none;
}

.fulgira-footer .footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 165, 116, 0.08), transparent);
    margin-bottom: 2rem;
}

.fulgira-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fulgira-footer .footer-copy {
    font-size: 0.68rem;
    color: rgba(201, 184, 168, 0.2);
    letter-spacing: 0.08em;
}

.fulgira-footer .footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fulgira-footer .footer-legal-links a {
    font-size: 0.68rem;
    color: rgba(201, 184, 168, 0.22);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.25s ease;
    border-bottom: none;
}

.fulgira-footer .footer-legal-links a:hover {
    color: rgba(212, 165, 116, 0.55);
}

/* ── Responsive ── */
@media (max-width: 800px) {
    .fulgira-footer .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .fulgira-footer .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .fulgira-footer {
        padding: 3rem 1.5rem 2rem;
    }

    .fulgira-footer .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fulgira-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
