*, *::before, *::after { box-sizing: border-box; }
  html, body { overflow-x: hidden; max-width: 100vw; }
  img, video, svg, canvas { max-width: 100%; height: auto; }

:root {
            --red: #CD1719;
            --indigo: #6366F1;
            --dark: #4B5563;
            --gray: #6B7280;
            --light: #E5E7EB;
            --offwhite: #F3F4F6;
            --white: #FFFFFF;
            --charcoal: #1F2937;
            --cream: #FEFCE8;
            
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --font-head: 'Nunito', system-ui, -apple-system, sans-serif;
            
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
            
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        body {
            font-family: var(--font-body);
            background-color: var(--offwhite);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-head);
            color: #111827;
            line-height: 1.1;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--indigo);
            color: var(--white);
            font-family: var(--font-body);
            font-weight: 700;
            text-transform: uppercase;
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
            text-align: center;
        }

        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        .btn-red {
            background-color: var(--red);
        }
        
        .btn-red:hover {
            box-shadow: 0 10px 20px rgba(205, 23, 25, 0.3);
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(243, 244, 246, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--light);
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: var(--shadow-sm);
        }

        .trust-bar {
            background-color: #111827;
            color: var(--light);
            font-size: 0.8rem;
            text-align: center;
            padding: 0.5rem 1rem;
            font-weight: 500;
        }

        .trust-bar span {
            color: #FCD34D;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            transition: padding 0.3s ease;
        }

        header.scrolled .nav-container {
            padding: 0.5rem 2rem;
        }

        .logo {
            width: 150px;
            height: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            font-family: var(--font-body);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            color: var(--dark);
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--red);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            min-height: calc(100vh - 120px);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            align-items: center;
            gap: 4rem;
            padding: 4rem 2rem;
            max-width: 1440px;
            margin: 0 auto;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 6rem);
            color: #111827;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.2rem;
            font-weight: 400;
            max-width: 500px;
        }

        .hero .urgency {
            font-weight: 700;
            color: var(--red);
            font-size: 1rem;
            background: rgba(205, 23, 25, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .hero-img-wrapper {
            height: 100%;
            min-height: 500px;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .hero-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(1.2);
        }

        /* Section Global */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 0 1rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--gray);
        }

        section {
            padding: 6rem 0;
        }

        /* Pizza Grid */
        .pizza-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .card {
            background: var(--white);
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .card-img {
            height: 240px;
            width: 100%;
            object-fit: cover;
        }

        .card-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .card-desc {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--light);
        }

        .price {
            font-family: var(--font-head);
            font-size: 1.5rem;
            color: var(--red);
        }

        .allergens {
            font-size: 0.75rem;
            color: var(--gray);
            font-style: italic;
        }

        .center-cta {
            text-align: center;
            margin-top: 4rem;
        }

        /* Kebabs Rows */
        .kebab-section {
            background-color: var(--white);
        }

        .kebab-row {
            display: flex;
            align-items: center;
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .kebab-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .kebab-row:last-child {
            margin-bottom: 0;
        }

        .kebab-img-container {
            flex: 1;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform 0.4s var(--ease-out);
        }

        .kebab-row:hover .kebab-img-container {
            transform: scale(1.03) translateY(-10px);
        }

        .kebab-img-container img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            filter: saturate(1.1);
        }

        .kebab-text {
            flex: 1;
        }

        .kebab-text h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .kebab-text p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        /* Burgers Oversized */
        .burger-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding-top: 3rem; /* Space for pop-out images */
        }

        .burger-card {
            background: var(--white);
            border-radius: 2rem;
            padding: 3rem;
            position: relative;
            box-shadow: var(--shadow-md);
            transition: transform 0.4s var(--spring);
            text-align: center;
            margin-top: 4rem;
        }

        .burger-card:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .burger-img {
            width: 80%;
            height: 280px;
            object-fit: cover;
            border-radius: 1.5rem;
            margin: -7rem auto 2rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            transition: transform 0.4s var(--spring);
        }

        .burger-card:hover .burger-img {
            transform: translateY(-10px) scale(1.05);
        }

        /* Sides Masonry */
        .sides-section {
            background-color: var(--white);
        }
        
        .sides-list {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .side-pill {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--offwhite);
            padding: 1.2rem 2rem;
            border-radius: 50px;
            transition: background 0.3s, transform 0.2s;
        }

        .side-pill:hover {
            background: var(--light);
            transform: translateX(5px);
        }

        .side-info h4 {
            font-family: var(--font-body);
            font-size: 1.1rem;
            color: #111827;
            margin-bottom: 0.2rem;
        }

        .side-info p {
            font-size: 0.85rem;
            color: var(--gray);
        }

        .side-price {
            font-weight: 700;
            color: var(--red);
            font-size: 1.2rem;
        }

        /* Reviews */
        .reviews-section {
            background-color: var(--charcoal);
            color: var(--white);
            padding: 6rem 0;
        }

        .reviews-section .section-header h2 {
            color: var(--white);
        }

        .reviews-section .section-header p {
            color: var(--light);
        }

        .reviews-track {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 2rem;
            padding: 2rem calc((100vw - 1440px) / 2 + 2rem);
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .reviews-track::-webkit-scrollbar {
            display: none;
        }

        .review-card {
            scroll-snap-align: center;
            flex: 0 0 400px;
            background: var(--white);
            color: var(--dark);
            padding: 2.5rem;
            border-radius: 1.5rem;
            box-shadow: var(--shadow-lg);
        }

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

        .review-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #111827;
        }

        .review-author {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* FAQ */
        .faq-section {
            background-color: var(--offwhite);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: background-color 0.3s;
        }

        .faq-item:hover {
            background-color: var(--cream);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 1.5rem 2rem;
            font-family: var(--font-head);
            font-size: 1.2rem;
            color: #111827;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--indigo);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer-wrapper {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.3s var(--ease-out);
        }

        .faq-item.active .faq-answer-wrapper {
            grid-template-rows: 1fr;
        }

        .faq-answer-inner {
            overflow: hidden;
        }

        .faq-answer {
            padding: 0 2rem 1.5rem;
            color: var(--gray);
            line-height: 1.7;
        }

        /* Footer */
        .pre-footer-cta {
            background: var(--indigo);
            padding: 3rem 2rem;
            text-align: center;
            color: white;
        }

        .pre-footer-cta h2 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        footer {
            background-color: var(--white);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid var(--light);
            font-size: 0.9rem;
        }

        .footer-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            font-family: var(--font-body);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #111827;
            text-transform: uppercase;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-col a {
            color: var(--gray);
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--indigo);
        }

        .footer-bottom {
            max-width: 1440px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid var(--light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray);
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 2rem;
            }
            .hero-content {
                align-items: center;
            }
            .hero p {
                margin: 0 auto;
            }
            .kebab-row, .kebab-row:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
            .burger-grid {
                grid-template-columns: 1fr;
            }
            .reviews-track {
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-md);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links .btn {
                width: 100%;
            }
            .mobile-toggle {
                display: block;
            }
            .review-card {
                flex: 0 0 85vw;
            }
            .side-pill {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
                border-radius: 1rem;
            }
        }

        @media (max-width: 375px) {
            .hero h1 { font-size: 2.5rem; }
            .section-header h2 { font-size: 1.8rem; }
            .card-img { height: 200px; }
            .burger-img { height: 200px; margin-top: -5rem; }
            .burger-card { padding: 2rem 1.5rem; }
        }