
footer {
    background: var(--text-primary);
    color: var(--text-light);
    padding: 5rem 0 3rem;
    border-top: 1px solid var(--primary-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--bg-cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-light);
}