        :root {
            --gold-light: #E8D5A3;
            --gold: #C9A962;
            --gold-dark: #8B7355;
            --slate-dark: #2A3B47;
            --slate: #4A5C6A;
            --slate-light: #6B7D8A;
            --cream: #FAF8F5;
            --cream-dark: #F0EDE7;
            --charcoal: #1A1A1A;
            --white: #FFFFFF;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
            line-height: 1.7;
        }

        .noise {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; z-index: 9999; opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 1.5rem 4rem; display: flex; justify-content: space-between; align-items: center;
            background: rgba(250,248,245,0.98); backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(42,59,71,0.08);
        }
        .nav-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
        .nav-logo img { height: 50px; width: auto; }
        .nav-wordmark {
            font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500;
            letter-spacing: 0.15em; color: var(--slate-dark); text-transform: uppercase;
        }
        .nav-links { display: flex; gap: 3rem; list-style: none; }
        .nav-links a {
            font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
            color: var(--slate); text-decoration: none; position: relative; padding: 0.5rem 0;
            transition: color 0.3s ease;
        }
        .nav-links a.active { color: var(--gold-dark); }
        .nav-links a::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
            background: var(--gold); transition: width 0.3s ease;
        }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

        .contact-hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding-top: 80px;
        }

        .contact-left {
            background: var(--slate-dark);
            padding: 6rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .contact-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 70%, rgba(201,169,98,0.15) 0%, transparent 60%);
        }

        .contact-left-content {
            position: relative;
            z-index: 10;
            max-width: 500px;
        }

        .page-label {
            font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3em;
            text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
        }

        .page-title {
            font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem;
        }

        .page-subtitle {
            font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 300;
            color: rgba(250,248,245,0.8); margin-bottom: 4rem; line-height: 1.7;
        }

        .contact-info { margin-top: 3rem; }
        
        .contact-info-item {
            margin-bottom: 2.5rem;
        }

        .contact-info-label {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .contact-info-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--cream);
        }

        .contact-info-value a {
            color: var(--cream);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info-value a:hover {
            color: var(--gold);
        }

        .contact-emblem {
            position: absolute;
            bottom: 4rem;
            right: 4rem;
            width: 100px;
            height: 100px;
            opacity: 0.1;
        }

        .contact-emblem img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .contact-right {
            background: var(--cream);
            padding: 6rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-form-container {
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

        .form-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 400;
            color: var(--slate-dark);
            margin-bottom: 2rem;
        }

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

        .form-label {
            display: block;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--slate);
            margin-bottom: 0.75rem;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 1rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: var(--charcoal);
            background: var(--white);
            border: 1px solid var(--cream-dark);
            outline: none;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A5C6A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 3rem;
        }

        .form-submit {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--cream);
            padding: 1.25rem 3rem;
            background: var(--slate-dark);
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 1rem;
        }

        .form-submit:hover {
            background: var(--charcoal);
            transform: translateY(-2px);
        }

        .form-submit svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .form-submit:hover svg {
            transform: translateX(4px);
        }

        .form-note {
            font-size: 0.85rem;
            color: var(--slate-light);
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--cream-dark);
        }

        footer {
            background: var(--charcoal); padding: 2rem 4rem;
            border-top: 1px solid rgba(250,248,245,0.08);
            display: flex; justify-content: space-between; align-items: center;
        }
        .footer-copyright { font-size: 0.75rem; color: rgba(250,248,245,0.4); letter-spacing: 0.1em; }
        .footer-links { display: flex; gap: 2rem; }
        .footer-links a {
            font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
            color: rgba(250,248,245,0.4); text-decoration: none; transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--gold); }

        @media (max-width: 1024px) {
            nav { padding: 1rem 2rem; }
            .contact-hero { grid-template-columns: 1fr; }
            .contact-left, .contact-right { padding: 4rem 2rem; }
            .contact-emblem { display: none; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            footer { flex-direction: column; gap: 1rem; text-align: center; }
        }
