/* ── Footer ── */
footer {
    background: var(--ink);
    color: rgba(255,255,255,.6);
    padding: 0;
    text-align: left;
    border-top: none;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

@media (max-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-links {
    display: grid;
    grid-template-columns:
    repeat(3, 1fr);
    gap: 24px;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.6) !important;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .15s;
}

.footer-links a:hover {
    color: #fff !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom a {
    color: rgba(255,255,255,.5) !important;
}

.footer-bottom a:hover {
    color: #fff !important;
}