:root {
    --ink: #141612;
    --ink-soft: #4d514a;
    --cream: #fbf6e9;
    --paper: #fffdf8;
    --green: #123d2d;
    --green-light: #1f6046;
    --gold: #d9aa2b;
    --orange: #ea6b2d;
    --line: #e7dec9;
    --shadow: 0 16px 40px rgba(24, 39, 29, 0.12);
    --radius-lg: 26px;
    --radius-md: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

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

[hidden] {
    display: none !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: var(--green);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.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;
}

.site-header {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px max(18px, env(safe-area-inset-right)) 10px max(18px, env(safe-area-inset-left));
    background: #10130f;
    border-bottom: 3px solid var(--gold);
    color: #fff;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.brand__logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand__copy {
    display: grid;
    min-width: 0;
}

.brand__copy strong {
    overflow: hidden;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 4vw, 1.28rem);
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand__copy small {
    margin-top: 3px;
    color: #d8d2c2;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-label {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #f4df9b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

main {
    overflow: hidden;
}

.hero {
    position: relative;
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.08), transparent 32%),
        var(--green);
    color: #fff;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 48px 20px 38px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f3c858;
}

.hero h1,
.section-heading h2,
.menu-view-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.05;
}

.hero h1 {
    max-width: 640px;
    font-size: clamp(2.5rem, 11vw, 5rem);
    letter-spacing: -0.045em;
}

.hero__intro {
    max-width: 620px;
    margin: 18px 0 0;
    color: #dce9e2;
    font-size: 1.03rem;
}

.menu-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 620px;
    margin-top: 26px;
    border: 2px solid transparent;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.menu-search:focus-within {
    border-color: var(--gold);
}

.menu-search__icon {
    width: 46px;
    color: var(--green);
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
}

.menu-search input {
    min-width: 0;
    flex: 1;
    height: 54px;
    padding: 0 6px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
}

.menu-search input::placeholder {
    color: #7a7e78;
}

.menu-search button {
    align-self: stretch;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: var(--green);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 900;
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero__facts span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #e7efe9;
    font-size: 0.78rem;
}

.hero__facts b {
    color: #fff;
}

.hero__visual {
    position: relative;
    min-height: 290px;
}

.hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 61, 45, 0.8), transparent 38%);
    content: "";
    pointer-events: none;
}

.hero__visual > img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 36px);
    padding: 11px 14px;
    border-radius: 16px;
    background: rgba(13, 18, 14, 0.9);
    box-shadow: var(--shadow);
}

.hero__badge span {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: #151711;
    font-size: 0.72rem;
    font-weight: 900;
}

.hero__badge strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.95rem;
    line-height: 1.15;
}

.category-picker {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
    padding: 52px 0 62px;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading h2,
.menu-view-heading h2 {
    font-size: clamp(2rem, 8vw, 3.6rem);
    letter-spacing: -0.035em;
}

.section-heading > p {
    margin: 0;
    color: var(--ink-soft);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.category-card {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: var(--radius-md);
    background: #1e3328;
    box-shadow: 0 8px 20px rgba(28, 39, 31, 0.11);
    cursor: pointer;
    text-align: left;
    transform: translateZ(0);
}

.category-card img,
.category-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-card img {
    object-fit: cover;
    transition: transform 180ms ease;
}

.category-card__shade {
    background:
        linear-gradient(to top, rgba(6, 17, 11, 0.96), rgba(8, 20, 13, 0.12) 68%),
        linear-gradient(135deg, rgba(18, 61, 45, 0.12), transparent);
}

.category-card__copy {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 13px;
    color: #fff;
}

.category-card__icon {
    position: absolute;
    right: 11px;
    bottom: 13px;
    color: #f7c64e;
    font-size: 1rem;
}

.category-card strong {
    max-width: calc(100% - 20px);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.1;
}

.category-card small {
    margin-top: 4px;
    color: #d6e2da;
    font-size: 0.7rem;
}

.category-card:hover img {
    transform: scale(1.035);
}

.category-card:focus-visible,
.menu-chip:focus-visible,
.button:focus-visible,
.site-footer a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.category-card[aria-pressed="true"] {
    box-shadow: 0 0 0 4px var(--gold), 0 14px 26px rgba(28, 39, 31, 0.18);
}

.menu-browser {
    background: var(--paper);
}

.chip-bar {
    position: sticky;
    z-index: 20;
    top: 0;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(10px);
}

.chip-bar__inner {
    display: flex;
    width: min(100%, var(--max));
    gap: 8px;
    margin: 0 auto;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.chip-bar__inner::-webkit-scrollbar {
    display: none;
}

.menu-chip {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 7px;
    min-height: 41px;
    padding: 8px 13px;
    border: 1px solid #d9d1bd;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 0.79rem;
    font-weight: 800;
    white-space: nowrap;
}

.menu-chip span {
    color: var(--orange);
}

.menu-chip[aria-pressed="true"] {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.menu-chip[aria-pressed="true"] span {
    color: #f7c64e;
}

.menu-browser__body {
    width: min(100% - 32px, var(--max));
    min-height: 560px;
    margin: 0 auto;
    padding: 42px 0 64px;
}

.menu-view-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.menu-view-heading h2 {
    font-size: clamp(2rem, 7vw, 3.2rem);
}

#result-count {
    flex: 0 0 auto;
    margin: 0 0 3px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.menu-section {
    padding: 36px 0 8px;
}

.menu-section__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.menu-section__heading h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.48rem;
}

.menu-section__heading span {
    color: #777a73;
    font-size: 0.72rem;
}

.menu-items {
    display: grid;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: stretch;
    min-height: 120px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.menu-item:hover {
    border-color: #c9b87e;
    box-shadow: 0 10px 24px rgba(26, 41, 31, 0.08);
    transform: translateY(-1px);
}

.menu-item__content {
    min-width: 0;
    flex: 1;
    padding: 16px;
}

.menu-item__title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.menu-item h4 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.25;
}

.menu-item__price {
    flex: 0 0 auto;
    color: var(--green);
    font-size: 0.95rem;
}

.menu-item p {
    margin: 7px 0 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.45;
}

.popular-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 11px;
    color: #9b5a19;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.popular-tag span {
    color: var(--gold);
}

.menu-item__image {
    width: 112px;
    object-fit: cover;
}

.no-results {
    padding: 80px 20px;
    text-align: center;
}

.no-results > span {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 50%;
    background: #edf3ef;
    color: var(--green);
    font-size: 2rem;
}

.no-results h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
}

.no-results p {
    max-width: 420px;
    margin: 8px auto 22px;
    color: var(--ink-soft);
}

.button {
    min-height: 44px;
    padding: 10px 17px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
}

.button--gold {
    background: var(--gold);
    color: #11150f;
}

.menu-notice {
    display: flex;
    width: min(100% - 32px, var(--max));
    align-items: start;
    gap: 12px;
    margin: 30px auto 54px;
    padding: 18px;
    border: 1px solid #d9c789;
    border-radius: 16px;
    background: #fff8de;
}

.menu-notice > span {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
}

.menu-notice strong {
    font-size: 0.88rem;
}

.menu-notice p {
    margin: 3px 0 0;
    color: #5c563f;
    font-size: 0.8rem;
}

.site-footer {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 34px 20px max(38px, env(safe-area-inset-bottom));
    background: #10130f;
    color: #fff;
    text-align: center;
}

.site-footer img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.site-footer strong {
    font-family: Georgia, "Times New Roman", serif;
}

.site-footer p {
    margin: 2px 0 8px;
    color: #d5d2c7;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer small {
    color: #9ca098;
}

.site-footer a {
    margin-top: 9px;
    color: #e4c66d;
    font-size: 0.72rem;
}

.error-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 20px;
    background: var(--green);
}

.error-card {
    max-width: 480px;
    padding: 36px;
    border-radius: 24px;
    background: var(--paper);
    box-shadow: var(--shadow);
    text-align: center;
}

.error-card img {
    margin: 0 auto 18px;
}

.error-card h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
}

.error-card p {
    margin: 10px 0 0;
    color: var(--ink-soft);
}

@media (min-width: 700px) {
    .site-header {
        padding-right: 32px;
        padding-left: 32px;
    }

    .brand__logo {
        width: 64px;
        height: 64px;
    }

    .hero {
        min-height: 520px;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    }

    .hero__content {
        align-self: center;
        padding: 70px 6vw;
    }

    .hero__visual,
    .hero__visual > img {
        height: 100%;
        min-height: 520px;
    }

    .hero__visual::after {
        background: linear-gradient(to right, var(--green), transparent 34%);
    }

    .hero__badge {
        right: 28px;
        bottom: 28px;
    }

    .section-heading {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .category-card {
        min-height: 230px;
    }

    .category-card__copy {
        padding: 18px;
    }

    .category-card strong {
        font-size: 1.3rem;
    }

    .category-card small {
        font-size: 0.76rem;
    }

    .menu-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px;
    }

    .menu-item__content {
        padding: 18px;
    }
}

@media (min-width: 1050px) {
    .category-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .category-card {
        min-height: 210px;
    }

    .menu-browser__body {
        padding-top: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
