    :root {
        --primary: #7d2e3e; /* Deep Burgundy */
        --primary-light: #a14254;
        --secondary: #f4e1e6; /* Soft Blush */
        --accent: #eacbc2; /* Lighter Blush */
        --text-dark: #2c2c2c;
        --text-light: #666666;
        --white: #ffffff;
        --bg-light: #fff9fa;
        --radius: 16px;
        --shadow: 0 10px 30px -10px rgba(125, 46, 62, 0.15);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Lato', sans-serif;
        color: var(--text-dark);
        background-color: var(--bg-light);
        line-height: 1.6;
    }

    h1, h2, h3, .logo {
        font-family: 'Playfair Display', serif;
        color: var(--primary);
    }

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

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
        border-radius: var(--radius);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
    }

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

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

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

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

    /* Navbar */
    .navbar {
        background-color: var(--white);
        padding: 20px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }

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

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
    }

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

    .nav-links a:not(.btn) {
        font-weight: 700;
        color: var(--text-dark);
    }

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

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary);
        margin: 5px 0;
        border-radius: 2px;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu a {
        font-size: 1.5rem;
        color: var(--text-dark);
        font-family: 'Playfair Display', serif;
    }

    /* Hero */
    .hero {
        position: relative;
        height: 85vh;
        background-image: url('https://images.pexels.com/photos/35411022/pexels-photo-35411022.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(125, 46, 62, 0.7), rgba(44, 20, 25, 0.8));
    }

    .hero-content {
        position: relative;
        z-index: 1;
        color: var(--white);
        max-width: 800px;
    }

    .hero h1 {
        font-size: 3.5rem;
        color: var(--white);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 1.25rem;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    .hero-btns {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    /* Sections General */
    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .section-subtitle {
        text-align: center;
        color: var(--text-light);
        margin-bottom: 60px;
        font-size: 1.1rem;
    }

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

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

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

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

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

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

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

    .menu-card h3 {
        margin: 20px 20px 10px;
        font-size: 1.5rem;
    }

    .menu-card p {
        padding: 0 20px 20px;
        color: var(--text-light);
    }

    .menu-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 0;
    }

    /* Visit */
    .visit-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        background-color: var(--secondary);
        padding: 60px;
        border-radius: var(--radius);
    }

    .info-list {
        margin: 30px 0;
    }

    .info-list li {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .info-list strong {
        font-size: 1.2rem;
        color: var(--primary);
        margin-bottom: 5px;
    }

    .info-list a, .info-list span {
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    .info-list a:hover {
        text-decoration: underline;
    }

    .visit-map iframe {
        width: 100%;
        height: 350px;
        border: none;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    /* Contact */
    .contact {
        background-color: var(--white);
        text-align: center;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: 2px solid var(--accent);
        border-radius: 12px;
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
    }

    .success-message {
        margin-top: 20px;
        padding: 15px;
        background-color: var(--secondary);
        color: var(--primary);
        border-radius: 8px;
        font-weight: 700;
    }

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

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .footer-copy {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-toggle {
            display: block;
        }

        .hero h1 {
            font-size: 2.2rem;
        }

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

        .about-grid,
        .visit-grid {
            grid-template-columns: 1fr;
        }

        .visit-grid {
            padding: 30px;
        }

        .section {
            padding: 60px 0;
        }
    }
