/* ============================================================
   BRAVICASTO Footer Styles
   ============================================================ */

.bc-footer {
    background: var(--bc-forest);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.bc-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

/* Brand Column */
.bc-footer__brand .bc-logo { margin-bottom: 12px; display: inline-block; }

.bc-footer__tagline {
    font-family: var(--bc-font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bc-copper);
    margin-bottom: 16px;
}

.bc-footer__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 300px;
}

/* Links Column */
.bc-footer h4 {
    font-family: var(--bc-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bc-white);
    margin-bottom: 20px;
}

.bc-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    list-style: none;
}
.bc-footer__links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}
.bc-footer__links a:hover { color: var(--bc-copper); }

/* Contact Column */
.bc-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
}
.bc-footer__contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--bc-copper);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}
.bc-footer__contact-item a { color: rgba(255,255,255,0.6); }
.bc-footer__contact-item a:hover { color: var(--bc-copper); }

/* Social Icons */
.bc-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.bc-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s ease;
}
.bc-footer__social a:hover {
    border-color: var(--bc-copper);
    color: var(--bc-copper);
    background: rgba(201,126,42,0.1);
}
.bc-footer__social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Bottom Bar */
.bc-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}
.bc-footer__bottom-links {
    display: flex;
    gap: 24px;
}
.bc-footer__bottom-links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}
.bc-footer__bottom-links a:hover { color: var(--bc-copper); }

/* === Responsive === */
@media (max-width: 992px) {
    .bc-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .bc-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .bc-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
