:root {
    --primary: #b5502e;
    --primary-dark: #93401f;
    --dark: #2b2320;
    --text: #3a322d;
    --light: #faf6f2;
    --white: #ffffff;
    --border-radius: 6px;
    --font-family: Georgia, 'Times New Roman', serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); color: var(--text); background: var(--light); line-height: 1.6; }
.container { width: 90%; max-width: 1000px; margin: 0 auto; }
a { color: var(--primary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -60px; left: 0; background: var(--dark); color: var(--white); padding: 0.9rem 1.4rem; z-index: 1000; text-decoration: none; font-weight: 700; font-family: system-ui, sans-serif; border-radius: 0 0 8px 0; transition: top 0.2s ease; }
.skip-link:focus { top: 0; }
header { background: var(--white); border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.navbar { display: flex; justify-content: space-between; align-items: center; max-width: 1000px; margin: 0 auto; padding: 1rem 1.5rem; }
.logo { font-size: 1.4rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.nav-menu { display: flex; list-style: none; gap: 1.5rem; }
.nav-menu a { text-decoration: none; color: var(--dark); font-weight: 600; }
.nav-menu a:hover { color: var(--primary); }
.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; gap: 4px; width: 44px; height: 44px; background: none; border: none; padding: 0; }
.hamburger span { width: 24px; height: 3px; background: var(--dark); border-radius: 2px; }

@media (max-width: 760px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 66px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active { display: flex; }
    .hamburger { display: flex; }
}

.hero { background: linear-gradient(135deg, #b5502e 0%, #7a3018 100%); color: var(--white); text-align: center; padding: 5rem 1.5rem; }
.hero h1 { font-size: clamp(1.8rem, 4vw + 1rem, 2.8rem); margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; max-width: 500px; margin: 0 auto 2rem; opacity: 0.95; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0.8rem 2rem; border-radius: var(--border-radius); text-decoration: none; font-weight: 700; background: var(--white); color: var(--primary); border: none; cursor: pointer; font-family: inherit; transition: transform 0.2s; }
section { padding: 4rem 0; }
section h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2rem; color: var(--dark); }
.about p { max-width: 650px; margin: 0 auto; text-align: center; font-size: 1.05rem; }
.menu-list { max-width: 650px; margin: 0 auto; }
.menu-category { margin-bottom: 2rem; }
.menu-category h3 { color: var(--primary); border-bottom: 2px solid var(--primary); display: inline-block; margin-bottom: 1rem; padding-bottom: 0.2rem; }
.menu-item { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px dashed #ddd; }
.menu-item .price { font-weight: 700; color: var(--primary); white-space: nowrap; }
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 800px; margin: 0 auto; }
.contact-info p { margin-bottom: 0.8rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.7rem; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: var(--border-radius); font-family: inherit; min-height: 44px; }
.contact-form textarea { min-height: 80px; }
.form-note { margin-top: 1rem; padding: 0.75rem; border-radius: var(--border-radius); background: #e9f7ef; color: #1e6b3d; display: none; }
.form-note.visible { display: block; }
footer { background: var(--dark); color: #cfc7c1; text-align: center; padding: 1.5rem 0; font-size: 0.9rem; }
footer a { color: #ffd7c2; }
.demo-banner { background: var(--dark); color: var(--white); text-align: center; font-size: 0.85rem; padding: 0.6rem 1rem; }
.demo-banner a { color: #ffd7c2; }
