:root {
    --bg: #fff8ef;
    --card: #ffffff;
    --text: #21160f;
    --muted: #735f50;
    --brand: #b9411f;
    --brand-dark: #872d18;
    --gold: #e5a22f;
    --line: rgba(91, 56, 33, 0.14);
    --shadow: 0 18px 45px rgba(67, 35, 19, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #fff2db 0, var(--bg) 45%, #fff 100%);
    color: var(--text);
}

img {
    max-width: 100%;
    display: block;
}

/* FULL WIDTH VIDEO HEADER */
.menu-hero {
    position: relative;
    width: 100%;
    height: 68vh;
    min-height: 520px;
    max-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
    background: #111111;
}

.menu-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.68)),
        radial-gradient(circle at center, rgba(255, 230, 180, 0.10), rgba(0, 0, 0, 0.20));
}

.menu-hero::after {
    content: "";
    position: absolute;
    inset: 22px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 32px;
    pointer-events: none;
}

.menu-hero-content {
    position: relative;
    z-index: 4;
    width: min(900px, calc(100% - 32px));
    padding: 44px 24px;
    margin: 0 auto;
    color: #ffffff;
    transform: translateY(-6px);
}

.menu-kicker,
.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-size: .84rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 16px;
}

.menu-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(3.5rem, 9vw, 7.4rem);
    line-height: .88;
    letter-spacing: -0.065em;
    font-weight: 950;
    color: #ffffff;
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.50);
}

.menu-hero p {
    margin: 0 auto;
    max-width: 680px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, .93);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.menu-page {
    width: min(1120px, calc(100% - 32px));
    margin: -42px auto 70px;
    position: relative;
    z-index: 10;
}

.menu-tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    flex: 0 0 auto;
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 800;
    background: #fff6e8;
    border: 1px solid rgba(185, 65, 31, .16);
    padding: 12px 20px;
    border-radius: 999px;
    transition: .2s ease;
}

.menu-tab:hover,
.menu-tab.active {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    transform: translateY(-2px);
}

.menu-home-button-wrap {
    text-align: center;
    margin: 18px auto 42px;
}

.menu-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.menu-container {
    display: grid;
    gap: 46px;
}

.menu-group {
    scroll-margin-top: 110px;
}

.menu-group__header {
    margin-bottom: 18px;
    padding: 8px 4px;
}

.menu-group__header h2 {
    margin: 6px 0 6px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.045em;
    color: var(--text);
    text-transform: uppercase;
}

.menu-group__header p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.menu-list {
    display: grid;
    gap: 18px;
}

.menu-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(67, 35, 19, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.menu-item__image-wrap {
    width: 120px;
    height: 105px;
    border-radius: 18px;
    overflow: hidden;
    background: #f1e5d6;
    border: 1px solid rgba(80, 44, 20, .10);
}

.menu-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item__content {
    min-width: 0;
}

.menu-item__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

.menu-item h3 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.2;
    font-weight: 900;
    color: var(--text);
}

.menu-item p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.55;
    font-size: .98rem;
}

.menu-item__price {
    display: inline-flex;
    align-items: center;
    font-size: 1.22rem;
    font-weight: 950;
    color: var(--brand);
    background: #fff1df;
    border: 1px solid rgba(185, 65, 31, .16);
    padding: 7px 13px;
    border-radius: 999px;
}

.badge {
    display: inline-flex;
    color: #4d2f00;
    background: linear-gradient(135deg, #ffd87a, #f3b33f);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.menu-error {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: center;
}

.back-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: var(--shadow);
    font-weight: 900;
    z-index: 50;
}

@media (max-width: 680px) {
    .menu-hero {
        height: 72vh;
        min-height: 430px;
    }

    .menu-hero::after {
        inset: 12px;
        border-radius: 22px;
    }

    .menu-hero h1 {
        font-size: clamp(3.2rem, 18vw, 5.4rem);
    }

    .menu-page {
        width: min(100% - 20px, 1120px);
        margin-top: -28px;
    }

    .menu-tabs {
        border-radius: 20px;
        padding: 10px;
    }

    .menu-tab {
        padding: 10px 15px;
        font-size: .93rem;
    }

    .menu-home-button {
        width: calc(100% - 40px);
        max-width: 320px;
    }

    .menu-item {
        grid-template-columns: 92px 1fr;
        gap: 13px;
        padding: 12px;
        border-radius: 18px;
    }

    .menu-item__image-wrap {
        width: 92px;
        height: 88px;
        border-radius: 14px;
    }

    .menu-item h3 {
        font-size: 1.04rem;
    }

    .menu-item p {
        font-size: .9rem;
        line-height: 1.4;
    }

    .menu-item__price {
        font-size: 1rem;
        padding: 6px 11px;
    }
}