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

        :root {
            --primary-dark: #1a1410;
            --primary-accent: #c4623d;
            --cream: #faf7f3;
            --brand: #fcc419;
            --bg: #fdeeb8;
            --beige: #e8d5b5;
            --gold: #d9a441;
            --warm-gray: #6b655c;
            --light-gray: #e8d5b5;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lora', serif;
            color: var(--primary-dark);
            background: var(--bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            background: var(--beige);
            color: var(--primary-dark);
            padding: 0.9rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-top: 4px solid var(--brand);
            border-bottom: 1px solid rgba(26, 20, 16, 0.1);
            box-shadow: 0 1px 12px rgba(26, 20, 16, 0.05);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Anton', sans-serif;
            font-size: 1.75rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--primary-dark);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 400;
            font-size: 1.05rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding-bottom: 3px;
            border-bottom: 1px solid transparent;
            transition: color 0.3s ease, border-color 0.3s ease;
        }

        .nav-links a:hover {
            color: rgba(26, 20, 16, 0.55);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary-dark);
            border-radius: 2px;
            transition: opacity 0.2s ease;
        }

        .hamburger.active span:nth-child(1) {
            /* Keep lines visible */
        }

        .hamburger.active span:nth-child(2) {
            /* Keep lines visible */
        }

        .hamburger.active span:nth-child(3) {
            /* Keep lines visible */
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: var(--beige);
            flex-direction: column;
            padding: 1rem 2rem;
            gap: 0;
            z-index: 999;
            box-shadow: 0 8px 20px rgba(26, 20, 16, 0.12);
            border-bottom: 1px solid rgba(26, 20, 16, 0.1);
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: var(--primary-dark);
            text-decoration: none;
            font-family: 'Anton', sans-serif;
            font-size: 1.3rem;
            letter-spacing: 0;
            text-transform: uppercase;
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(26, 20, 16, 0.08);
            display: block;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2a1f16 100%);
            color: var(--cream);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary-accent) 0%, transparent 70%);
            opacity: 0.1;
            animation: float 15s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            font-family: 'Anton', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            line-height: 1.1;
            color: var(--cream);
        }

        .tagline {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 1rem;
            letter-spacing: 2px;
            color: var(--primary-accent);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(250, 247, 243, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: var(--brand);
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-family: 'IBM Plex Mono', monospace;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--brand);
            cursor: pointer;
            border-radius: 4px;
        }

        .cta-button:hover {
            background: #f3d93e;
            border-color: #f3d93e;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(26, 20, 16, 0.15);
        }

        /* About Section */
        .about {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Anton', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }

        .about-text p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            color: var(--warm-gray);
            line-height: 1.8;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary-accent) 0%, #d97d5e 100%);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            font-size: 5rem;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Menu Section */
        .menu {
            background: var(--light-gray);
            padding: 4rem 2rem;
            margin: 0;
        }

        .menu-header {
            max-width: 1200px;
            margin: 0 auto 2rem;
            text-align: center;
        }

        .menu-header h2 {
            font-family: 'Anton', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .menu-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.2rem;
        }

        .menu-category {
            background: white;
            padding: 2rem 1.75rem;
            border-top: 3px solid var(--brand);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(26, 20, 16, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .menu-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .menu-category h3 {
            font-family: 'Anton', sans-serif;
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .menu-item {
            margin-bottom: 1rem;
        }

        .menu-item-name {
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 1.05rem;
        }

        .menu-item-desc {
            font-size: 0.9rem;
            color: var(--warm-gray);
            font-style: italic;
            margin-top: 0.3rem;
        }

        .menu-item-price {
            font-family: 'IBM Plex Mono', monospace;
            font-weight: 700;
            color: var(--primary-dark);
            margin-top: 0.3rem;
            font-size: 0.95rem;
        }

        /* Info Section */
        .info {
            background: var(--light-gray);
            padding: 5rem 2rem;
            margin: 0;
        }

        .info-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .info h2 {
            font-family: 'Anton', sans-serif;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 3.5rem;
            color: var(--primary-dark);
        }

        .info-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            border: 1px solid rgba(26, 20, 16, 0.06);
            box-shadow: 0 10px 30px rgba(26, 20, 16, 0.06);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 40px rgba(26, 20, 16, 0.1);
        }

        .info-card h3 {
            font-family: 'Anton', sans-serif;
            font-size: 1.15rem;
            color: var(--primary-dark);
            margin-bottom: 1.25rem;
        }

        .info-card p {
            color: var(--warm-gray);
            line-height: 1.8;
        }

        .hours-list {
            text-align: left;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .hours-list div {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .day {
            color: var(--primary-dark);
            font-weight: 600;
        }

        .time {
            color: var(--warm-gray);
        }

        /* Reviews Section */
        .reviews {
            background: var(--light-gray);
            color: var(--primary-dark);
            padding: 5rem 2rem;
            margin-top: 0;
        }

        .reviews h2 {
            font-family: 'Anton', sans-serif;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-dark);
        }

        .reviews-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .review-card {
            background: white;
            padding: 2.25rem 2rem;
            border-left: 3px solid var(--brand);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(26, 20, 16, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(26, 20, 16, 0.1);
        }

        .review-stars {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        .review-text {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .review-author {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.85rem;
            color: var(--warm-gray);
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--cream);
            padding: 3.5rem 2rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            color: var(--cream);
            text-decoration: none;
            font-family: 'IBM Plex Mono', monospace;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--brand);
        }

        .footer-text {
            font-size: 0.9rem;
            color: rgba(250, 247, 243, 0.6);
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .logo {
                font-size: 1.3rem;
                max-width: 120px;
                line-height: 1.2;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 2rem 1rem;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .hero-content {
                max-width: 100%;
                margin-bottom: 100px;
            }

            .tagline {
                font-size: 0.75rem;
                margin-bottom: 0.5rem;
            }

            h1 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
                line-height: 1.2;
            }

            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                line-height: 1.5;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .hero-scroll {
                position: fixed !important;
                bottom: 20px !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
                z-index: 100 !important;
            }

            .hero-scroll p {
                font-size: 0.8rem !important;
            }

            .about {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1rem;
            }

            .about-text h2 {
                font-size: 1.8rem;
            }

            .about-image {
                height: 300px;
            }

            .menu {
                padding: 3rem 1rem;
            }

            .menu-header h2 {
                font-size: 1.8rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 0 1rem;
            }

            .menu-category {
                padding: 1.5rem;
            }

            .menu-category h3 {
                font-size: 1.2rem;
            }

            .info {
                padding: 2rem 1rem;
            }

            .info h2 {
                font-size: 1.8rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .info-card {
                padding: 1.5rem;
            }

            .reviews {
                padding: 3rem 1rem;
            }

            .reviews h2 {
                font-size: 1.8rem;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .review-card {
                padding: 1.5rem;
            }

            .order {
                padding: 3rem 1rem !important;
            }

            header {
                padding: 0.7rem 1rem;
            }

            .logo {
                font-size: 1rem;
            }

            .logo img {
                height: 38px !important;
                width: 38px !important;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }

            .logo {
                font-size: 0.85rem;
                max-width: 160px;
                line-height: 1.2;
            }

            .logo img {
                height: 32px !important;
                width: 32px !important;
            }

            .tagline {
                font-size: 0.65rem;
            }

            .hero-description {
                font-size: 0.9rem;
            }

            .cta-button {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
                width: 100%;
            }

            .hero-scroll {
                bottom: 15px !important;
            }

            .hero-scroll p {
                font-size: 0.75rem !important;
            }

            .about {
                padding: 1.5rem 1rem;
            }

            .about-text h2 {
                font-size: 1.5rem;
            }

            .about-text p {
                font-size: 0.95rem;
            }

            .menu-category h3 {
                font-size: 1rem;
            }

            .menu-item-name {
                font-size: 1rem;
            }

            .menu-item-desc {
                font-size: 0.85rem;
            }

            .menu-item-price {
                font-size: 0.9rem;
            }

            .info h2 {
                font-size: 1.5rem;
            }

            .info-card h3 {
                font-size: 1rem;
            }

            .info-card p {
                font-size: 0.9rem;
            }

            .reviews h2 {
                font-size: 1.5rem;
            }

            .review-text {
                font-size: 0.9rem;
            }

            .review-author {
                font-size: 0.8rem;
            }
        }

        /* ===== Multi-page additions ===== */
        .nav-links a.active {
            color: var(--primary-dark);
            border-bottom: none;
            outline: 2px solid var(--brand);
            border-radius: 4px;
            padding: 0.25rem 0.6rem;
        }

        .page-header {
            background: var(--bg);
            color: var(--primary-dark);
            padding: 4rem 2rem 3rem;
            text-align: center;
        }

        .page-header h1 {
            font-family: 'Anton', sans-serif;
            font-size: 2.4rem;
            font-weight: 900;
            letter-spacing: 0.5px;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .page-header p {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--warm-gray);
            display: inline-block;
            position: relative;
            padding-top: 1.1rem;
        }

        .page-header p::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 3px;
            background: var(--brand);
            border-radius: 2px;
        }

        .page-body {
            min-height: 50vh;
        }

        /* remove the big top/bottom margins meant for single-page flow */
        .about { margin: 4rem auto; }
        .info { margin: 4rem auto; }
        .menu { margin: 0 0 2rem; }
        .reviews { margin-top: 0; }

        @media (max-width: 768px) {
            .page-header h1 { font-size: 2rem; }
            .page-header { padding: 3rem 1rem 2rem; }
        }
