    /* --- VARIABLES & RESET --- */
    :root {
        --emerald-dark: #064e3b;
        --emerald-main: #047857;
        --emerald-light: #10b981;
        --cream-bg: #FDFCF8;
        --cream-dark: #F5F5F0;
        --text-dark: #1C1917;
        --text-light: #57534E;
        --white: #ffffff;
        
        --font-heading: 'Playfair Display', serif;
        --font-body: 'DM Sans', sans-serif;
        
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    h1, h2, h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
        color: var(--emerald-dark);
    }

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

    ul {
        list-style: none;
    }

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

    /* --- UTILITIES --- */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .text-center { text-align: center; }
    .mt-40 { margin-top: 40px; }

    .section {
        padding: 100px 0;
        position: relative;
    }

    .section-tag {
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--emerald-main);
        margin-bottom: 16px;
        background: rgba(4, 120, 87, 0.1);
        padding: 8px 16px;
        border-radius: 50px;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 24px;
        color: var(--emerald-dark);
    }

    .lead {
        font-size: 1.25rem;
        color: var(--text-light);
        margin-bottom: 24px;
        font-weight: 500;
    }

    /* --- BUTTONS --- */
    .btn {
        display: inline-block;
        padding: 14px 28px;
        font-weight: 700;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1rem;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .btn-secondary {
        background-color: transparent;
        color: var(--emerald-dark);
        border: 2px solid var(--emerald-dark);
    }

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

    .btn-large {
        padding: 18px 36px;
        font-size: 1.125rem;
    }

    /* --- GEOMETRIC BACKGROUND SHAPES --- */
    .geo-shape {
        position: fixed;
        z-index: -1;
        opacity: 0.6;
        pointer-events: none;
    }

    .shape-circle-1 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(253, 252, 248, 0) 70%);
        border-radius: 50%;
        top: -100px;
        right: -100px;
    }

    .shape-triangle {
        width: 0;
        height: 0;
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-bottom: 170px solid rgba(4, 120, 87, 0.05);
        top: 25%;
        left: -50px;
        transform: rotate(15deg);
    }

    .shape-square {
        width: 150px;
        height: 150px;
        background: rgba(253, 252, 248, 0.8);
        border: 2px solid rgba(4, 120, 87, 0.1);
        bottom: 20%;
        right: 5%;
        transform: rotate(45deg);
    }

    .shape-circle-2 {
        width: 200px;
        height: 200px;
        background: rgba(4, 120, 87, 0.05);
        border-radius: 50%;
        bottom: 10%;
        left: 10%;
    }

    /* --- HEADER --- */
    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(253, 252, 248, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 20px 0;
        transition: padding 0.3s ease;
    }

    #header.scrolled {
        padding: 12px 0;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-family: var(--font-heading);
        font-size: 1.75rem;
        font-weight: 900;
        color: var(--emerald-dark);
    }

    .logo span {
        color: var(--emerald-main);
        font-size: 1rem;
        vertical-align: super;
        margin-left: 4px;
    }

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

    .nav-links a {
        font-weight: 500;
        color: var(--text-dark);
        font-size: 1rem;
    }

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

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

    .mobile-menu-btn span {
        width: 28px;
        height: 3px;
        background-color: var(--emerald-dark);
        border-radius: 2px;
        transition: 0.3s;
    }

    /* --- HERO --- */
    .hero {
        padding: 160px 0 100px;
        background: linear-gradient(135deg, var(--cream-bg) 0%, #F0FDF4 100%);
        overflow: hidden;
    }

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

    .hero-content .badge {
        background-color: var(--emerald-main);
        color: var(--white);
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 24px;
        display: inline-block;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 24px;
        color: var(--emerald-dark);
    }

    .hero-content p {
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 32px;
        max-width: 480px;
    }

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

    .hero-image-wrapper {
        position: relative;
        height: 600px;
    }

    .image-card {
        position: absolute;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: #fff;
    }

    .card-1 {
        width: 65%;
        height: 75%;
        top: 10%;
        right: 0;
        z-index: 1;
    }

    .card-2 {
        width: 50%;
        height: 50%;
        bottom: 5%;
        left: 0;
        z-index: 2;
        border: 8px solid var(--white);
    }

    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .floating-stat {
        position: absolute;
        bottom: 25%;
        right: 10%;
        background: var(--white);
        padding: 20px 30px;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 3;
        text-align: center;
        border-left: 4px solid var(--emerald-main);
    }

    .floating-stat .number {
        display: block;
        font-size: 2rem;
        font-weight: 900;
        color: var(--emerald-dark);
        font-family: var(--font-heading);
    }

    .floating-stat .label {
        font-size: 0.875rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

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

    .about-visual {
        position: relative;
    }

    .about-img-main {
        border-radius: 200px 200px 20px 20px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        position: relative;
        z-index: 2;
    }

    .about-img-main img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
        object-fit: cover;
    }

    .about-pattern {
        position: absolute;
        top: -30px;
        left: -30px;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .pattern-block {
        position: absolute;
        background: var(--emerald-main);
    }

    .pattern-block:first-child {
        width: 60px;
        height: 60px;
        top: 20px;
        left: 20px;
        opacity: 0.8;
    }

    .pattern-block:last-child {
        width: 40px;
        height: 120px;
        bottom: 40px;
        right: -20px;
        background: var(--emerald-light);
        opacity: 0.5;
    }

    .feature-list {
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

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

    .icon-box {
        width: 48px;
        height: 48px;
        background: rgba(4, 120, 87, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--emerald-main);
    }

    .icon-box svg {
        width: 24px;
        height: 24px;
    }

    /* --- MENU --- */
    .menu-section {
        background-color: var(--white);
    }

    .section-header {
        margin-bottom: 60px;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 32px;
    }

    .menu-card {
        background: var(--cream-bg);
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .menu-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .card-img {
        height: 220px;
        position: relative;
        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);
    }

    .price-tag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--emerald-main);
        color: var(--white);
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .card-body {
        padding: 24px;
    }

    .card-body h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
        color: var(--emerald-dark);
    }

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

    /* --- LOCATION --- */
    .location-section {
        background-color: var(--cream-dark);
        position: relative;
    }

    .location-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--white);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .location-info {
        padding: 60px;
        background: var(--emerald-dark);
        color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .location-info .section-tag {
        background: rgba(255,255,255,0.2);
        color: var(--white);
    }

    .location-info .section-title {
        color: var(--white);
    }

    .location-info .lead {
        color: rgba(255,255,255,0.8);
    }

    .contact-list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
    }

    .icon-circle svg {
        width: 24px;
        height: 24px;
    }

    .contact-list div {
        display: flex;
        flex-direction: column;
    }

    .contact-list strong {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .contact-list span, 
    .contact-list a {
        color: rgba(255,255,255,0.8);
        font-size: 1rem;
    }

    .contact-list a:hover {
        color: var(--white);
        text-decoration: underline;
    }

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

    .map-frame {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .map-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.8);
    }

    .map-overlay-btn {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: var(--white);
        color: var(--emerald-dark);
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: var(--shadow-lg);
        transition: transform 0.2s;
    }

    .map-overlay-btn:hover {
        transform: translateY(-3px);
        background: var(--emerald-main);
        color: var(--white);
    }

    /* --- FOOTER --- */
    footer {
        background-color: var(--emerald-dark);
        color: var(--white);
        padding: 60px 0 30px;
    }

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

    .footer-brand .logo {
        color: var(--white);
        margin-bottom: 16px;
    }

    .footer-brand p {
        color: rgba(255,255,255,0.6);
        max-width: 300px;
    }

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

    /* --- RESPONSIVE --- */
    @media (max-width: 968px) {
        .hero-grid, 
        .about-grid,
        .location-wrapper {
            grid-template-columns: 1fr;
        }

        .hero {
            padding: 120px 0 60px;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content p {
            margin: 0 auto 32px;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-image-wrapper {
            height: 400px;
            margin-top: 40px;
        }

        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--white);
            flex-direction: column;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }

        .nav-links.active {
            transform: translateY(0);
        }

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

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .location-info {
            padding: 40px;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 2rem;
        }

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

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