        :root {
            --beige: #f5efe6;
            --terracotta: #b66c53;
            --dark-brown: #1e0d01;
            --sage: #8D8B63;
            --white: #FFFFFF;
            --light-gray: #f9f9f9;
            --dark-sage: #6d6b4d;
            --cream: #faf8f5;
            --gold: #d4af37;
        }

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

        body {
            font-family: 'Red Hat Display', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(135deg, rgba(30, 13, 1, 0.7) 0%, rgba(182, 108, 83, 0.4) 50%, rgba(141, 139, 99, 0.3) 100%), 
                        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 5rem;
            margin-bottom: 2rem;
            font-weight: 200;
            letter-spacing: 5px;
            text-shadow: 3px 3px 12px rgba(0,0,0,0.5);
            background: linear-gradient(45deg, var(--white), var(--beige), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-ornament {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 2rem auto;
            position: relative;
        }

        .hero-ornament::before,
        .hero-ornament::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            top: -3px;
        }

        .hero-ornament::before { left: -10px; }
        .hero-ornament::after { right: -10px; }

        /* Floating elements */
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 3.5rem;
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .section-title h2::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
            border-radius: 3px;
        }

        .section-title p {
            font-size: 1.4rem;
            color: var(--sage);
            font-style: italic;
            margin-top: 2rem;
            font-weight: 300;
        }

        /* Restaurant Intro */
        .restaurant-intro {
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .restaurant-intro::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(182, 108, 83, 0.03) 0%, transparent 70%);
            animation: rotate 60s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .intro-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 5rem;
        }

        .intro-text {
            flex: 1;
        }

        .intro-image {
            flex: 1;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        }

        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }

        .intro-image:hover img {
            transform: scale(1.05);
        }

        /* Menu Section */
        .menu-section {
            background: var(--white);
            position: relative;
        }

        .menu-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .menu-tab {
            background: var(--white);
            border: 2px solid var(--terracotta);
            color: var(--terracotta);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .menu-tab.active,
        .menu-tab:hover {
            background: var(--terracotta);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(182, 108, 83, 0.3);
        }

        .menu-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .menu-tab:hover::before {
            left: 100%;
        }

        .menu-category {
            margin-bottom: 5rem;
        }

        .menu-category h3 {
            font-size: 2.5rem;
            color: var(--terracotta);
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 300;
            letter-spacing: 1px;
            position: relative;
        }

        .menu-category h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold));
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px dashed var(--beige);
        }

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

        .menu-item-content {
            flex: 1;
            padding-right: 2rem;
        }

        .menu-item-title {
            font-size: 1.4rem;
            color: var(--dark-brown);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .menu-item-description {
            color: var(--sage);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .menu-item-price {
            font-size: 1.6rem;
            color: var(--terracotta);
            font-weight: 400;
            min-width: 80px;
            text-align: right;
        }

        /* Chef Section */
        .chef-section {
            background: var(--dark-brown);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .chef-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1544306094-84c0e7bd0a1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.1;
        }

        .chef-section .section-title h2,
        .chef-section .section-title p {
            color: var(--white);
        }

        .chef-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 2;
            height: 100%;
        }

        .chef-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .chef-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 2rem;
            border: 5px solid rgba(212, 175, 55, 0.3);
        }

        .chef-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .chef-card:hover .chef-image img {
            transform: scale(1.1);
        }

        .chef-name {
            font-size: 1.8rem;
            color: var(--beige);
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .chef-title {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .chef-bio {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .chef-signature {
            font-family: 'Parisienne', cursive;
            font-size: 2.5rem;
            color: var(--gold);
            margin-top: 1rem;
            opacity: 0.8;
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            aspect-ratio: 1/1;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 2rem 1.5rem 1rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
            position: relative;
            transition: all 0.5s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .testimonial-quote {
            font-size: 1.2rem;
            color: var(--dark-brown);
            line-height: 1.8;
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 5rem;
            color: var(--terracotta);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -20px;
            font-family: Georgia, serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1.5rem;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h5 {
            font-size: 1.2rem;
            color: var(--dark-brown);
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: var(--sage);
            font-size: 0.9rem;
        }

        /* Reservation Section */
        .reservation-section {
            background: linear-gradient(135deg, var(--terracotta) 0%, var(--dark-sage) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .reservation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1544306094-84c0e7bd0a1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.1;
        }

        .reservation-form {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 3rem;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
            padding: 1rem;
            border-radius: 10px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: rgba(255,255,255,0.2);
            border-color: var(--gold);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
            color: var(--white);
        }

        .form-control::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .btn-submit {
            background: linear-gradient(45deg, var(--gold), var(--beige));
            color: var(--dark-brown);
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            width: 100%;
            margin-top: 1rem;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, var(--beige), var(--gold));
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .container {
                max-width: 100%;
                padding: 0 30px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 100px 0;
            }
            
            .hero-content h1 {
                font-size: 4rem;
            }
            
            .section-title h2 {
                font-size: 3rem;
            }

            .intro-content {
                flex-direction: column;
                gap: 3rem;
            }

            .intro-text, .intro-image {
                width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 80px 0;
            }
            
            .hero {
                min-height: 400px;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
                letter-spacing: 3px;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }

            .menu-tabs {
                flex-direction: column;
                align-items: center;
            }

            .menu-tab {
                width: 80%;
                text-align: center;
            }

            .chef-card {
                padding: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .menu-item {
                flex-direction: column;
            }

            .menu-item-price {
                text-align: left;
                margin-top: 1rem;
            }

            .reservation-form {
                padding: 2rem;
            }
        }