
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

        :root {
            --gold: #c8a24e;
            --gold-light: #e2c97e;
            --dark: #1a1a1a;
            --darker: #111111;
            --cream: #f5f0e8;
            --text-light: #d4d0c8;
            --text-muted: #8a8578;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--darker);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(17, 17, 17, 0.95);
            backdrop-filter: blur(20px);
            padding: 1rem 3rem;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-reserve-nav {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 0.6rem 1.5rem;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .btn-reserve-nav:hover {
            background: var(--gold);
            color: var(--dark);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover no-repeat;
            transform: scale(1.1);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            0% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.6) 50%,
                rgba(17, 17, 17, 1) 100%
            );
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 1s ease 0.3s forwards;
        }

        .hero-badge::before,
        .hero-badge::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s ease 0.6s forwards;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold);
        }

        .hero-subtitle {
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeUp 1s ease 0.9s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 1s ease 1.2s forwards;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--dark);
            padding: 1rem 2.5rem;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(200, 162, 78, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1rem 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.05);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            animation: fadeUp 1s ease 1.5s forwards;
        }

        .scroll-indicator span {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollBounce 2s ease-in-out infinite;
        }

        @keyframes scrollBounce {
            0%, 100% { transform: scaleY(1); opacity: 1; }
            50% { transform: scaleY(0.5); opacity: 0.5; }
        }

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

        /* ===== SECTION STYLES ===== */
        .section {
            padding: 7rem 3rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin: 1.5rem auto;
        }

        .section-desc {
            font-size: 1rem;
            font-weight: 300;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--dark);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-images {
            position: relative;
            height: 500px;
        }

        .about-img-main {
            width: 75%;
            height: 400px;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            border: 3px solid var(--gold);
        }

        .about-img-secondary {
            width: 55%;
            height: 280px;
            object-fit: cover;
            position: absolute;
            bottom: 0;
            right: 0;
            border: 3px solid var(--gold);
        }

        .about-experience {
            position: absolute;
            bottom: 60px;
            left: 30%;
            background: var(--gold);
            color: var(--dark);
            padding: 1.5rem 2rem;
            text-align: center;
            z-index: 3;
        }

        .about-experience .number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
        }

        .about-experience .label {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .about-content {
            padding: 1rem 0;
        }

        .about-content .section-label {
            text-align: left;
        }

        .about-content .section-title {
            text-align: left;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-text {
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .about-feature .icon {
            width: 40px;
            height: 40px;
            background: rgba(200, 162, 78, 0.1);
            border: 1px solid rgba(200, 162, 78, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .about-feature span {
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--text-light);
        }

        /* ===== MENU SECTION ===== */
        .menu {
            background: var(--darker);
        }

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

        .menu-cat-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--text-muted);
            padding: 0.7rem 1.8rem;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .menu-cat-btn:hover,
        .menu-cat-btn.active {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(200, 162, 78, 0.05);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .menu-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .menu-item:hover {
            border-color: rgba(200, 162, 78, 0.3);
            background: rgba(200, 162, 78, 0.03);
            transform: translateY(-3px);
        }

        .menu-item-img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 50%;
            flex-shrink: 0;
            border: 2px solid rgba(200, 162, 78, 0.3);
        }

        .menu-item-info {
            flex: 1;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.5rem;
        }

        .menu-item-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .menu-item-price {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .menu-item-dots {
            flex: 1;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
            margin: 0 0.75rem;
            margin-bottom: 4px;
        }

        .menu-item-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.6;
        }

        .menu-item-tags {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .menu-tag {
            font-size: 0.65rem;
            padding: 0.2rem 0.5rem;
            border: 1px solid rgba(200, 162, 78, 0.3);
            color: var(--gold);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ===== SPECIALS SECTION ===== */
        .specials {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .specials-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Playfair Display', serif;
            font-size: 15rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.02);
            white-space: nowrap;
            pointer-events: none;
        }

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

        .special-card {
            position: relative;
            height: 450px;
            overflow: hidden;
            cursor: pointer;
            group: true;
        }

        .special-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .special-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.2) 60%,
                transparent 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .special-card:hover .special-card-overlay {
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.4) 60%,
                rgba(0, 0, 0, 0.1) 100%
            );
        }

        .special-card-label {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .special-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .special-card-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .special-card:hover .special-card-desc {
            max-height: 100px;
        }

        .special-card-price {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: var(--gold);
            color: var(--dark);
            padding: 0.5rem 1rem;
            font-weight: 700;
            font-size: 1rem;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--darker);
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial {
            min-width: 100%;
            text-align: center;
            padding: 2rem;
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            letter-spacing: 4px;
        }

        .testimonial-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-style: italic;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold);
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .test-btn {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: transparent;
            color: var(--white);
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .test-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

        /* ===== GALLERY ===== */
        .gallery {
            background: var(--dark);
            padding-bottom: 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 0.5rem;
            max-width: 100%;
        }

        .gallery-item {
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

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

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

        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .gallery-item-overlay span {
            font-size: 2rem;
            color: var(--gold);
        }

        /* ===== CHEF SECTION ===== */
        .chef {
            background: var(--darker);
        }

        .chef-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .chef-card {
            text-align: center;
            padding: 2rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .chef-card:hover {
            border-color: rgba(200, 162, 78, 0.3);
            transform: translateY(-5px);
        }

        .chef-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 3px solid var(--gold);
        }

        .chef-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }

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

        .chef-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }

        /* ===== RESERVATION SECTION ===== */
        .reservation {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .reservation-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1100px;
            margin: 0 auto;
            align-items: center;
        }

        .reservation-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .reservation-info p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .info-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-item .icon {
            width: 45px;
            height: 45px;
            background: rgba(200, 162, 78, 0.1);
            border: 1px solid rgba(200, 162, 78, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-item-text strong {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .info-item-text span {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        .reservation-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 2.5rem;
        }

        .reservation-form h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .reservation-form > p {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group.full {
            grid-column: span 2;
        }

        .form-group label {
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
            padding: 0.8rem 1rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
        }

        .form-group select {
            appearance: none;
            cursor: pointer;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-group select option {
            background: var(--dark);
        }

        .btn-submit {
            width: 100%;
            margin-top: 1rem;
            background: var(--gold);
            color: var(--dark);
            padding: 1rem;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(200, 162, 78, 0.3);
        }

        /* ===== STATS BAR ===== */
        .stats {
            background: var(--gold);
            padding: 3rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            color: var(--dark);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            display: block;
        }

        .stat-label {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            opacity: 0.8;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--darker);
            padding: 4rem 3rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .footer-brand .nav-logo {
            display: inline-block;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.8;
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(200, 162, 78, 0.1);
        }

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

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

        .footer-col ul a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }

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

        .footer-newsletter p {
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-form input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
            padding: 0.8rem 1rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            outline: none;
            border-right: none;
        }

        .newsletter-form input:focus {
            border-color: var(--gold);
        }

        .newsletter-form button {
            background: var(--gold);
            border: none;
            color: var(--dark);
            padding: 0.8rem 1.2rem;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--gold-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.8rem;
            font-weight: 300;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

        /* ===== ANIMATION CLASSES ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s ease;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.8s ease;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .about-grid,
            .reservation-wrapper {
                grid-template-columns: 1fr;
            }

            .about-images {
                height: 400px;
                margin-bottom: 2rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .specials-grid {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 200px);
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(17, 17, 17, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .hamburger {
                display: flex;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .section {
                padding: 4rem 1.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .about-images {
                height: 350px;
            }

            .about-img-main {
                width: 70%;
                height: 300px;
            }

            .about-img-secondary {
                width: 50%;
                height: 200px;
            }

            .specials-grid,
            .chef-grid {
                grid-template-columns: 1fr;
            }

            .special-card {
                height: 350px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-group.full {
                grid-column: span 1;
            }

            .reservation-form {
                padding: 1.5rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: repeat(3, 180px);
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 1;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stat-number {
                font-size: 2rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 1;
            }

            .gallery-item {
                height: 200px;
            }

            .specials-bg-text {
                font-size: 6rem;
            }
        }

        /* ===== MODAL ===== */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--dark);
            border: 1px solid rgba(200, 162, 78, 0.3);
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--gold);
        }

        .modal-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .modal-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .modal-content p {
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.6;
        }
