        /* ============================================
           BELLA VISTA - RESTAURANT WEBSITE
           Warm, Elegant, Italian Style
           ============================================ */

        :root {
            /* Colors - Warm Italian Palette */
            --gold: #b8860b;
            --gold-light: #d4a84b;
            --gold-dark: #8b6914;
            --burgundy: #722f37;
            --burgundy-dark: #5c262d;
            --cream: #faf8f5;
            --cream-dark: #f5f0e8;
            --brown: #3d2914;
            --brown-light: #5c4033;
            --white: #ffffff;
            --black: #1a1a1a;

            /* Typography */
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Lato', -apple-system, sans-serif;

            /* Spacing */
            --section-padding: 100px;
            --container-max: 1200px;

            /* Transitions */
            --transition: 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--brown);
            background-color: var(--cream);
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        ul, ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: var(--section-padding) 0;
        }

        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.2;
            color: var(--brown);
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-label {
            display: inline-block;
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .section-header h2 {
            margin-bottom: 20px;
        }

        .section-header p {
            color: var(--brown-light);
            font-size: 1.125rem;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.9375rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 0;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--gold-dark);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--white);
        }

        .btn-white {
            background: var(--white);
            color: var(--brown);
        }

        .btn-white:hover {
            background: var(--cream);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all var(--transition);
        }

        .navbar.scrolled {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
        }

        .logo span {
            color: var(--gold);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-link {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9375rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width var(--transition);
        }

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

        .nav-cta {
            padding: 12px 28px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all var(--transition);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            height: 100vh;
            min-height: 700px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80') center/cover no-repeat;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
        }

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

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 24px;
            font-weight: 700;
        }

        .hero-description {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--white);
            opacity: 0.7;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

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

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

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-image-main {
            width: 80%;
            position: relative;
            z-index: 1;
        }

        .about-image-main img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
        }

        .about-image-secondary {
            position: absolute;
            bottom: -40px;
            right: 0;
            width: 60%;
            border: 8px solid var(--white);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .about-image-secondary img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .about-badge {
            position: absolute;
            top: 40px;
            right: 60px;
            width: 120px;
            height: 120px;
            background: var(--burgundy);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
            z-index: 2;
        }

        .about-badge-number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .about-badge-text {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

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

        .about-text h2 {
            margin-bottom: 24px;
        }

        .about-text p {
            color: var(--brown-light);
            margin-bottom: 20px;
        }

        .about-signature {
            margin-top: 30px;
        }

        .about-signature img {
            height: 50px;
            width: auto;
        }

        .about-signature-name {
            font-family: var(--font-heading);
            font-size: 1.125rem;
            font-style: italic;
            margin-top: 10px;
            color: var(--brown);
        }

        /* ============================================
           MENU SECTION
           ============================================ */
        .menu {
            background: var(--cream-dark);
            position: relative;
        }

        .menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23b8860b" opacity="0.1"/></svg>') repeat;
            background-size: 30px 30px;
        }

        .menu .container {
            position: relative;
            z-index: 1;
        }

        .menu-categories {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .menu-category-btn {
            padding: 12px 30px;
            background: transparent;
            border: 2px solid var(--brown-light);
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--brown);
            cursor: pointer;
            transition: all var(--transition);
        }

        .menu-category-btn:hover,
        .menu-category-btn.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .menu-item {
            display: flex;
            gap: 20px;
            padding: 30px;
            background: var(--white);
            transition: all var(--transition);
        }

        .menu-item:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .menu-item-image {
            width: 100px;
            height: 100px;
            flex-shrink: 0;
            overflow: hidden;
        }

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

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

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 8px;
        }

        .menu-item-name {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            color: var(--brown);
        }

        .menu-item-price {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gold);
        }

        .menu-item-description {
            font-size: 0.9375rem;
            color: var(--brown-light);
            line-height: 1.6;
        }

        .menu-cta {
            text-align: center;
            margin-top: 50px;
        }

        /* ============================================
           GALLERY SECTION
           ============================================ */
        .gallery {
            background: var(--brown);
            padding: var(--section-padding) 0;
        }

        .gallery .section-header h2,
        .gallery .section-header p {
            color: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            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.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(184, 134, 11, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition);
        }

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

        .gallery-overlay svg {
            width: 40px;
            height: 40px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2;
        }

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

        .testimonials-slider {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        @media (max-width: 900px) {
            .testimonials-slider { grid-template-columns: 1fr; }
        }

        .testimonial-item {
            padding: 36px 28px;
            background: var(--white);
            text-align: center;
            border-top: 3px solid var(--gold);
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        .testimonial-item .testimonial-quote {
            font-size: 1.05rem;
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .testimonial-stars svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
        }

        .testimonial-quote {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-style: italic;
            color: var(--brown);
            line-height: 1.6;
            margin-bottom: 30px;
        }

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

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-info {
            text-align: left;
        }

        .testimonial-name {
            font-weight: 700;
            color: var(--brown);
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: var(--brown-light);
        }

        /* ============================================
           RESERVATION SECTION
           ============================================ */
        .reservation {
            background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
                        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover no-repeat fixed;
            color: var(--white);
        }

        .reservation .section-header h2,
        .reservation .section-header p {
            color: var(--white);
        }

        .reservation-form {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255,255,255,0.05);
            padding: 50px;
            backdrop-filter: blur(10px);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            color: var(--gold);
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 16px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all var(--transition);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255,255,255,0.15);
        }

        .form-select {
            cursor: pointer;
        }

        .form-select option {
            background: var(--brown);
            color: var(--white);
        }

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

        .form-submit {
            width: 100%;
            margin-top: 10px;
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact {
            background: var(--cream-dark);
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .contact-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--white);
            transition: all var(--transition);
        }

        .contact-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2;
        }

        .contact-card h4 {
            margin-bottom: 12px;
        }

        .contact-card p {
            color: var(--brown-light);
            line-height: 1.8;
        }

        .contact-card a {
            color: var(--gold);
            font-weight: 500;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }

        .footer-social a:hover {
            background: var(--gold);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .footer-column h4 {
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 1.125rem;
            margin-bottom: 24px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
        }

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

        /* ============================================
           ANIMATIONS
           ============================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

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

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 992px) {
            :root {
                --section-padding: 80px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-images {
                max-width: 500px;
                margin: 0 auto;
            }

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

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

            .contact-content {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

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

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 350px;
                height: 100vh;
                background: var(--black);
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: right var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }

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

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

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

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

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

            .reservation-form {
                padding: 30px 20px;
            }

            .about-badge {
                width: 90px;
                height: 90px;
                right: 20px;
                top: 20px;
            }

            .about-badge-number {
                font-size: 1.75rem;
            }
        }

        /* ============================================
           STATS SECTION
           ============================================ */
        .stats {
            background: var(--burgundy);
            color: var(--white);
            padding: 80px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        .stat-item h3 {
            font-size: 3.5rem;
            color: var(--gold-light);
            margin-bottom: 8px;
            font-weight: 700;
        }
        .stat-item p {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            opacity: 0.85;
        }

        /* ============================================
           CHEF SECTION
           ============================================ */
        .chef {
            background: var(--cream-dark);
        }
        .chef-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 70px;
            align-items: center;
        }
        .chef-text h2 { margin-bottom: 24px; }
        .chef-text p {
            color: var(--brown-light);
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .chef-quote {
            border-left: 3px solid var(--gold);
            padding: 14px 22px;
            font-style: italic;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--brown);
            margin: 24px 0;
        }
        .chef-image img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            box-shadow: 30px 30px 0 var(--gold-light);
        }
        .chef-achievements {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 28px;
        }
        .chef-achievement {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .chef-achievement svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 2;
            flex-shrink: 0;
        }
        .chef-achievement strong {
            display: block;
            color: var(--brown);
            font-family: var(--font-heading);
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .chef-achievement span { font-size: 0.9rem; color: var(--brown-light); }

        /* ============================================
           EVENTS SECTION
           ============================================ */
        .events { background: var(--white); }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .event-card {
            position: relative;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: flex-end;
            color: var(--white);
            padding: 36px 30px;
        }
        .event-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s;
            z-index: 0;
        }
        .event-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26,26,26,0.92) 10%, rgba(26,26,26,0.2) 70%);
            z-index: 1;
        }
        .event-card:hover::before { transform: scale(1.08); }
        .event-card > * { position: relative; z-index: 2; }
        .event-card.event-1::before { background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800&q=80'); }
        .event-card.event-2::before { background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?w=800&q=80'); }
        .event-card.event-3::before { background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=800&q=80'); }
        .event-card .event-content h3 {
            color: var(--white);
            margin-bottom: 12px;
        }
        .event-card .event-content p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 18px;
        }
        .event-card .event-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq { background: var(--cream-dark); }
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--white);
            margin-bottom: 16px;
            border-left: 3px solid var(--gold);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 22px 28px;
            font-family: var(--font-heading);
            font-size: 1.15rem;
            color: var(--brown);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.6rem;
            color: var(--gold);
            transition: transform var(--transition);
        }
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .faq-answer p {
            padding: 0 28px 24px;
            color: var(--brown-light);
        }
        .faq-item.active .faq-answer { max-height: 300px; }

        /* ============================================
           CONTACT FORM
           ============================================ */
        .contact-form-wrap {
            margin-top: 70px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .contact-map {
            width: 100%;
            height: 480px;
            background: url('https://images.unsplash.com/photo-1524850011238-e3d235c7d4c9?w=800&q=80') center/cover;
            position: relative;
        }
        .contact-map::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(114,47,55,0.4);
        }
        .contact-form {
            background: var(--white);
            padding: 50px 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        .contact-form h3 {
            margin-bottom: 8px;
        }
        .contact-form .form-intro {
            color: var(--brown-light);
            margin-bottom: 28px;
            font-size: 0.95rem;
        }
        .form-success {
            display: none;
            background: #e8f5e9;
            border-left: 4px solid #4caf50;
            color: #2e7d32;
            padding: 16px 20px;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .form-success.visible { display: block; }

        /* ============================================
           MENU TAB CONTENT
           ============================================ */
        .menu-tab { display: none; }
        .menu-tab.active { display: grid; }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 900px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .chef-grid { grid-template-columns: 1fr; gap: 40px; }
            .chef-image img { box-shadow: 15px 15px 0 var(--gold-light); }
            .events-grid { grid-template-columns: 1fr; }
            .contact-form-wrap { grid-template-columns: 1fr; gap: 40px; }
            .contact-map { height: 320px; }
        }

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover;
    opacity: 0.15;
}
.page-banner > .container { position: relative; z-index: 1; }
.page-banner .section-label { color: var(--gold-light); }
.page-banner h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin: 14px 0 16px;
}
.page-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Make navbar always visible (not transparent over content) on inner pages */
.navbar.scrolled {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
}
