    :root {
        --emerald: #064e3b;
        --emerald-light: #059669;
        --cream: #FDFBF7;
        --cream-dark: #F5F2EB;
        --text-main: #1a1a1a;
        --text-muted: #555555;
        --white: #ffffff;
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Inter', sans-serif;
        --transition: all 0.3s ease;
    }

    /* Reset & Base */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        background-color: var(--cream);
        color: var(--text-main);
        line-height: 1.6;
        font-weight: 300;
        -webkit-font-smoothing: antialiased;
    }

    /* When JS is disabled, reveal elements are visible by default */
    body:not(.js-enabled) .reveal {
        opacity: 1;
        transform: none;
    }

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

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

    ul {
        list-style: none;
    }

    /* Typography */
    h1, h2, h3 {
        font-family: var(--font-serif);
        font-weight: 400;
        line-height: 1.2;
        color: var(--emerald);
    }

    h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--text-main);
    }

    p {
        color: var(--text-muted);
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .label {
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--emerald-light);
        margin-bottom: 1rem;
    }

    /* Layout */
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section {
        padding: 6rem 0;
    }

    .bg-cream {
        background-color: var(--cream-dark);
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        border-radius: 2px;
        transition: var(--transition);
        cursor: pointer;
    }

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

    .btn-primary:hover {
        background-color: var(--emerald-light);
        border-color: var(--emerald-light);
    }

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

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

    .btn-text {
        background: none;
        color: var(--emerald);
        padding: 1rem 0;
        border-bottom: 1px solid transparent;
    }

    .btn-text:hover {
        border-bottom: 1px solid var(--emerald);
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(253, 251, 247, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        height: 80px;
        display: flex;
        align-items: center;
    }

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

    .logo {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--emerald);
        letter-spacing: -0.02em;
    }

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

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--text-main);
    }

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

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--emerald);
        position: absolute;
        left: 0;
        transition: var(--transition);
    }

    .mobile-menu-btn span:first-child { top: 0; }
    .mobile-menu-btn span:last-child { bottom: 0; }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--cream);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

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

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

    /* Hero */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding-top: 80px; /* Offset for fixed nav */
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #064e3b 0%, #0f766e 50%, #d1fae5 100%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: var(--white);
        max-width: 800px;
    }

    .hero-title {
        color: var(--white);
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        font-weight: 300;
    }

    .hero-actions {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
    }

    .hero-actions .btn-primary {
        background-color: var(--white);
        color: var(--emerald);
        border-color: var(--white);
    }

    .hero-actions .btn-primary:hover {
        background-color: var(--cream);
        border-color: var(--cream);
    }

    .hero-actions .btn-text {
        color: var(--white);
        border-color: rgba(255,255,255,0.5);
    }

    .hero-actions .btn-text:hover {
        border-color: var(--white);
    }

    /* About Split */
    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .split-text .label {
        margin-bottom: 1rem;
    }

    .split-text p {
        margin-bottom: 1.5rem;
        color: var(--text-muted);
    }

    .split-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    /* Menu Grid */
    .section-header {
        margin-bottom: 4rem;
    }

    .section-header.center {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .menu-item {
        background: var(--cream);
        border-radius: 4px;
        overflow: hidden;
        transition: var(--transition);
    }

    .menu-item:hover {
        transform: translateY(-5px);
    }

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

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

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

    .menu-info {
        padding: 2rem;
    }

    .menu-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Contact Card */
    .contact-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
        min-height: 450px;
    }

    .contact-info {
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-info address {
        font-style: normal;
        margin: 1.5rem 0;
        font-size: 1.25rem;
        color: var(--text-main);
        line-height: 1.8;
    }

    .contact-details {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .contact-details a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--emerald);
        font-weight: 500;
    }

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

    .status {
        padding: 0.25rem 0.75rem;
        background: #d1fae5;
        color: var(--emerald);
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .map-placeholder {
        background: #e5e7eb;
        min-height: 300px;
    }

    /* Footer */
    .footer {
        background: var(--emerald);
        color: var(--white);
        padding: 4rem 0 2rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand h3 {
        color: var(--white);
        margin-bottom: 0.5rem;
    }

    .footer-brand p {
        color: rgba(255,255,255,0.7);
        font-size: 0.95rem;
    }

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

    .footer-links a {
        color: var(--white);
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .footer-links a:hover {
        opacity: 1;
    }

    .footer-copy {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 0.8rem;
        color: rgba(255,255,255,0.5);
        width: 100%;
        text-align: center;
    }

    /* Utilities */
    .center { text-align: center; }
    .mt-large { margin-top: 3rem; }

    /* Reveal Animation Classes */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 900px) {
        .split-layout, .contact-card {
            grid-template-columns: 1fr;
        }
        
        .contact-info {
            padding: 3rem 2rem;
        }

        .split-image {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

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

        h1 {
            font-size: 2.5rem;
        }

        .hero-actions {
            flex-direction: column;
        }
        
        .btn {
            width: 100%;
            text-align: center;
        }
    }
