:root {
    --brio-green: #4a5d3a;
    --brio-cream: #f6f3ec;
    --brio-text: #26291f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--brio-text);
    background: var(--brio-cream);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--brio-cream);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header__brand a {
    font-weight: 700;
    text-decoration: none;
    color: var(--brio-text);
}

.site-header__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-header__nav a {
    text-decoration: none;
    color: var(--brio-text);
    opacity: 0.7;
}

.site-header__nav a.is-active {
    opacity: 1;
    color: var(--brio-green);
    font-weight: 600;
}

.menu-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.menu-section {
    scroll-margin-top: 5rem;
    margin-bottom: 3rem;
}

.menu-section__title {
    color: var(--brio-green);
    border-bottom: 2px solid var(--brio-green);
    padding-bottom: 0.5rem;
}

.menu-section__dishes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dish-card {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.dish-card__image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.dish-card__title {
    margin: 0 0 0.5rem;
}

.dish-card__description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dish-card__meta {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.dish-card__price {
    font-weight: 700;
    color: var(--brio-green);
}

.dish-card__badges {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--brio-green);
    color: #fff;
}

.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}
