/* ============================================================
   FOOTER — footer.css
   ============================================================ */

.bcm-footer {
    margin-top: 80px;
    padding: 60px 0 32px;
}

/* 4-column grid */
.bcm-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.bcm-footer__col {}

.bcm-footer__col-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bcm-text-muted);
    margin-bottom: 16px;
}

.bcm-footer__col .widget { margin-bottom: 12px; }

.bcm-footer__col .widget-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    color: var(--bcm-text-muted);
}

.bcm-footer__col a {
    display: block;
    color: var(--bcm-text);
    font-size: 0.88rem;
    padding: 4px 0;
    text-decoration: none;
    transition: color var(--bcm-transition);
}

.bcm-footer__col a:hover {
    color: var(--bcm-primary);
    text-decoration: none;
}

/* Divider */
.bcm-footer__divider {
    border: none;
    border-top: 1px solid var(--bcm-border, #e0e0e0);
    margin-bottom: 24px;
}

/* Bottom bar */
.bcm-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.bcm-footer__copy {
    font-size: 0.82rem;
    color: var(--bcm-text-muted);
}

.bcm-footer__copy a {
    color: var(--bcm-text);
    font-weight: 600;
    text-decoration: none;
}

.bcm-footer__copy a:hover { color: var(--bcm-primary); }

.bcm-footer__nav .bcm-footer__menu {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bcm-footer__menu a {
    font-size: 0.82rem;
    color: var(--bcm-text-muted);
    text-decoration: none;
    transition: color var(--bcm-transition);
}

.bcm-footer__menu a:hover { color: var(--bcm-primary); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .bcm-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .bcm-footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .bcm-footer__bottom { flex-direction: column; align-items: flex-start; }
}
