.bc {
    --bc-ember: #b66d33;
    --bc-charcoal: #1a1714;
    --bc-dark: #2a2520;
    --bc-body: #5c5650;
    --bc-muted: #9a9590;
    --bc-brass: #c4a265;
    --bc-cream: #faf7f2;
    --bc-white: #ffffff;
    --bc-border: rgba(26, 23, 20, 0.06);

    background: var(--bc-cream);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle cross pattern */
.bc .bc__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1714'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.bc .bc__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

/* ---- Header ---- */
.bc .bc__header {
    text-align: center;
    margin-bottom: 72px;
}

.bc .bc__eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bc-ember);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bc .bc__eyebrow::before,
.bc .bc__eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--bc-ember);
    opacity: 0.3;
}

.bc .bc__heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--bc-charcoal);
    margin: 0;
}

/* ---- Bento grid layout ---- */
.bc .bc__bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
}

/* ---- Card base ---- */
.bc .bc__card {
    background: var(--bc-white);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.bc .bc__card:hover {
    box-shadow: 0 12px 40px rgba(26, 23, 20, 0.06);
    z-index: 2;
}

/* Top accent line -- grows on hover */
.bc .bc__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bc-ember);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc .bc__card:hover::before {
    width: 100%;
}

/* Card label */
.bc .bc__card-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bc-ember);
    margin-bottom: 28px;
}

.bc .bc__card-label-icon {
    width: 18px;
    height: 18px;
    color: var(--bc-ember);
    opacity: 0.5;
}

.bc .bc__card-label-icon svg {
    width: 100%;
    height: 100%;
}

/* ---- Location card ---- */
.bc .bc__address {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--bc-charcoal);
    line-height: 1.5;
    margin: 0 0 28px;
    font-style: normal;
}

.bc .bc__contact-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bc .bc__contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--bc-body);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--bc-border);
    transition: all 0.3s ease;
    position: relative;
}

.bc .bc__contact-link:last-child {
    border-bottom: none;
}

.bc .bc__contact-link:hover {
    color: var(--bc-ember);
    padding-left: 4px;
}

.bc .bc__contact-link-icon {
    width: 16px;
    height: 16px;
    color: var(--bc-muted);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.bc .bc__contact-link-icon svg {
    width: 100%;
    height: 100%;
}

.bc .bc__contact-link:hover .bc__contact-link-icon {
    color: var(--bc-ember);
}

.bc .bc__maps-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bc-ember);
    margin-top: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(232, 74, 28, 0.15);
    transition: all 0.3s ease;
}

.bc .bc__maps-cta:hover {
    border-color: var(--bc-ember);
    gap: 12px;
}

.bc .bc__maps-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.bc .bc__maps-cta:hover svg {
    transform: translateX(3px);
}

/* ---- Hours card ---- */
.bc .bc__hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc .bc__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--bc-muted);
    padding: 11px 0;
    border-bottom: 1px solid var(--bc-border);
    transition: all 0.3s ease;
}

.bc .bc__hours-row:last-child {
    border-bottom: none;
}

.bc .bc__hours-row:hover {
    color: var(--bc-charcoal);
    padding-left: 4px;
}

.bc .bc__hours-row--highlight {
    color: var(--bc-charcoal);
    font-weight: 500;
}

.bc .bc__hours-row--highlight .bc__hours-time {
    color: var(--bc-ember);
}

.bc .bc__hours-day {
    font-weight: 500;
}

.bc .bc__hours-time {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.bc .bc__hours-dot {
    flex: 1;
    height: 1px;
    margin: 0 12px;
    background: var(--bc-border);
    min-width: 20px;
}

.bc .bc__kitchen-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--bc-muted);
    margin-top: 16px;
    font-style: italic;
    opacity: 0.7;
}

/* ---- CTA card -- dark ---- */
.bc .bc__card--cta {
    background: var(--bc-charcoal);
    grid-column: 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 56px 40px;
    position: relative;
}

.bc .bc__card--cta::before {
    display: none;
}

/* Grain on dark card */
.bc .bc__cta-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Korean character deco */
.bc .bc__cta-char {
    font-size: 140px;
    font-weight: 900;
    color: #f5f0eb;
    opacity: 0.02;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}

.bc .bc__cta-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    color: var(--bc-ember);
    opacity: 0.4;
    position: relative;
    z-index: 1;
}

.bc .bc__cta-icon svg {
    width: 100%;
    height: 100%;
}

.bc .bc__cta-question {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: #f5f0eb;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.bc .bc__cta-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #9a9590;
    margin: 0 0 40px;
    line-height: 1.6;
    max-width: 240px;
    position: relative;
    z-index: 1;
}

.bc .bc__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #f5f0eb;
    background: var(--bc-ember);
    border: 1px solid var(--bc-ember);
    padding: 20px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc .bc__cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.bc .bc__cta-btn:hover::after {
    left: 100%;
}

.bc .bc__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(232, 74, 28, 0.25);
}

.bc .bc__cta-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.bc .bc__cta-btn:hover svg {
    transform: translateX(4px);
}

/* Ember glow under CTA button */
.bc .bc__cta-glow {
    width: 120px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(232, 74, 28, 0.2), transparent 70%);
    filter: blur(20px);
    margin-top: 20px;
    position: relative;
    z-index: 0;
    animation: bcGlow 3s ease-in-out infinite;
}

@keyframes bcGlow {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* ---- Instagram mini-card (spans 2 cols bottom) ---- */
.bc .bc__card--social {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
}

.bc .bc__social-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bc .bc__social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bc-cream);
    border-radius: 50%;
    color: var(--bc-ember);
    transition: all 0.4s ease;
}

.bc .bc__social-icon svg {
    width: 18px;
    height: 18px;
}

.bc .bc__social-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--bc-body);
}

.bc .bc__social-handle {
    font-weight: 600;
    color: var(--bc-charcoal);
}

.bc .bc__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bc-ember);
    transition: gap 0.3s ease;
}

.bc .bc__social-link:hover {
    gap: 12px;
}

.bc .bc__social-link svg {
    width: 14px;
    height: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .bc .bc__bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bc .bc__card--cta {
        grid-column: auto;
        grid-row: auto;
    }
    .bc .bc__card--social {
        grid-column: 1 / -1;
    }
    .bc {
        padding: 96px 0 80px;
    }
}

@media (max-width: 768px) {
    .bc .bc__bento {
        grid-template-columns: 1fr;
    }
    .bc .bc__inner {
        padding: 0 24px;
    }
    .bc .bc__card {
        padding: 32px 24px;
    }
    .bc .bc__card--cta {
        padding: 40px 24px;
    }
    .bc .bc__card--social {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}
