    :root {
        --plum: #4A0E4E;
        --plum-light: #6D1A73;
        --amber: #F5A623;
        --amber-light: #FFD166;
        --cream: #FDFBF7;
        --dark: #1A1A1A;
        --gray: #666;
        --radius: 12px;
        --transition: all 0.3s ease;
    }

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

    body {
        font-family: 'Outfit', sans-serif;
        background-color: var(--cream);
        color: var(--dark);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    h1, h2, h3 {
        font-family: 'Playfair Display', serif;
        color: var(--plum);
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    ul {
        list-style: none;
    }

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

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .narrow {
        max-width: 600px;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: var(--transition);
    }

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

    .btn-primary:hover {
        background-color: var(--plum-light);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(74, 14, 78, 0.2);
    }

    .btn-secondary {
        background-color: transparent;
        border: 2px solid var(--plum);
        color: var(--plum);
        margin-left: 10px;
    }

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

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

    /* Background Blobs */
    .bg-blob {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        z-index: -1;
        opacity: 0.4;
    }

    .bg-blob-1 {
        width: 400px;
        height: 400px;
        background: var(--amber);
        top: -100px;
        left: -100px;
    }

    .bg-blob-2 {
        width: 300px;
        height: 300px;
        background: var(--plum-light);
        bottom: 10%;
        right: -50px;
    }

    /* Navbar */
    .navbar {
        padding: 20px 0;
        position: sticky;
        top: 0;
        background: rgba(253, 251, 247, 0.9);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

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

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--plum);
    }

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

    .nav-links a {
        font-weight: 500;
        color: var(--dark);
    }

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

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

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: var(--plum);
        transition: var(--transition);
    }

    /* Hero */
    .hero {
        padding: 80px 0;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .tagline {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        color: var(--amber);
        font-weight: 600;
        margin-bottom: 15px;
        display: block;
    }

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

    .hero p {
        font-size: 1.1rem;
        color: var(--gray);
        margin-bottom: 30px;
        max-width: 450px;
    }

    .hero-image {
        position: relative;
    }

    .image-wrapper {
        position: relative;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 20px 20px 0px var(--amber);
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .geometric-shape {
        position: absolute;
        z-index: -1;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
        background: var(--plum);
        border-radius: 50%;
        top: -30px;
        right: -30px;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
        background: var(--amber);
        bottom: 40px;
        left: -20px;
        transform: rotate(15deg);
    }

    /* About */
    .about {
        padding: 100px 0;
        background: white;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 1.2rem;
        color: var(--gray);
    }

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

    .feature-card {
        background: var(--cream);
        padding: 40px;
        border-radius: var(--radius);
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--amber);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background: var(--plum);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .feature-card p {
        color: var(--gray);
    }

    /* Collection */
    .collection {
        padding: 100px 0;
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .split-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .split-text p {
        color: var(--gray);
        margin-bottom: 30px;
    }

    .check-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

    .check-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--plum);
        font-weight: bold;
    }

    .split-image img {
        border-radius: var(--radius);
        box-shadow: -20px 20px 0px var(--plum);
    }

    /* Visit */
    .visit {
        padding: 100px 0;
        background: var(--plum);
        color: white;
    }

    .visit h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .visit p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 30px;
    }

    .visit-card {
        background: white;
        border-radius: var(--radius);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        color: var(--dark);
    }

    .visit-info {
        padding: 50px;
    }

    .visit-info address {
        font-style: normal;
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .hours {
        display: flex;
        justify-content: space-between;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--plum);
        font-weight: 600;
    }

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

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

    .visit-map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .map-overlay {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: white;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        color: var(--plum);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Contact */
    .contact {
        padding: 100px 0;
    }

    .contact-form {
        background: white;
        padding: 40px;
        border-radius: var(--radius);
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }

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

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

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

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

    .form-success {
        display: none;
        margin-top: 20px;
        padding: 15px;
        background: #e8f5e9;
        color: #2e7d32;
        border-radius: 8px;
        text-align: center;
    }

    /* Footer */
    .footer {
        background: var(--dark);
        color: white;
        padding: 50px 0;
    }

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

    .footer-brand h3 {
        color: white;
        margin-bottom: 5px;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

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

    .footer-copy {
        color: #888;
        font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .hero-grid, .split-layout, .visit-card {
            grid-template-columns: 1fr;
        }

        .hero {
            padding: 40px 0;
        }

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

        .hero-image {
            order: -1;
        }

        .image-wrapper {
            box-shadow: 10px 10px 0px var(--amber);
        }

        .split-image {
            order: -1;
        }

        .split-image img {
            box-shadow: -10px 10px 0px var(--plum);
        }

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

        .visit-map {
            min-height: 250px;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transform: translateY(-150%);
            transition: var(--transition);
        }

        .nav-links.active {
            transform: translateY(0);
        }

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

        .btn-secondary {
            margin-left: 0;
            margin-top: 10px;
        }

        .footer-grid {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }
