:root {
            --bg-deep: #fff8ef;
            --bg: #fffcf7;
            --surface: #ffffff;
            --surface-elevated: #fff5e6;
            --text: #1a2e14;
            --text-muted: #5a5348;
            /* Store green — rgb(24, 78, 9) */
            --accent: rgb(24, 78, 9);
            --accent-deep: rgb(15, 50, 7);
            --accent-hover: rgb(36, 96, 21);
            --accent-line: #e8890c;
            /* Logo sunburst */
            --accent-orange: #e8890c;
            --accent-yellow: #f5c518;
            /* Store red — slightly darker than rgb(174, 27, 31) */
            --secondary: rgb(158, 23, 27);
            --secondary-deep: rgb(125, 18, 22);
            --secondary-bright: rgb(158, 23, 27);
            /* Header & footer chrome */
            --chrome-bg: rgb(24, 78, 9);
            --chrome-text: #fffef8;
            /* Order Online CTA buttons (secondary red) */
            --btn-primary-bright: rgb(180, 32, 36);
            --btn-primary-mid: rgb(158, 23, 27);
            --btn-primary-deep: rgb(125, 18, 22);
            --btn-primary-hover: rgb(195, 38, 42);
            --border: rgba(24, 78, 9, 0.14);
            --radius: 12px;
            --radius-lg: 20px;
            --shadow: 0 16px 40px rgba(24, 78, 9, 0.12);
            --shadow-card: 0 4px 16px rgba(24, 78, 9, 0.08), 0 1px 4px rgba(42, 38, 32, 0.05);
            --font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
            --font-display: var(--font-family);
            --font-body: var(--font-family);
            --max: 1120px;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        #top,
        section[id] {
            scroll-margin-top: 6.75rem;
        }

        body {
            font-family: var(--font-family);
            background: var(--bg-deep);
            color: var(--text);
            line-height: 1.55;
            font-size: 1rem;
            font-weight: 500;
            -webkit-font-smoothing: antialiased;
        }

        a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--accent-hover); }

        .skip-link {
            position: absolute;
            left: -9999px;
            z-index: 10000;
            padding: 0.75rem 1rem;
            background: var(--accent-deep);
            color: #fff;
            font-weight: 600;
        }
        .skip-link:focus { left: 1rem; top: 1rem; }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(24, 78, 9, 0.96);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 16px rgba(24, 78, 9, 0.28);
        }

        .header-inner {
            position: relative;
            z-index: 0;
            max-width: var(--max);
            margin: 0 auto;
            padding: 1.15rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            min-height: 5.25rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--chrome-text);
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.35rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            transition: transform 0.25s ease;
        }

        .brand:hover {
            color: var(--chrome-text);
            transform: scale(1.03);
        }

        .brand img {
            height: 64px;
            width: auto;
            display: block;
            transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
        }

        .brand:hover img {
            transform: rotate(-6deg) scale(1.06);
        }

        .brand span {
            display: inline-block;
            transition: transform 0.25s ease;
        }

        .brand:hover span {
            transform: translateY(-2px);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.65rem 1.25rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.28s ease, background 0.2s ease;
            font-family: inherit;
        }

        .btn:active { transform: scale(0.98); }

        /* Order Online CTA — secondary red */
        .btn-primary {
            background: linear-gradient(145deg, var(--btn-primary-bright) 0%, var(--btn-primary-mid) 42%, var(--btn-primary-deep) 100%);
            color: #fffef8;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.22),
                inset 0 -1px 0 rgba(0, 0, 0, 0.18),
                0 2px 7px rgba(158, 23, 27, 0.45),
                0 7px 22px rgba(158, 23, 27, 0.35);
        }

        .btn-primary:hover {
            background: linear-gradient(145deg, var(--btn-primary-hover) 0%, var(--btn-primary-bright) 42%, var(--btn-primary-mid) 100%);
            color: #fffef8;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.28),
                inset 0 -1px 0 rgba(0, 0, 0, 0.12),
                0 3px 10px rgba(158, 23, 27, 0.5),
                0 10px 28px rgba(158, 23, 27, 0.4);
        }

        .btn-primary:active {
            box-shadow:
                inset 0 2px 6px rgba(0, 0, 0, 0.28),
                0 2px 10px rgba(158, 23, 27, 0.35);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.92);
            color: var(--accent-deep);
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background: var(--accent);
            color: #fffef8;
            border-color: var(--accent-deep);
            box-shadow: 0 2px 10px rgba(24, 78, 9, 0.28);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            flex-shrink: 0;
        }

        .header-google-review {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.48rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.12);
            color: var(--chrome-text);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
            white-space: nowrap;
        }

        .header-google-review:hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.55);
            color: var(--chrome-text);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
        }

        .header-google-review:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .header-google-review-inner {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .header-google-review .header-google-g {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            display: block;
        }

        .header-review-stars-nav {
            display: inline-flex;
            align-items: center;
            gap: 0.06rem;
            margin-left: 0.15rem;
            padding-left: 0.45rem;
            border-left: 1px solid rgba(255, 255, 255, 0.3);
            color: #fbbf24;
            font-size: 0.68rem;
            line-height: 1;
            letter-spacing: 0.02em;
        }

        .header-cta { flex-shrink: 0; }

        .header-slice {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            padding: 0.35rem 0.65rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: background 0.2s, border-color 0.2s;
        }

        .header-slice:hover {
            background: rgba(255, 255, 255, 0.24);
            border-color: rgba(255, 255, 255, 0.45);
        }

        .header-slice-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--chrome-text);
            letter-spacing: 0.03em;
        }

        .header-slice img {
            display: block;
            height: 26px;
            width: auto;
        }

        /* Mobile nav toggle + drawer */
        .menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            padding: 0;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.12);
            color: var(--chrome-text);
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
            z-index: 1003;
        }

        .site-header.is-nav-open .menu-toggle {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.45);
        }

        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .menu-toggle:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .menu-toggle-bars {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 22px;
            pointer-events: none;
        }

        .menu-toggle-bar {
            display: block;
            width: 20px;
            height: 2px;
            border-radius: 1px;
            background: var(--chrome-text);
            transition: transform 0.25s ease, opacity 0.2s ease;
            transform-origin: center;
        }

        .site-header.is-nav-open .menu-toggle-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .site-header.is-nav-open .menu-toggle-bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .site-header.is-nav-open .menu-toggle-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-backdrop {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1001;
            background: rgba(24, 78, 9, 0.35);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.28s ease, visibility 0.28s ease;
        }

        .site-header.is-nav-open .nav-backdrop {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .nav-drawer {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            z-index: 1002;
            width: min(100vw - 2.5rem, 320px);
            max-width: 100%;
            height: 100vh;
            height: 100dvh;
            padding: calc(6rem + env(safe-area-inset-top, 0px)) 1.25rem 1.5rem;
            padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
            background: var(--chrome-bg);
            box-shadow: -12px 0 40px rgba(24, 78, 9, 0.28);
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            pointer-events: none;
            isolation: isolate;
        }

        .site-header.is-nav-open .nav-drawer {
            transform: translateX(0);
            pointer-events: auto;
        }

        .nav-drawer-actions {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .nav-drawer-actions .btn {
            width: 100%;
            text-align: center;
            font-size: 1rem;
            padding: 0.8rem 1.25rem;
        }

        .nav-drawer-actions .btn-primary {
            border: 2px solid rgba(255, 255, 255, 0.35);
        }

        .nav-drawer-actions .btn-secondary {
            background: rgba(255, 255, 255, 0.14);
            color: #fffef8;
            border-color: rgba(255, 255, 255, 0.35);
        }

        .nav-drawer-actions .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.24);
            color: #fffef8;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .nav-drawer-actions .header-google-review {
            width: 100%;
            justify-content: center;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.14);
            border: 2px solid rgba(255, 255, 255, 0.35);
            color: var(--chrome-text);
        }

        .nav-drawer-actions .header-google-review:hover {
            background: rgba(255, 255, 255, 0.24);
            border-color: rgba(255, 255, 255, 0.5);
            color: var(--chrome-text);
        }

        .nav-drawer-actions .header-slice--drawer {
            width: 100%;
            justify-content: center;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.14);
            border: 2px solid rgba(255, 255, 255, 0.35);
            border-radius: 999px;
        }

        .nav-drawer-actions .header-slice--drawer:hover {
            background: rgba(255, 255, 255, 0.24);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .nav-drawer-actions .header-slice-label {
            color: var(--chrome-text);
            font-size: 0.95rem;
            font-weight: 700;
        }

        .header-google-review--drawer .header-google-review-text {
            position: static;
            width: auto;
            height: auto;
            padding: 0;
            margin: 0;
            overflow: visible;
            clip: auto;
            white-space: normal;
            border: 0;
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: flex-end;
            padding: 9rem 1.25rem 4rem;
            margin-top: 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            min-height: 100%;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            min-height: 100%;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.78) 0%,
                rgba(0, 0, 0, 0.52) 30%,
                rgba(0, 0, 0, 0.28) 50%,
                rgba(0, 0, 0, 0.1) 68%,
                transparent 82%
            );
            z-index: 1;
            pointer-events: none;
        }

        @media (max-width: 767px) {
            .header-inner {
                padding: 1.1rem 1rem;
                padding-right: 4.75rem;
                gap: 0.75rem;
                min-height: 5.75rem;
            }

            .menu-toggle {
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                width: 52px;
                height: 52px;
            }

            .brand {
                gap: 0.65rem;
                font-size: 1.15rem;
                letter-spacing: 0.02em;
            }

            .brand img {
                height: 56px;
            }

            .header-actions--desktop {
                display: none !important;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-backdrop,
            .nav-drawer {
                display: block;
            }

            .hero {
                min-height: 100svh;
                min-height: 100dvh;
            }

            .hero-bg,
            .hero-overlay {
                min-height: 100svh;
                min-height: 100dvh;
            }

            /* Blur page behind menu (backdrop-filter alone often won’t affect siblings) */
            body.nav-open #main,
            body.nav-open .site-footer {
                filter: blur(14px);
                -webkit-filter: blur(14px);
                transition: filter 0.28s ease;
            }

            body.nav-open .header-inner {
                filter: blur(14px);
                -webkit-filter: blur(14px);
                transition: filter 0.28s ease;
                pointer-events: none;
            }
        }

        @media (min-width: 768px) {
            .menu-toggle {
                display: none !important;
            }

            .nav-backdrop,
            .nav-drawer {
                display: none !important;
            }

            .header-actions--desktop {
                display: flex;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: var(--max);
            margin: 0 auto;
            width: 100%;
            font-weight: 700;
        }

        .hero-eyebrow {
            display: inline-block;
            font-family: "Bevan", var(--font-family);
            font-size: clamp(0.92rem, 2.4vw, 1.05rem);
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #fffef8;
            background: var(--secondary);
            padding: 0.55rem 1.1rem;
            border-radius: 999px;
            margin-bottom: 0.85rem;
            box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.65rem, 6.5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: 0.02em;
            margin-bottom: 0.5rem;
            color: #fffef8;
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.9),
                0 2px 8px rgba(0, 0, 0, 0.75),
                0 4px 20px rgba(0, 0, 0, 0.65),
                0 0 40px rgba(0, 0, 0, 0.35);
        }

        .hero-line {
            width: 72px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
            margin: 1rem 0 1.25rem;
            border-radius: 2px;
        }

        .hero-sub {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fffef8;
            max-width: 36rem;
            margin-bottom: 1.75rem;
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.85),
                0 2px 6px rgba(0, 0, 0, 0.7),
                0 3px 16px rgba(0, 0, 0, 0.55);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }

        .hero-actions .btn {
            font-size: 1.1rem;
            font-weight: 700;
            padding: 0.8rem 1.5rem;
        }

        .hero .btn-secondary {
            background: var(--accent);
            color: #fffef8;
            border-color: var(--accent);
        }

        .hero .btn-secondary:hover {
            background: var(--accent-deep);
            color: #fffef8;
            border-color: var(--accent-deep);
            box-shadow: 0 2px 10px rgba(24, 78, 9, 0.35);
        }

        /* Order strip */
        .order-strip {
            background: linear-gradient(135deg, var(--surface-elevated) 0%, #fff8ef 100%);
            border-top: 3px solid var(--accent-yellow);
            border-bottom: 1px solid var(--border);
            padding: 2rem 1.25rem;
        }

        .order-strip-inner {
            max-width: var(--max);
            margin: 0 auto;
            display: grid;
            gap: 1.25rem;
            align-items: center;
        }

        @media (min-width: 900px) {
            .order-strip-inner {
                grid-template-columns: 1fr auto auto;
                gap: 1.5rem;
            }
        }

        .order-strip h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 0.25rem;
        }

        .order-strip p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .order-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        @media (min-width: 520px) {
            .order-buttons { flex-direction: row; flex-wrap: wrap; }
        }

        .order-buttons .btn { min-width: 200px; }

        /* Highlights (catering / order / dine-in) */
        .highlights-section {
            padding: 4rem 1.25rem;
            background: var(--bg);
            border-bottom: 1px solid var(--border);
        }

        .highlights-grid {
            max-width: var(--max);
            margin: 0 auto;
            display: grid;
            gap: 1.25rem;
        }

        @media (min-width: 768px) {
            .highlights-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .highlight-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.5rem 1.35rem 1.65rem;
            box-shadow: var(--shadow-card);
            border-top: 4px solid var(--accent-orange);
        }

        .highlight-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 900;
            margin-bottom: 0.65rem;
            color: var(--accent-deep);
        }

        .highlight-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.55;
        }

        /* Sections */
        section {
            padding: 4rem 1.25rem;
        }

        #visit.location-block {
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        }

        #visit .section-head {
            margin-bottom: 1.75rem;
        }

        #visit .split {
            padding-bottom: 1.25rem;
        }

        #visit .location-inner {
            padding-bottom: 2.5rem;
        }

        .section-head {
            max-width: var(--max);
            margin: 0 auto 2.5rem;
            text-align: center;
        }

        .section-head h2 {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4vw, 2.35rem);
            font-weight: 900;
            margin-bottom: 0.75rem;
        }

        .section-head .line {
            width: 48px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
            margin: 0 auto 1rem;
            border-radius: 2px;
        }

        .section-head p {
            color: var(--text-muted);
            max-width: 36rem;
            margin: 0 auto;
        }

        @media (max-width: 767px) {
            .section-head p {
                text-align: left;
                margin-left: 0;
                margin-right: auto;
            }
        }

        /* Menu grid */
        .menu-grid {
            max-width: var(--max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 600px) {
            .menu-grid { grid-template-columns: repeat(2, 1fr); }
        }

        .menu-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        }

        .menu-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: rgba(24, 78, 9, 0.35);
        }

        .menu-card figure {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: var(--bg);
        }

        .menu-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

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

        .menu-card-body {
            padding: 1.25rem 1.35rem 1.5rem;
        }

        .menu-card .tag {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--secondary-bright);
            margin-bottom: 0.35rem;
        }

        .menu-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        .menu-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.55;
        }

        /* Compact menu highlights (more tiles, smaller cards) */
        .menu-highlights-section {
            padding: 2.75rem 1.25rem;
            background: var(--bg);
        }

        .menu-highlights-section .section-head {
            margin-bottom: 1.35rem;
        }

        .menu-highlights-section .section-head h2 {
            font-size: clamp(1.45rem, 3.2vw, 1.85rem);
            margin-bottom: 0.5rem;
        }

        .menu-highlights-section .section-head .line {
            margin-bottom: 0.65rem;
        }

        .menu-highlights-section .section-head p {
            font-size: 0.9rem;
            max-width: 34rem;
        }

        .menu-grid.menu-grid--highlights {
            max-width: 920px;
            gap: 0.75rem;
            grid-template-columns: repeat(3, 1fr);
        }

        @media (max-width: 599px) {
            .menu-grid.menu-grid--highlights {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 380px) {
            .menu-grid.menu-grid--highlights {
                grid-template-columns: 1fr;
            }
        }

        .menu-grid.menu-grid--highlights .menu-card {
            border-radius: var(--radius);
        }

        .menu-grid.menu-grid--highlights .menu-card:hover {
            transform: translateY(-2px);
        }

        .menu-grid.menu-grid--highlights .menu-card figure {
            width: 100%;
            aspect-ratio: auto;
            height: 140px;
            min-height: 140px;
            position: relative;
        }

        .menu-grid.menu-grid--highlights .menu-card figure img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .menu-grid.menu-grid--highlights .menu-card-body {
            padding: 0.65rem 0.75rem 0.8rem;
        }

        .menu-grid.menu-grid--highlights .menu-card .tag {
            font-size: 0.62rem;
            margin-bottom: 0.2rem;
        }

        .menu-grid.menu-grid--highlights .menu-card h3 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .menu-grid.menu-grid--highlights .menu-card p {
            font-size: 0.78rem;
            line-height: 1.4;
        }

        .menu-grid.menu-grid--highlights .menu-card--fullmenu figure {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--surface-elevated);
        }

        .menu-grid.menu-grid--highlights .menu-card--fullmenu figure img {
            object-fit: contain;
            padding: 0.65rem 1rem;
            height: auto;
            max-height: 100%;
        }

        .menu-grid.menu-grid--highlights .menu-card--fullmenu .btn {
            margin-top: 0.65rem;
            width: 100%;
            justify-content: center;
            padding: 0.55rem 1rem;
            font-size: 0.85rem;
        }

        /* Split experience */
        .split {
            max-width: var(--max);
            margin: 0 auto;
            display: grid;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 900px) {
            .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
        }

        .split-visual {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
        }

        .split-visual img {
            width: 100%;
            display: block;
            aspect-ratio: 3 / 2;
            object-fit: cover;
        }

        .split-text h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3.5vw, 2.15rem);
            font-weight: 900;
            margin-bottom: 0.75rem;
        }

        .split-text .line { margin: 0 0 1rem; }

        .split-text > .btn-primary {
            margin-top: 1rem;
        }

        .feature-list {
            list-style: none;
            margin-top: 1.25rem;
        }

        .feature-list li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-muted);
        }

        .feature-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.85rem;
            width: 6px;
            height: 6px;
            background: var(--accent-orange);
            border-radius: 50%;
        }

        /* Location */
        .location-block {
            background: linear-gradient(180deg, var(--bg) 0%, var(--surface-elevated) 100%);
            border-top: 1px solid var(--border);
        }

        .location-inner {
            max-width: var(--max);
            margin: 0 auto;
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .location-inner { grid-template-columns: 1fr 1fr; align-items: stretch; }
        }

        .location-card {
            padding: 2rem;
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .location-card h2 {
            font-family: var(--font-display);
            font-size: 1.65rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .location-card address {
            font-style: normal;
            color: var(--text-muted);
            margin-bottom: 0.75rem;
            line-height: 1.7;
        }

        .location-phone {
            margin: 0 0 1.25rem;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .location-phone a {
            color: var(--text);
        }

        .location-phone a:hover {
            color: var(--accent);
        }

        .map-embed {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            min-height: 280px;
            background: var(--surface-elevated);
            height: 100%;
        }

        .map-embed iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* Reviews */
        .review-section {
            background: var(--bg);
            border-top: 1px solid var(--border);
        }

        .review-inner {
            max-width: var(--max);
            margin: 0 auto;
            display: grid;
            gap: 1.5rem;
            align-items: center;
            justify-items: center;
        }

        .review-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            max-width: 520px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .review-card h2 {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: 900;
            margin-bottom: 0.75rem;
        }

        .review-card p {
            color: var(--text-muted);
            margin-bottom: 1.25rem;
        }

        .review-card-top {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.65rem;
            margin-bottom: 1.25rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid var(--border);
        }

        .review-google-lockup {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
        }

        .review-google-lockup svg {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }

        .review-google-lockup span {
            font-size: 1.35rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: var(--text);
        }

        .review-stars {
            display: flex;
            gap: 0.2rem;
            justify-content: center;
            color: #fbbf24;
            font-size: 1.45rem;
            line-height: 1;
            letter-spacing: 0.02em;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
        }

        .review-stars span {
            display: inline-block;
        }

        .review-cta-image {
            display: inline-block;
            max-width: 100%;
            line-height: 0;
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: var(--shadow-card);
        }

        .review-cta-image:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .review-cta-image:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        .review-cta-image img {
            width: 100%;
            max-width: 420px;
            height: auto;
            display: block;
            vertical-align: top;
        }

        /* Footer */
        .site-footer {
            background: var(--chrome-bg);
            border-top: 3px solid var(--accent-yellow);
            padding: 2.5rem 1.25rem 2rem;
            color: var(--chrome-text);
        }

        .footer-inner {
            max-width: var(--max);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-brand img { height: 64px; width: auto; }

        .footer-brand strong {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--chrome-text);
        }

        .footer-meta {
            color: rgba(255, 254, 248, 0.82);
            font-size: 0.9rem;
        }

        .footer-meta a { color: rgba(255, 254, 248, 0.82); }
        .footer-meta a:hover { color: var(--accent-yellow); }

        .powered-by {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.65rem;
            padding-top: 1.5rem;
            margin-top: 0.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            width: 100%;
            max-width: 360px;
        }

        .powered-by span {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 254, 248, 0.7);
        }

        .powered-by img {
            max-height: 40px;
            width: auto;
            opacity: 0.92;
            filter: brightness(0) invert(1);
        }

        .copyright {
            font-size: 0.8rem;
            color: rgba(255, 254, 248, 0.65);
            margin-top: 0.5rem;
        }
