footer {
    border-top: 1px solid var(--line);
    padding: 36px 0 28px;
    color: var(--ink-soft);
    font-size: 13px;
}

.foot-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.foot-brand .brand {
    font-size: 16px;
}

.foot-brand p {
    margin: 14px 0 0;
    max-width: 36ch;
    color: var(--ink-soft);
    font-size: 13px;
}

.foot-cols {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.foot-cols h5 {
    color: var(--ink);
    font-size: 13px;
    margin: 0 0 10px;
    font-weight: 600;
}

.foot-cols ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.foot-cols a {
    color: var(--ink-mute);
}

.foot-cols a:hover { color: var(--ink); }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    color: var(--ink-soft);
    flex-wrap: wrap;
    gap: 8px;
}

.foot-bottom .mono {
    font-family: var(--font-mono);
}

@media (max-width: 640px) {
    .foot-cols { gap: 32px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
}
