.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, var(--ink) 100%);
    color: var(--parchment);
    padding: 5rem 0 3rem;
    text-align: center;
    border-top: 1px solid rgba(184, 151, 58, 0.15);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--parchment);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.footer-links a:hover::before {
    width: 100%;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #8a8580;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer {
        padding: 3.5rem 0 2.5rem;
    }

    .footer-links {
        gap: 2rem;
        flex-direction: column;
    }

    .footer-links a {
        display: inline-block;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}