.footer {
    background: var(--black);
    color: rgba(255,255,255,.5);
    padding: 64px 0 32px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo img {
    height: 64px;
    width: auto;
    filter: brightness(10);
}

.footer__logo-text {
    font-family: var(--font-mono);
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

.footer__logo-text span {
    color: var(--green);
}

.footer__tagline {
    font-size: .82rem;
    line-height: 1.6;
}

.footer__col h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 16px;
}

.footer__col p,
.footer__col a {
    font-size: .85rem;
    display: block;
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--green);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: .75rem;
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a:hover {
    color: var(--green);
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
