    :root {
        --plum: #4A235A;
        --plum-dark: #2E1538;
        --amber: #F0A500;
        --amber-light: #FFF3CD;
        --white: #FFFFFF;
        --off-white: #F9F9F9;
        --gray-light: #E5E5E5;
        --gray-text: #666666;
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Inter', sans-serif;
        --spacing-unit: 8px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        font-weight: 300;
        color: var(--plum-dark);
        background-color: var(--white);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

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

    h1 {
        font-size: clamp(3rem, 8vw, 6rem);
        letter-spacing: -0.02em;
    }

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

    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    h4 {
        font-size: 1.25rem;
        font-family: var(--font-sans);
        font-weight: 400;
    }

    p {
        font-size: 1.125rem;
        color: var(--gray-text);
        max-width: 65ch;
    }

    .label {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 1rem;
    }

    /* Layout */
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 clamp(1.5rem, 4vw, 4rem);
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 6vw, 6rem);
        align-items: center;
    }

    /* Header */
    .site-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 var(--gray-light);
        transition: all 0.3s ease;
    }

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

    .logo {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--plum);
        text-decoration: none;
        font-weight: 600;
    }

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

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

    .nav-links a {
        font-size: 0.875rem;
        color: var(--plum-dark);
        text-decoration: none;
        font-weight: 300;
        letter-spacing: 0.05em;
        transition: color 0.3s ease;
    }

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

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 0.875rem 2rem;
        font-family: var(--font-sans);
        font-size: 0.875rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        border: 1px solid var(--plum);
        transition: all 0.3s ease;
        cursor: pointer;
        background: transparent;
    }

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

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

    .btn-outline {
        background: transparent;
        color: var(--plum);
    }

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

    /* Mobile Toggle */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-toggle span {
        width: 24px;
        height: 1px;
        background: var(--plum);
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        border-bottom: 1px solid var(--gray-light);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-link {
        display: block;
        padding: 1rem 0;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--plum);
        text-decoration: none;
        border-bottom: 1px solid var(--gray-light);
    }

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

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: -2;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(74, 35, 90, 0.4) 0%,
            rgba(74, 35, 90, 0.2) 50%,
            rgba(74, 35, 90, 0.6) 100%
        );
        z-index: -1;
    }

    .hero-content {
        color: var(--white);
        max-width: 800px;
        padding-top: 80px;
    }

    .hero-eyebrow {
        font-size: 0.875rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 1.5rem;
    }

    .hero-content h1 {
        margin-bottom: 1.5rem;
    }

    .hero-sub {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 50ch;
        margin-bottom: 3rem;
    }

    .hero-meta {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.875rem;
        letter-spacing: 0.05em;
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-meta .separator {
        color: var(--amber);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--white);
        text-decoration: none;
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .scroll-indicator:hover {
        opacity: 1;
    }

    /* Sections */
    .section {
        padding: clamp(5rem, 12vw, 10rem) 0;
    }

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

    .text-block {
        max-width: 550px;
    }

    .text-block p {
        margin-bottom: 1.5rem;
    }

    .image-block {
        position: relative;
    }

    .main-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

    .secondary-img {
        position: absolute;
        bottom: -3rem;
        left: -2rem;
        width: 240px;
        height: 180px;
        object-fit: cover;
        border: 8px solid var(--white);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    /* Visit */
    .visit {
        background: var(--off-white);
    }

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

    .visit-header p {
        margin: 0 auto;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .info-card {
        background: var(--white);
        padding: 3rem 2rem;
        border: 1px solid var(--gray-light);
        transition: all 0.3s ease;
    }

    .info-card:hover {
        border-color: var(--amber);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(74, 35, 90, 0.08);
    }

    .info-card .icon {
        width: 48px;
        height: 48px;
        color: var(--amber);
        margin-bottom: 1.5rem;
    }

    .info-card h3 {
        font-family: var(--font-sans);
        font-size: 0.875rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        margin-bottom: 1rem;
        color: var(--plum);
    }

    .info-card p {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--gray-text);
        max-width: none;
    }

    /* Vendors */
    .vendors {
        background: var(--white);
    }

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

    .section-header p {
        margin: 1rem auto 0;
    }

    .vendor-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .vendor-item {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 1.5rem;
        align-items: center;
        padding: 2rem;
        border: 1px solid var(--gray-light);
        transition: all 0.3s ease;
    }

    .vendor-item:hover {
        border-color: var(--plum);
        background: var(--off-white);
    }

    .vendor-item img {
        width: 200px;
        height: 150px;
        object-fit: cover;
    }

    .vendor-info h4 {
        margin-bottom: 0.5rem;
        color: var(--plum);
    }

    .vendor-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: none;
    }

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

    .contact .label {
        color: var(--amber);
    }

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

    .contact p {
        color: rgba(255, 255, 255, 0.7);
    }

    .contact-details {
        margin: 3rem 0;
        display: flex;
        gap: 3rem;
    }

    .detail strong {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 0.5rem;
    }

    .detail p,
    .detail a {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.3s ease;
        max-width: none;
    }

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

    .contact-form {
        max-width: 400px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        font-family: var(--font-sans);
        font-size: 1rem;
        font-weight: 300;
        transition: border-color 0.3s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

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

    .form-status {
        margin-top: 1rem;
        font-size: 0.875rem;
        color: var(--amber);
    }

    /* Map */
    .map-block {
        position: relative;
    }

    .map-container {
        position: relative;
        overflow: hidden;
    }

    .map-container img {
        width: 100%;
        height: 100%;
        min-height: 600px;
        object-fit: cover;
        filter: saturate(0.3) contrast(1.1);
    }

    .map-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--white);
        padding: 2rem;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .map-pin {
        margin-bottom: 1rem;
    }

    .map-text {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .map-text strong {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        color: var(--plum);
    }

    .map-text span {
        font-size: 0.875rem;
        color: var(--gray-text);
    }

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

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 2rem;
    }

    .footer-logo h3 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .footer-logo p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.6);
        max-width: none;
    }

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

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

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

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .grid-2 {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .image-block {
            order: -1;
        }

        .secondary-img {
            position: relative;
            bottom: auto;
            left: auto;
            margin-top: 1rem;
        }

        .vendor-item {
            grid-template-columns: 1fr;
        }

        .vendor-item img {
            width: 100%;
            height: 250px;
        }
    }

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

        .mobile-toggle {
            display: flex;
        }

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

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

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

        .footer-top {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }

        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }

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

    @media (max-width: 480px) {
        .hero-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .hero-meta .separator {
            display: none;
        }
    }
