.contact-hero {
    
    color: #fff;
    padding: 60px 0 100px
}

/* Pleine largeur même si le hook est dans .container */
.page-contact .contact-hero {
    margin-left: calc(50% - 700px);
    
    width: 1100px
}

.contact-hero__inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 0px;
    padding: 0 24px
}

.contact-hero__left {
    align-self: start;
    width: 500px;
}

.contact-title {
    font-family: inherit;
    font-weight: 800;
    font-style: italic;
    letter-spacing: .08em;
    font-size: 72px;
    line-height: 1;
    margin: 0 0 18px
}

.contact-intro {
    display: flex;
    margin-top: 50px;
    flex-direction: column;
    max-width: 640px;
    row-gap: 30px;
}

.contact-intro p {
    margin: 0 0 12px;
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.7
}

.contact-card {
    width: 100%;
    max-width: 600px;
    background: rgba(17, 17, 17, .6);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px;
    padding: 22px 24px;
    backdrop-filter: blur(4px);
    margin-left: auto
}

/* ---------- Styles du formulaire (maquette) ---------- */
.xc-fields {
    margin-top: 6px
}

.xc-fieldset {
    margin-bottom: 16px
}

.xc-fieldset--inline {
    display: flex;
    gap: 14px;
    align-items: center
}

.xc-label {
    display: block;
    font-size: 11px;
    letter-spacing: .08em;
    color: #cfcfcf;
    margin-bottom: 6px
}

/* Boutons civilité carrés */
.xc-radios {
    display: flex;
    gap: 16px
}

.xc-radio {
    position: relative;
    display: inline-flex;
    align-items: center
}

.xc-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.xc-radio span {
    display: inline-block;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    min-width: 110px;
    text-align: center;
    font-weight: 700
}

.xc-radio input:checked+span {
    background: #1e1e1e;
    border-color: #fff
}

/* Champs */
.xc-input,
.xc-textarea {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 8px;
    padding: 14px 16px;
    outline: none
}

.xc-input::placeholder,
.xc-textarea::placeholder {
    color: #cfcfcf;
    opacity: .8
}

.xc-input:focus,
.xc-textarea:focus {
    border-color: #fff
}

/* Pied de formulaire */
.xc-footer {
    padding-top: 8px
}

.xc-submit {
    background: #161616;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 6px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer
}

.xc-submit:hover {
    border-color: #fff
}

@media (max-width: 1024px) {
    .contact-hero__inner {
        grid-template-columns: 1fr
    }

    .contact-title {
        font-size: 56px
    }
}

@media (max-width: 640px) {
    .contact-card {
        padding: 18px;
        margin-left: 0;
        margin-right: 0
    }

    .xc-radio span {
        min-width: 96px;
        padding: 10px 14px
    }
}


/* ---------- Page Contact en noir (fond et texte) ---------- */
.page-contact {
    background: #000;
    color: #fff
}



.page-contact main,
.page-contact .page-content,
.page-contact .container,
.page-contact .container-fluid {
    background: transparent !important
}

.page-contact a {
    color: #fff
}

