@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&display=swap');

.bcf-root {
    background: #f5f4f1;
    border-top: 1px solid #e2e0d8;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2c2b28;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
}

.bcf-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.bcf-upper {
    padding: 56px 0 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Logo ── */
.bcf-logo-link {
    display: inline-block;
    margin-bottom: 20px;
    line-height: 0;
}

.bcf-logo {
    width: 120px;
    height: auto;
    display: block;
    opacity: 0.85;
}

.bcf-tagline {
    font-size: 13px;
    font-weight: 300;
    color: #7a786e;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 220px;
}

.bcf-socials {
    display: flex;
    gap: 10px;
}

.bcf-social {
    width: 32px;
    height: 32px;
    border: 1px solid #d5d3cb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5f5e58;
    transition: border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.bcf-social:hover {
    border-color: #9a9890;
    color: #1a1917;
}

.bcf-social svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bcf-col {
    display: block;
}

.bcf-col-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9a9890;
    margin: 0 0 16px;
    line-height: 1;
}

.bcf-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bcf-col ul li a {
    font-size: 13.5px;
    font-weight: 300;
    color: #4a4940;
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s ease;
    display: block;
}

.bcf-col ul li a:hover {
    color: #1a1917;
}

.bcf-divider {
    width: 100%;
    height: 1px;
    background: #e2e0d8;
}

.bcf-lower {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.bcf-copy {
    font-size: 12px;
    font-weight: 300;
    color: #9a9890;
}

.bcf-since {
    font-size: 12px;
    font-weight: 300;
    color: #c2c0b7;
    letter-spacing: 0.04em;
}

.bcf-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.bcf-legal a {
    font-size: 12px;
    font-weight: 300;
    color: #9a9890;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bcf-legal a:hover {
    color: #4a4940;
}

@media (max-width: 900px) {
    .bcf-upper {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 40px 0 36px;
    }
    .bcf-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .bcf-inner {
        padding: 0 20px;
    }
    .bcf-upper {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .bcf-lower {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}