    :root {
        --plum: #703853;
        --plum-dark: #4a2235;
        --plum-light: #96526e;
        --amber: #F4D03F;
        --amber-dark: #d4af22;
        --cream: #FDFBF7;
        --white: #ffffff;
        --black: #1a1a1a;
        --gray: #666666;
        
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Lato', sans-serif;
        
        --container-width: 1200px;
        --radius: 12px;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

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

    h1 {
        font-size: clamp(3rem, 8vw, 6rem);
        color: var(--white);
    }

    h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        color: var(--plum);
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.75rem;
        color: var(--plum-dark);
        margin-bottom: 0.75rem;
    }

    p {
        color: var(--gray);
        font-size: 1.125rem;
    }

    .eyebrow {
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-size: 0.875rem;
        color: var(--amber);
        margin-bottom: 1.5rem;
        display: block;
    }

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

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--amber);
        color: var(--plum-dark);
    }

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

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

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

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1.5rem 0;
        transition: all 0.3s ease;
    }

    header.scrolled {
        background-color: rgba(253, 251, 247, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        padding: 1rem 0;
    }

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

    .logo {
        font-family: var(--font-serif);
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    header.scrolled .logo {
        color: var(--plum);
    }

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

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

    .desktop-nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 400;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    header.scrolled .desktop-nav a {
        color: var(--black);
    }

    .desktop-nav a:hover {
        color: var(--amber);
    }

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

    header.scrolled .btn-primary:hover {
        background-color: var(--plum-dark);
    }

    /* Mobile Menu Button */
    #mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    #mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }

    header.scrolled #mobile-menu-btn span {
        background-color: var(--plum);
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--plum);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

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

    .mobile-link {
        font-family: var(--font-serif);
        font-size: 2rem;
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .mobile-phone {
        font-family: var(--font-sans);
        font-size: 1.25rem;
        color: var(--amber);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 80px;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 50%, #2d1520 100%);
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-text {
        max-width: 600px;
    }

    .hero .subtitle {
        color: rgba(255,255,255,0.8);
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        max-width: 480px;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-image {
        position: relative;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
    }

    /* Sections */
    .section {
        padding: 8rem 0;
    }

    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 4rem;
    }

    .section-header h2 {
        margin-bottom: 1rem;
    }

    /* Menu Grid */
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .menu-card {
        background-color: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        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);
    }

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

    .card-content {
        padding: 2rem;
    }

    .card-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

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

    .link-arrow {
        color: var(--plum);
        text-decoration: none;
        font-weight: 700;
        font-size: 1.125rem;
        border-bottom: 2px solid var(--amber);
        padding-bottom: 2px;
        transition: all 0.3s ease;
    }

    .link-arrow:hover {
        color: var(--plum-dark);
        border-color: var(--plum);
    }

    /* About Section */
    .about-section {
        background-color: var(--white);
    }

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

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
    }

    .about-content p {
        margin-bottom: 1.5rem;
    }

    .values {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .value-item {
        display: flex;
        flex-direction: column;
    }

    .value-title {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        color: var(--plum);
        font-weight: 700;
    }

    .value-desc {
        font-size: 1rem;
        color: var(--gray);
    }

    /* Visit Section */
    .visit-section {
        background-color: var(--plum);
        color: var(--white);
    }

    .visit-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: stretch;
    }

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

    .visit-info address {
        font-style: normal;
        margin-bottom: 2rem;
    }

    .visit-info p {
        color: rgba(255,255,255,0.8);
        font-size: 1.125rem;
    }

    .visit-info p:first-child {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--white);
        margin-bottom: 0.5rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--amber);
        text-decoration: none;
        font-size: 1.125rem;
        transition: color 0.3s ease;
    }

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

    .visit-map {
        border-radius: var(--radius);
        overflow: hidden;
        min-height: 400px;
    }

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

    .footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-brand .logo {
        color: var(--white);
    }

    .footer-brand p {
        color: rgba(255,255,255,0.6);
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

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

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

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

    /* Responsive */
    @media (max-width: 968px) {
        .hero .container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-text {
            max-width: 100%;
        }

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

        .hero-image {
            max-width: 500px;
            margin: 0 auto;
        }

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

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

        .about-image {
            order: -1;
        }

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

    @media (max-width: 768px) {
        .desktop-nav, header .btn {
            display: none;
        }

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

        .section {
            padding: 5rem 0;
        }

        .container {
            padding: 0 1.5rem;
        }

        .footer-inner {
            flex-direction: column;
            text-align: center;
        }
    }
