:root {
    color-scheme: light;
    --ink: #211f1b;
    --muted: #6f6a61;
    --paper: #fffaf1;
    --cream: #f6ead6;
    --green: #29483a;
    --sage: #9db6a4;
    --red: #b8322b;
    --gold: #d9a441;
    --line: rgba(33, 31, 27, .14);
    --shadow: 0 22px 70px rgba(41, 72, 58, .16);
}

.platform-credit {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(44, 44, 37, .12);
    color: color-mix(in srgb, var(--muted) 88%, transparent);
    font-size: .78rem;
    line-height: 1.45;
}

.platform-credit a {
    color: var(--primary);
    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, 70px);
}

.list-page .full-category {
    scroll-margin-top: var(--list-anchor-offset, 178px);
}

/* 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)}
.phone-call-sheet{position:fixed;inset:0;z-index:70;display:grid;place-items:center;padding:18px;background:rgba(33,31,27,.42);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,#fff);color:var(--ink);box-shadow:0 28px 90px rgba(33,31,27,.24)}
.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:Georgia,"Times New Roman",serif;font-size:clamp(2rem,8vw,3.2rem);line-height:.95}
.phone-call-options{display:grid;gap:10px}
.phone-call-options a{display:grid;gap:5px;padding:16px;border-radius:10px;background:var(--red);color:#fff}
.phone-call-options a.secondary-line{background:color-mix(in srgb,var(--red) 82%,#fff)}
.phone-call-options span{font-size:1.08rem;font-weight:850;line-height:1.08}
.phone-call-options strong{font-size:.9rem;font-weight:760;opacity:.9}
.phone-call-note{margin:2px 0;padding:10px 12px;border:1px solid color-mix(in srgb,var(--red) 20%,transparent);border-radius:10px;background:color-mix(in srgb,var(--red) 8%,#fff);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}}

* {
    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(33, 31, 27, .14);
}

.brand img {
    width: 118px;
    height: auto;
    transition: transform .28s ease;
}

.brand:hover img {
    transform: translateY(-1px) rotate(-1deg);
}

.nav {
    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);
    transition: color .22s ease, transform .22s ease;
}

.nav a:hover {
    color: white;
    transform: translateY(-1px);
}

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

.button,
.nav-cta {
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(33, 31, 27, .14);
}

.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: #18251d;
    color: white;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(19, 28, 23, .92), rgba(19, 28, 23, .55) 52%, rgba(19, 28, 23, .16));
}

.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);
    transform: scale(1.04);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media img:nth-child(2) {
    animation-duration: 22s;
    animation-delay: -4s;
}

.hero-media img:nth-child(3) {
    animation-duration: 24s;
    animation-delay: -8s;
}

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

.hero-copy {
    max-width: 760px;
    transform: translateY(calc(var(--hero-scroll, 0) * -18px));
    transition: transform .12s linear;
}

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

.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: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 11vw, 9rem);
    font-weight: 700;
    line-height: .84;
}

h2 {
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: .95;
}

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));
    animation: sealFloat 4.8s ease-in-out infinite;
}

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

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

.quick-info > *:hover {
    background: #fff6e8;
    transform: translateY(-2px);
}

.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;
    transition: transform .35s ease, box-shadow .35s ease;
}

.menu-cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 85px rgba(41, 72, 58, .22);
}

.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;
    transition: transform .7s ease;
}

.menu-cta-card:hover img {
    transform: scale(1.05);
}

.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;
    transition: transform .22s ease, background .22s ease;
}

.story-points span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .13);
}

.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;
    transition: transform .45s ease, filter .45s ease;
}

.photo-strip img:hover {
    transform: translateY(-8px) rotate(-1deg);
    filter: saturate(1.06);
}

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

.photo-strip img:nth-child(2):hover {
    transform: translateY(8px) rotate(1deg);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(300px, .7fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
    background: linear-gradient(135deg, #fffaf1 0%, #eef2ea 100%);
}

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

.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-details a {
    display: grid;
    gap: 4px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.contact-details span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.contact-details strong {
    color: var(--green);
    line-height: 1.35;
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 820;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 12px;
    background: #fffdf8;
    color: var(--ink);
    font: inherit;
}

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

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

.form-notice {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 760;
    line-height: 1.4;
}

.form-notice.success {
    background: #e5f1e8;
    color: #1f5b36;
}

.form-notice.error {
    background: #fde5e1;
    color: #8f251e;
}

.form-notice.info {
    background: #f4ecd7;
    color: #76530d;
}

.footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: start;
    padding: 30px clamp(18px, 5vw, 72px);
    border-top: 1px solid var(--line);
    background: white;
    color: var(--ink);
}

.footer-legal {
    display: grid;
    gap: 3px;
    color: var(--muted);
    line-height: 1.45;
    font-weight: 320;
}

.footer-legal strong {
    color: var(--muted);
    font-weight: 360;
}

.footer-legal span {
    display: block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.footer a,
.footer-policy-links a {
    position: relative;
    display: inline-flex;
    padding-bottom: 5px;
    color: var(--muted);
    font-weight: 320;
    white-space: nowrap;
}

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

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

.footer-links a {
    color: var(--green);
    font-weight: 650;
}

.cookie-banner {
    position: fixed;
    right: clamp(16px, 4vw, 36px);
    bottom: clamp(16px, 4vw, 36px);
    z-index: 30;
    width: min(420px, calc(100% - 32px));
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 22px 70px rgba(41, 72, 58, .18);
}

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

.cookie-banner strong {
    color: var(--ink);
}

.cookie-banner p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.cookie-banner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.cookie-banner a,
.cookie-banner button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font: inherit;
    font-weight: 760;
}

.cookie-banner a {
    color: var(--green);
}

.cookie-banner button {
    border: 0;
    padding: 0 16px;
    background: var(--red);
    color: white;
    cursor: pointer;
}

.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(--red) 30%, var(--line));
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    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: color-mix(in srgb, var(--ink) 72%, transparent);
    font-size: .68rem;
    font-weight: 800;
    transition: background .15s ease, color .15s ease;
}

.language-switch a:hover {
    color: var(--ink);
    background: color-mix(in srgb, var(--red) 12%, transparent);
}

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

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

.policy-page {
    padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.policy-content {
    max-width: 880px;
}

.policy-content h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

.policy-content h2 {
    margin-top: 34px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.25rem;
    line-height: 1.25;
}

.policy-content p {
    color: var(--muted);
    line-height: 1.7;
}

.policy-content a {
    color: var(--red);
    font-weight: 760;
}

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

.allergen-list-page {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.allergen-list-page article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 8px 28px rgba(41, 72, 58, .06);
}

.allergen-list-page article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff6ee;
    color: var(--red);
    font-weight: 850;
}

.allergen-list-page h2 {
    margin: 1px 0 6px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.08rem;
    line-height: 1.2;
}

.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(36, 70, 55, .16);
    border-radius: 8px;
    background: color-mix(in srgb, var(--green) 5%, #fff);
    box-shadow: 0 14px 36px rgba(36, 70, 55, .08);
}

.allergen-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 1.35rem;
}

.allergen-note p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    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: var(--green);
    color: #fff;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

@media (max-width: 760px) {
    .allergen-note {
        grid-template-columns: 1fr;
    }

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

.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: 70px;
    z-index: 8;
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin: -10px 0 26px;
    padding: 12px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: rgba(255, 250, 241, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(41, 72, 58, .08);
}

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

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

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

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

.allergen-panel {
    width: min(560px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: clamp(22px, 4vw, 34px);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .26);
}

.allergen-panel h2 {
    max-width: 480px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.allergen-panel p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.65;
}

.allergen-page-link {
    display: inline-flex;
    margin: 4px 0 24px;
    color: var(--red);
    font-weight: 820;
}

.allergen-panel button {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font: inherit;
    font-weight: 820;
    cursor: pointer;
}

.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, .04) 0%, rgba(0, 0, 0, .14) 45%, rgba(0, 0, 0, .58) 100%);
}

.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: 190px;
}

.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: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--reveal-delay, 0s);
}

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

.list-page .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.quick-info > * {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2, .8, .2, 1),
        background .25s ease;
}

.quick-info.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.quick-info.is-visible > *:nth-child(2) {
    transition-delay: .08s;
}

.quick-info.is-visible > *:nth-child(3) {
    transition-delay: .16s;
}

@keyframes heroDrift {
    from {
        transform: scale(1.04) translate3d(-1.2%, 0, 0);
    }
    to {
        transform: scale(1.1) translate3d(1.2%, -1%, 0);
    }
}

@keyframes sealFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-6px) rotate(1deg);
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .reveal,
    .quick-info > *,
    .photo-strip img:nth-child(2) {
        opacity: 1;
        transform: none;
    }
}

@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,
    .contact-section,
    .footer {
        grid-template-columns: 1fr;
    }

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

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

    .allergen-list-page {
        grid-template-columns: 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: 92px;
    }

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

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

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

    .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: auto minmax(0, 1fr);
        margin-top: -22px;
    }

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

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

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

@media (max-width: 560px) {
    .listino-main {
        padding-top: 0;
    }

    .menu-jump {
        top: 64px;
        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;
        box-shadow: 0 12px 28px rgba(41, 72, 58, .08);
    }

    .menu-jump label {
        font-size: .9rem;
    }

    .menu-jump select {
        min-height: 40px;
        padding: 0 10px;
        font-size: .96rem;
    }

}

/* 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: var(--red);
    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: color-mix(in srgb, var(--red) 7%, #fff);
    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: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

/* 20260617: allergen page and group-title readability refinements */
.menu-group h3 {
    color: color-mix(in srgb, var(--green) 78%, #fff);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .12);
}

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

/* Shared category-title veil */
.list-page .full-category-head {
    border-color: color-mix(in srgb, var(--primary, var(--green)) 14%, var(--line));
    background:
        linear-gradient(112deg,
            color-mix(in srgb, var(--front-card-bg, #fff) 96%, var(--primary, var(--green)) 4%) 0%,
            color-mix(in srgb, var(--front-card-bg, #fff) 98%, var(--accent, var(--sage)) 2%) 48%,
            var(--front-card-bg, #fff) 100%),
        var(--front-card-bg, #fff);
}

body.theme-mode-dark.list-page .full-category-head {
    border-color: color-mix(in srgb, var(--gold, var(--sage)) 18%, var(--line));
    background:
        linear-gradient(112deg,
            color-mix(in srgb, var(--front-card-bg, #111) 92%, var(--gold, var(--sage)) 8%) 0%,
            color-mix(in srgb, var(--front-card-bg, #111) 96%, var(--primary, var(--green)) 4%) 52%,
            var(--front-card-bg, #111) 100%),
        var(--front-card-bg, #111);
}

.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 color-mix(in srgb, var(--line) 80%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--paper) 86%, #000);
}

body.theme-mode-dark .allergen-list-page article {
    background: color-mix(in srgb, var(--paper) 12%, #fff);
}

body.theme-mode-dark .allergen-note {
    border-color: color-mix(in srgb, var(--line) 80%, transparent);
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--front-card-bg, #111) 88%, var(--green) 12%),
            color-mix(in srgb, var(--front-card-bg, #111) 96%, #000 4%));
    box-shadow: 0 18px 54px rgba(0, 0, 0, .24);
}

body.theme-mode-dark .allergen-note strong {
    color: var(--ink);
}

body.theme-mode-dark .allergen-note 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-radius: 8px;
}

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