body {
    background: #f7f4ee;
    color: #24211d;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.menu-hero {
    background:
        linear-gradient(135deg, rgba(25, 24, 21, .88), rgba(25, 24, 21, .62)),
        url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1600&q=80");
    background-position: center;
    background-size: cover;
    color: #fff;
    min-height: 310px;
    padding: 22px 0 48px;
}

.menu-nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.brand-lockup {
    align-items: center;
    display: flex;
    gap: 14px;
    min-width: 0;
}

.brand-lockup img {
    background: #fff;
    border-radius: 8px;
    height: 58px;
    object-fit: contain;
    padding: 7px;
    width: 58px;
}

.eyebrow {
    color: #e8ddc7;
    display: block;
    font-size: .78rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-lockup h1 {
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1.1;
    margin: 0;
}

.language-switcher {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    display: flex;
    flex-shrink: 0;
    padding: 4px;
}

.language-switcher a {
    border-radius: 999px;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    padding: 7px 10px;
    text-decoration: none;
}

.language-switcher a.active {
    background: #fff;
    color: #222;
}

.hero-content {
    margin-top: 62px;
    max-width: 760px;
}

.hero-content p {
    color: #fff7e9;
    font-size: 1.1rem;
    margin: 0;
    max-width: 560px;
}

.menu-shell {
    margin-top: -30px;
    padding-bottom: 34px;
}

.category-strip {
    background: #fff;
    border: 1px solid rgba(40, 35, 28, .08);
    border-radius: 8px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.category-pill {
    background: #f2eee6;
    border: 0;
    border-radius: 999px;
    color: #3c3832;
    flex: 0 0 auto;
    font-weight: 700;
    padding: 9px 16px;
}

.category-pill.active {
    background: var(--brand-primary);
    color: #fff;
}

.menu-section {
    padding-top: 34px;
}

.section-title {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 1.35rem;
    margin: 0;
}

.section-title span {
    color: #7a7167;
    font-size: .92rem;
}

.product-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
    background: #fff;
    border: 1px solid rgba(44, 37, 29, .08);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 165px 1fr;
    min-height: 165px;
    overflow: hidden;
}

.product-card.featured {
    border-color: color-mix(in srgb, var(--brand-primary) 45%, #fff);
}

.product-card img,
.product-placeholder {
    height: 100%;
    min-height: 165px;
    object-fit: cover;
    width: 100%;
}

.product-placeholder {
    align-items: center;
    background: var(--brand-secondary);
    color: #fff;
    display: flex;
    font-size: 3rem;
    font-weight: 800;
    justify-content: center;
}

.product-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    padding: 16px;
}

.product-heading {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.product-heading h3 {
    font-size: 1.04rem;
    line-height: 1.2;
    margin: 0;
}

.product-heading strong {
    color: var(--brand-primary);
    flex-shrink: 0;
    font-size: .98rem;
}

.product-body p {
    color: #645d55;
    line-height: 1.45;
    margin: 0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-list span {
    background: #f3efe7;
    border-radius: 999px;
    color: #5d554b;
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 9px;
}

.menu-footer {
    border-top: 1px solid rgba(44, 37, 29, .12);
    color: #6a6258;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding-bottom: 32px;
    padding-top: 22px;
}

.menu-footer a {
    color: var(--brand-primary);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .menu-hero {
        min-height: 280px;
        padding-top: 16px;
    }

    .menu-nav {
        align-items: flex-start;
    }

    .brand-lockup img {
        height: 48px;
        width: 48px;
    }

    .language-switcher a {
        padding: 6px 8px;
    }

    .product-card {
        grid-template-columns: 112px 1fr;
        min-height: 150px;
    }

    .product-card img,
    .product-placeholder {
        min-height: 150px;
    }

    .product-body {
        gap: 9px;
        padding: 13px;
    }

    .product-heading {
        display: block;
    }

    .product-heading strong {
        display: block;
        margin-top: 6px;
    }
}
