/* ─── Footer ─────────────────────────────────────────────── */

.site-footer {
    background-color: #1D1D1D;
    border-top: 1px solid var(--color-border);
    padding: var(--space-md) 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-md) var(--space-lg);
}

/* ── Logo ─────────────────────────────────────────────────── */
.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-site-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ── Nav ──────────────────────────────────────────────────── */
.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav__column {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: var(--space-sm) var(--space-lg);
    align-items: start;
}

.footer-nav__column a {
    font-family: 'Degular Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #C9C9C9;
    transition: opacity 0.2s ease;
}

.footer-nav__column a:hover {
    opacity: 0.5;
}

/* ── Socials ──────────────────────────────────────────────── */
.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
}

.footer-socials__heading,
.footer-copyright {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.footer-socials__heading { color: var(--color-subtle); }
.footer-copyright        { color: #666666; }

.footer-socials__list {
    list-style: none;
    display: flex;
    gap: var(--space-xs);
}

.footer-socials__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-muted);
    border-radius: 50%;
    color: var(--color-text);
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.footer-socials__icon:hover {
    border-color: var(--color-text);
    opacity: 1;
}

/* ── Responsive ───────────────────────────────────────────── */
@media ( max-width: 900px ) {
    .site-footer {
        background-color: #000000;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: start;
        text-align: left;
        gap: var(--space-md);
        padding: var(--space-md) 0;
    }

    .footer-logo img {
        width: 75px;
        height: auto;
    }

    .footer-socials {
        align-items: flex-start;
    }
}
