        :root {
            --navy: #000075;
            --burgundy: #960018;
            --dark: #121212;
            --ivory: #FEFEFA;
            --gold: #C4A267;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
         body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--ivory);
            color: var(--dark);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 20px;
        }
        
        .contact-header {
            width: 100%;
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(150, 0, 24, 0.1);
        }
        
        .contact-header h1 {
            color: var(--navy);
            font-weight: 600;
            letter-spacing: 0.5px;
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            font-variant: small-caps;
        }
        
        .contact-header p {
            color: var(--burgundy);
            font-style: italic;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--ivory);
            padding: 2rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--burgundy);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(150, 0, 24, 0.1);
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--navy), var(--burgundy));
            z-index: 2;
        }
        
        .contact-form::after {
            content: '🍷';
            position: absolute;
            bottom: -30px;
            right: -30px;
            font-size: 180px;
            opacity: 0.03;
            z-index: 0;
            transform: rotate(15deg);
        }
        
        .form-section {
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }
        
        .form-section h2 {
            color: var(--navy);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 0, 117, 0.1);
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            flex: 1;
            min-width: 200px;
            margin-bottom: 0;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.75rem;
            color: var(--dark);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .form-group input, 
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid rgba(0, 0, 117, 0.15);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            background-color: rgba(255, 255, 255, 0.7);
            font-family: 'Cormorant Garamond', serif;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-group input:focus, 
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--navy);
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 0, 117, 0.1);
            background-color: white;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(18, 18, 18, 0.4);
            font-style: italic;
        }
        
        .btn {
            width: 100%;
            padding: 16px;
            background-color: var(--burgundy);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            letter-spacing: 0.5px;
            font-weight: 500;
            font-family: 'Cormorant Garamond', serif;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            z-index: -1;
        }
        
        .btn:hover {
            background-color: #7a0014;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(150, 0, 24, 0.2);
        }
        
        .btn:active {
            transform: translateY(0);
        }
        
        .contact-info {
            flex: 0 0 350px;
            background-color: var(--ivory);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--navy);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(0, 0, 117, 0.1);
            height: fit-content;
        }
        
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--burgundy), var(--navy));
            z-index: 2;
        }
        
        .contact-info h2 {
            color: var(--navy);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 0, 117, 0.1);
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed rgba(0, 0, 117, 0.1);
        }
        
        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .info-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(150, 0, 24, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--burgundy);
            font-size: 1.2rem;
        }
        
        .info-content h3 {
            color: var(--navy);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .info-content p {
            color: var(--dark);
            line-height: 1.5;
            font-size: 0.95rem;
        }
        
        .info-content a {
            color: var(--burgundy);
            text-decoration: none;
            border-bottom: 1px dotted var(--burgundy);
            transition: all 0.3s ease;
        }
        
        .info-content a:hover {
            color: #7a0014;
            border-bottom-color: #7a0014;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(150, 0, 24, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--burgundy);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background-color: var(--burgundy);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Mobile-specific enhancements */
        @media (max-width: 768px) {
            body {
                background-image: linear-gradient(rgba(254, 254, 250, 0.96), rgba(254, 254, 250, 0.98)), 
                                  url('https://images.unsplash.com/photo-1510812431401-41e2f9c2c0b4?q=80&w=1200');
            }
            
            .contact-form, .contact-info {
                padding: 1.75rem 1.25rem;
                border-radius: 10px;
            }
            
            .contact-header h1 {
                font-size: 1.8rem;
            }
            
            .form-group input, 
            .form-group select,
            .form-group textarea {
                padding: 14px 16px;
            }
            
            .btn {
                padding: 15px;
            }
            
            .contact-form::after, .contact-info::after {
                font-size: 140px;
                bottom: -20px;
                right: -20px;
            }
            
            .form-group {
                min-width: 100%;
            }
            
            .contact-info {
                flex: 1;
                min-width: 100%;
            }
        }
        
        /* Animation for subtle interactivity */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .contact-form, .contact-info {
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        .form-section, .info-item, .btn {
            opacity: 0;
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        .form-section:nth-child(1) { animation-delay: 0.1s; }
        .form-section:nth-child(2) { animation-delay: 0.2s; }
        .info-item:nth-child(1) { animation-delay: 0.1s; }
        .info-item:nth-child(2) { animation-delay: 0.2s; }
        .info-item:nth-child(3) { animation-delay: 0.3s; }
        .btn { animation-delay: 0.4s; }
