:root {
    --ink: #111318;
    --cream: #fff6df;
    --paper: #fffdf7;
    --red: #ef233c;
    --red-dark: #c90f29;
    --pink: #ec0a63;
    --blue: #087bc1;
    --yellow: #ffc72c;
    --muted: #746b60;
    --line: rgba(17, 19, 24, 0.14);
    --shadow: 7px 7px 0 var(--ink);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --content: 1120px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at 16px 16px, rgba(236, 10, 99, 0.09) 0 3px, transparent 3.5px) 0 0 / 32px 32px,
        var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 999px;
    color: white;
    background: var(--ink);
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

.fair-strip {
    position: relative;
    z-index: 1100;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 8px;
    overflow: hidden;
}

.fair-strip span:nth-child(1),
.fair-strip span:nth-child(5) { background: var(--pink); }
.fair-strip span:nth-child(2),
.fair-strip span:nth-child(6) { background: var(--yellow); }
.fair-strip span:nth-child(3) { background: var(--blue); }
.fair-strip span:nth-child(4) { background: var(--red); }

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    border-bottom: 2px solid var(--ink);
    background: rgba(255, 253, 247, 0.92);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 32px), var(--content));
    height: 100%;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 150px;
    height: 66px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: rgba(17, 19, 24, 0.07);
    transform: translateY(-2px);
}

.main-nav a.is-active {
    color: white;
    background: var(--ink);
}

.main-nav .nav-roneo {
    color: white;
    background: var(--pink);
}

.main-nav .nav-roneo:hover,
.main-nav .nav-roneo:focus-visible {
    background: var(--red);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: var(--yellow);
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 3px;
    margin: 4px 0;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 44px;
    align-items: center;
    width: min(calc(100% - 40px), var(--content));
    min-height: 470px;
    margin: 34px auto 42px;
    padding: clamp(38px, 6vw, 74px);
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.7), rgba(255, 241, 202, 0.76)),
        repeating-conic-gradient(from -12deg at 82% 52%, rgba(255, 199, 44, 0.35) 0 7deg, transparent 7deg 15deg),
        var(--cream);
    box-shadow: var(--shadow);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -90px;
    bottom: -120px;
    width: 370px;
    height: 370px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--ink) 0 3px, transparent 3.5px) 0 0 / 24px 24px,
        var(--red);
    transform: rotate(-8deg);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 44%;
    bottom: 40px;
    width: 180px;
    height: 24px;
    border-radius: 55% 45% 60% 40%;
    background: var(--pink);
    transform: rotate(-4deg);
    opacity: 0.9;
}

.hero-dots {
    position: absolute;
    z-index: -1;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, var(--ink) 0 3px, transparent 3.5px) 0 0 / 18px 18px;
    opacity: 0.13;
}

.hero-dots--left {
    left: 18px;
    bottom: 18px;
    transform: rotate(12deg);
}

.hero-dots--right {
    top: 24px;
    right: 22px;
    transform: rotate(-8deg);
}

.eyebrow,
.section-kicker {
    margin: 0 0 10px;
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    background: white;
    box-shadow: 3px 3px 0 var(--ink);
}

.hero-pretitle {
    margin: 28px 0 -5px;
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 800;
    transform: rotate(-2deg);
}

.hero h1 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 14px;
    max-width: 680px;
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(4.1rem, 9vw, 7.8rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--pink);
    text-shadow: 3px 3px 0 white, 5px 5px 0 rgba(17, 19, 24, 0.12);
    transform: rotate(-1deg);
}

.hero h1 em {
    color: var(--ink);
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 0.35em;
    font-style: normal;
    letter-spacing: 0;
    transform: rotate(-7deg);
}

.hero h1 strong {
    width: 100%;
    color: var(--blue);
    font-weight: inherit;
    text-shadow: 3px 3px 0 white, 5px 5px 0 rgba(17, 19, 24, 0.12);
    transform: rotate(1deg);
}

.hero-lead {
    max-width: 590px;
    margin: 24px 0 0;
    color: #403b35;
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    font-weight: 650;
}

.hero-actions,
.closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 19px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}

.button--primary {
    color: white;
    background: var(--red);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--red-dark);
}

.button--ghost {
    background: white;
}

.button--cream {
    color: var(--ink);
    background: var(--yellow);
}

.hero-stamp {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 230px;
    aspect-ratio: 1;
    margin: auto;
    border: 4px solid white;
    border-radius: 50%;
    outline: 3px solid var(--ink);
    color: white;
    background: var(--ink);
    box-shadow: 10px 10px 0 rgba(236, 10, 99, 0.95);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: 0.05em;
    text-align: center;
    transform: rotate(5deg);
}

.hero-stamp::before,
.hero-stamp::after {
    content: "★";
    position: absolute;
    top: 50%;
    color: var(--yellow);
    font-size: 1.35rem;
}

.hero-stamp::before { left: 18px; }
.hero-stamp::after { right: 18px; }

.hero-stamp span {
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 0.86rem;
    font-weight: 900;
}

.hero-stamp strong {
    color: var(--yellow);
    font-size: 2.3rem;
    line-height: 1;
}

.menu-shell {
    width: min(calc(100% - 40px), var(--content));
    margin: 0 auto 64px;
}

.menu-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    padding: 30px 0 22px;
}

.menu-intro h1,
.closing-cta h2 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.menu-intro > p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    font-weight: 650;
}

.status-message {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 16px 18px;
    border: 2px solid var(--ink);
    border-radius: var(--radius-md);
    background: #ffe3e8;
    box-shadow: 4px 4px 0 var(--ink);
}

.status-message i {
    margin-top: 3px;
    color: var(--red);
    font-size: 1.25rem;
}

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

.status-message span {
    color: #665b5e;
    font-size: 0.92rem;
}

.menu-tools {
    position: sticky;
    z-index: 800;
    top: calc(var(--header-height) + 10px);
    margin: 0 -8px 24px;
    padding: 10px 8px 12px;
    border-radius: 20px;
    background: rgba(255, 246, 223, 0.93);
    backdrop-filter: blur(12px);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 520px;
    min-height: 54px;
    margin-bottom: 12px;
    padding: 0 12px 0 17px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: white;
    box-shadow: 4px 4px 0 var(--ink);
}

.search-box > i {
    color: var(--pink);
}

.search-box input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-weight: 700;
}

.search-box input::placeholder {
    color: #998f83;
}

.search-clear {
    display: none;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: white;
    background: var(--ink);
    cursor: pointer;
}

.search-box.has-value .search-clear {
    display: inline-grid;
    place-items: center;
}

.category-nav {
    display: flex;
    gap: 9px;
    padding: 2px 2px 5px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: white;
    font-size: 0.85rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.category-chip:hover,
.category-chip:focus-visible {
    transform: translateY(-2px);
}

.category-chip.is-active {
    color: white;
    background: var(--ink);
}

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

.menu-section {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--ink);
}

.menu-section::before {
    content: "";
    position: absolute;
    top: -34px;
    right: -24px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ink) 0 2.5px, transparent 3px) 0 0 / 17px 17px;
    opacity: 0.13;
}

.menu-section--pink { --section-color: var(--pink); }
.menu-section--red { --section-color: var(--red); }
.menu-section--blue { --section-color: var(--blue); }
.menu-section--yellow { --section-color: var(--yellow); }

.section-heading {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
    min-height: 116px;
    padding: 22px;
    border-bottom: 3px solid var(--ink);
    background: color-mix(in srgb, var(--section-color) 15%, white);
}

.section-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    color: var(--ink);
    background: var(--section-color);
    box-shadow: 4px 4px 0 var(--ink);
    font-size: 1.55rem;
    transform: rotate(-3deg);
}

.menu-section--pink .section-icon,
.menu-section--red .section-icon,
.menu-section--blue .section-icon {
    color: white;
}

.section-heading .section-kicker {
    margin-bottom: 2px;
    color: var(--section-color);
}

.menu-section--yellow .section-heading .section-kicker {
    color: #8b6400;
}

.section-heading h2 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.section-heading p:last-child {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 650;
}

.menu-list {
    padding: 8px 18px 14px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 76px;
    padding: 15px 3px;
    border-bottom: 1px dashed rgba(17, 19, 24, 0.35);
}

.menu-item:last-child {
    border-bottom: 0;
}

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

.menu-item__name {
    min-width: 0;
}

.menu-item h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 850;
}

.menu-item__prices {
    display: flex;
    flex: 0 0 auto;
    gap: 7px;
    align-items: center;
}

.price-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 44px;
    padding: 6px 10px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    color: white;
    background: var(--section-color);
    box-shadow: 3px 3px 0 var(--ink);
    line-height: 1;
    white-space: nowrap;
}

.menu-section--yellow .price-tag {
    color: var(--ink);
}

.price-tag small {
    margin-bottom: 4px;
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.92;
}

.price-tag strong {
    font-size: 0.88rem;
    font-weight: 950;
}

.price-tag--empty {
    color: var(--ink);
    background: #eee7dc;
    font-size: 0.75rem;
    font-weight: 850;
}

.no-results {
    margin: 28px 0;
    padding: 42px 24px;
    border: 3px dashed var(--ink);
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(255, 255, 255, 0.68);
}

.no-results i {
    color: var(--pink);
    font-size: 2.4rem;
}

.no-results h2 {
    margin: 12px 0 4px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.no-results p {
    margin: 0;
    color: var(--muted);
}

.allergen-panel {
    margin-top: 28px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 5px 5px 0 var(--ink);
}

.allergen-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.allergen-panel summary::-webkit-details-marker {
    display: none;
}

.allergen-panel summary span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.allergen-panel summary span i {
    color: var(--red);
}

.summary-arrow {
    transition: transform 0.2s ease;
}

.allergen-panel[open] .summary-arrow {
    transform: rotate(180deg);
}

.allergen-content {
    padding: 0 20px 22px;
    border-top: 1px solid var(--line);
}

.allergen-content p {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.allergen-content img {
    display: block;
    width: min(100%, 720px);
    margin: 14px auto 0;
}

.closing-cta {
    position: relative;
    isolation: isolate;
    width: min(calc(100% - 40px), var(--content));
    margin: 0 auto 56px;
    padding: clamp(42px, 8vw, 84px);
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: var(--radius-xl);
    color: white;
    background: var(--red);
    box-shadow: var(--shadow);
}

.closing-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -160px;
    right: -90px;
    width: 420px;
    height: 420px;
    border: 60px solid rgba(255, 199, 44, 0.95);
    border-radius: 50%;
}

.closing-cta::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 36px;
    bottom: 28px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--ink) 0 4px, transparent 4.5px) 0 0 / 24px 24px;
    opacity: 0.3;
}

.closing-cta > p {
    margin: 0 0 10px;
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 1.25rem;
    font-weight: 900;
    transform: rotate(-2deg);
}

.closing-cta h2 {
    max-width: 720px;
    font-size: clamp(4rem, 10vw, 8.5rem);
}

.closing-cta h2 span {
    color: var(--yellow);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 900;
    text-underline-offset: 5px;
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 36px 20px 110px;
    border-top: 3px solid var(--ink);
    color: white;
    background:
        radial-gradient(circle at 12px 12px, var(--red) 0 4px, transparent 4.5px) 0 0 / 24px 24px,
        var(--ink);
    text-align: center;
}

.site-footer img {
    width: 165px;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.site-footer p {
    margin: 4px 0;
    font-size: 0.88rem;
    font-weight: 750;
}

.site-footer .fa-heart {
    color: var(--pink);
}

.mobile-bar {
    display: none;
}

.back-to-top {
    position: fixed;
    z-index: 850;
    right: 20px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--ink);
    border-radius: 15px;
    color: white;
    background: var(--blue);
    box-shadow: 4px 4px 0 var(--ink);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 900px) {
    :root {
        --header-height: 74px;
    }

    .brand img {
        width: 132px;
        height: 58px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        inset: calc(var(--header-height) + 8px) 16px auto;
        display: grid;
        gap: 8px;
        padding: 16px;
        border: 3px solid var(--ink);
        border-radius: 22px;
        background: var(--paper);
        box-shadow: 7px 7px 0 var(--ink);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px) scale(0.98);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .main-nav a {
        padding: 13px 15px;
        border-radius: 12px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 42px clamp(24px, 7vw, 52px) 54px;
    }

    .hero-stamp {
        position: absolute;
        right: 32px;
        bottom: 34px;
        width: 150px;
        opacity: 0.13;
        box-shadow: none;
        pointer-events: none;
    }

    .hero-stamp strong {
        font-size: 1.5rem;
    }

    .hero-stamp span {
        font-size: 0.65rem;
    }

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

@media (max-width: 640px) {
    :root {
        --shadow: 5px 5px 0 var(--ink);
    }

    html {
        scroll-padding-top: 154px;
    }

    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .fair-strip {
        height: 6px;
    }

    .header-inner,
    .hero,
    .menu-shell,
    .closing-cta {
        width: min(calc(100% - 24px), var(--content));
    }

    .header-inner {
        width: calc(100% - 24px);
    }

    .hero {
        margin-top: 18px;
        margin-bottom: 28px;
        padding: 32px 22px 42px;
        border-radius: 24px;
    }

    .hero::before {
        right: -150px;
        bottom: -190px;
    }

    .hero::after {
        left: 34%;
        bottom: 20px;
        width: 130px;
        height: 17px;
    }

    .eyebrow {
        font-size: 0.68rem;
    }

    .hero-pretitle {
        margin-top: 22px;
    }

    .hero h1 {
        gap: 1px 9px;
        font-size: clamp(3.55rem, 19vw, 5.1rem);
    }

    .hero h1 em {
        font-size: 0.27em;
    }

    .hero-lead {
        max-width: 88%;
        font-size: 0.95rem;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .button {
        flex: 1 1 100%;
    }

    .hero-stamp {
        right: -32px;
        bottom: 4px;
        width: 135px;
    }

    .menu-intro {
        display: block;
        padding-top: 18px;
    }

    .menu-intro h1 {
        font-size: 3.5rem;
    }

    .menu-intro > p {
        margin-top: 12px;
        font-size: 0.92rem;
    }

    .menu-tools {
        top: calc(var(--header-height) + 5px);
        margin-bottom: 16px;
    }

    .search-box {
        max-width: none;
    }

    .category-chip {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 0.79rem;
    }

    .menu-grid {
        gap: 18px;
    }

    .menu-section {
        border-radius: 19px;
        box-shadow: 4px 4px 0 var(--ink);
    }

    .section-heading {
        min-height: 102px;
        padding: 18px;
    }

    .section-icon {
        width: 52px;
        height: 52px;
        border-radius: 15px;
        font-size: 1.3rem;
    }

    .section-heading h2 {
        font-size: 2.25rem;
    }

    .section-heading p:last-child {
        font-size: 0.8rem;
    }

    .menu-list {
        padding: 6px 13px 10px;
    }

    .menu-item {
        gap: 10px;
        min-height: 72px;
        padding: 13px 2px;
    }

    .menu-item h3 {
        font-size: 0.94rem;
    }

    .menu-item__prices {
        gap: 5px;
    }

    .price-tag {
        min-width: 57px;
        min-height: 42px;
        padding: 5px 7px;
        box-shadow: 2px 2px 0 var(--ink);
    }

    .price-tag small {
        font-size: 0.55rem;
    }

    .price-tag strong {
        font-size: 0.8rem;
    }

    .allergen-panel summary {
        padding: 16px;
        font-size: 0.9rem;
    }

    .allergen-content {
        padding: 0 16px 18px;
    }

    .closing-cta {
        margin-bottom: 34px;
        padding: 44px 24px 48px;
        border-radius: 24px;
    }

    .closing-cta > p {
        font-size: 1rem;
    }

    .closing-cta h2 {
        font-size: clamp(4rem, 20vw, 5.9rem);
    }

    .closing-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        padding-bottom: 60px;
    }

    .mobile-bar {
        position: fixed;
        z-index: 1200;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: 64px;
        padding: 6px;
        border: 2px solid var(--ink);
        border-radius: 19px;
        background: rgba(255, 253, 247, 0.96);
        box-shadow: 5px 5px 0 var(--ink);
        backdrop-filter: blur(16px);
    }

    .mobile-bar a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 13px;
        font-size: 0.65rem;
        font-weight: 850;
        text-decoration: none;
    }

    .mobile-bar a i {
        font-size: 1rem;
    }

    .mobile-bar a.is-active {
        color: white;
        background: var(--ink);
    }

    .mobile-bar .mobile-bar__roneo {
        color: white;
        background: var(--pink);
    }

    .back-to-top {
        right: 18px;
        bottom: 94px;
        width: 44px;
        height: 44px;
    }
}

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

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

/* Navegación común de toda la experiencia El Roneo. */
.menu-toggle {
    background: var(--ink);
}

.menu-toggle > span:not(.sr-only) {
    background: var(--yellow);
}

.main-nav .nav-reserva {
    color: var(--ink);
    background: var(--yellow);
}

.main-nav .nav-reserva:hover,
.main-nav .nav-reserva:focus-visible {
    color: white;
    background: var(--red);
}

.menu-page-main .menu-shell {
    margin-top: 22px;
}

.menu-intro h1 {
    margin: 0;
}
