:root {
    --gold: #d4af37;
    --dark: #121212;
    --stone: #f4f2ee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--stone);
    overflow-x: hidden;
}

/* --- Contact Hero --- */
.contact-hero {
    height: 50vh;
    background: url('../home/images/image2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 10px;
}

.gold-tag {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 12px;
}

/* --- Layout Grid --- */
.contact-wrapper {
    max-width: 1200px;
    margin: -100px auto 100px;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

/* --- Info Section (Dark) --- */
.contact-info {
    background: var(--dark);
    color: white;
    padding: 60px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-block p, .info-block a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    font-size: 15px;
}

.legal-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem !important;
    color: white !important;
    letter-spacing: 1px;
}

/* --- Form Section (Light) --- */
.contact-form-container {
    padding: 60px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.luxury-form .input-group {
    margin-bottom: 25px;
}

.luxury-form input, .luxury-form textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    background: transparent;
}

.luxury-form input:focus, .luxury-form textarea:focus {
    border-bottom: 1px solid var(--gold);
}

.submit-btn {
    background: var(--dark);
    color: white;
    border: 1px solid var(--dark);
    padding: 15px 40px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    font-weight: 600;
}

.submit-btn:hover {
    background: transparent;
    color: var(--dark);
}

/* --- Responsive Overrides --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        margin-top: 40px;
    }

    .contact-info, .contact-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .submit-btn {
        width: 100%;
    }

    .contact-hero {
        height: 40vh;
    }
}