:root {
    --bg: #0b0b0c;
    --panel: #121216;
    --card: #1a1a20;
    --accent: #f15a24;
    --accent-2: #ff8c42;
    --text: #f5f5f5;
    --muted: #c9c9cf;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 15px 40px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
body.page {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 15% 20%, rgba(255,92,0,0.08), transparent 25%),
                radial-gradient(circle at 85% 10%, rgba(255,150,50,0.12), transparent 30%),
                var(--bg);
    color: var(--text);
    line-height: 1.6;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(11,11,12,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand { color: var(--text); display: inline-flex; flex-direction: column; text-decoration: none; }
.brand__name { font-family: 'Playfair Display', serif; letter-spacing: 0.5px; font-size: 1.2rem; }
.brand__tag { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.nav { display: flex; gap: 16px; align-items: center; }
.nav__link { color: var(--text); font-weight: 600; padding: 8px 12px; border-radius: 6px; transition: background 0.2s ease; }
.nav__link:hover { background: rgba(241,90,36,0.12); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); padding: 10px; border-radius: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; }

main { max-width: 1200px; margin: 0 auto; padding: 0 20px 80px; }
.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    padding: 40px 0 20px;
    align-items: center;
}
.hero__content h1 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin: 10px 0; letter-spacing: -0.5px; }
.hero__content .lede { color: var(--muted); max-width: 640px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0; }
.hero__meta { display: flex; gap: 10px; color: var(--muted); flex-wrap: wrap; }
.hero__card {
    background: linear-gradient(135deg, rgba(241,90,36,0.14), rgba(255,140,66,0.1));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
}
.card__title { color: var(--accent-2); font-weight: 700; margin-bottom: 4px; }
.eyebrow { text-transform: uppercase; letter-spacing: 1px; font-size: 0.82rem; color: var(--accent-2); margin: 0 0 6px; }
.lede { margin: 0; }
.dot { display: inline-flex; align-items: center; gap: 6px; }
.dot::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #0b0b0c; box-shadow: 0 10px 25px rgba(241,90,36,0.35); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover { background: rgba(241,90,36,0.12); }

.panel { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 28px 24px; margin: 36px 0; box-shadow: var(--shadow); }
.panel__header { margin-bottom: 18px; }
.panel__header h2, .panel__header h1 { margin: 6px 0; }
.panel__header p { color: var(--muted); margin: 0; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.feature h3 { margin: 0 0 6px; }
.feature p { margin: 0; color: var(--muted); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 12px; }
.info { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.hours { list-style: none; padding: 0; margin: 12px 0 0; }
.hours li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--border); padding: 6px 0; color: var(--muted); }
.hours li:last-child { border-bottom: none; }
.cta-stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; grid-auto-rows: 1fr; }
.menu-section { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.menu-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(140deg, rgba(241,90,36,0.06), transparent 50%); }
.menu-section__head { display: flex; align-items: center; gap: 10px; }
.menu-section__title { margin: 0; font-size: 1.05rem; background: var(--accent); color: #0b0b0c; padding: 12px 14px; border-radius: 12px; font-weight: 800; letter-spacing: 0.2px; box-shadow: 0 6px 16px rgba(241,90,36,0.3); width: 100%; min-height: 80px; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.3; }
.menu-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.menu-item { display: grid; grid-template-columns: 46px 1fr auto; gap: 10px; align-items: flex-start; padding-bottom: 10px; border-bottom: 1px dashed var(--border); }
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item__number { font-weight: 800; color: var(--accent-2); min-width: 32px; }
.menu-item__price { white-space: nowrap; }
.menu-item__name { margin: 0 0 4px; font-weight: 700; }
.menu-item__desc { margin: 0; color: var(--muted); font-size: 0.95rem; }
.menu-item__price { font-weight: 700; color: var(--accent-2); white-space: nowrap; }

.cta-wide { margin: 40px 0; padding: 20px; background: linear-gradient(120deg, rgba(241,90,36,0.15), rgba(255,140,66,0.07)); border: 1px solid var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; box-shadow: var(--shadow); }
.cta-wide__text h2 { margin: 6px 0; }
.cta-wide__text p { margin: 0; color: var(--muted); }

.footer { max-width: 1200px; margin: 40px auto 20px; padding: 18px 20px 10px; border-top: 1px solid var(--border); color: var(--muted); }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.footer__heading { text-transform: uppercase; letter-spacing: 1px; font-size: 0.82rem; color: var(--accent-2); }
.footer__reviews { justify-self: end; max-width: 320px; width: 100%; text-align: right; display: flex; flex-direction: column; gap: 8px; }
.footer__reviews [class^="elfsight-app"] { width: 100%; }
.footer__legal { margin-top: 12px; text-align: center; font-size: 0.9rem; color: var(--muted); }

.legal .legal__body { color: var(--muted); display: grid; gap: 10px; }

@media (max-width: 768px) {
    .nav { display: none; position: absolute; right: 20px; top: 58px; background: #0b0b0c; border: 1px solid var(--border); border-radius: 12px; padding: 12px; flex-direction: column; width: 180px; box-shadow: var(--shadow); }
    .nav.is-open { display: flex; }
    .nav-toggle { display: inline-flex; }
    .footer__reviews { justify-self: start; text-align: left; }
}
