.page-content {
    background:
        linear-gradient(rgba(247, 239, 230, 0.92), rgba(247, 239, 230, 0.92)),
        url("../asset/mur-lisse.jpg") center / cover fixed;
}

/* HERO */

.contact-hero {
    width: min(1180px, calc(100% - 40px));
    margin: 80px auto 70px;
}

.contact-label {
    margin: 0 0 16px;
    color: #9f3447;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 950px;
    margin: 0;
    color: #241d1d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 8vw, 8rem);
    line-height: 0.88;
    letter-spacing: -0.07em;
}

.contact-hero p:last-child {
    max-width: 760px;
    margin: 30px 0 0;
    color: #4b3b3b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    line-height: 1.45;
    font-style: italic;
}

/* SECTION FORMULAIRE */

.contact-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 120px;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: #2f2626;
    color: white;
    padding: 42px;
    position: sticky;
    top: 110px;
}

.contact-info h2 {
    margin: 0 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-info .contact-label {
    color: #d46a7e;
}

/* FORM */

.contact-form {
    background: rgba(255, 248, 239, 0.82);
    border-left: 5px solid #2f2626;
    padding: 44px;
    box-shadow: 0 18px 38px rgba(47, 38, 38, 0.14);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

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

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #241d1d;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;

    border: 1px solid rgba(47, 38, 38, 0.35);
    background: rgba(255, 255, 255, 0.72);
    color: #241d1d;

    font-family: Arial, sans-serif;
    font-size: 1rem;
    outline: none;

    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #9f3447;
    background: white;
    box-shadow: 0 0 0 3px rgba(159, 52, 71, 0.14);
}

.contact-btn {
    display: inline-block;
    border: none;
    cursor: pointer;

    padding: 14px 30px;
    background: #2f2626;
    color: white;

    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;

    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-btn:hover {
    background: #9f3447;
    transform: translateY(-2px);
}

/* MESSAGES */

.form-message {
    margin-bottom: 26px;
    padding: 16px 18px;
    font-weight: 700;
    line-height: 1.5;
}

.form-message.success {
    background: rgba(60, 130, 85, 0.14);
    color: #2f6f46;
    border-left: 4px solid #2f6f46;
}

.form-message.error {
    background: rgba(159, 52, 71, 0.14);
    color: #9f3447;
    border-left: 4px solid #9f3447;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact-info {
        position: static;
    }
}

@media (max-width: 600px) {
    .contact-hero,
    .contact-section {
        width: min(100% - 28px, 1180px);
    }

    .contact-hero {
        margin: 50px auto 50px;
    }

    .contact-label {
        font-size: 0.75rem;
        letter-spacing: 0.13em;
    }

    .contact-hero h1 {
        font-size: clamp(2.8rem, 15vw, 4.8rem);
        letter-spacing: -0.055em;
    }

    .contact-hero p:last-child {
        font-size: 1.2rem;
    }

    .contact-info {
        padding: 30px 24px;
    }

    .contact-form {
        padding: 28px 22px;
        border-left-width: 4px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group label {
        font-size: 0.75rem;
    }

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

@media (max-width: 390px) {
    .contact-hero h1 {
        font-size: 2.55rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}