/* Home page styles */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            background: #1a1a1a;
            color: #e8e8e8;
            line-height: 1.6;
            overflow-x: hidden;
            cursor: none;
        }

        .cursor {
            width: 20px;
            height: 20px;
            border: 1px solid #e8e8e8;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            transform: translate(-50%, -50%);
        }

        .cursor.expand {
            width: 60px;
            height: 60px;
            background: rgba(232, 232, 232, 0.1);
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
            pointer-events: none;
            z-index: 1;
            opacity: 0.4;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 25px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #e8e8e8;
        }

        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav a {
            color: #e8e8e8;
            text-decoration: none;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
            border-bottom: 1px solid transparent;
            padding-bottom: 3px;
        }

        nav a:hover {
            color: #888;
            border-bottom: 1px solid #888;
        }

        .order-icon {
            width: 18px;
            height: 18px;
            stroke: #e8e8e8;
            transition: all 0.3s;
        }

        nav a:hover .order-icon {
            stroke: #888;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 1px;
            background: #e8e8e8;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: #0a0a0a;
            z-index: 999;
            transition: right 0.4s ease;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            text-decoration: none;
            color: #e8e8e8;
            font-size: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .mobile-order-icon {
            width: 24px;
            height: 24px;
            stroke: #e8e8e8;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('https://images.unsplash.com/photo-1511920170033-f8396924c348?w=1600') center/cover;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.2s ease forwards 0.3s;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 400;
            letter-spacing: 12px;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-tagline {
            font-size: 18px;
            letter-spacing: 6px;
            margin-bottom: 50px;
            color: #bbb;
        }

        .cta-btn {
            display: inline-block;
            padding: 18px 50px;
            border: 1px solid #e8e8e8;
            background: transparent;
            color: #e8e8e8;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 12px;
            transition: all 0.3s;
            font-family: 'Courier New', monospace;
        }

        .cta-btn:hover {
            background: #e8e8e8;
            color: #1a1a1a;
        }

        .aesthetic-section {
            padding: 0;
            background: #0a0a0a;
        }

        .aesthetic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }

        .aesthetic-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }

        .aesthetic-item.visible {
            animation: slideUp 0.8s ease forwards;
        }

        .aesthetic-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) contrast(1.2);
            transition: all 0.5s;
        }

        .aesthetic-item:hover img {
            transform: scale(1.05);
        }

        .aesthetic-caption {
            position: absolute;
            bottom: 30px;
            left: 30px;
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: rgba(0,0,0,0.7);
            padding: 10px 20px;
        }

        .manifesto {
            padding: 120px 40px;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .manifesto p {
            font-size: 22px;
            line-height: 1.9;
            letter-spacing: 1px;
            color: #ccc;
            font-family: Georgia, serif;
            font-style: italic;
            opacity: 0;
            transform: translateY(30px);
        }

        .manifesto p.visible {
            animation: fadeInUp 1s ease forwards;
        }

        .location-section {
            padding: 100px 40px;
            background: #0a0a0a;
            display: flex;
            justify-content: center;
        }

        .location-card {
            border: 1px solid #333;
            padding: 60px 80px;
            text-align: center;
            max-width: 500px;
            background: #1a1a1a;
            opacity: 0;
            transform: scale(0.9);
        }

        .location-card.visible {
            animation: scaleIn 0.8s ease forwards;
        }

        .location-card h3 {
            font-size: 24px;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .location-info {
            font-size: 14px;
            line-height: 2.5;
            letter-spacing: 2px;
        }

        .menu-preview {
            padding: 120px 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .menu-preview h2 {
            font-size: 36px;
            letter-spacing: 8px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 80px;
            font-weight: 400;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
        }

        .menu-item {
            border-bottom: 1px solid #333;
            padding-bottom: 30px;
            opacity: 0;
            transform: translateX(-50px);
        }

        .menu-item.visible {
            animation: slideInLeft 0.8s ease forwards;
        }

        .menu-item:nth-child(even) {
            transform: translateX(50px);
        }

        .menu-item.visible:nth-child(even) {
            animation: slideInRight 0.8s ease forwards;
        }

        .menu-item h4 {
            font-size: 18px;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .menu-item p {
            font-size: 12px;
            color: #888;
            letter-spacing: 1px;
        }

        .menu-link {
            text-align: center;
            margin-top: 60px;
        }

        .menu-link a {
            color: #e8e8e8;
            text-decoration: none;
            letter-spacing: 3px;
            font-size: 12px;
            border-bottom: 1px solid #e8e8e8;
            padding-bottom: 5px;
            transition: all 0.3s;
        }

        .menu-link a:hover {
            letter-spacing: 5px;
        }

        .socials {
            padding: 80px 40px;
            text-align: center;
            background: #0a0a0a;
        }

        .socials a {
            color: #e8e8e8;
            text-decoration: none;
            margin: 0 30px;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
        }

        .socials a:hover {
            color: #888;
            border-bottom: 1px solid #888;
        }

        footer {
            padding: 40px;
            text-align: center;
            font-size: 10px;
            letter-spacing: 2px;
            color: #555;
            border-top: 1px solid #222;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .cursor { display: none; }
            
            nav {
                display: none;
            }
            
            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .mobile-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
                letter-spacing: 6px;
            }

            .hero-tagline {
                font-size: 14px;
                letter-spacing: 3px;
            }

            .aesthetic-grid {
                grid-template-columns: 1fr;
            }

            .manifesto p {
                font-size: 18px;
            }

            .location-card {
                padding: 40px 30px;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .socials a {
                display: block;
                margin: 20px 0;
            }
        }