/* ==========================================
   BAPSANG — Contact & Reservering widget (Ember & Steel)
========================================== */
.bcf {
    --bcf-ember: #b66d33;
    --bcf-brass: #c4a265;
    --bcf-charcoal: #1a1714;
    --bcf-graphite: #2a2520;
    --bcf-ash: #f5f0eb;
    --bcf-smoke: #9a9590;

    position: relative;
    padding: 128px 0;
    background: var(--bcf-charcoal);
    overflow: hidden;
}

.bcf * { box-sizing: border-box; }

.bcf__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(620px circle at 15% 0%, rgba(182, 109, 51, 0.10), transparent 60%),
        radial-gradient(520px circle at 85% 100%, rgba(196, 162, 101, 0.07), transparent 60%);
}

.bcf__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Header */
.bcf__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.bcf__eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bcf-brass);
    margin: 0 0 18px;
}

.bcf__heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--bcf-ash);
    margin: 0 0 20px;
}

.bcf__hl {
    color: var(--bcf-ember);
    font-style: italic;
}

.bcf__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--bcf-smoke);
    margin: 0;
}

/* Tabs */
.bcf__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.bcf__tabs { text-align: center; }

.bcf__tablist {
    display: inline-flex;
    gap: 8px;
    padding: 7px;
    margin: 0 auto 36px;
    background: rgba(245, 240, 235, 0.04);
    border: 1px solid rgba(245, 240, 235, 0.09);
    border-radius: 16px;
}

.bcf__tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--bcf-ash);
    background: transparent;
    border-radius: 11px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.bcf__tab svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.bcf__tab:hover { color: var(--bcf-brass); }

/* Panels (active panel toggled via per-instance inline style) */
.bcf__panel { display: none; }
.bcf__single { display: block; }

/* Embedded CF7 form — sits as a cream card on the dark section */
.bcf .wpcf7 {
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .bcf { padding: 80px 0; }
}

@media (max-width: 640px) {
    .bcf__inner { padding: 0 20px; }
    .bcf__tablist {
        display: flex;
        width: 100%;
    }
    .bcf__tab {
        flex: 1;
        justify-content: center;
        padding: 13px 12px;
    }
}
