:root {
    --brand: #f05a1a;
    --brand-2: #ff7a23;
    --ink: #101010;
    --panel: #181614;
    --line: rgba(255, 255, 255, .11);
    --cream: #fff8ef;
    --muted: #c9b9a7;
    --gold: #d7aa53;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 18% -8%, color-mix(in srgb, var(--brand) 42%, transparent), transparent 28rem),
        radial-gradient(circle at 85% 12%, rgba(255, 122, 35, .22), transparent 22rem),
        linear-gradient(180deg, #150b06 0%, #1e110b 52%, #0d0a08 100%);
    color: var(--cream);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
    width: min(100%, 760px);
    margin: 0 auto;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(390px, 70vh, 560px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 14px 24px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.hero-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: #160c07;
}
.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9,5,3,.08) 0%, rgba(16,7,2,.28) 38%, rgba(21,8,3,.82) 78%, #150b06 100%),
        radial-gradient(circle at 50% 62%, rgba(255, 98, 24, .2), transparent 44%);
    pointer-events: none;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 58%;
}

h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 8vw, 3.6rem);
    color: #fff;
    text-shadow: 0 3px 18px rgba(0,0,0,.55);
}
.welcome {
    position: relative;
    z-index: 2;
    margin: 10px auto 18px;
    max-width: 33rem;
    color: #ead6c0;
    line-height: 1.55;
}
.category-bar {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 14px;
    background: rgba(35, 17, 8, .94);
    border-bottom: 1px solid rgba(255, 122, 35, .28);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
}
.category-bar::-webkit-scrollbar { display: none; }
.category-bar a {
    flex: 0 0 auto;
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255, 122, 35, .11);
    font-size: .92rem;
    font-weight: 700;
}
.category-bar a.active, .category-bar a:hover {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: var(--brand);
    color: #fff;
}

.menu-list { padding: 16px 14px 34px; }
.category-section {
    scroll-margin-top: 74px;
    margin-bottom: 30px;
}
.category-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 2px 12px;
}
.category-heading span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 16%, transparent);
}
.category-heading h2 {
    margin: 0;
    font-size: 1.35rem;
    color: #fff;
}
.product-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 16px;
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border-color: rgba(255, 122, 35, .22);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.product-card h3 {
    margin: 0 0 7px;
    font-size: 1.03rem;
    color: #fff;
}
.product-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.48;
    font-size: .92rem;
}
.product-card strong {
    color: var(--brand);
    white-space: nowrap;
    font-size: 1.02rem;
}
.empty { color: var(--muted); }
.hidden { display: none; }

.footer {
    display: grid;
    gap: 14px;
    padding: 24px 16px 34px;
    border-top: 1px solid var(--line);
    background: #080807;
    color: var(--muted);
    text-align: center;
}
.footer img {
    justify-self: center;
    width: min(70vw, 260px);
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
}
.footer p { margin: 4px 0; }

@media (min-width: 720px) {
    .hero { min-height: 620px; padding-bottom: 34px; }
    .product-card { padding: 18px 20px; }
}
