nav {
    font-family: "Raleway", "Arial", sans-serif;
    font-weight: 600;
    font-size: 1em;
}

body.menu-lock-scroll {
    overflow: hidden;
}

.navbar-primary {
    position: relative;
    z-index: 1200;
    background: rgba(18, 18, 18, 0.84);
}

.navbar-primary.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.navbar-sticky-sentinel {
    display: block;
    width: 100%;
    height: 0;
    overflow-anchor: none;
}

.navbar-sticky-spacer {
    display: block;
    width: 100%;
    height: 0;
    overflow-anchor: none;
}

#navbar-container {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 98px;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#navbar-logo-image {
    width: 220px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: none;
    opacity: 0;
}

#navbar-logo-image.show-logo {
    display: block;
    animation: logoSlideDown 0.6s ease-out forwards;
}

#navbar-logo-image img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes logoSlideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

#navbar-links,
#navbar-sublinks {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

#navbar-links {
    justify-content: flex-start;
    gap: 1.45rem;
}

#navbar-sublinks {
    justify-content: flex-end;
}

.navbar-cta-link,
.menu-trigger {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.navbar-cta-link {
    border-bottom: 1px solid transparent;
    padding: 0.2rem 0;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.navbar-cta-link:hover {
    color: #d7d7d7;
    border-color: #d7d7d7;
}

.menu-trigger {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 700;
    padding: 0.3rem 0;
}

.menu-trigger-label {
    line-height: 1;
}

.menu-trigger-icon {
    font-size: 1.35rem;
    line-height: 1;
}

@media screen and (min-width: 744px) {
    .menu-trigger-icon {
        position: relative;
        top: -0.1em;
    }
}

.menu-overlay {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: #4a4a4a;
    color: #ececec;
    --overlay-edge-gap: clamp(0.25rem, 1.8vw, 1rem);
    /* Column width controls (base defaults used by desktop/tablet unless overridden):
       - --menu-middle-desktop-width: middle/menu column width
       - --menu-fixed-column-width: CTA column width */
    --menu-fixed-column-width: 19.5rem;
    --menu-middle-desktop-width: 21.5rem;
    --menu-column-inner-padding: 0.95rem;
}

/* =====================================================================
    MANUAL TUNING MAP (ALL LAYOUTS)
    ---------------------------------------------------------------------
    1) OVERLAY WIDTH + OUTER GUTTERS:
        - .menu-overlay-main width
        - .menu-overlay-main margin
        - .menu-overlay-main padding
        - --overlay-edge-gap variable

    2) COLUMN WIDTHS:
        - Desktop: @media(min-width:1025px) .menu-overlay + .menu-overlay-grid
        - Tablet:  @media(744px-1024px) .menu-overlay-grid
        - Mobile:  @media(max-width:767px...) .menu-overlay-grid

    3) TEXT-TO-SHADING EDGE SPACING:
        - Card padding: .menu-card (and mobile override)
        - Middle column inner padding: .menu-panel-left-scroll padding-inline
        - CTA inner padding: .menu-cta-stack-desktop padding + .menu-utility-links-wrap padding
        - Fine text inset: .menu-panel-left-scroll .menu-item-title/.menu-item-copy padding-right

    4) SHADING STRENGTH / COLOR:
        - .menu-card-secondary background + box-shadow
        - Mobile-specific shading override in mobile breakpoint
    ===================================================================== */

.navbar-primary.menu-open .menu-overlay {
    display: block;
}

.menu-close {
    position: fixed;
    top: 1rem;
    right: 1.1rem;
    background: transparent;
    border: 0;
    color: #f2f2f2;
    font-size: 2.1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 30;
}

.menu-overlay-main {
    /* CHANGE HERE (all layouts): overall overlay width and side gutters */
    width: min(1240px, calc(100% - (2 * var(--overlay-edge-gap))));
    /* Overlay outer centering margin (horizontal) */
    margin: 0 auto;
    border: 0 solid transparent;
    height: 100vh;
    height: 100dvh;
    /* Column height = viewport height minus these top and bottom padding values.
       Adjust padding-top and padding-bottom here to control how tall the columns are. */
    /* CHANGE HERE (all layouts): overlay inner top/right/bottom/left padding */
    padding: 3.9rem 2rem 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.menu-overlay-grid {
    display: grid;
    /* CHANGE HERE (base tablet/mobile): middle and CTA column widths */
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    grid-template-areas: "left-scroll cta";
    height: 100%;
    min-height: 0;
    /* Column spacing - responsive gap between left and right columns */
    column-gap: clamp(1.2rem, 2.4vw, 2rem);
    row-gap: 0;
    align-items: start;
}

.menu-panel {
    min-width: 0;
    min-height: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.menu-panel-primary {
    display: grid;
    gap: 0.7rem;
    height: 100%;
    min-height: 0;
    align-content: start;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.menu-panel-middle {
    display: none;
}

.menu-panel-middle .menu-card-clear {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

/* Picture column: hidden by default, shown on desktop only */
.menu-panel-picture {
    display: none;
    pointer-events: none;
}

/* Default layout: flex column for two-column grid (tablet/mobile) */
.menu-panel-left-scroll {
    display: flex;
    flex-direction: column;
    position: relative;
    grid-area: left-scroll;
    gap: 0.8rem;
    height: 100%;
    min-height: 0;
    /* CHANGE HERE (base): middle-column wrapper spacing (outside/inside) */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.menu-panel-cta {
    grid-area: cta;
    display: grid;
    gap: 0.7rem;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
    /* CHANGE HERE (base): CTA-column wrapper spacing (outside/inside) */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    align-content: start;
}

.menu-utility-links-wrap {
    /* Desktop/tablet spacing between Telephone and Opening Times. */
    /* CHANGE HERE: CTA block spacing relative to shading edge */
    /* top gap + horizontal inner padding */
    margin-top: 10.4rem;
    padding: 0 var(--menu-column-inner-padding);
    box-sizing: border-box;
}

.menu-card {
    /* CHANGE HERE: text-to-shading spacing inside each shaded card */
    padding: 0.95rem 0.95rem 0.82rem;
    margin: 0 -1.9rem 0
}

.menu-card-featured {
    display: none;
}

.menu-card-dark {
    /* CHANGE HERE: top box shading — darker than middle box */
    width: 100%;
    background: rgba(48, 48, 48, 0.90);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.menu-card-secondary {
    /* CHANGE HERE: shaded card look (tone and edge line) */
    width: 100%;
    background: rgba(96, 96, 96, 0.74);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.menu-card-clear {
    background: transparent;
    width: 100%;
}

.menu-featured-media {
    display: none;
}

.menu-card-image-placeholder {
    display: none;
}

.menu-featured-list {
    padding-top: 0.1rem;
}

.menu-item-title + .menu-item-copy {
    /* CHANGE HERE: vertical spacing between title/copy groups */
    margin-bottom: 0.9rem;
}

.menu-item-title {
    color: #ededed;
    text-decoration: none;
    font-family: inherit;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    display: block;
    text-align: right;
    cursor: pointer;
    font-size: clamp(1.7rem, 2.2vw, 2.35rem);
    line-height: 1;
    font-weight: 300;
}

button.menu-item-title {
    width: 100%;
}

.menu-item-copy {
    /* CHANGE HERE: copy top margin from title */
    display: block;
    margin: calc(0.08rem + 5px) 0 0;
    color: #f1f1f1;
    font-size: clamp(0.95rem, 1.02vw, 1.18rem);
    font-weight: 300;
    line-height: calc(1.06em + 4px);
    text-align: right;
}

.menu-cta-stack {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.9rem;
}

.menu-cta-stack-desktop {
    justify-items: end;
    margin-left: 0;
    width: 100%;
    /* CHANGE HERE: CTA text-to-edge inner padding */
    padding: 0 var(--menu-column-inner-padding);
    box-sizing: border-box;
    /* Adjust spacing for CTA links */
    gap: 3rem;
}

.menu-cta-stack-desktop a {
    color: #ececec;
    text-decoration: none;
    font-size: clamp(1.55rem, 1.95vw, 2.2rem);
    line-height: 1.05;
    font-weight: 300;
    text-align: right;
}

.menu-telephone-link {
    margin-top: 1.05rem;
    font-size: clamp(1.45rem, 1.75vw, 2rem);
    white-space: nowrap;
}

.menu-cta-stack-mobile {
    display: none;
}

.menu-utility-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: end;
    justify-items: end;
    /* Desktop utility link spacing (Opening Times, Menus, Find Us, About Us): adjust gap here. */
    gap: 3rem;
    max-width: 100%;
}

.menu-utility-links a {
    color: #ececec;
    text-decoration: none;
    font-size: clamp(1.55rem, 1.95vw, 2.2rem);
    font-weight: 300;
    text-align: right;
    line-height: 1.02;
}

.menu-item-title:hover,
.menu-cta-stack a:hover,
.menu-utility-links a:hover,
.menu-subpanel-links a:hover,
.menu-mobile-button:hover {
    color: #ffffff;
}

.menu-subpanel {
    position: absolute;
    inset: 0;
    z-index: 25;
    background: #4a4a4a;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translateX(100%);
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
    height: 100%;
    padding: 1.4rem 1.6rem 1.6rem;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
}

.menu-subpanel.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translateX(0);
}

.navbar-primary.submenu-open .menu-overlay-main {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

.navbar-primary.submenu-open .menu-panel-primary {
    transform: translateX(-12%);
    opacity: 0.22;
    pointer-events: none;
}

.menu-subpanel-back {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: transparent;
    color: #f2f2f2;
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-subpanel h3 {
    margin: 1.4rem 0 1.2rem;
    font-weight: 300;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.05;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    padding-bottom: 1.2rem;
}

.menu-subpanel-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    align-content: start;
    justify-items: stretch;
    grid-auto-rows: max-content;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.menu-subpanel-links a {
    color: #ececec;
    text-decoration: none;
    text-align: right;
}

.menu-subpanel-option {
    display: grid;
    gap: 0.12rem;
    justify-items: end;
}

.menu-subpanel-option .menu-item-copy {
    text-align: right;
}

.menu-subpanel-section {
    display: grid;
    gap: 0.62rem;
    margin-bottom: 1.15rem;
    justify-items: end;
    justify-self: stretch;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.menu-subpanel-section .menu-subpanel-option {
    justify-self: stretch;
}

.menu-subpanel-section .menu-item-title,
.menu-subpanel-section .menu-item-copy {
    justify-self: stretch;
    text-align: right;
}

.menu-subpanel-section-title {
    margin: 0;
    text-align: right;
    color: #f2f2f2;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-subpanel-section-button {
    justify-self: end;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #f2f2f2;
    padding: 0.58rem 0.9rem;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-subpanel-discover {
    display: block;
    margin-top: 1.2rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: transparent;
    color: #f2f2f2;
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* ═════════════════════════════════════════════════════════════════════════
   BREAKPOINT 1: DESKTOP (min-width: 1025px)
   Applies tablet-style layout to desktop. See navbar-desktop.css for the
   original desktop three-column grid layout if needed for future changes.
   ═════════════════════════════════════════════════════════════════════════ */
@media screen and (min-width: 1025px) {
    /* ---------------- DESKTOP MANUAL CONTROLS ----------------
       - Column widths: .menu-overlay vars + .menu-overlay-grid tracks
       - Overlay max width: .menu-overlay-main width
       - Middle edge spacing: .menu-panel-left-scroll padding-inline
       - CTA text inset: .menu-cta-stack-desktop a / .menu-utility-links a
       ---------------------------------------------------------- */
    .menu-overlay {
        /* Desktop column widths - adjust these two values to resize middle + CTA columns XS*/
        --menu-middle-desktop-width: 28rem;
        --menu-fixed-column-width: 23rem;
    }

    #navbar-container {
        justify-content: flex-end;
        max-width: 1040px;
        min-height: 82px;
        padding: 0.5rem 3%;
    }

    #navbar-logo-image {
        width: 170px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transform-origin: center center;
    }

    .menu-close {
        top: 0.95rem;
        right: 1rem;
        font-size: 1.85rem;
    }

    .menu-overlay-main {
        /* Desktop max width control - reduce/increase 1180px to cap wide-screen layout */
        width: min(1180px, calc(100% - (2 * var(--overlay-edge-gap))));
        /* Desktop overlay top padding override */
        padding-top: 3.65rem;
    }

    /* Desktop: three-column layout with equal widths (picture | menu | cta) */
    .menu-overlay-grid {
        /* Desktop grid tracks:
           1) left/picture column (flexible)
           2) middle/menu column (var --menu-middle-desktop-width)
           3) CTA column (var --menu-fixed-column-width) */
        grid-template-columns: minmax(0, 1fr) var(--menu-middle-desktop-width) var(--menu-fixed-column-width);
        grid-template-areas: "picture left-scroll cta";
        column-gap: clamp(1.2rem, 2.4vw, 2rem);
        align-items: stretch;
    }

    /* Show picture column on desktop */
    .menu-panel-picture {
        display: block;
        grid-area: picture;
        height: 100%;
        min-height: 0;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .menu-panel-left-scroll {
        display: flex;
        flex-direction: column;
        position: relative;
        grid-area: left-scroll;
        gap: 0.8rem;
        height: 100%;
        min-height: 0;
        /* Desktop middle column inner horizontal spacing */
        padding-inline: var(--menu-column-inner-padding);
        box-sizing: border-box;
        scrollbar-gutter: stable;
        overflow: hidden;
    }

    .menu-panel-cta {
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        align-content: start;
    }

    .menu-panel-left-scroll .menu-item-title,
    .menu-panel-left-scroll .menu-item-copy {
        /* CHANGE HERE (desktop fine-tune): tiny right text inset */
        padding-right: 0.15rem;
        box-sizing: border-box;
    }

    .menu-cta-stack-desktop a,
    .menu-utility-links a {
        /* CHANGE HERE (desktop fine-tune): tiny right text inset */
        padding-right: 0.15rem;
        box-sizing: border-box;
    }

    /* Inner panels no longer scroll individually; grid-area reset stops them
       escaping the flex wrapper and being auto-placed by the parent grid. */
    .menu-panel-left-scroll .menu-panel {
        min-height: 0;
        grid-area: auto;
    }

    .menu-panel-left-scroll .menu-panel-primary {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .menu-panel-left-scroll .menu-panel-primary,
    .menu-panel-left-scroll .menu-panel-middle {
        align-self: auto;
    }

    .menu-panel-middle {
        align-self: start;
        display: grid;
        height: auto;
        min-height: 0;
    }

    .menu-panel-middle .menu-card-clear {
        display: block;
        height: auto;
        min-height: 0;
    }

    .menu-utility-links-wrap {
        /* Desktop CTA vertical spacing override */
        margin-top: 2.1rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   DESKTOP HEIGHT BREAKPOINT
   Applied when the desktop/landscape layout is active but the viewport is
   shorter than the threshold. Reduces spacing so all content stays on screen.
   ★ ADJUST THE max-height VALUE (currently 900px) to set the cut-off height. ★
   Keep this for future desktop-specific styling additions.
   ───────────────────────────────────────────────────────────────────────── */
@media screen and (min-width: 1025px) and (max-height: 900px) {
    /* Future desktop height-specific rules can be added here */
}

/* ═════════════════════════════════════════════════════════════════════════
   BREAKPOINT 2: TABLET/IPAD - PORTRAIT (min-width: 744px and max-width: 1024px)
   ═════════════════════════════════════════════════════════════════════════ */
@media screen and (min-width: 744px) and (max-width: 1024px) and (orientation: portrait) {
        /* ---------------- TABLET MANUAL CONTROLS -----------------
             - Column widths: .menu-overlay-grid grid-template-columns
             - Overlay top spacing: .menu-overlay-main padding-top
             - Middle/CTA spacing: .menu-panel-left-scroll, .menu-utility-links-wrap,
                 .menu-cta-stack-desktop (base rule)
             ---------------------------------------------------------- */
    .menu-overlay-main {
        /* Tablet overlay top padding override */
        padding-top: 3.65rem;
    }

    /* Hide picture column on tablet */
    .menu-panel-picture {
        display: none;
    }

    .menu-overlay-grid {
        /* Tablet column widths - adjust these two values to resize middle + CTA columns */
        grid-template-columns: 20.5rem 21.5rem;
        grid-template-areas: "left-scroll cta";
        column-gap: clamp(1.2rem, 2.4vw, 2rem);
        justify-content: center;
        align-items: stretch;
    }

    /* Wrapper becomes a single scrollable flex column covering the full left area. */
    .menu-panel-left-scroll {
        display: flex;
        flex-direction: column;
        position: relative;
        grid-area: left-scroll;
        gap: 0.8rem;
        height: 100%;
        min-height: 0;
        overflow: hidden;
    }

    .menu-panel-cta {
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        align-content: start;
    }

    /* Inner panels no longer scroll individually; grid-area reset stops them
       escaping the flex wrapper and being auto-placed by the parent grid. */
    .menu-panel-left-scroll .menu-panel {
        min-height: 0;
        grid-area: auto;
    }

    .menu-panel-left-scroll .menu-panel-primary {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .menu-panel-left-scroll .menu-panel-primary,
    .menu-panel-left-scroll .menu-panel-middle {
        align-self: auto;
    }

    .menu-panel-middle {
        align-self: start;
        display: grid;
        height: auto;
        min-height: 0;
    }

    .menu-panel-middle .menu-card-clear {
        display: block;
        height: auto;
        min-height: 0;
    }

    .menu-utility-links-wrap {
        /* Tablet CTA vertical spacing override */
        margin-top: 2.1rem;
    }
}

@media screen and (max-width: 767px), screen and (max-width: 932px) and (max-height: 500px) and (orientation: landscape) {
    /* ─────────────────────────────────────────────────────────────────────
       BREAKPOINT 3: PHONE/MOBILE
       Applied to phones and small devices, or landscape orientation with
       limited height. Uses single scrollable column layout.
       ───────────────────────────────────────────────────────────────────── */
    .menu-overlay {
        /* Mobile: remove outer viewport edge gap so menu fills screen edge-to-edge */
        --overlay-edge-gap: 0;
    }

    #navbar-links {
        display: none;
    }

    #navbar-container {
        justify-content: flex-end;
        min-height: 82px;
        padding: 0.5rem 2rem;
    }

    #navbar-logo-image {
        width: 170px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transform-origin: center center;
    }

    .menu-close {
        top: 0.95rem;
        right: 1rem;
        font-size: 1.85rem;
    }

    .menu-trigger-label {
        display: none;
    }

    .menu-trigger-icon {
        font-size: 2rem;
        line-height: 1;
    }

    .menu-overlay-main {
        /* Mobile overlay top padding override */
        padding-top: 3.65rem;
        /* Mobile: minimal side gutters */
        padding-left: 0.35rem;
        padding-right: 0.35rem;
        /* Bottom space reserved for the pinned utility bar */
        padding-bottom: 3rem;
        position: relative;
    }

    .menu-overlay-grid {
        /* Mobile column widths - adjust left + CTA widths here */
        grid-template-columns: minmax(0, 1fr) clamp(108px, 28vw, 172px);
        grid-template-areas: "left-scroll cta";
        column-gap: 0.1rem;
        row-gap: 0;
    }

    /* Single scrollable left column on mobile. */
    .menu-panel-left-scroll {
        display: flex;
        flex-direction: column;
        position: relative;
        grid-area: left-scroll;
        gap: 0.62rem;
        height: 100%;
        min-height: 0;
        overflow: hidden;
        /* Padding so last card isn't hidden behind the pinned utility bar */
        padding-bottom: 0.5rem;
    }

    /* Inner panels no longer scroll individually; grid-area reset stops them
       escaping the flex wrapper and being auto-placed by the parent grid. */
    .menu-panel-left-scroll .menu-panel {
        min-height: 0;
        grid-area: auto;
    }

    .menu-panel-left-scroll .menu-panel-primary {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .menu-panel-left-scroll .menu-panel-primary,
    .menu-panel-left-scroll .menu-panel-middle {
        align-self: auto;
    }

    .menu-card {
        /* Mobile text-to-shading spacing inside cards */
        width: 100%;
        padding: 0.75rem 0.7rem 0.62rem;
    }

    .menu-card-featured,
    .menu-card-secondary,
    .menu-card-dark {
        max-width: none;
    }

    .menu-card-clear {
        width: 100%;
    }

    .menu-card-featured {
        background: rgba(42, 42, 42, 0.98);
    }

    .menu-card-dark {
        /* Mobile top box tone override */
        background: rgba(38, 38, 38, 0.93);
    }

    .menu-card-secondary {
        /* Mobile shaded card tone/strength override */
        background: rgba(94, 94, 94, 0.86);
    }

    .menu-featured-media {
        display: none;
    }

    .menu-card-image-placeholder {
        display: none;
    }

    .menu-featured-list {
        padding-top: 0;
    }

    .menu-panel-middle {
        align-self: start;
        display: grid;
        min-height: 0;
        padding-top: 0;
    }

    .menu-panel-middle .menu-card-clear {
        display: block;
        min-height: 0;
    }

    .menu-panel-cta {
        align-self: start;
        overflow: hidden;
        padding-right: max(0.35rem, env(safe-area-inset-right));
        padding-left: 0;
        box-sizing: border-box;
    }

    .menu-panel-primary {
        padding: 0;
        gap: 0.62rem;
    }

    .menu-panel-middle {
        padding: 0;
    }

    .menu-subpanel h3,
    .menu-subpanel-links,
    .menu-subpanel-links a,
    .menu-subpanel-option .menu-item-copy {
        text-align: right;
    }

    .menu-subpanel-option {
        justify-items: end;
    }

    .menu-item-title {
        font-size: clamp(1.26rem, 4.2vw, 1.56rem);
        line-height: 1.03;
    }

    .menu-item-copy {
        font-size: clamp(0.68rem, 2vw, 0.82rem);
        line-height: calc(1.11em + 4px);
    }

    .menu-item-title + .menu-item-copy {
        /* Mobile vertical spacing between title/copy groups */
        margin-bottom: 0.62rem;
    }

    .menu-cta-stack-desktop {
        display: none;
    }

    .menu-cta-stack-mobile {
        display: grid;
        margin-top: 0;
        /* CHANGE HERE (mobile): gap between square CTA buttons */
        gap: 0.45rem;
        justify-items: end;
        width: 100%;
        /* CHANGE HERE (mobile): outer padding around the CTA button group */
        padding: 0.2rem 0;
        box-sizing: border-box;
    }

    .menu-utility-links-wrap {
        /* Mobile: pinned to bottom of overlay, spans full width */
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 0;
        padding: 0.5rem 0.4rem;
        background: rgba(35, 35, 35, 0.97);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-sizing: border-box;
        z-index: 2;
    }

    .menu-mobile-button {
        /* CHANGE HERE (mobile): square CTA buttons — aspect-ratio keeps width = height */
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(72px, 20vw, 94px);
        max-width: 100%;
        /* CHANGE HERE (mobile): inner padding inside each square button */
        padding: 0.25rem;
        border: 1px solid rgba(255, 255, 255, 0.76);
        background: rgba(74, 74, 74, 0.22);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        color: #ececec;
        text-decoration: none;
        text-align: center;
        /* CHANGE HERE (mobile): CTA button label font size */
        font-size: clamp(0.86rem, 2.8vw, 1.02rem);
        line-height: 1.1;
        font-weight: 300;
    }

    .menu-utility-links {
        /* Mobile CTA utility group spacing */
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(0.52rem, 2.4vw, 0.92rem);
        width: 100%;
        /* CHANGE HERE (mobile): left/right padding inside the utility bar — keeps links away from screen edges */
        padding: 0 0.2rem;
        box-sizing: border-box;
    }

    .menu-utility-links a {
        /* CHANGE HERE (mobile): utility link font size — clamp(minimum, fluid, maximum) */
        font-size: clamp(0.98rem, 3.6vw, 1.12rem);
        text-align: center;
        line-height: 1.05;
        white-space: nowrap;
        flex: 0 0 auto;
        /* CHANGE HERE (mobile): top/bottom and left/right padding around each link label */
        padding: 0.12rem 0.1rem;
    }

    .menu-subpanel {
        padding: 0.95rem 0.6rem 0.8rem;
    }

    .navbar-primary.submenu-open .menu-panel-primary {
        transform: translateX(-20%);
    }
}
