/* FOOTER */
footer.fstrip {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 2.5rem 3rem;
    transition: background 0.4s ease;
}

.fstrip-in {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.fbrand-mini a {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--text);
    text-decoration: none;
    transition: opacity .3s;
}

.fbrand-mini a:hover {
    opacity: 0.7;
}

.fcopy {
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    footer.fstrip {
        padding: 2rem 1.5rem;
    }

    .fstrip-in {
        flex-direction: column;
        gap: .8rem;
        text-align: center;
    }
}