:root {
            --bg-deep: #0a0a0c;
            --bg: #121214;
            --surface: #1a1a1f;
            --surface-elevated: #222228;
            --text: #f4f4f5;
            --text-muted: #a1a1aa;
            /* Store primary — Johnny Jr's red */
            --accent: #c42a2a;
            --accent-deep: #9a1f1f;
            --accent-hover: #d93a3a;
            --accent-line: #e85c5c;
            /* Secondary — Italian green */
            --secondary: #1a6b3c;
            --secondary-deep: #145230;
            --secondary-bright: #22804a;
            /* Primary CTA buttons (red) */
            --btn-primary-bright: #d93a3a;
            --btn-primary-mid: #c42a2a;
            --btn-primary-deep: #9a1f1f;
            --btn-primary-hover: #e04a4a;
            --border: rgba(255, 255, 255, 0.08);
            --radius: 12px;
            --radius-lg: 20px;
            --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
            --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(0, 0, 0, 0.16);
            --font-display: "Cormorant Garamond", Georgia, serif;
            --font-body: "DM Sans", system-ui, sans-serif;
            --max: 1120px;
        }

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

        html { scroll-behavior: smooth; }

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

        body {
            font-family: var(--font-body);
            background: var(--bg-deep);
            color: var(--text);
            line-height: 1.6;
            font-size: 1rem;
            -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(10, 10, 12, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

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

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .brand img {
            height: 44px;
            width: auto;
            max-width: min(200px, 52vw);
            display: block;
            object-fit: contain;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.65rem 1.25rem;
            border-radius: 999px;
            font-weight: 600;
            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); }

        /* Primary CTA — store green */
        .btn-primary {
            background: linear-gradient(145deg, var(--btn-primary-bright) 0%, var(--btn-primary-mid) 40%, var(--btn-primary-deep) 100%);
            color: #f4fff4;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.18),
                0 2px 7px rgba(24, 78, 9, 0.45),
                0 7px 24px rgba(24, 78, 9, 0.38),
                0 0 34px rgba(45, 143, 40, 0.25),
                0 0 61px rgba(24, 78, 9, 0.12);
        }

        .btn-primary:hover {
            background: linear-gradient(145deg, var(--btn-primary-hover) 0%, var(--btn-primary-bright) 42%, var(--btn-primary-mid) 100%);
            color: #fff;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.26),
                inset 0 -1px 0 rgba(0, 0, 0, 0.12),
                0 3px 10px rgba(24, 78, 9, 0.5),
                0 10px 31px rgba(24, 78, 9, 0.42),
                0 0 44px rgba(45, 143, 40, 0.32),
                0 0 75px rgba(24, 78, 9, 0.14);
        }

        .btn-primary:active {
            box-shadow:
                inset 0 2px 6px rgba(0, 0, 0, 0.28),
                0 2px 10px rgba(24, 78, 9, 0.35),
                0 0 24px rgba(45, 143, 40, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--surface);
            color: var(--text);
            border-color: rgba(174, 27, 31, 0.55);
            box-shadow: 0 0 0 1px rgba(174, 27, 31, 0.12);
        }

        .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 var(--border);
            background: rgba(255, 255, 255, 0.04);
            color: var(--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: var(--surface);
            border-color: rgba(66, 133, 244, 0.4);
            color: var(--text);
            box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.12);
        }

        .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 var(--border);
            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.06);
            border: 1px solid var(--border);
            transition: background 0.2s, border-color 0.2s;
        }

        .header-slice:hover {
            background: var(--surface);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .header-slice-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--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 var(--border);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
            z-index: 1003;
        }

        .site-header.is-nav-open .menu-toggle {
            background: rgba(26, 26, 31, 0.92);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .menu-toggle:hover {
            background: var(--surface);
            border-color: rgba(255, 255, 255, 0.14);
        }

        .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(--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(0, 0, 0, 0.45);
            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(4.75rem + env(safe-area-inset-top, 0px)) 1.25rem 1.5rem;
            padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
            background: var(--bg);
            border-left: 1px solid var(--border);
            box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
            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-primary {
            width: 100%;
            text-align: center;
        }

        .nav-drawer-actions .header-google-review {
            width: 100%;
            justify-content: center;
            padding: 0.65rem 1rem;
        }

        .nav-drawer-actions .header-slice--drawer {
            width: 100%;
            justify-content: center;
        }

        .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: 8rem 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,
                var(--bg-deep) 0%,
                rgba(10, 10, 12, 0.92) 35%,
                rgba(10, 10, 12, 0.45) 70%,
                rgba(10, 10, 12, 0.25) 100%
            );
            z-index: 1;
            pointer-events: none;
        }

        @media (max-width: 767px) {
            .header-inner {
                padding: 0.6rem 0.9rem;
                padding-right: 3.75rem;
                gap: 0.6rem;
            }

            .menu-toggle {
                position: absolute;
                right: 0.9rem;
                top: 50%;
                transform: translateY(-50%);
            }

            .brand {
                gap: 0.5rem;
                font-size: 0.95rem;
                letter-spacing: 0.02em;
            }

            .brand img {
                height: 40px;
            }

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

        .hero-eyebrow {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 900;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.75rem;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 3.75rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: 0.02em;
            margin-bottom: 0.5rem;
        }

        .hero-line {
            width: 72px;
            height: 3px;
            background: var(--accent-line);
            margin: 1rem 0 1.25rem;
            border-radius: 2px;
        }

        .hero-sub {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 36rem;
            margin-bottom: 1.75rem;
        }

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

        /* Order strip */
        .order-strip {
            background: var(--surface);
            border-top: 1px solid var(--border);
            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: 700;
            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);
        }

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

        .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: 700;
            margin-bottom: 0.75rem;
        }

        .section-head .line {
            width: 48px;
            height: 2px;
            background: var(--accent-line);
            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, 11, 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: 600;
            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: 700;
            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;
        }

        .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: 4 / 3;
            object-fit: cover;
        }

        .split-text h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3.5vw, 2.15rem);
            font-weight: 700;
            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);
            border-radius: 50%;
        }

        /* Location */
        .location-block {
            background: var(--surface);
            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(--bg);
            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;
            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: 600;
        }

        .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;
            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: 500;
            letter-spacing: -0.02em;
            color: var(--text);
            font-family: var(--font-body);
        }

        .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: #050506;
            border-top: 1px solid var(--border);
            padding: 2.5rem 1.25rem 2rem;
        }

        .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: auto;
            width: auto;
            max-width: 220px;
            max-height: 72px;
            object-fit: contain;
        }

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

        .footer-meta {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-meta a { color: var(--text-muted); }
        .footer-meta a:hover { color: var(--accent); }

        .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 var(--border);
            width: 100%;
            max-width: 360px;
        }

        .powered-by span {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

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

        .copyright {
            font-size: 0.8rem;
            color: #71717a;
            margin-top: 0.5rem;
        }
