    /* --- Variables & Reset --- */
    :root {
        --color-primary: #2C4A3B; /* Deep Forest Green */
        --color-primary-light: #4A6B59;
        --color-accent: #D4A373; /* Muted Gold/Earth */
        --color-bg: #F9F7F2; /* Off-white/Cream */
        --color-bg-alt: #EFECE6;
        --color-text: #2A2A2A;
        --color-text-light: #666666;
        --color-white: #FFFFFF;
        
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Lato', sans-serif;
        
        --spacing-container: 1200px;
        --spacing-section: 100px;
        
        --shadow-soft: 0 10px 40px -10px rgba(44, 74, 59, 0.1);
        --shadow-card: 0 4px 20px rgba(0,0,0,0.05);
        --radius: 4px;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

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

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

    ul {
        list-style: none;
    }

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

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

    /* --- Typography Helpers --- */
    .section-tag {
        display: inline-block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--color-accent);
        font-weight: 700;
        margin-bottom: 16px;
    }

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

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

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

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

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

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

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

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

    .btn-secondary {
        background-color: var(--color-accent);
        color: var(--color-white);
        border: none;
    }
    
    .btn-secondary:hover {
        background-color: #bfa07a;
        transform: translateY(-2px);
    }

    /* --- Navbar --- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.4s ease;
        background: transparent;
    }

    .navbar.scrolled {
        background: rgba(249, 247, 242, 0.95);
        backdrop-filter: blur(10px);
        padding: 15px 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.5rem;
        font-weight: 700;
        color: var(--color-primary);
    }

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

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

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

    .nav-links a:not(.btn):hover:after {
        width: 100%;
    }

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

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

    /* --- Hero Section --- */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 80px;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 55%;
        height: 100%;
        background-image: url('https://images.pexels.com/photos/4947415/pexels-photo-4947415.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1200&h=1600');
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, var(--color-bg) 0%, var(--color-bg) 40%, rgba(249, 247, 242, 0.8) 100%);
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        width: 100%;
    }

    .hero-content {
        max-width: 550px;
    }

    .tagline {
        font-family: var(--font-serif);
        font-style: italic;
        color: var(--color-accent);
        font-size: 1.1rem;
        margin-bottom: 16px;
        display: block;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 24px;
        color: var(--color-primary);
    }

    .hero h1 .accent {
        color: var(--color-accent);
        font-style: italic;
    }

    .subtitle {
        font-size: 1.125rem;
        color: var(--color-text-light);
        margin-bottom: 40px;
        max-width: 480px;
    }

    .hero-btns {
        display: flex;
        gap: 16px;
    }

    /* Floating Cards */
    .hero-cards {
        position: relative;
        height: 100%;
        min-height: 400px;
    }

    .stat-card {
        position: absolute;
        background: var(--color-white);
        padding: 20px 24px;
        border-radius: 8px;
        box-shadow: var(--shadow-card);
        display: flex;
        align-items: center;
        gap: 16px;
        width: 220px;
        animation: float 6s ease-in-out infinite;
    }

    .stat-card:nth-child(1) {
        top: 10%;
        left: 20%;
        animation-delay: 0s;
    }

    .stat-card:nth-child(2) {
        top: 45%;
        left: 0;
        animation-delay: 1s;
    }

    .stat-card:nth-child(3) {
        top: 75%;
        left: 35%;
        background: var(--color-primary);
        color: var(--color-white);
        animation-delay: 2s;
    }

    .stat-card:nth-child(3) .stat-label {
        color: rgba(255,255,255,0.8);
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        background: rgba(44, 74, 59, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
    }

    .stat-card:nth-child(3) .stat-icon {
        background: rgba(255,255,255,0.2);
        color: var(--color-white);
    }

    .stat-number {
        display: block;
        font-family: var(--font-serif);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-primary);
    }

    .stat-card:nth-child(3) .stat-number {
        color: var(--color-white);
    }

    .stat-label {
        display: block;
        font-size: 0.85rem;
        color: var(--color-text-light);
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* --- About Section --- */
    .about {
        padding: var(--spacing-section) 0;
        background-color: var(--color-bg);
    }

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

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

    .about-img {
        width: 100%;
        border-radius: 4px;
        box-shadow: var(--shadow-soft);
        position: relative;
        z-index: 2;
    }

    .about-pattern {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--color-accent);
        border-radius: 4px;
        z-index: 1;
    }

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

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

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

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .feature-list li::before {
        content: '';
        width: 8px;
        height: 8px;
        background-color: var(--color-accent);
        border-radius: 50%;
    }

    /* --- Menu Section --- */
    .menu {
        padding: var(--spacing-section) 0;
        background-color: var(--color-bg-alt);
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

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

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

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

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

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

    .menu-body {
        padding: 24px;
    }

    .menu-body h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .menu-body p {
        color: var(--color-text-light);
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

    /* --- Features Strip --- */
    .features {
        padding: 80px 0;
        background-color: var(--color-primary);
        color: var(--color-white);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        text-align: center;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-accent);
    }

    .feature-item h3 {
        color: var(--color-white);
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .feature-item p {
        color: rgba(255,255,255,0.8);
        font-size: 0.95rem;
    }

    /* --- Location Section --- */
    .location {
        padding: var(--spacing-section) 0;
    }

    .location-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background: var(--color-white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
    }

    .location-info {
        padding: 60px;
        background-color: var(--color-bg);
    }

    .location-info h2 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .location-desc {
        color: var(--color-text-light);
        margin-bottom: 40px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-row {
        display: flex;
        gap: 20px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        background: var(--color-white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
        box-shadow: var(--shadow-card);
        flex-shrink: 0;
    }

    .contact-row strong {
        display: block;
        color: var(--color-primary);
        margin-bottom: 4px;
        font-family: var(--font-serif);
        font-size: 1.1rem;
    }

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

    .contact-row a:hover {
        color: var(--color-accent);
    }

    .map-container {
        min-height: 450px;
    }

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

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

    .footer-brand h3 {
        color: var(--color-white);
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

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

    .footer-links {
        display: flex;
        gap: 30px;
    }

    .footer-links a {
        color: var(--color-white);
        font-weight: 500;
    }

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

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

    /* --- Responsive --- */
    @media (max-width: 992px) {
        .hero h1 { font-size: 2.8rem; }
        .hero-bg { width: 100%; opacity: 0.2; }
        .hero-container { grid-template-columns: 1fr; }
        .hero-cards { display: none; } /* Hide floating cards on tablet/mobile for cleaner look */
        .about-grid { grid-template-columns: 1fr; gap: 40px; }
        .menu-grid { grid-template-columns: repeat(2, 1fr); }
        .location-wrapper { grid-template-columns: 1fr; }
        .map-container { min-height: 300px; }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: var(--color-white);
            flex-direction: column;
            justify-content: center;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            transition: right 0.4s ease;
        }
        
        .nav-links.active { right: 0; }
        .mobile-menu-btn { display: flex; z-index: 1001; }
        
        .hero { padding-top: 100px; text-align: center; }
        .hero-btns { justify-content: center; }
        .hero h1 { font-size: 2.2rem; }
        
        .menu-grid { grid-template-columns: 1fr; }
        .features-grid { grid-template-columns: 1fr; }
        
        .location-info { padding: 40px 24px; }
    }
