/* ── FOOTER ── */
footer {
    background: var(--black);
    color: white;
    padding: 60px 8% 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand .nav-logo-text {
    color: white;
    font-size: 28px;
}

.footer-brand p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

.footer-brand img {
    height: 200px;
    width: 200px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    align-items: baseline;
}

.footer-col a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
    text-transform: uppercase;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom span {
    color: var(--red);
}

.footer-col .nav-links .menu-item {
    background: none;
}