    /* --- Variables & Reset --- */
    :root {
        --color-charcoal: #2C2C2C;
        --color-charcoal-light: #3A3A3A;
        --color-coral: #E07A5F;
        --color-coral-dark: #C06048;
        --color-cream: #F4F1EA;
        --color-white: #FFFFFF;
        --color-text: #4A4A4A;
        
        --font-serif: 'Cormorant Garamond', serif;
        --font-sans: 'Lato', sans-serif;
        
        --spacing-container: 1200px;
        --spacing-section: 100px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        color: var(--color-text);
        background-color: var(--color-cream);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4 {
        font-family: var(--font-serif);
        font-weight: 600;
        line-height: 1.2;
        color: var(--color-charcoal);
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }

    ul {
        list-style: none;
    }

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

    /* --- Utility Classes --- */
    .container {
        max-width: var(--spacing-container);
        margin: 0 auto;
        padding: 0 24px;
    }

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

    .bg-light {
        background-color: #EFECE5;
    }

    .bg-charcoal {
        background-color: var(--color-charcoal);
        color: var(--color-white);
    }

    .text-center {
        text-align: center;
    }

    .text-coral {
        color: var(--color-coral);
    }

    .text-white {
        color: var(--color-white);
    }

    .section-tag {
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--color-coral);
        margin-bottom: 16px;
        font-weight: 700;
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 24px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.8;
    }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 14px 32px;
        font-family: var(--font-sans);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        border-radius: 2px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid transparent;
    }

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

    .btn-primary:hover {
        background-color: var(--color-coral-dark);
        transform: translateY(-2px);
    }

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

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

    .w-100 {
        width: 100%;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    /* --- Navigation --- */
    #navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(244, 241, 234, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        transition: padding 0.3s ease, box-shadow 0.3s ease;
    }

    #navbar.scrolled {
        padding: 12px 0;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

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

    .logo {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--color-charcoal);
        letter-spacing: -0.5px;
    }

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

    .nav-links a {
        font-size: 0.95rem;
        font-weight: 400;
        color: var(--color-charcoal);
        position: relative;
    }

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

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

    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .mobile-menu-btn span {
        width: 28px;
        height: 2px;
        background-color: var(--color-charcoal);
        transition: all 0.3s ease;
    }

    /* --- Mobile Menu --- */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-cream);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-menu-overlay.active {
        transform: translateY(0);
    }

    .close-menu-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        background: none;
        border: none;
        font-size: 2.5rem;
        color: var(--color-charcoal);
        cursor: pointer;
    }

    .mobile-menu-overlay ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .mobile-link {
        font-family: var(--font-serif);
        font-size: 2rem;
        color: var(--color-charcoal);
    }

    .cta-link {
        color: var(--color-coral);
        font-family: var(--font-sans);
        font-size: 1rem;
        margin-top: 20px;
        font-weight: 700;
    }

    /* --- Hero Section --- */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('https://images.pexels.com/photos/4947415/pexels-photo-4947415.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.7));
    }

    .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
    }

    .hero h1 {
        font-size: clamp(3rem, 8vw, 5rem);
        color: var(--color-white);
        margin-bottom: 24px;
        font-weight: 400;
        font-style: italic;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

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

    /* --- Animations --- */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .fade-in-delay {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease 0.2s forwards;
    }

    .fade-in-delay-2 {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease 0.4s forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reveal-left, .reveal-right, .reveal-up {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal-left {
        transform: translateX(-50px);
    }

    .reveal-right {
        transform: translateX(50px);
    }

    .reveal-up {
        transform: translateY(50px);
    }

    .reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* --- About Section --- */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image-wrapper img {
        border-radius: 4px;
        box-shadow: 20px 20px 0 var(--color-coral);
    }

    .about-text p {
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .signature {
        margin-top: 30px;
    }

    /* --- Menu Section --- */
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .menu-card {
        background: var(--color-white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .menu-card:hover {
        transform: translateY(-10px);
    }

    .card-img {
        height: 250px;
        overflow: hidden;
    }

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

    .menu-card:hover .card-img img {
        transform: scale(1.05);
    }

    .card-content {
        padding: 30px;
    }

    .card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 0.95rem;
        color: #666;
    }

    /* --- Ambiance Section --- */
    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .feature-list {
        margin-top: 30px;
    }

    .feature-list li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(44, 44, 44, 0.1);
        font-family: var(--font-serif);
        font-size: 1.2rem;
        font-style: italic;
    }

    .img-stack {
        position: relative;
        height: 500px;
    }

    .img-primary {
        position: absolute;
        top: 0;
        right: 0;
        width: 70%;
        height: 80%;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .img-secondary {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 50%;
        object-fit: cover;
        border-radius: 4px;
        border: 8px solid var(--color-cream);
    }

    /* --- Contact Section --- */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        background-color: var(--color-charcoal-light);
        padding: 60px;
        border-radius: 8px;
    }

    .info-block {
        margin-bottom: 40px;
    }

    .info-block h4 {
        color: var(--color-coral);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .info-block p, .info-block a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .info-block a:hover {
        color: var(--color-coral);
    }

    .contact-form {
        background: var(--color-white);
        padding: 40px;
        border-radius: 4px;
        color: var(--color-charcoal);
    }

    .contact-form h3 {
        margin-bottom: 24px;
        font-size: 1.8rem;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #ddd;
        border-radius: 2px;
        font-family: var(--font-sans);
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-coral);
    }

    .form-status {
        margin-top: 16px;
        font-size: 0.9rem;
        text-align: center;
    }

    .form-status.success {
        color: green;
    }

    .form-status.error {
        color: red;
    }

    /* --- Footer --- */
    footer {
        background-color: var(--color-charcoal);
        color: var(--color-white);
        padding: 60px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

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

    .footer-logo {
        font-family: var(--font-serif);
        font-size: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        opacity: 0.6;
    }

    .social-links {
        display: flex;
        gap: 20px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background-color: var(--color-coral);
        border-color: var(--color-coral);
    }

    /* --- Responsive --- */
    @media (max-width: 992px) {
        .about-grid,
        .split-layout,
        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .about-image-wrapper {
            order: -1;
        }

        .img-stack {
            height: 400px;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }

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

    @media (max-width: 768px) {
        :root {
            --spacing-section: 70px;
        }

        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }

        .btn {
            width: 100%;
            text-align: center;
        }

        .contact-wrapper {
            padding: 30px;
        }

        .footer-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }
