    :root {
        --teal: #14b8a6;
        --teal-dark: #0f766e;
        --slate: #0f172a;
        --slate-light: #1e293b;
        --slate-lighter: #f8fafc;
        --white: #ffffff;
        --text-main: #334155;
        --text-muted: #64748b;
        
        --font-display: 'Cormorant Garamond', serif;
        --font-body: 'Manrope', sans-serif;
        
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--text-main);
        background-color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

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

    h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        margin-bottom: 1.5rem;
        color: var(--slate);
    }

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

    h3 {
        font-family: var(--font-body);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--text-muted);
        margin-bottom: 1.5rem;
    }

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

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

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

    .section {
        padding: 6rem 0;
    }

    .grid {
        display: grid;
        gap: 4rem;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

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

    /* Loader */
    .loader-active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .loader-hidden {
        opacity: 0;
        visibility: hidden;
    }

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

    .loader-logo {
        font-family: var(--font-display);
        font-size: 2rem;
        color: var(--slate);
        display: block;
        margin-bottom: 1rem;
    }

    .loader-bar {
        width: 100px;
        height: 2px;
        background: #e2e8f0;
        position: relative;
        overflow: hidden;
    }

    .loader-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: var(--teal);
        animation: load 1.5s ease-in-out infinite;
    }

    @keyframes load {
        0% { transform: translateX(-100%); }
        50% { transform: translateX(0); }
        100% { transform: translateX(100%); }
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 1.5rem 0;
        transition: var(--transition);
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    }

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

    .logo {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--slate);
    }

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

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

    .nav-link {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-main);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--teal);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

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

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

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

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

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

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

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

    .btn-white {
        background: var(--white);
        color: var(--teal-dark);
    }

    .btn-white:hover {
        background: var(--slate-lighter);
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 6rem 0;
    }

    .hero-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(15, 23, 42, 0.05) 0%, transparent 50%);
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
    }

    .eyebrow {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--teal-dark);
        margin-bottom: 1rem;
        font-weight: 500;
    }

    .hero-sub {
        font-size: 1.25rem;
        color: var(--text-muted);
        margin-bottom: 2.5rem;
    }

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

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-muted);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .scroll-indicator .line {
        width: 1px;
        height: 40px;
        background: var(--text-muted);
    }

    /* Menu */
    .bg-slate {
        background: var(--slate-lighter);
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        max-width: 900px;
        margin: 4rem auto 0;
    }

    .menu-item {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .item-name {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--slate);
    }

    .item-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-left: 1rem;
    }

    /* Gallery */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 4px;
    }

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

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

    /* Contact */
    .bg-teal {
        background: var(--teal);
    }

    .text-white {
        color: var(--white) !important;
    }

    .opacity-80 {
        opacity: 0.8;
    }

    .contact-list {
        list-style: none;
        margin-top: 2rem;
    }

    .contact-list li {
        margin-bottom: 1.5rem;
    }

    .contact-list .label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.7;
        margin-bottom: 0.25rem;
    }

    .contact-list .value {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--white);
    }

    .hover-underline:hover {
        text-decoration: underline;
    }

    .map-wrapper {
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
    }

    .map-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        color: var(--white);
    }

    .map-placeholder svg {
        opacity: 0.8;
    }

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

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

    .footer-logo {
        font-family: var(--font-display);
        font-size: 1.25rem;
    }

    .copyright {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .socials {
        display: flex;
        gap: 1rem;
    }

    .socials a {
        font-size: 0.85rem;
        color: var(--text-muted);
        transition: color 0.3s ease;
    }

    .socials a:hover {
        color: var(--teal);
    }

    /* Animations */
    .reveal-up, .reveal-left, .reveal-right {
        opacity: 0;
        transition: all 0.8s ease;
    }

    .reveal-up { transform: translateY(30px); }
    .reveal-left { transform: translateX(-30px); }
    .reveal-right { transform: translateX(30px); }

    .reveal-active.reveal-up { opacity: 1; transform: translateY(0); }
    .reveal-active.reveal-left { opacity: 1; transform: translateX(0); }
    .reveal-active.reveal-right { opacity: 1; transform: translateX(0); }

    /* Mobile */
    .mobile-only {
        display: none;
    }

    .hamburger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--slate);
        transition: var(--transition);
    }

    @media (max-width: 768px) {
        .grid-2 {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .menu-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .gallery-grid {
            grid-template-columns: 1fr 1fr;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: var(--white);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.4s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }

        .nav-links.open {
            right: 0;
        }

        .hamburger {
            display: flex;
            z-index: 1001;
        }

        .mobile-only {
            display: inline-block;
        }

        .hero-actions {
            flex-direction: column;
        }

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