:root {
    color-scheme: light;
    --ink: #171615;
    --muted: #746d62;
    --paper: #e8e5dc;
    --cream: #f5f1e7;
    --green: #242721;
    --sage: #8f9a89;
    --red: #d9261c;
    --gold: #d6a93f;
    --line: rgba(33, 31, 27, .14);
    --shadow: 0 22px 70px rgba(23, 22, 21, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 22px;
    align-items: center;
    padding: 14px clamp(18px, 4vw, 54px);
    background: color-mix(in srgb, var(--primary) 90%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
    color: white;
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.brand img {
    width: 72px;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
}

.nav {
    min-width: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav a,
.nav-cta,
.button,
.category-pills a,
.inline-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 760;
}

.nav a {
    padding: 0 14px;
    color: rgba(255, 255, 255, .82);
}

.nav-cta,
.button.primary {
    padding: 0 18px;
    background: var(--gold);
    color: var(--ink);
}

.button.ghost {
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .55);
    color: white;
}

.hero {
    min-height: calc(100vh - 74px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    align-items: end;
    gap: 24px;
    padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 72px) 42px;
    position: relative;
    overflow: hidden;
    background: #151412;
    color: white;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 16, 15, .94), rgba(16, 16, 15, .62) 52%, rgba(16, 16, 15, .2));
}

.hero-media {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.4fr .9fr .9fr;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95);
}

.hero-copy,
.hero-card {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(4rem, 11vw, 9rem);
    font-weight: 900;
    line-height: .86;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 14px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: .95;
    font-weight: 900;
}

h3 {
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 600px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(14px);
}

.seal-logo {
    width: 104px;
    margin: -6px 0 16px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
}

.hero-card strong,
.hero-card span,
.hero-card small {
    display: block;
}

.hero-card span {
    margin: 10px 0 18px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.45;
}

.quick-info {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.1fr;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
}

.quick-info > * {
    padding: 24px clamp(18px, 4vw, 44px);
    border-right: 1px solid var(--line);
}

.quick-info span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.quick-info strong {
    line-height: 1.35;
}

.section {
    padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.menu-cta {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
    gap: clamp(22px, 5vw, 70px);
    align-items: center;
    background: linear-gradient(135deg, #fffaf1 0%, #eef2ea 100%);
}

.menu-cta-copy p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.65;
}

.menu-cta-card {
    min-height: 340px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: white;
}

.menu-cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(21, 24, 19, .86));
}

.menu-cta-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-cta-card span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 24px;
}

.menu-cta-card strong,
.menu-cta-card small {
    display: block;
}

.menu-cta-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: .96;
}

.menu-cta-card small {
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.category-pills a {
    flex: 0 0 auto;
    padding: 0 16px;
    border: 1px solid var(--line);
    background: white;
    color: var(--green);
}

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

.menu-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
}

.menu-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.menu-card-body {
    padding: 24px;
}

.menu-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 15px 0;
    border-top: 1px dashed rgba(33, 31, 27, .18);
}

.menu-row.has-item-image {
    grid-template-columns: 72px 1fr auto;
}

.menu-row-image {
    width: 72px;
    aspect-ratio: 1.15;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.menu-row strong,
.menu-row span {
    display: block;
}

.menu-row span {
    margin-top: 5px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

.menu-row em {
    color: var(--red);
    font-style: normal;
    font-weight: 850;
    white-space: nowrap;
}

.inline-link {
    margin-top: 16px;
    color: var(--red);
}

.story {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    background: var(--green);
    color: white;
}

.story-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.story-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 26px;
}

.story-points span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .86);
    font-size: .84rem;
    font-weight: 820;
}

.photo-strip {
    display: grid;
    grid-template-columns: .8fr 1fr .8fr;
    gap: 12px;
    align-items: center;
}

.photo-strip img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
}

.photo-strip img:nth-child(2) {
    aspect-ratio: 4 / 6;
}

.footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 34px clamp(18px, 5vw, 72px);
    background: #171511;
    color: white;
}

.footer img {
    width: 92px;
}

.footer span,
.footer strong {
    display: block;
    line-height: 1.5;
}

.footer span {
    color: rgba(255, 255, 255, .68);
}

.footer-contact b {
    min-width: 48px;
    display: inline-block;
    color: rgba(255, 255, 255, .92);
}

.list-page {
    background: #fbf7ef;
}

.topbar.compact {
    grid-template-columns: auto 1fr auto auto;
}

.list-nav {
    justify-content: center;
}

.list-page .list-phone-cta {
    justify-self: end;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    justify-self: end;
    padding: 3px;
    border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
    border-radius: 999px;
    background: rgba(0, 0, 0, .22);
    cursor: pointer;
}

.language-switch a {
    min-width: 34px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    font-size: .68rem;
    font-weight: 800;
    transition: background .15s ease, color .15s ease;
}

.language-switch a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

.language-switch a[aria-current="true"],
.language-switch a[aria-current="true"]:hover {
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .34);
}

.topbar .language-switch {
    gap: 2px;
}

.topbar .language-switch a {
    min-width: 30px;
    min-height: 24px;
    padding: 0 6px;
    font-size: .68rem;
}

.listino-main {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.listino-main .section-heading {
    max-width: 980px;
}

.listino-main .section-heading h1 {
    max-width: 860px;
    margin-bottom: 14px;
    font-size: clamp(3.1rem, 8vw, 7.4rem);
    line-height: .86;
}

.listino-subtitle {
    max-width: 520px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2.1vw, 1.45rem);
    line-height: 1.45;
}

.menu-jump {
    position: sticky;
    top: 75px;
    z-index: 8;
    display: grid;
    grid-template-columns: auto minmax(220px, 420px);
    gap: 12px;
    align-items: center;
    margin: -10px 0 26px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 241, .92);
    backdrop-filter: blur(14px);
}

.menu-jump label {
    color: var(--green);
    font-weight: 850;
}

.menu-jump select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 12px;
    background: white;
    color: var(--ink);
    font: inherit;
    font-weight: 760;
}

.category-browser {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.category-tile {
    min-height: 148px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 8px;
    background: var(--green);
    color: white;
    box-shadow: 0 14px 40px rgba(41, 72, 58, .14);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72));
}

.category-tile img,
.category-tile-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tile-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--sage));
    color: rgba(255, 255, 255, .42);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    font-weight: 700;
}

.category-tile span:not(.category-tile-placeholder) {
    position: relative;
    z-index: 1;
    display: block;
    padding: 16px;
}

.category-tile strong,
.category-tile small {
    display: block;
}

.category-tile strong {
    line-height: 1.05;
}

.category-tile small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.full-menu {
    max-width: 1040px;
    margin: 0 auto;
}

.full-category {
    position: relative;
    margin-bottom: 28px;
    scroll-margin-top: 168px;
}

.full-category + .full-category {
    margin-top: 42px;
}

.full-category-head {
    display: block;
    margin-bottom: 12px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 14px 45px rgba(41, 72, 58, .08);
}

.full-category h2 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    margin-bottom: 0;
}

.full-category-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

.menu-group {
    padding-top: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 5px 14px rgba(41, 72, 58, .06);
}

.menu-group + .menu-group {
    margin-top: 0;
}

.menu-group h3 {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin: 0 0 20px;
    padding: 0 12px;
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    background: rgba(217, 164, 65, .12);
    color: var(--green);
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    font-weight: 900;
    text-transform: uppercase;
}

.menu-groups-grid {
    display: grid;
    gap: 14px;
}

@media (min-width: 980px) {
    .full-menu {
        max-width: 1440px;
    }

    .menu-groups-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 8px;
        grid-auto-flow: dense;
        align-items: start;
    }

    .menu-group {
        display: block;
        margin: 0;
    }

    .menu-group + .menu-group {
        margin-top: 0;
    }
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 920px) {
    .topbar {
        grid-template-columns: auto 1fr auto auto;
    }

    .nav-cta {
        grid-column: 4;
        grid-row: 1;
        display: inline-flex;
        min-height: 38px;
        padding: 0 12px;
        white-space: nowrap;
    }

    .topbar .language-switch {
        grid-column: 3;
        grid-row: 1;
    }

    .topbar .nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
    }

    .hero {
        min-height: 760px;
        grid-template-columns: 1fr;
    }

    .hero-media {
        grid-template-columns: 1fr;
    }

    .hero-media img:not(:first-child) {
        display: none;
    }

    .quick-info,
    .menu-grid,
    .menu-cta,
    .footer {
        grid-template-columns: 1fr;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .category-browser {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-info > * {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 560px) {
    .topbar {
        gap: 12px;
        padding: 12px 14px;
    }

    .brand img {
        width: 72px;
    }

    .nav {
        justify-content: flex-start;
        overflow: visible;
    }

    .nav a {
        padding: 0 9px;
        font-size: .94rem;
    }

    .list-nav {
        justify-content: center;
    }

    .hero {
        min-height: 680px;
        padding: 38px 18px 28px;
    }

    h1 {
        font-size: 4rem;
    }

    .menu-card-body,
    .full-category-head,
    .menu-group {
        padding: 18px;
    }

    .menu-jump {
        top: 66px;
        grid-template-columns: 1fr;
        margin-top: -22px;
    }

    .full-category {
        scroll-margin-top: 150px;
    }

    .category-browser {
        grid-template-columns: 1fr;
    }

    .category-tile {
        min-height: 118px;
    }

    .menu-cta-card {
        min-height: 260px;
    }

    .menu-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Item-level allergen notices and dark-theme allergen readability */
.item-allergen-trigger {
    justify-self: start;
    width: fit-content;
    margin-top: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #e1b16e;
    font: inherit;
    font-size: .76rem;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.item-allergen-trigger:hover {
    text-decoration: underline;
}

.item-allergen-list {
    display: grid;
    gap: 10px;
    margin: 14px 0 18px;
    padding: 0;
    list-style: none;
}

.item-allergen-list[hidden] {
    display: none;
}

.item-allergen-list li {
    display: grid;
    gap: 3px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf1;
    color: #211f1b;
}

.item-allergen-list strong {
    font-size: .95rem;
}

.item-allergen-list span {
    color: #706a60;
    font-size: .88rem;
    line-height: 1.4;
}

.allergen-list-page article,
.allergen-panel {
    color: #211f1b;
}

.allergen-list-page h2 {
    color: #211f1b;
}

.allergen-list-page p,
.allergen-panel p:not(.eyebrow) {
    color: #706a60;
}

.menu-group-subtitle {
    margin: -8px 0 16px;
    color: rgba(242, 238, 230, .68);
    font-size: .9rem;
    line-height: 1.45;
}

/* B9 dark customization */
:root {
    --ink: #f2eee6;
    --muted: #b6afa4;
    --paper: #0c0c0b;
    --cream: #151412;
    --green: #11100f;
    --sage: #7b776d;
    --red: #a64625;
    --gold: #c48642;
    --corten: #7a3f24;
    --line: rgba(242, 238, 230, .14);
    --shadow: 0 24px 90px rgba(0, 0, 0, .45);
}

body {
    background:
        linear-gradient(180deg, rgba(12, 12, 11, .86), rgba(12, 12, 11, .98)),
        url("/assets/tenants/beer9/terrace-night.jpg") center top / cover fixed;
    color: var(--ink);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(180deg, rgba(255,255,255,.012) 1px, transparent 1px) 0 0 / 42px 42px;
    opacity: .5;
}

.topbar {
    background: color-mix(in srgb, var(--front-header-bg, #0c0c0b) 94%, transparent);
    color: var(--front-header-ink, #f2eee6);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .45);
}

.brand img {
    width: 82px;
    border: 0;
    background: #0b0b0b;
}

.nav a {
    color: color-mix(in srgb, var(--front-header-ink, #f2eee6) 76%, transparent);
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--ink);
    background: rgba(196, 134, 66, .18);
}

.nav-cta,
.button.primary {
    background: linear-gradient(135deg, #d49a4f, #9b4d2a);
    color: #0b0b0b;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.button.ghost {
    border-color: rgba(242, 238, 230, .38);
    background: rgba(255, 255, 255, .04);
    color: var(--ink);
}

.hero {
    min-height: calc(100vh - 102px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    background: #090909;
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .9) 0%, rgba(5, 5, 5, .58) 46%, rgba(5, 5, 5, .22) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .8)),
        radial-gradient(circle at 22% 70%, rgba(164, 70, 37, .32), transparent 34rem);
}

.hero-media {
    grid-template-columns: 1.15fr .7fr .82fr;
}

.hero-media img {
    filter: saturate(.88) contrast(1.08) brightness(.75);
}

.eyebrow {
    color: #d49a4f;
}

h1 {
    max-width: 9ch;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .46);
}

.hero-copy > p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.menu-cta-copy p,
.story-copy p,
.full-category-head p {
    color: rgba(242, 238, 230, .75);
}

.hero-card {
    border-color: rgba(196, 134, 66, .34);
    background:
        linear-gradient(140deg, rgba(255,255,255,.10), rgba(255,255,255,.03)),
        linear-gradient(135deg, rgba(122, 63, 36, .34), rgba(7, 7, 7, .44));
    box-shadow: var(--shadow);
}

.seal-logo {
    width: 138px;
    padding: 8px;
    background: rgba(0, 0, 0, .38);
    border: 1px solid rgba(255, 255, 255, .18);
}

.quick-info {
    background: #10100f;
    border-color: rgba(196, 134, 66, .22);
}

.quick-info > * {
    border-color: rgba(196, 134, 66, .18);
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}

.section,
.listino-main {
    background:
        linear-gradient(180deg, rgba(12, 12, 11, .94), rgba(18, 17, 16, .96)),
        url("/assets/tenants/beer9/hero-sign.jpg") center / cover fixed;
}

.menu-cta {
    background:
        linear-gradient(90deg, rgba(11,11,10,.96), rgba(11,11,10,.75)),
        url("/assets/tenants/beer9/beer-taps.jpg") center / cover;
}

.menu-cta-card,
.category-tile,
.menu-group,
.full-category,
.menu-jump {
    border: 1px solid rgba(196, 134, 66, .22);
    background: rgba(18, 17, 16, .86);
    box-shadow: var(--shadow);
}

.menu-cta-card::after,
.category-tile::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .58) 100%);
}

.story {
    background:
        linear-gradient(180deg, rgba(13, 13, 12, .96), rgba(10, 10, 9, .98)),
        url("/assets/tenants/beer9/stage-night.jpg") center / cover fixed;
}

.story-points span {
    border-color: rgba(196, 134, 66, .24);
    background: rgba(196, 134, 66, .10);
    color: var(--ink);
}

.photo-strip img {
    border: 1px solid rgba(196, 134, 66, .24);
    filter: saturate(.88) contrast(1.06);
}

.list-page {
    background:
        linear-gradient(180deg, rgba(8, 8, 7, .9), rgba(8, 8, 7, .98)),
        url("/assets/tenants/beer9/beer-taps.jpg") center top / cover fixed;
}

.listino-main {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(8, 8, 7, .92), rgba(13, 13, 12, .98)),
        url("/assets/tenants/beer9/beer-taps.jpg") center top / cover fixed;
}

.menu-jump {
    backdrop-filter: blur(12px);
}

.menu-jump label,
.menu-jump select {
    color: var(--ink);
}

.menu-jump select {
    border-color: rgba(196, 134, 66, .24);
    background: #11100f;
}

.category-tile {
    overflow: hidden;
}

.category-tile img {
    filter: saturate(.96) brightness(.84) contrast(1.04);
}

.full-category {
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
        rgba(16, 15, 14, .9);
}

.menu-group {
    background:
        linear-gradient(135deg, rgba(122,63,36,.14), rgba(255,255,255,.025)),
        rgba(12, 12, 11, .9);
}

.menu-group h3 {
    background: rgba(196, 134, 66, .12);
    color: #e1b16e;
}

.menu-row {
    border-color: rgba(242, 238, 230, .13);
}

.menu-row span {
    color: rgba(242, 238, 230, .62);
}

.menu-row em {
    color: #e0ad68;
}

.footer {
    background: #070707;
    color: var(--ink);
    border-top: 1px solid rgba(196, 134, 66, .28);
}

.footer img {
    width: 132px;
    border: 1px solid rgba(196, 134, 66, .2);
}

@media (max-width: 920px) {
    .hero {
        min-height: 760px;
    }

    .hero-media img:first-child {
        display: block;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(5,5,5,.58) 0%, rgba(5,5,5,.88) 58%, rgba(5,5,5,.96) 100%),
            radial-gradient(circle at 30% 62%, rgba(164, 70, 37, .28), transparent 24rem);
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 66px;
    }

    .topbar {
        background: rgba(5, 5, 5, .98);
    }

    .hero {
        min-height: 720px;
    }

    h1 {
        font-size: 3.45rem;
    }

    .section,
    .listino-main,
    .story {
        background-attachment: scroll;
    }
}

/* Round 2 B9 refinements */
.brand img {
    padding: 6px;
    object-fit: contain;
    background: #050505;
}

.hero {
    min-height: calc(100vh - 96px);
    grid-template-columns: minmax(0, .92fr) minmax(300px, .68fr);
    align-items: center;
    padding-top: clamp(46px, 7vw, 86px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.72) 42%, rgba(5,5,5,.24) 100%),
        radial-gradient(circle at 16% 68%, rgba(164,70,37,.32), transparent 28rem);
    pointer-events: none;
}

.hero::after {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5,5,5,0) 58%, rgba(5,5,5,.88) 100%),
        linear-gradient(90deg, rgba(5,5,5,.18), rgba(5,5,5,.04));
}

.hero-media {
    grid-template-columns: 1fr;
}

.hero-media img {
    opacity: 0;
    filter: saturate(.82) contrast(1.08) brightness(.72);
}

.hero-media img:first-child {
    opacity: 1;
}

.hero-copy,
.hero-card {
    z-index: 2;
}

.hero-copy {
    max-width: 820px;
}

.hero-logo {
    width: clamp(82px, 9vw, 132px);
    margin-bottom: clamp(28px, 4vw, 48px);
    padding: 8px;
    border: 0;
    background: rgba(5, 5, 5, .72);
    opacity: .94;
}

.hero h1 {
    max-width: 8.2ch;
    font-size: clamp(4.4rem, 10vw, 9.4rem);
}

.hero-photos {
    align-self: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-photos img {
    width: 100%;
    height: clamp(150px, 22vw, 260px);
    object-fit: cover;
    border: 1px solid rgba(196, 134, 66, .32);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,.42);
    filter: saturate(.86) contrast(1.05);
}

.hero-photos img:first-child {
    grid-column: 1 / -1;
    height: clamp(180px, 26vw, 320px);
}

.hero-photos span {
    grid-column: 1 / -1;
    display: block;
    padding: 12px 0 0;
    color: #d49a4f;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.full-category-head {
    border-color: color-mix(in srgb, var(--gold) 20%, var(--line));
    background:
        linear-gradient(112deg,
            color-mix(in srgb, var(--front-card-bg, #151413) 90%, var(--gold) 10%) 0%,
            color-mix(in srgb, var(--front-card-bg, #151413) 96%, var(--primary) 4%) 54%,
            var(--front-card-bg, #151413) 100%),
        var(--front-card-bg, #151413);
    box-shadow: 0 18px 52px rgba(0,0,0,.3);
}

.full-category h2 {
    color: #f4efe7;
    text-shadow: none;
}

.full-category-head p {
    color: rgba(244, 239, 231, .72);
}

.menu-jump {
    top: 101px;
    z-index: 9;
    margin-top: 0;
    border-color: rgba(196, 134, 66, .36);
    background: rgba(10, 10, 9, .96);
    box-shadow: 0 16px 38px rgba(0,0,0,.4);
}

.menu-jump label {
    color: #f4efe7;
}

.menu-jump select {
    color: #f4efe7;
}

@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-photos {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-photos img,
    .hero-photos img:first-child {
        grid-column: auto;
        height: 180px;
    }

    .hero-photos span {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 34px;
    }

    .hero-logo {
        width: 86px;
        margin-bottom: 28px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 16vw, 5.2rem);
    }

    .hero-photos {
        grid-template-columns: 1fr;
    }

    .hero-photos img,
    .hero-photos img:first-child {
        height: 180px;
    }

    .menu-jump {
        top: 108px;
    }

    .full-category {
        scroll-margin-top: 184px;
    }
}

/* Elegant motion layer */
@keyframes pageGlowIn {
    from {
        opacity: 0;
        transform: scale(1.015);
        filter: brightness(.65) blur(4px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) blur(0);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes lineReveal {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes photoFloatIn {
    from {
        opacity: 0;
        transform: translate3d(18px, 22px, 0) scale(.965);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes slowBreath {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.035);
    }
}

html.is-loading body {
    cursor: wait;
}

.topbar {
    transition: background-color .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.hero-media img:first-child {
    transform-origin: center;
    animation: pageGlowIn 1100ms cubic-bezier(.18, .84, .32, 1) both, slowBreath 18s ease-in-out 1200ms infinite;
}

.hero-logo,
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p:not(.eyebrow),
.hero-actions,
.hero-photos img,
.hero-photos span,
.topbar .brand,
.topbar .nav,
.topbar .nav-cta {
    opacity: 0;
}

.is-ready .topbar .brand {
    animation: riseIn 650ms cubic-bezier(.18, .84, .32, 1) 80ms both;
}

.is-ready .topbar .nav {
    animation: riseIn 650ms cubic-bezier(.18, .84, .32, 1) 160ms both;
}

.is-ready .topbar .nav-cta {
    animation: riseIn 650ms cubic-bezier(.18, .84, .32, 1) 240ms both;
}

.policy-body .topbar .brand,
.policy-body .topbar .nav,
.policy-body .topbar .nav-cta {
    opacity: 1;
    transform: none;
    animation: none;
}

.is-ready .hero-logo {
    animation: riseIn 760ms cubic-bezier(.18, .84, .32, 1) 180ms both;
}

.is-ready .hero-copy .eyebrow {
    animation: riseIn 700ms cubic-bezier(.18, .84, .32, 1) 300ms both;
}

.is-ready .hero-copy h1 {
    animation: riseIn 860ms cubic-bezier(.18, .84, .32, 1) 400ms both;
}

.is-ready .hero-copy > p:not(.eyebrow) {
    animation: riseIn 760ms cubic-bezier(.18, .84, .32, 1) 560ms both;
}

.is-ready .hero-actions {
    animation: riseIn 720ms cubic-bezier(.18, .84, .32, 1) 690ms both;
}

.is-ready .hero-photos img {
    animation: photoFloatIn 850ms cubic-bezier(.18, .84, .32, 1) both;
}

.is-ready .hero-photos img:nth-child(1) {
    animation-delay: 460ms;
}

.is-ready .hero-photos img:nth-child(2) {
    animation-delay: 610ms;
}

.is-ready .hero-photos img:nth-child(3) {
    animation-delay: 740ms;
}

.is-ready .hero-photos span {
    animation: riseIn 650ms cubic-bezier(.18, .84, .32, 1) 880ms both;
}

.hero-copy .eyebrow,
.section-heading .eyebrow,
.menu-cta-copy .eyebrow,
.story-copy .eyebrow {
    position: relative;
    display: inline-block;
}

.hero-copy .eyebrow::after,
.section-heading .eyebrow::after,
.menu-cta-copy .eyebrow::after,
.story-copy .eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, rgba(212, 154, 79, .85), transparent);
}

.is-ready .hero-copy .eyebrow::after,
.is-visible .eyebrow::after {
    animation: lineReveal 760ms cubic-bezier(.18, .84, .32, 1) 260ms both;
}

.reveal,
.quick-info > *,
.category-tile,
.full-category,
.menu-group {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 700ms cubic-bezier(.18, .84, .32, 1), transform 700ms cubic-bezier(.18, .84, .32, 1), border-color 220ms ease, background-color 220ms ease;
}

.reveal.is-visible,
.quick-info > *.is-visible,
.category-tile.is-visible,
.full-category.is-visible,
.menu-group.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.category-tile,
.menu-cta-card,
.hero-photos img {
    transition: transform 450ms cubic-bezier(.18, .84, .32, 1), filter 450ms ease, border-color 220ms ease;
}

.category-tile:hover,
.menu-cta-card:hover,
.hero-photos img:hover {
    transform: translateY(-4px);
    filter: saturate(.98) contrast(1.08) brightness(.92);
    border-color: rgba(212, 154, 79, .58);
}

.menu-row {
    transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

@media (max-width: 760px) {
    .menu-row.has-item-image {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .menu-row.has-item-image em {
        grid-column: 2;
        justify-self: start;
    }
}

.menu-row:hover {
    transform: translateX(3px);
    background: rgba(212, 154, 79, .045);
    border-color: rgba(212, 154, 79, .24);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .hero-logo,
    .hero-copy .eyebrow,
    .hero-copy h1,
    .hero-copy > p:not(.eyebrow),
    .hero-actions,
    .hero-photos img,
    .hero-photos span,
    .topbar .brand,
    .topbar .nav,
    .topbar .nav-cta,
    .reveal,
    .quick-info > *,
    .category-tile,
    .full-category,
    .menu-group {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Contact form and editable menu refinements */
.hero-copy {
    transform: translateY(calc(var(--hero-scroll, 0) * -18px));
    transition: transform .12s linear;
}

.hero-photos {
    transform: translateY(calc(var(--hero-scroll, 0) * 24px));
    transition: transform .12s linear;
}

.list-page .reveal,
.list-page .category-tile,
.list-page .full-category,
.list-page .menu-group {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
}

.reveal,
.category-tile,
.full-category,
.menu-group {
    transition-delay: var(--reveal-delay, 0s);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
    gap: clamp(26px, 5vw, 72px);
    align-items: start;
    scroll-margin-top: 112px;
    background:
        linear-gradient(120deg, rgba(8,8,7,.96), rgba(15,13,11,.9)),
        url("/assets/tenants/beer9/terrace-night.jpg") center / cover fixed;
}

.contact-copy p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(242, 238, 230, .74);
    line-height: 1.7;
}

.contact-direct {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-direct a {
    width: fit-content;
    color: #e0ad68;
    font-weight: 850;
}

.contact-details {
    display: grid;
    gap: 0;
    margin-top: 30px;
}

.contact-details a {
    display: grid;
    gap: 5px;
    padding: 18px 0;
    border-top: 1px solid rgba(196, 134, 66, .24);
}

.contact-details span {
    color: rgba(242, 238, 230, .54);
    font-size: .76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.contact-details strong {
    color: #f4efe7;
    font-weight: 650;
    line-height: 1.4;
}

.contact-form {
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(196, 134, 66, .28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(196,134,66,.12), rgba(255,255,255,.025)),
        rgba(10, 10, 9, .92);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: rgba(242, 238, 230, .78);
    font-size: .86rem;
    font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(196, 134, 66, .25);
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(3, 3, 3, .72);
    color: #f4efe7;
    font: inherit;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(212, 154, 79, .72);
    box-shadow: 0 0 0 3px rgba(212, 154, 79, .12);
}

.contact-form .wide {
    grid-column: 1 / -1;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
    border: 0;
    cursor: pointer;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-notice {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 850;
}

.form-notice.success {
    background: rgba(87, 143, 91, .18);
    color: #c8f0c8;
}

.form-notice.error {
    background: rgba(211, 90, 54, .18);
    color: #ffd0c4;
}

@media (max-width: 920px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        background-attachment: scroll;
    }
}

.menu-jump {
    top: 111px;
    grid-template-columns: auto minmax(220px, 1fr);
    align-items: center;
    gap: 12px;
    margin: -10px 0 26px;
    padding: 12px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

.menu-jump label {
    white-space: nowrap;
}

.menu-jump select {
    width: 100%;
    min-width: 0;
}

.full-category {
    scroll-margin-top: 202px;
}

@media (max-width: 560px) {
    .menu-jump {
        top: 91px;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
        margin: -14px calc(clamp(18px, 5vw, 72px) * -1) 24px;
        padding: 10px clamp(18px, 5vw, 72px);
        border-right: 0;
        border-left: 0;
        border-radius: 0 0 8px 8px;
    }

    .full-category {
        scroll-margin-top: 191px;
    }
}

.footer-legal {
    display: grid;
    gap: 3px;
    color: rgba(242, 238, 230, .56);
    line-height: 1.45;
    font-size: .9rem;
    font-weight: 300;
}

.footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: start;
}

.footer-legal strong {
    color: rgba(242, 238, 230, .58);
    font-size: .94rem;
    font-weight: 320;
}

.footer-legal span {
    display: block;
    color: rgba(242, 238, 230, .52);
}

.footer-company-line {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.footer-links,
.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.footer-policy-links {
    margin-top: 10px;
}

.footer a,
.footer-policy-links a {
    position: relative;
    display: inline-flex;
    width: fit-content;
    padding-bottom: 5px;
    color: rgba(242, 238, 230, .54);
    font-weight: 300;
    white-space: nowrap;
}

.footer a::after,
.footer-policy-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: currentColor;
    transition: transform .2s ease;
}

.footer a:hover::after,
.footer-policy-links a:hover::after {
    transform: scaleX(1);
}

.footer-links a {
    color: #d49a4f;
    font-weight: 650;
}

.cookie-banner {
    position: fixed;
    right: clamp(14px, 3vw, 28px);
    bottom: clamp(14px, 3vw, 28px);
    z-index: 30;
    width: min(520px, calc(100% - 28px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(196, 134, 66, .30);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(196, 134, 66, .14), rgba(255, 255, 255, .025)),
        rgba(10, 10, 9, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .46);
    backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    color: #f4efe7;
}

.cookie-banner p {
    margin: 5px 0 0;
    color: rgba(242, 238, 230, .72);
    line-height: 1.45;
}

.cookie-banner nav {
    display: grid;
    gap: 8px;
    justify-items: stretch;
}

.cookie-banner a,
.cookie-banner button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 14px;
    font-weight: 850;
    white-space: nowrap;
}

.cookie-banner a {
    color: #f4efe7;
    background: rgba(255, 255, 255, .08);
}

.cookie-banner button {
    border: 0;
    background: linear-gradient(135deg, #d49a4f, #9b4d2a);
    color: #090908;
    cursor: pointer;
}

.policy-body {
    background:
        linear-gradient(180deg, rgba(8, 8, 7, .94), rgba(8, 8, 7, .98)),
        url("/assets/tenants/beer9/beer-taps.jpg") center top / cover fixed;
}

.policy-page {
    width: min(1040px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(34px, 6vw, 82px) 0;
}

.policy-content {
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(196, 134, 66, .26);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(196, 134, 66, .10), rgba(255, 255, 255, .025)),
        rgba(14, 13, 12, .94);
    box-shadow: var(--shadow);
}

.policy-content h1 {
    margin: 0 0 20px;
    font-size: clamp(2.5rem, 6vw, 5.8rem);
}

.policy-content h2 {
    margin: 30px 0 10px;
    color: #f4efe7;
    font-size: clamp(1.18rem, 2.2vw, 1.55rem);
}

.policy-content p {
    color: rgba(242, 238, 230, .74);
    line-height: 1.7;
}

.policy-content a {
    color: #d49a4f;
    font-weight: 850;
}

.allergen-page .policy-content {
    max-width: none;
}

.allergen-list-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.allergen-list-page article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(196, 134, 66, .20);
    border-radius: 8px;
    background: rgba(0, 0, 0, .24);
}

.allergen-list-page article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(196, 134, 66, .16);
    color: #d49a4f;
    font-weight: 900;
}

.allergen-list-page h2 {
    margin: 0 0 6px;
    font-size: 1.08rem;
}

.allergen-list-page p {
    margin: 0;
}

.allergen-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    margin-top: 36px;
    padding: 24px;
    border: 1px solid rgba(196, 134, 66, .34);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(196, 134, 66, .14), rgba(255, 255, 255, .03)),
        rgba(17, 16, 15, .92);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .24);
}

.allergen-note strong {
    display: block;
    margin-bottom: 8px;
    color: #f4efe7;
    font-size: 1.35rem;
}

.allergen-note p {
    max-width: 720px;
    margin: 0;
    color: rgba(242, 238, 230, .72);
    line-height: 1.65;
}

.allergen-note button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #d49a4f, #9b4d2a);
    color: #090908;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.allergen-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
}

.allergen-modal[hidden] {
    display: none;
}

.allergen-panel {
    width: min(560px, 100%);
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(196, 134, 66, .34);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(196, 134, 66, .14), rgba(255, 255, 255, .03)),
        #11100f;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .5);
}

.allergen-panel h2 {
    margin: 0 0 14px;
    color: #f4efe7;
    font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.allergen-panel p:not(.eyebrow) {
    color: rgba(242, 238, 230, .74);
    line-height: 1.65;
}

.allergen-page-link {
    display: inline-flex;
    margin: 8px 16px 18px 0;
    color: #d49a4f;
    font-weight: 900;
}

.allergen-panel button {
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    background: linear-gradient(135deg, #d49a4f, #9b4d2a);
    color: #090908;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.allergen-page-link + button {
    margin-top: 8px;
}

@media (max-width: 680px) {
    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-banner nav {
        grid-template-columns: 1fr 1fr;
    }

    .allergen-page-link,
    .allergen-panel button {
        width: 100%;
        justify-content: center;
    }

    .allergen-note {
        grid-template-columns: 1fr;
    }

    .allergen-note button {
        width: 100%;
    }

    .allergen-page-link {
        margin-right: 0;
    }
}

@media (max-width: 560px) {
    .footer {
        align-items: start;
    }

    .allergen-list-page {
        grid-template-columns: 1fr;
    }
}

/* B9 home: a venue-led composition distinct from the Cafetin layout */
.b9-home {
    background: #090908;
    color: #f4efe7;
}

.b9-home main {
    overflow: hidden;
}

.b9-hero {
    min-height: calc(100svh - 111px);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, .34fr);
    align-items: end;
    padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 72px) 0;
    isolation: isolate;
    background: #090908;
}

.b9-hero-media,
.b9-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.b9-hero-media {
    z-index: -3;
    object-fit: cover;
    object-position: center 56%;
    filter: saturate(.74) contrast(1.16) brightness(.72);
    transform: scale(calc(1.035 + var(--hero-scroll, 0) * .025));
}

.b9-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 5, 4, .94) 0%, rgba(5, 5, 4, .5) 56%, rgba(5, 5, 4, .3) 100%),
        linear-gradient(180deg, rgba(5, 5, 4, .08), rgba(5, 5, 4, .88));
}

.b9-hero-copy {
    max-width: 760px;
    align-self: center;
    padding-bottom: clamp(140px, 18vh, 210px);
}

.b9-hero h1 {
    max-width: none;
    margin: 0 0 24px;
    color: #f5f0e7;
    font-size: clamp(4.8rem, 12vw, 11rem);
    font-weight: 850;
    line-height: .76;
    letter-spacing: 0;
}

.b9-hero-copy > p:not(.eyebrow) {
    max-width: 570px;
    color: rgba(244, 239, 231, .78);
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    line-height: 1.55;
}

.b9-hero-mark {
    align-self: center;
    justify-self: end;
    padding-bottom: clamp(140px, 18vh, 210px);
}

.b9-hero-mark img {
    width: clamp(128px, 18vw, 250px);
    opacity: .72;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, .55));
}

.b9-status-rail {
    position: absolute;
    right: 0;
    bottom: 0;
    left: clamp(18px, 5vw, 72px);
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1fr 1.25fr;
    border-top: 1px solid rgba(212, 154, 79, .38);
    background: rgba(7, 7, 6, .86);
    backdrop-filter: blur(16px);
}

.b9-status-rail > * {
    min-width: 0;
    padding: 22px clamp(18px, 3vw, 38px);
    border-right: 1px solid rgba(212, 154, 79, .2);
}

.b9-status-rail span,
.b9-status-rail strong {
    display: block;
}

.b9-status-rail span {
    margin-bottom: 7px;
    color: #d49a4f;
    font-size: .7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.b9-status-rail strong {
    color: rgba(244, 239, 231, .84);
    font-size: .92rem;
    font-weight: 520;
    line-height: 1.4;
}

.b9-scene {
    padding: clamp(76px, 11vw, 150px) clamp(18px, 5vw, 72px);
    background:
        linear-gradient(180deg, #0a0a09, #12100e);
}

.b9-scene-intro {
    width: min(880px, 100%);
    margin: 0 0 clamp(38px, 6vw, 72px) auto;
}

.b9-scene-intro h2,
.b9-menu-heading h2,
.b9-feature h2 {
    color: #f4efe7;
    letter-spacing: 0;
}

.b9-scene-intro h2 {
    font-size: clamp(3rem, 7.5vw, 7rem);
    line-height: .9;
}

.b9-scene-intro > p:not(.eyebrow) {
    max-width: 650px;
    color: rgba(244, 239, 231, .64);
    line-height: 1.7;
}

.b9-photo-wall {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1.65fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.b9-photo-wall figure {
    min-height: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(212, 154, 79, .18);
}

.b9-photo-wall .b9-photo-main {
    grid-row: 1 / 3;
}

.b9-photo-wall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78) contrast(1.08) brightness(.8);
    transition: transform .7s ease, filter .7s ease;
}

.b9-photo-wall figure:hover img {
    transform: scale(1.025);
    filter: saturate(.95) contrast(1.05) brightness(.9);
}

.b9-photo-wall figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px 20px 18px;
    color: #f4efe7;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(transparent, rgba(0, 0, 0, .82));
}

.b9-menu-wall {
    padding: clamp(76px, 10vw, 140px) 0;
    background: #e4dfd5;
    color: #11100f;
}

.b9-menu-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding: 0 clamp(18px, 5vw, 72px) clamp(34px, 5vw, 62px);
}

.b9-menu-heading h2 {
    max-width: 760px;
    margin: 0;
    color: #12110f;
    font-size: clamp(3rem, 7vw, 6.7rem);
    line-height: .88;
}

.b9-menu-tracks {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 10px;
    padding: 0 clamp(18px, 5vw, 72px);
}

.b9-menu-tile {
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #171513;
}

.b9-menu-tile.featured {
    grid-column: span 6;
}

.b9-menu-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .84));
}

.b9-menu-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.75) brightness(.72);
    transition: transform .55s ease, filter .55s ease;
}

.b9-menu-tile:hover img {
    transform: scale(1.035);
    filter: saturate(.95) brightness(.82);
}

.b9-menu-number,
.b9-menu-label {
    position: absolute;
    z-index: 1;
}

.b9-menu-number {
    top: 16px;
    right: 16px;
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    font-weight: 700;
}

.b9-menu-label {
    right: 18px;
    bottom: 18px;
    left: 18px;
}

.b9-menu-label strong,
.b9-menu-label small {
    display: block;
}

.b9-menu-label strong {
    font-size: clamp(1.25rem, 2.3vw, 2.2rem);
    line-height: 1;
}

.b9-menu-label small {
    margin-top: 7px;
    color: rgba(255, 255, 255, .66);
    font-weight: 650;
}

.b9-feature {
    min-height: min(850px, 88vh);
    position: relative;
    display: flex;
    align-items: end;
    padding: clamp(60px, 9vw, 130px) clamp(18px, 5vw, 72px);
    isolation: isolate;
    background: #0a0908;
}

.b9-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 7, 6, .94), rgba(7, 7, 6, .2) 72%),
        linear-gradient(180deg, rgba(7, 7, 6, .08), rgba(7, 7, 6, .72));
}

.b9-feature > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.82) contrast(1.08);
}

.b9-feature-copy {
    max-width: 720px;
}

.b9-feature h2 {
    margin-bottom: 24px;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: .8;
}

.b9-feature-copy > p:not(.eyebrow) {
    max-width: 550px;
    color: rgba(244, 239, 231, .72);
    font-size: 1.08rem;
    line-height: 1.65;
}

.b9-contact {
    border-top: 1px solid rgba(212, 154, 79, .22);
    background:
        linear-gradient(105deg, rgba(8, 8, 7, .98), rgba(21, 17, 13, .94)),
        url("/assets/tenants/beer9/beer-taps.jpg") center / cover;
}

.b9-home .footer {
    background: #050505;
}

@media (max-width: 920px) {
    .b9-hero {
        min-height: calc(100svh - 91px);
        grid-template-columns: 1fr;
    }

    .b9-hero-copy {
        padding-bottom: 260px;
    }

    .b9-hero-mark {
        display: none;
    }

    .b9-status-rail {
        left: 0;
    }

    .b9-photo-wall {
        min-height: 760px;
        grid-template-columns: 1.25fr .75fr;
    }

    .b9-menu-tile,
    .b9-menu-tile.featured {
        grid-column: span 6;
    }
}

@media (max-width: 680px) {
    .b9-hero {
        min-height: 780px;
        padding-top: 44px;
    }

    .b9-hero-media {
        object-position: 58% center;
    }

    .b9-hero-shade {
        background: linear-gradient(180deg, rgba(5, 5, 4, .28), rgba(5, 5, 4, .84) 52%, rgba(5, 5, 4, .98));
    }

    .b9-hero-copy {
        align-self: end;
        padding-bottom: 300px;
    }

    .b9-hero h1 {
        font-size: clamp(3.2rem, 14vw, 4.3rem);
        line-height: .78;
    }

    .b9-status-rail {
        grid-template-columns: 1fr;
    }

    .b9-status-rail > * {
        padding: 12px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(212, 154, 79, .16);
    }

    .b9-status-rail span {
        margin-bottom: 3px;
    }

    .b9-photo-wall {
        min-height: 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 390px 210px;
    }

    .b9-photo-wall .b9-photo-main {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .b9-menu-heading {
        align-items: start;
        flex-direction: column;
    }

    .b9-menu-tracks {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .b9-menu-tile,
    .b9-menu-tile.featured {
        flex: 0 0 min(82vw, 350px);
        height: 270px;
        scroll-snap-align: start;
    }

    .b9-feature {
        min-height: 700px;
    }

    .b9-feature::after {
        background: linear-gradient(180deg, rgba(7, 7, 6, .12), rgba(7, 7, 6, .94) 68%);
    }

    .b9-feature h2 {
        font-size: clamp(3.5rem, 18vw, 5.4rem);
    }

    .cookie-banner > * {
        min-width: 0;
    }

    .cookie-banner {
        right: 14px;
        left: 14px;
        width: auto;
        max-width: none;
        overflow: hidden;
    }

    .cookie-banner nav {
        min-width: 0;
        width: 100%;
    }

    .cookie-banner a,
    .cookie-banner button {
        min-width: 0;
        padding-inline: 8px;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .b9-hero-media,
    .b9-photo-wall img,
    .b9-menu-tile img {
        transform: none !important;
        transition: none !important;
    }
}

/* Beer9 listino performance pass */
.list-page {
    background: linear-gradient(180deg, #11100f 0%, #090908 100%);
}

.list-page .topbar.compact {
    min-height: 64px;
    padding-block: 9px;
}

.list-page .list-phone-cta {
    justify-self: end;
}

.list-page .brand img {
    width: 58px;
    padding: 5px;
}

.list-page .listino-main {
    background:
        radial-gradient(circle at 18% 0%, rgba(212, 154, 79, .10), transparent 34rem),
        linear-gradient(180deg, #11100f 0%, #090908 100%);
}

.list-page .menu-jump {
    top: 76px;
    margin-top: 0;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

@media (max-width: 760px) {
    .list-page .topbar.compact {
        min-height: 60px;
        padding-block: 8px;
    }

    .list-page .brand img {
        width: 54px;
    }

    .list-page .list-phone-cta {
        display: inline-flex;
        min-height: 38px;
        padding: 0 12px;
        white-space: nowrap;
    }

    .list-page .menu-jump {
        top: 70px;
    }
}

/* Phone call chooser */
.phone-call-trigger{border:0;font:inherit;cursor:pointer}
.phone-nav-link{border:0;background:transparent;color:inherit;font:inherit;font-weight:760;cursor:pointer}
.nav .phone-nav-link{min-height:42px;padding:0 14px;border-radius:999px;color:var(--muted)}
.list-page .nav .phone-nav-link{color:rgba(255,255,255,.76)}
.phone-call-sheet{position:fixed;inset:0;z-index:70;display:grid;place-items:center;padding:18px;background:rgba(10,10,9,.54);backdrop-filter:blur(8px)}
.phone-call-sheet[hidden]{display:none}
.phone-call-panel{position:relative;width:min(100%,460px);padding:24px;border:1px solid var(--line);border-radius:18px;background:var(--front-card-bg,#151413);color:var(--ink);box-shadow:0 28px 90px rgba(0,0,0,.38)}
.phone-call-close{position:absolute;top:12px;right:12px;width:36px;height:36px;border:1px solid var(--line);border-radius:50%;background:transparent;color:var(--muted);font:inherit;font-size:1.25rem;cursor:pointer}
.phone-call-panel h2{margin:0 44px 16px 0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;font-size:clamp(2rem,8vw,3.2rem);font-weight:900;line-height:.95;text-transform:uppercase}
.phone-call-options{display:grid;gap:10px}
.phone-call-options a{display:grid;gap:5px;padding:16px;border-radius:10px;background:var(--gold);color:#171615}
.phone-call-options a.secondary-line{background:color-mix(in srgb,var(--gold) 72%,#fff)}
.phone-call-options span{font-size:1.08rem;font-weight:900;line-height:1.08}
.phone-call-options strong{font-size:.9rem;font-weight:760;opacity:.78}
.phone-call-note{margin:2px 0;padding:10px 12px;border:1px solid color-mix(in srgb,var(--gold) 28%,transparent);border-radius:10px;background:color-mix(in srgb,var(--gold) 12%,var(--front-card-bg,#151413));color:var(--muted);font-size:.9rem;line-height:1.35;text-align:center}
@media(max-width:560px){.phone-call-sheet{padding:14px}.phone-call-panel{width:100%;padding:22px}}
.platform-credit{display:grid;gap:4px;margin-top:12px;padding-top:12px;border-top:1px solid color-mix(in srgb,var(--line) 78%,transparent);color:color-mix(in srgb,var(--muted) 88%,transparent);font-size:.78rem;line-height:1.45}
.platform-credit a{color:var(--gold);font-weight:850}
.platform-credit small{color:color-mix(in srgb,var(--muted) 76%,transparent);font-size:.72rem}
.list-page .menu-jump{top:var(--list-sticky-offset,76px)}
.list-page .full-category{scroll-margin-top:var(--list-anchor-offset,202px)}

/* 20260617: allergen page and group-title readability refinements */
.menu-group h3 {
    color: #f4d39b;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .34);
}

body.theme-mode-light .menu-group h3 {
    color: color-mix(in srgb, var(--red) 76%, #111);
    text-shadow: none;
}

.policy-page {
    width: min(1120px, calc(100% - 36px));
    margin-inline: auto;
}

.allergen-page .policy-content {
    max-width: 1040px;
    margin-inline: auto;
}

body.theme-mode-dark .allergen-page .policy-content {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(242, 238, 230, .14);
    border-radius: 12px;
    background: rgba(12, 12, 11, .72);
}

body.theme-mode-dark .allergen-list-page article {
    background: color-mix(in srgb, var(--front-card-bg, #151413) 88%, #000);
    color: var(--ink);
}

body.theme-mode-dark .allergen-list-page h2 {
    color: var(--ink);
}

body.theme-mode-dark .allergen-list-page p {
    color: var(--muted);
}

/* 20260617: single allergen modal action */
.allergen-panel button[data-allergen-close] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 128px;
    min-height: 46px;
    margin: 18px 0 0 auto;
    padding-inline: 22px;
    border: 1px solid rgba(242, 238, 230, .82);
    border-radius: 8px;
    background: transparent;
    color: #f4efe7;
}

@media (max-width: 560px) {
    .allergen-panel button[data-allergen-close] {
        width: 100%;
    }
}
