/* --- FOOTER --- */
.footer { min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    border-top: 1px solid var(--line);
}
.footer-content { width: 100%;
    text-align: center;
}
.footer-label { color: #888;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}
.giant-email {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 8rem);
    text-decoration: none;
    color: var(--text);
    display: block;
    margin-bottom: 4rem;
    transition: color 0.3s;
}
.giant-email:hover { color: var(--accent);
}
.footer-bottom { display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}