/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 3.5rem clamp(1.25rem, 5vw, 3.5rem) 2rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-grid-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.85rem;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-name {
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.footer-powered {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-col-title {
    font-family: "Outfit", sans-serif;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-link {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.25);
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 920px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}