    :root {
        --color-teal-dark: #0f766e;
        --color-teal: #14b8a6;
        --color-slate-dark: #1e293b;
        --color-slate: #334155;
        --color-slate-light: #f8fafc;
        --color-white: #ffffff;
        --color-text: #334155;
        --color-text-light: #64748b;
        
        --font-serif: 'Cormorant Garamond', Georgia, serif;
        --font-sans: 'Lato', 'Helvetica Neue', sans-serif;
        
        --spacing-xs: 0.5rem;
        --spacing-sm: 1rem;
        --spacing-md: 2rem;
        --spacing-lg: 4rem;
        --spacing-xl: 6rem;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

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

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

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

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

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

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

    .logo {
        font-family: var(--font-serif);
        font-size: 1.75rem;
        font-weight: 600;
        color: var(--color-teal-dark);
        letter-spacing: -0.02em;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: var(--spacing-md);
        align-items: center;
    }

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

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

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

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

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

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

    /* Hero */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #0f766e 0%, #1e293b 50%, #0f766e 100%);
        background-size: 200% 200%;
        animation: gradientShift 8s ease infinite;
        overflow: hidden;
    }

    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 118, 110, 0.3) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: var(--color-white);
        max-width: 800px;
        padding: var(--spacing-md);
    }

    .hero h1 {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 600;
        margin-bottom: var(--spacing-sm);
        letter-spacing: -0.02em;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-family: var(--font-serif);
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        font-weight: 400;
        font-style: italic;
        margin-bottom: var(--spacing-md);
        opacity: 0.9;
    }

    .hero-cta {
        display: flex;
        gap: var(--spacing-sm);
        justify-content: center;
        flex-wrap: wrap;
    }

    .scroll-indicator {
        position: absolute;
        bottom: var(--spacing-md);
        left: 50%;
        transform: translateX(-50%);
    }

    .scroll-indicator span {
        display: block;
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
        animation: scrollPulse 2s ease infinite;
    }

    @keyframes scrollPulse {
        0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
        50% { opacity: 1; transform: scaleY(1); }
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        border-radius: 4px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

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

    .btn-primary:hover {
        background: var(--color-teal);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
    }

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

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

    .btn-text {
        background: transparent;
        color: var(--color-white);
        padding: 1rem;
    }

    .btn-text:hover {
        opacity: 0.8;
    }

    .full-width {
        width: 100%;
    }

    /* Sections */
    .section {
        padding: var(--spacing-xl) 0;
    }

    .section-tag {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--color-teal-dark);
        margin-bottom: var(--spacing-xs);
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .section-header h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        color: var(--color-slate-dark);
        margin-bottom: var(--spacing-sm);
    }

    .section-desc {
        font-size: 1.1rem;
        color: var(--color-text-light);
        max-width: 600px;
        margin: 0 auto;
    }

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

    /* About */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        align-items: center;
    }

    .about-text h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--color-slate-dark);
        margin-bottom: var(--spacing-sm);
    }

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

    .about-text .signature {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-style: italic;
        color: var(--color-teal-dark);
        margin-top: var(--spacing-md);
    }

    .about-image img {
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

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

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

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

    .menu-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .menu-img {
        height: 250px;
        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-content {
        padding: var(--spacing-md);
    }

    .menu-content h3 {
        font-size: 1.5rem;
        color: var(--color-slate-dark);
        margin-bottom: var(--spacing-xs);
    }

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

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

    .gallery-item {
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        min-height: 300px;
    }

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

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

    /* Contact */
    .contact {
        background: var(--color-slate-dark);
        color: var(--color-white);
    }

    .contact h2 {
        color: var(--color-white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .contact-info .section-tag {
        color: var(--color-teal);
    }

    .contact-info h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: var(--spacing-sm);
    }

    .contact-desc {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: var(--spacing-md);
    }

    .info-item {
        margin-bottom: var(--spacing-sm);
    }

    .info-item strong {
        display: block;
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--color-teal);
        margin-bottom: 0.25rem;
    }

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

    .info-item a:hover {
        color: var(--color-white);
    }

    .contact-form-wrapper {
        background: var(--color-white);
        padding: var(--spacing-md);
        border-radius: 8px;
        color: var(--color-text);
    }

    .contact-form-wrapper h3 {
        font-size: 1.5rem;
        color: var(--color-slate-dark);
        margin-bottom: var(--spacing-md);
    }

    .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--color-slate);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        font-family: var(--font-sans);
        font-size: 1rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-teal);
        box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    }

    .form-success {
        padding: var(--spacing-md);
        background: #dcfce7;
        border-radius: 4px;
        color: #166534;
        text-align: center;
    }

    /* Footer */
    .footer {
        background: #0f172a;
        color: rgba(255, 255, 255, 0.6);
        padding: var(--spacing-lg) 0;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .footer-brand h3 {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--color-white);
        margin-bottom: 0.25rem;
    }

    .footer-links {
        display: flex;
        gap: var(--spacing-md);
    }

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

    .footer-copy {
        font-size: 0.85rem;
    }

    /* Animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

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

        .about-image {
            order: -1;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: var(--color-white);
            flex-direction: column;
            padding: var(--spacing-md);
            gap: var(--spacing-sm);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

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

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

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

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

        .hero h1 {
            font-size: clamp(2.5rem, 10vw, 4rem);
        }

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

        .gallery-item {
            min-height: 250px;
        }
    }
