    /* --- Reset & Variables --- */
    :root {
        --color-emerald: #064e3b; /* Deep Emerald */
        --color-emerald-light: #059669;
        --color-cream: #FDFBF7;   /* Off-white cream */
        --color-cream-dark: #F3EFE6;
        --color-text: #1a1a1a;
        --color-text-light: #555555;
        --color-white: #ffffff;
        
        --font-display: 'Syne', sans-serif;
        --font-body: 'Manrope', sans-serif;
        
        --container-width: 1200px;
        --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    h1, h2, h3 {
        font-family: var(--font-display);
        font-weight: 600;
        line-height: 1.1;
        color: var(--color-emerald);
    }

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

    a {
        text-decoration: none;
        color: inherit;
    }

    /* --- Utilities --- */
    .container {
        width: 90%;
        max-width: var(--container-width);
        margin: 0 auto;
    }

    .section {
        padding: 100px 0;
    }

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

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

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

    .mt-large {
        margin-top: 3rem;
    }

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

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

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

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

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

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

    .btn-text:hover {
        color: var(--color-emerald);
        border-bottom-color: var(--color-emerald);
    }

    /* --- Navigation --- */
    .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(6, 78, 59, 0.1);
        padding: 1.5rem 0;
    }

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

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

    .logo .dot {
        color: var(--color-emerald-light);
    }

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

    .nav-links a {
        font-size: 0.9rem;
        color: var(--color-text);
        transition: color 0.3s;
    }

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

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-emerald);
        position: absolute;
        transition: var(--transition);
    }

    .mobile-toggle span:nth-child(1) { top: 0; }
    .mobile-toggle span:nth-child(2) { bottom: 0; }

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

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

    .mobile-menu a {
        font-family: var(--font-display);
        font-size: 2rem;
        color: var(--color-emerald);
    }

    /* --- Hero Section --- */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(6, 78, 59, 0.08) 0%, rgba(253, 251, 247, 0) 70%);
        z-index: 1;
    }
    
    /* Subtle decorative line */
    .hero-bg::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1px;
        height: 200px;
        background: linear-gradient(to bottom, transparent, var(--color-emerald), transparent);
        opacity: 0.3;
    }

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

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        margin-bottom: 1.5rem;
        color: var(--color-emerald);
        font-weight: 600;
    }

    .hero-sub {
        font-size: 1.1rem;
        color: var(--color-text-light);
        margin-bottom: 2.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .about-text h2 {
        font-size: clamp(2rem, 3vw, 3rem);
        margin-bottom: 1.5rem;
        color: var(--color-text);
    }

    .about-text p {
        font-size: 1.05rem;
        color: var(--color-text-light);
        margin-bottom: 2rem;
    }

    .signature {
        font-family: 'Syne', sans-serif;
        font-style: italic;
        font-size: 1.2rem;
        color: var(--color-emerald-light);
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 20px 20px 0 var(--color-cream-dark);
    }

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

    .section-header h2 {
        font-size: clamp(2rem, 3vw, 2.5rem);
        margin-top: 0.5rem;
    }

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

    .menu-card {
        background: var(--color-white);
        border-radius: 4px;
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .menu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-color: var(--color-cream-dark);
    }

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

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

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

    .menu-info {
        padding: 2rem;
    }

    .menu-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--color-emerald);
    }

    .menu-info p {
        font-size: 0.95rem;
        color: var(--color-text-light);
    }

    /* --- Location Section --- */
    .location-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 0;
        background-color: var(--color-emerald);
        color: var(--color-white);
        border-radius: 8px;
        overflow: hidden;
    }

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

    .location-info .label {
        color: rgba(255,255,255,0.6);
    }

    .location-info h2 {
        color: var(--color-white);
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .location-info address {
        font-style: normal;
        line-height: 1.8;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .phone-link {
        color: var(--color-cream);
        text-decoration: underline;
        text-underline-offset: 4px;
    }
    
    .phone-link:hover {
        color: var(--color-white);
    }

    .hours {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.2);
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .location-map {
        position: relative;
        min-height: 400px;
    }

    .map-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
    }

    .absolute-bottom {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--color-cream);
        color: var(--color-emerald);
        border: none;
    }
    
    .absolute-bottom:hover {
        background-color: var(--color-white);
    }

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

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

    .footer-brand p {
        opacity: 0.6;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }

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

    .footer-links a {
        font-size: 0.9rem;
        opacity: 0.8;
        transition: opacity 0.3s;
    }

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

    /* --- Animations --- */
    .fade-in {
        opacity: 0;
        animation: fadeIn 1s forwards ease-out;
    }
    
    .fade-in.delay-1 { animation-delay: 0.2s; }
    .fade-in.delay-2 { animation-delay: 0.4s; }

    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

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

    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }

    @keyframes fadeIn {
        to { opacity: 1; }
    }

    /* --- Responsive --- */
    @media (max-width: 900px) {
        .grid-2, .location-wrapper {
            grid-template-columns: 1fr;
        }
        
        .about-image {
            order: -1;
            margin-bottom: 2rem;
        }
        
        .location-info {
            padding: 3rem 2rem;
        }
        
        .location-map {
            min-height: 300px;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        
        .mobile-toggle {
            display: block;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .hero-actions {
            flex-direction: column;
        }
        
        .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        
        .footer-links {
            flex-direction: column;
            gap: 1rem;
        }
    }
