    :root {
        --color-burgundy: #781c22;
        --color-burgundy-dark: #521216;
        --color-blush: #f4e1d2;
        --color-cream: #fffcf8;
        --color-text: #2c2c2c;
        --color-text-light: #666;
        --color-white: #ffffff;
        
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Outfit', sans-serif;
        
        --spacing-container: 1200px;
        --spacing-section: 100px;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    /* Typography */
    h1, h2, h3, h4 {
        font-family: var(--font-heading);
        font-weight: 600;
        line-height: 1.2;
        color: var(--color-burgundy);
    }

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

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

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

    .eyebrow {
        display: block;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--color-burgundy);
        margin-bottom: 1rem;
    }

    .lead {
        font-size: 1.25rem;
        color: var(--color-text);
        margin-bottom: 1.5rem;
    }

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

    /* Utilities */
    .container {
        max-width: var(--spacing-container);
        margin: 0 auto;
        padding: 0 2rem;
    }

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

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-weight: 600;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: var(--font-body);
    }

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

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

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

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

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

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

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 252, 248, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(120, 28, 34, 0.1);
        padding: 1.2rem 0;
    }

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

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

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

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        align-items: center;
    }

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

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

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

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

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-cream);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-content {
        text-align: center;
    }

    .mobile-link {
        display: block;
        font-family: var(--font-heading);
        font-size: 2rem;
        color: var(--color-text);
        margin: 1.5rem 0;
    }

    .mobile-link:hover {
        color: var(--color-burgundy);
    }

    .mobile-cta {
        margin-top: 2rem;
    }

    /* Hero Section */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-top: 0;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(120, 28, 34, 0.85) 0%, rgba(44, 44, 44, 0.7) 100%),
                    url('https://images.pexels.com/photos/17039185/pexels-photo-17039185.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
        z-index: -1;
    }

    .hero-content {
        color: var(--color-white);
        max-width: 800px;
        padding: 0 1rem;
    }

    .hero-content .eyebrow {
        color: var(--color-blush);
    }

    .hero-content h1 {
        color: var(--color-white);
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

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

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

    .about {
        background-color: var(--color-cream);
    }

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

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 20px 20px 0 var(--color-blush);
    }

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

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        font-weight: 500;
        color: var(--color-text);
    }

    .feature-list svg {
        color: var(--color-burgundy);
    }

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

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

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

    .menu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(120, 28, 34, 0.1);
    }

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

    .card-content {
        padding: 2rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--color-burgundy);
    }

    /* Location Section */
    .location {
        background-color: var(--color-blush);
    }

    .location-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        background: var(--color-white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .location-info {
        padding: 4rem;
    }

    .location-info h2 {
        margin-bottom: 2.5rem;
    }

    .info-block {
        margin-bottom: 2rem;
    }

    .info-block h4 {
        font-family: var(--font-body);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-text-light);
        margin-bottom: 0.5rem;
    }

    .info-block p, .info-block a {
        font-size: 1.1rem;
        color: var(--color-text);
        font-weight: 500;
    }

    .info-block a:hover {
        color: var(--color-burgundy);
        text-decoration: underline;
    }

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

    .map-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .map-overlay-btn {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        background: var(--color-burgundy);
        color: var(--color-white);
        padding: 1rem 2rem;
        border-radius: 4px;
        font-weight: 600;
        white-space: nowrap;
    }

    .map-overlay-btn:hover {
        background: var(--color-burgundy-dark);
    }

    /* Footer */
    footer {
        background-color: var(--color-burgundy);
        color: var(--color-white);
        padding: 4rem 0 2rem;
    }

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

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

    .footer-brand p {
        color: var(--color-blush);
        margin-bottom: 2rem;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        padding-top: 2rem;
        text-align: center;
    }

    .footer-bottom p {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
    }

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

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

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

        .about-image {
            order: -1;
        }

        .about-image img {
            box-shadow: 10px 10px 0 var(--color-blush);
        }

        .location-info {
            padding: 2rem;
        }

        .location-wrapper {
            margin: 0 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-actions {
            flex-direction: column;
        }

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

        .section {
            padding: 60px 0;
        }
    }
