    :root {
        --forest: #0f3d28;
        --forest-light: #1a5c3d;
        --off-white: #f4f1ea;
        --cream: #e8e4d9;
        --accent: #d97706; /* Amber/Gold for warmth */
        --text-dark: #1c1917;
        --text-light: #57534e;
        --white: #ffffff;
        
        --font-display: 'Syne', sans-serif;
        --font-body: 'Outfit', sans-serif;
        
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --radius: 12px;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    /* Typography */
    h1, h2, h3, h4 {
        font-family: var(--font-display);
        font-weight: 800;
        line-height: 1.1;
        color: var(--forest);
    }

    h1 { font-size: clamp(3rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
    h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
    h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
    
    p { margin-bottom: 1rem; color: var(--text-light); }
    
    .overline {
        display: block;
        text-transform: uppercase;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        color: var(--accent);
        margin-bottom: 1rem;
    }

    /* Utilities */
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    a { text-decoration: none; color: inherit; transition: 0.3s ease; }
    ul { list-style: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background-color: var(--forest);
        color: var(--white);
    }
    .btn-primary:hover {
        background-color: var(--forest-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
        background-color: transparent;
        border: 2px solid var(--forest);
        color: var(--forest);
    }
    .btn-secondary:hover {
        background-color: var(--forest);
        color: var(--white);
    }

    .btn-dark {
        background-color: var(--text-dark);
        color: var(--white);
    }
    .btn-dark:hover {
        background-color: #000;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(244, 241, 234, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 1rem 0;
    }

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

    .logo {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--forest);
    }
    .logo .dot { color: var(--accent); }

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

    .desktop-nav a:not(.btn) {
        font-weight: 500;
        color: var(--text-dark);
    }
    .desktop-nav a:not(.btn):hover { color: var(--accent); }

    .menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
    }
    .menu-btn span {
        display: block;
        width: 28px;
        height: 2px;
        background-color: var(--forest);
        transition: 0.3s;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        inset: 0;
        background-color: var(--forest);
        z-index: 99;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .mobile-menu.active { transform: translateX(0); }
    .mobile-menu ul { text-align: center; display: flex; flex-direction: column; gap: 2rem; }
    .mobile-link {
        font-family: var(--font-display);
        font-size: 2rem;
        color: var(--off-white);
        font-weight: 700;
    }
    .mobile-link.cta-link {
        background: var(--accent);
        color: var(--forest);
        padding: 0.5rem 1.5rem;
        border-radius: 8px;
        font-size: 1.2rem;
        font-family: var(--font-body);
    }
    #close-menu {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--off-white);
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        background-color: var(--off-white);
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(217, 119, 6, 0.1);
        color: var(--accent);
        padding: 0.5rem 1rem;
        border-radius: 30px;
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .hero-desc {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        max-width: 500px;
    }

    .hero-btns {
        display: flex;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .hero-stats {
        display: flex;
        gap: 3rem;
        border-top: 1px solid rgba(15, 61, 40, 0.1);
        padding-top: 2rem;
    }
    .stat-num {
        display: block;
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--forest);
    }
    .stat-label { font-size: 0.875rem; color: var(--text-light); }

    /* Hero Visual */
    .hero-visual {
        position: relative;
        height: 600px;
    }

    .visual-main {
        width: 85%;
        height: 100%;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }
    .visual-main img { width: 100%; height: 100%; object-fit: cover; }

    .visual-float {
        position: absolute;
        bottom: -40px;
        right: 0;
        width: 55%;
        z-index: 3;
    }
    .visual-float img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: var(--radius);
        border: 8px solid var(--off-white);
        box-shadow: var(--shadow-lg);
    }
    .float-badge {
        position: absolute;
        top: -20px;
        right: -20px;
        background: var(--accent);
        color: var(--forest);
        font-weight: 700;
        padding: 1rem;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
        box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
    }

    /* Blobs */
    .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        z-index: 1;
        opacity: 0.6;
    }
    .blob-1 {
        width: 400px;
        height: 400px;
        background: #d1fae5;
        top: -100px;
        right: 20%;
    }
    .blob-2 {
        width: 300px;
        height: 300px;
        background: #fef3c7;
        bottom: 0;
        left: 10%;
    }

    /* Menu Section */
    .menu-section {
        padding: 6rem 0;
        background: var(--white);
    }
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    .section-header h2 { color: var(--forest); }

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

    .menu-card {
        background: var(--off-white);
        border-radius: var(--radius);
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    .menu-card:hover { transform: translateY(-8px); }

    .card-img {
        position: relative;
        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); }
    
    .tag {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--accent);
        color: var(--forest);
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .card-body { padding: 1.5rem; }
    .card-body h3 { font-size: 1.25rem; color: var(--text-dark); }
    .card-body p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0; }

    .menu-footer {
        text-align: center;
        background: var(--forest);
        padding: 3rem;
        border-radius: var(--radius);
        color: var(--off-white);
    }
    .menu-footer p { color: rgba(244, 241, 234, 0.8); margin-bottom: 1.5rem; }
    .menu-footer .btn { background: var(--accent); color: var(--forest); }
    .menu-footer .btn:hover { background: var(--white); }

    /* About Section */
    .about-section {
        padding: 8rem 0;
        background: var(--cream);
        position: relative;
    }
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .img-stack { position: relative; }
    .img-stack img {
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }
    .accent-box {
        position: absolute;
        bottom: -30px;
        left: -30px;
        background: var(--forest);
        color: var(--white);
        padding: 2rem;
        border-radius: var(--radius);
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1.5rem;
        transform: rotate(-3deg);
    }

    .lead { font-size: 1.25rem; color: var(--text-dark); font-weight: 500; margin-bottom: 1.5rem; }
    
    .feature-list {
        margin-top: 2rem;
        display: grid;
        gap: 1rem;
    }
    .feature-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 500;
        color: var(--forest);
    }
    .feature-list svg { color: var(--accent); }

    /* Location Section */
    .location-section {
        padding: 6rem 0;
        background: var(--off-white);
    }
    .location-grid {
        max-width: 1000px;
    }
    .location-info {
        background: var(--white);
        padding: 3rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }
    .loc-desc { margin-bottom: 2rem; }

    .info-card {
        background: var(--forest);
        border-radius: var(--radius);
        padding: 2rem;
        color: var(--white);
        margin-bottom: 2rem;
    }
    .info-row {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .info-row:last-child { margin-bottom: 0; }
    .info-row svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
    .info-row strong { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }
    .info-row p { color: rgba(255,255,255,0.8); margin: 0; }
    .info-row a { color: var(--accent); }
    .info-row a:hover { text-decoration: underline; }

    .map-wrapper {
        border-radius: var(--radius);
        overflow: hidden;
        border: 4px solid var(--cream);
    }

    /* Footer */
    .footer {
        background: var(--text-dark);
        color: var(--off-white);
        padding: 5rem 0 2rem;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    .footer .logo { color: var(--white); margin-bottom: 1.5rem; display: inline-block; }
    .footer p { color: rgba(255,255,255,0.6); }
    .footer h4 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.1rem; }
    
    .footer-links li { margin-bottom: 0.75rem; }
    .footer-links a { color: rgba(255,255,255,0.6); }
    .footer-links a:hover { color: var(--accent); }
    .footer-contact a:hover { color: var(--accent); }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 2rem;
        text-align: center;
        font-size: 0.875rem;
        color: rgba(255,255,255,0.4);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-grid, .about-grid { grid-template-columns: 1fr; }
        .hero-visual { order: -1; height: 400px; }
        .hero-content { text-align: center; }
        .hero-desc { margin: 0 auto 2rem; }
        .hero-btns { justify-content: center; }
        .hero-stats { justify-content: center; }
        .desktop-nav { display: none; }
        .menu-btn { display: flex; }
        
        .about-grid { gap: 3rem; }
        .accent-box { left: 0; bottom: -20px; }
        
        .footer-grid { grid-template-columns: 1fr; text-align: center; }
    }

    @media (max-width: 480px) {
        .hero-btns { flex-direction: column; width: 100%; }
        .btn { width: 100%; }
        .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
        .visual-float { width: 70%; }
    }
