:root {
    --bc-brown: #7f401f;
    --bc-brown-dark: #502913;
    --bc-tan: #a06d51;
    --bc-tan-light: #c9a66b;
    --bc-accent: #574200;
    --bc-pink: #f495be;
    --bc-pink-soft: #f8dde0;
    --bc-gray: #666666;
    --bc-gray-light: #999999;
    --bc-white: #ffffff;
    --bc-max: 1280px;
    --font-body: 'Open Sans', Arial, sans-serif;
    --font-sans: 'PT Sans', Helvetica, Arial, sans-serif;
    --font-display: 'Patua One', display;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--bc-gray);
    background: var(--bc-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

/* ─── HEADER ─── */
.bc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bc-white);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.bc-header-inner {
    max-width: var(--bc-max);
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-logo-img {
    width: auto;
    height: auto;
    max-width: 343px;
    max-height: 114px;
    display: block;
}

.bc-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.bc-logo-text .bc-logo-script {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--bc-tan);
}

.bc-logo-text .bc-logo-serif {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bc-brown-dark);
}

.bc-logo-line {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.bc-logo-script {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--bc-brown-dark);
    line-height: 1;
}

.bc-logo-serif {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--bc-brown-dark);
    position: relative;
    line-height: 1;
}

.bc-logo-accent {
    position: relative;
}

.bc-logo-accent::before {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    background: var(--bc-pink);
    border-radius: 50%;
    left: -14px;
    top: 50%;
    transform: translateY(-55%);
    z-index: -1;
    opacity: 0.85;
}

.bc-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.bc-nav > a,
.bc-nav-dropdown > a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--bc-tan);
    text-transform: none;
}

.bc-nav a.is-active,
.bc-nav a:hover { color: var(--bc-accent); }

.bc-caret { font-size: 10px; margin-left: 2px; }

.bc-staff-link {
    font-size: 11px !important;
    color: var(--bc-gray-light) !important;
    border: 1px solid rgba(201,166,107,0.5);
    padding: 6px 14px;
    border-radius: 2px;
}

.bc-staff-link:hover { color: var(--bc-brown) !important; border-color: var(--bc-brown); }

.bc-nav-dropdown { position: relative; }

.bc-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 190px;
    background: var(--bc-white);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s ease;
}

.bc-nav-dropdown:hover .bc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bc-dropdown a {
    display: block;
    padding: 8px 22px;
    font-size: 12px;
    color: var(--bc-gray);
}

.bc-dropdown a:hover { color: var(--bc-brown); background: #fafafa; }

.bc-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.bc-nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--bc-brown);
}

/* ─── HERO ─── */
.bc-hero {
    background: var(--bc-white) url('../images/hero-section-bg.png') no-repeat;
    background-size: initial;
    margin-top: 6%;
    padding-bottom: 54px;
    overflow: hidden;
}

.bc-hero-head {
    width: 90%;
    max-width: 1152px;
    margin: 0 auto;
    background: url('../images/hero-row-bg.jpg') no-repeat left top;
    background-size: initial;
}

.bc-hero-head-inner {
    position: relative;
    padding: 80px 40px 0;
    min-height: 260px;
}

.bc-hero-accent {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    min-height: 220px;
    background: url('../images/hero-column-bg.png') no-repeat right top;
    background-size: initial;
    pointer-events: none;
}

.bc-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.bc-hero-text h1 {
    font-family: var(--font-display);
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--bc-brown);
    margin-bottom: 0;
    padding-bottom: 10px;
}

.bc-since {
    font-family: var(--font-sans);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bc-gray);
}

.bc-hero-body-inner {
    max-width: var(--bc-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
    padding: 27px 40px 0;
    align-items: start;
}

.bc-hero-cake-wrap {
    grid-column: 2;
}

.bc-hero-cake {
    width: 500px;
    max-width: 100%;
    height: auto;
    display: block;
}

.bc-hours {
    grid-column: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 20px;
}

.bc-hours h3 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    text-transform: none;
    color: var(--bc-tan);
    margin-bottom: 0;
}

.bc-hours p {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    color: var(--bc-gray);
}

/* ─── SECTIONS ─── */
.bc-section {
    padding: 80px 40px;
    background: var(--bc-white);
}

.bc-section-tight {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bc-section-inner {
    max-width: var(--bc-max);
    margin: 0 auto;
    width: 100%;
}

/* Shared 2-column split (About, Menu header) */
.bc-split-row {
    display: grid;
    grid-template-columns: minmax(280px, 42%) minmax(320px, 58%);
    gap: 48px;
    align-items: start;
}

.bc-split-left {
    padding-right: 20px;
}

.bc-split-right {
    padding-top: 28px;
}

.bc-heading-left {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.4;
}

.bc-rule {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: 24px;
    width: 100%;
    max-width: 320px;
}

.bc-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bc-tan);
    margin-bottom: 14px;
    line-height: 1.4;
}

.bc-heading {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--bc-brown-dark);
    margin-bottom: 0;
}

.bc-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    color: var(--bc-gray);
    margin: 0;
}

/* Services layout: image left, cards right */
.bc-services-layout {
    display: grid;
    grid-template-columns: minmax(260px, 38%) minmax(380px, 62%);
    gap: 40px;
    align-items: start;
}

.bc-services-visual {
    position: sticky;
    top: 100px;
}

.bc-services-collage {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.bc-services-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bc-services-intro {
    margin-bottom: 28px;
}

.bc-service-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px 22px;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--bc-white);
}

.bc-service-card-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.bc-service-card-photo {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: 2px;
}

.bc-service-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: var(--bc-brown-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.bc-service-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--bc-gray);
    margin: 0;
}

/* Feature boxes */
.bc-features-wrap {
    margin-top: 50px;
    padding-top: 10px;
}

.bc-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bc-feature-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 28px 20px;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.bc-feature-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.bc-feature-box h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--bc-brown-dark);
    line-height: 1.35;
    margin: 0;
}

/* Menu header */
.bc-menu-header {
    margin-bottom: 48px;
}

.bc-menu-header .bc-split-right {
    padding-top: 32px;
}

.bc-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.bc-menu-item {
    text-align: left;
}

.bc-menu-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 22px;
    background: #f5f5f5;
}

.bc-menu-item h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--bc-brown-dark);
    margin-bottom: 12px;
}

.bc-menu-item p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--bc-gray);
}

.bc-btn {
    display: inline-block;
    margin-top: 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bc-brown);
    border-bottom: 2px solid var(--bc-brown);
    padding-bottom: 4px;
}

.bc-btn:hover { color: var(--bc-tan); border-color: var(--bc-tan); }

.bc-center { text-align: center; }

/* Testimonials */
.bc-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.bc-quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: var(--bc-brown-dark);
}

.bc-quote::before {
    content: '\201C';
    display: block;
    font-size: 48px;
    line-height: 1;
    color: var(--bc-pink);
    margin-bottom: 10px;
    font-style: normal;
}

/* Instagram */
.bc-insta-header {
    text-align: center;
    margin-bottom: 40px;
}

.bc-insta-handle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--bc-brown);
    margin-top: 10px;
}

.bc-insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bc-insta-item {
    position: relative;
    overflow: hidden;
}

.bc-insta-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bc-insta-item:hover img { transform: scale(1.05); }

.bc-insta-caption {
    font-size: 12px;
    line-height: 1.5;
    color: var(--bc-gray-light);
    margin-top: 8px;
}

.bc-insta-actions {
    text-align: center;
    margin-top: 36px;
}

.bc-insta-actions a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bc-brown);
    margin: 0 16px;
}

/* ─── PRODUCTS PAGE ─── */
.bc-page-hero {
    text-align: center;
    padding: 70px 40px 50px;
    background: var(--bc-white);
}

.bc-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--bc-brown-dark);
}

.bc-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0 60px;
}

.bc-tabs a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bc-tan);
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

.bc-tabs a:hover,
.bc-tabs a.active {
    color: var(--bc-brown);
    border-bottom-color: var(--bc-brown);
}

.bc-menu-block { margin-bottom: 56px; }

.bc-menu-block h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--bc-brown-dark);
    margin-bottom: 28px;
}

.bc-menu-block h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--bc-brown);
    margin: 24px 0 10px;
}

.bc-price-list {
    list-style: none;
}

.bc-price-list li {
    font-size: 15px;
    line-height: 1.9;
    color: var(--bc-gray);
    padding: 4px 0;
}

.bc-note {
    margin-top: 50px;
    padding: 24px 28px;
    background: var(--bc-pink-soft);
    font-size: 14px;
    line-height: 1.75;
    color: var(--bc-brown);
}

.bc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bc-table th,
.bc-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.bc-table th {
    font-weight: 700;
    color: var(--bc-brown);
    background: #fafafa;
}

/* ─── CONTACT ─── */
.bc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.bc-contact-grid h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--bc-brown-dark);
    margin: 28px 0 12px;
}

.bc-contact-grid h3:first-child { margin-top: 0; }

.bc-form input,
.bc-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.12);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--bc-gray);
    background: var(--bc-white);
}

.bc-form textarea { min-height: 150px; resize: vertical; }

.bc-form button {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--bc-brown-dark);
    color: var(--bc-white);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
}

.bc-form button:hover { background: var(--bc-brown); }

.bc-alert {
    color: #2d6a2d;
    margin-bottom: 16px;
    font-size: 14px;
}

/* ─── FOOTER ─── */
.bc-footer {
    background: var(--bc-white);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 70px 40px 50px;
}

.bc-footer-grid {
    max-width: var(--bc-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.bc-footer-col h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--bc-brown-dark);
    margin-bottom: 14px;
}

.bc-footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--bc-gray);
}

.bc-social {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.bc-social a {
    font-size: 13px;
    font-weight: 600;
    color: var(--bc-tan);
}

.bc-social a:hover { color: var(--bc-brown); }

.bc-footer-login {
    margin-top: 18px;
    font-size: 12px;
}

.bc-footer-login a {
    color: var(--bc-gray-light);
    text-decoration: underline;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .bc-split-row,
    .bc-services-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bc-split-right,
    .bc-menu-header .bc-split-right {
        padding-top: 0;
    }

    .bc-services-visual {
        position: static;
        max-width: 420px;
        margin: 0 auto;
    }

    .bc-menu-grid,
    .bc-testimonials,
    .bc-insta-grid { grid-template-columns: repeat(2, 1fr); }
    .bc-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bc-header-inner { padding: 16px 20px; }
    .bc-section { padding: 50px 20px; }
    .bc-section-tight { padding: 40px 20px; }
    .bc-heading,
    .bc-heading-left { font-size: 26px; }

    .bc-hero { margin-top: 3%; }
    .bc-hero-head { width: 100%; }
    .bc-hero-head-inner { padding-top: 35%; min-height: 0; }
    .bc-hero-text h1 { font-size: 40px; }
    .bc-hero-body-inner {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .bc-hero-cake-wrap { grid-column: 1; text-align: center; }
    .bc-hero-cake { margin: 0 auto; max-width: 400px; }
    .bc-hours { grid-column: 1; }

    .bc-contact-grid,
    .bc-footer-grid { grid-template-columns: 1fr; }

    .bc-menu-grid,
    .bc-testimonials,
    .bc-insta-grid,
    .bc-features { grid-template-columns: 1fr; }

    .bc-service-card {
        grid-template-columns: 56px 1fr;
        padding: 18px 16px;
    }

    .bc-nav-toggle { display: flex; }

    .bc-nav {
        position: fixed;
        top: 0; right: 0;
        width: 280px;
        height: 100vh;
        background: var(--bc-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px 28px;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        gap: 22px;
    }

    body.bc-nav-open .bc-nav { transform: translateX(0); }

    .bc-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 12px;
        display: none;
    }

    .bc-nav-dropdown.open .bc-dropdown { display: block; }

    body.bc-nav-open {
        overflow: hidden;
    }

    body.bc-nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    body.bc-nav-open .bc-nav {
        z-index: 1001;
    }

    .bc-nav > a,
    .bc-nav-dropdown > a,
    .bc-staff-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .bc-form input,
    .bc-form textarea,
    .bc-form button {
        font-size: 16px;
        min-height: 48px;
    }

    .bc-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bc-logo-img { max-height: 72px; max-width: 220px; }
    .bc-heading,
    .bc-heading-left { font-size: 20px; }

    .bc-hero { margin-top: 0; }
    .bc-hero-head-inner { padding-top: 70%; padding-left: 16px; padding-right: 16px; }
    .bc-hero-text h1 { font-size: 34px; }
    .bc-since { font-size: 16px; letter-spacing: 0.08em; }
    .bc-hero-cake { max-width: 280px; }
    .bc-hours { text-align: left; }
    .bc-section { padding: 40px 16px; }
    .bc-page-hero { padding: 48px 16px 32px; }
    .bc-tabs { gap: 12px; }
    .bc-tabs a { font-size: 11px; padding: 10px 8px; min-height: 44px; display: inline-flex; align-items: center; }
    .bc-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .bc-table { min-width: 480px; }
    .bc-footer { padding: 48px 16px 32px; }
}
