/* FOOTER */
footer {
    padding: 24px 28px;
    border-top: 1px solid var(--border);
    background: var(--bg-surface);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 11px; color: var(--text-dim); letter-spacing: 0.06em; line-height: 2; }
.footer-center {
    display: flex;
    justify-content: center;
}
.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.footer-contact {
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 160ms ease;
}
.footer-contact:hover,
.footer-contact:focus-visible {
    color: var(--amber);
}
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: var(--text-faint);
    transition: color 160ms ease;
}
.footer-social svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.footer-social:hover,
.footer-social:focus-visible {
    color: var(--amber);
}
.footer-right { display: flex; align-items: center; gap: 16px; }
.footer-clock { font-size: 11px; color: var(--text-faint); font-variant-numeric: tabular-nums; }

@media (max-width: 760px) {
    footer {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .footer-center,
    .footer-links {
        justify-content: center;
    }
}
/* RESPONSIVE */
