/* Footer — navy, quiet mono links */
footer {
    background: var(--navy);
    border-top: 1px solid var(--navy-line);
    padding: 2rem 1.5rem;
    color: var(--mist);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-left img {
    width: 18px;
    height: 18px;
}

.footer-left span {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    color: var(--mist);
}

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

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-credit {
    max-width: 1200px;
    margin: 1.25rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--navy-line);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    color: color-mix(in srgb, var(--mist) 65%, transparent);
    text-align: center;
}

.footer-credit a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--mist) 40%, transparent);
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--mist);
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
}
