/* ── Footer ─────────────────────────────────────────────── */
.bd-footer {
    background: #111;
    color: #f5f5f5;
    font-family: 'Oswald', sans-serif;
    padding: 70px 80px 36px;
    box-sizing: border-box;
}

.bd-footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Brand column */
.bd-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bd-footer__wordmark {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

.bd-footer__tagline {
    font-size: 0.85rem;
    font-weight: 200;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    max-width: 280px;
}

.bd-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.bd-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.bd-footer__social a:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Nav columns */
.bd-footer__col h4 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 0 0 20px;
}

.bd-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bd-footer__col ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.bd-footer__col ul li a:hover {
    color: #fff;
}

/* Contact block */
.bd-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.bd-footer__contact a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.bd-footer__contact a:hover {
    color: #fff;
}

/* Bottom bar */
.bd-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    gap: 20px;
    flex-wrap: wrap;
}

.bd-footer__copy {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
}

.bd-footer__legal {
    display: flex;
    gap: 24px;
}

.bd-footer__legal a {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bd-footer__legal a:hover {
    color: rgba(255,255,255,0.7);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .bd-footer {
        padding: 60px 40px 30px;
    }

    .bd-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .bd-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .bd-footer {
        padding: 50px 24px 28px;
    }

    .bd-footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bd-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
