/* =========================
   Footer
========================= */
footer {
    border-top: 1px solid var(--color-border);
    padding: 2.5rem 0 1.25rem;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 150px;
    height: 120px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info {
    color: var(--color-muted);
}

.contact-info a:hover {
    color: var(--color-text);
}

.footer-socials h4 {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
}

.footer-socials a {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-muted);
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--color-text);
    text-decoration: underline;
    font-weight: 600;
}

.illustration-credit {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-top: 1rem;
}

.illustration-credit a {
    text-decoration: underline;
}

.illustration-credit a:hover {
    color: var(--color-text);
    font-weight: 600;
}

.footer-copy {
    display: block;
    text-align: center;
    color: var(--color-muted);
}