/* =========================================================
   CONTACT
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #080706;
    border-bottom: 1px solid var(--line);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    filter:
        contrast(1.08)
        saturate(0.72)
        brightness(0.58);

    transform: scale(1.04);
}

.contact-hero-mask {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 4, 4, 1) 0%,
            rgba(5, 4, 4, 0.97) 25%,
            rgba(5, 4, 4, 0.77) 48%,
            rgba(5, 4, 4, 0.28) 78%,
            rgba(5, 4, 4, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.76)
        );
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    min-height: 620px;

    width: 58%;

    padding: 70px 0 70px 54px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-kicker {
    display: block;

    margin-bottom: 18px;

    color: var(--gold2);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 0;

    color: var(--cream);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            40px,
            4.2vw,
            64px
        );

    font-weight: 400;

    line-height: 1.12;

    letter-spacing: -0.03em;

    text-transform: uppercase;

    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.75);
}

.contact-hero h1 .line {
    display: block;
    white-space: nowrap;
}

.contact-hero h1 .gold {
    color: var(--gold2);
}

.contact-hero-content > p {
    max-width: 610px;

    margin: 36px 0 0;

    color: rgba(242, 231, 212, 0.80);

    font-size:
        clamp(
            15px,
            1.4vw,
            18px
        );

    line-height: 1.85;
}


/* =========================================================
   SECTION
   ========================================================= */

.contact-section {
    padding: 92px 54px 110px;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(182, 130, 66, 0.10),
            transparent 500px
        ),
        #080706;
}

.contact-heading {
    max-width: 800px;

    margin: 0 auto 60px;

    text-align: center;
}

.contact-heading h2 {
    margin: 0;

    color: var(--cream);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            36px,
            4vw,
            58px
        );

    font-weight: 400;

    line-height: 1.1;

    text-transform: uppercase;
}

.contact-heading h2 .gold {
    display: block;
    color: var(--gold2);
}

.contact-heading > p {
    max-width: 640px;

    margin: 24px auto 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   TIMELINE
   ========================================================= */

.contact-timeline {
    position: relative;

    width: min(100%, 1050px);

    margin: 0 auto 52px;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border:
        1px solid
        rgba(210, 163, 99, 0.30);

    background:
        radial-gradient(
            circle at 50% -50%,
            rgba(210, 163, 99, 0.12),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(18, 15, 12, 0.98),
            rgba(7, 6, 5, 0.99)
        );

    box-shadow:
        0 26px 70px
        rgba(0, 0, 0, 0.38);

    overflow: hidden;
}


/* Ligne */

.timeline-progress {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background:
        rgba(210, 163, 99, 0.12);
}

.timeline-progress-bar {
    width: 0%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold2)
        );

    transition:
        width
        0.55s
        cubic-bezier(0.16, 1, 0.3, 1);
}


/* Étape timeline */

.timeline-step {
    position: relative;

    min-height: 105px;

    padding: 22px 12px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border: 0;

    border-right:
        1px solid
        var(--softLine);

    background: transparent;

    color: var(--muted);

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.timeline-step:last-of-type {
    border-right: 0;
}

.timeline-number {
    color:
        rgba(
            210,
            163,
            99,
            0.38
        );

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    transition:
        color 0.3s ease,
        transform
        0.4s
        cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-label {
    color: var(--muted);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* terminée */

.timeline-step.is-complete
.timeline-number {
    color:
        rgba(
            210,
            163,
            99,
            0.66
        );
}

.timeline-step.is-complete
.timeline-label {
    color:
        rgba(
            242,
            231,
            212,
            0.58
        );
}


/* active */

.timeline-step.is-active {
    background:
        radial-gradient(
            circle at center,
            rgba(210, 163, 99, 0.13),
            transparent 70%
        );
}

.timeline-step.is-active
.timeline-number {
    color: var(--gold2);

    transform:
        translateY(-3px)
        scale(1.08);
}

.timeline-step.is-active
.timeline-label {
    color: var(--gold2);
}

.timeline-step:hover {
    background:
        rgba(
            210,
            163,
            99,
            0.05
        );
}


/* =========================================================
   FORMULAIRE
   ========================================================= */

.contact-form {
    width: min(100%, 1050px);

    margin: 0 auto;

    border:
        1px solid
        rgba(210, 163, 99, 0.27);

    background:
        radial-gradient(
            circle at top right,
            rgba(182, 130, 66, 0.10),
            transparent 350px
        ),
        linear-gradient(
            145deg,
            #100e0c 0%,
            #070606 100%
        );

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.40);
}


/* =========================================================
   ÉTAPES
   ========================================================= */

.contact-step {
    display: none;

    min-height: 520px;

    padding: 56px 58px 48px;
}

.contact-step.is-active {
    display: block;

    animation:
        contact-step-in
        0.65s
        cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes contact-step-in {

    from {
        opacity: 0;

        transform:
            translateY(24px);

        filter:
            blur(4px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);

        filter:
            blur(0);
    }
}


/* =========================================================
   ENTÊTE ÉTAPE
   ========================================================= */

.contact-step-header {
    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 24px;

    align-items: start;

    margin-bottom: 42px;

    padding-bottom: 28px;

    border-bottom:
        1px solid
        var(--softLine);
}

.contact-step-number {
    color:
        rgba(
            210,
            163,
            99,
            0.25
        );

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 64px;

    line-height: 0.85;
}

.contact-step-header h3 {
    margin: 0;

    color: var(--cream);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            28px,
            3vw,
            42px
        );

    font-weight: 400;

    line-height: 1.12;

    text-transform: uppercase;
}

.contact-step-header p {
    max-width: 620px;

    margin: 13px 0 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   CHOIX
   ========================================================= */

.choice-grid {
    display: grid;

    gap: 14px;
}

.choice-grid-main {
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px, 1fr)
        );
}

.choice-grid-small {
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(200px, 1fr)
        );
}


/* Carte */

.choice-card {
    position: relative;

    min-height: 150px;

    padding: 26px 25px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    gap: 8px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            210,
            163,
            99,
            0.24
        );

    background:
        linear-gradient(
            145deg,
            rgba(
                20,
                17,
                14,
                0.92
            ),
            rgba(
                8,
                7,
                6,
                0.96
            )
        );

    cursor: pointer;

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

.choice-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(
            210,
            163,
            99,
            0.60
        );
}

.choice-card input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.choice-check {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 25px;
    height: 25px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(
            210,
            163,
            99,
            0.35
        );

    color:
        transparent;

    font-size: 12px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.choice-card strong {
    color:
        rgba(
            242,
            231,
            212,
            0.86
        );

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 400;

    text-transform: uppercase;
}

.choice-card small {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.45;
}


/* sélection */

.choice-card:has(input:checked) {
    border-color:
        rgba(
            210,
            163,
            99,
            0.82
        );

    background:
        radial-gradient(
            circle at top right,
            rgba(
                210,
                163,
                99,
                0.17
            ),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            #15110d,
            #090706
        );

    box-shadow:
        inset 0 0 30px
        rgba(
            210,
            163,
            99,
            0.035
        );
}

.choice-card:has(input:checked)
.choice-check {
    color: #080706;

    background: var(--gold2);

    border-color: var(--gold2);
}

.choice-card:has(input:checked)
strong {
    color: var(--gold2);
}


/* Petites cartes */

.choice-card-small {
    min-height: 90px;

    padding:
        20px 46px
        20px 20px;

    justify-content: center;
}

.choice-card-small strong {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.35;
}


/* =========================================================
   CHAMPS
   ========================================================= */

.field-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 22px;
}

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;

    margin-bottom: 10px;

    color:
        rgba(
            242,
            231,
            212,
            0.78
        );

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}

.form-field label small {
    margin-left: 7px;

    color: var(--muted);

    font-weight: 400;

    text-transform: none;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;

    box-sizing: border-box;

    padding:
        15px 16px;

    border:
        1px solid
        rgba(
            210,
            163,
            99,
            0.23
        );

    border-radius: 0;

    outline: none;

    background:
        rgba(
            0,
            0,
            0,
            0.26
        );

    color: var(--cream);

    font-family:
        inherit;

    font-size: 15px;

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

.form-field textarea {
    resize: vertical;

    min-height: 160px;

    line-height: 1.65;
}

.form-field select {
    cursor: pointer;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--gold2);

    background:
        rgba(
            210,
            163,
            99,
            0.035
        );

    box-shadow:
        0 0 0 3px
        rgba(
            210,
            163,
            99,
            0.07
        );
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color:
        rgba(
            166,
            152,
            132,
            0.56
        );
}


/* =========================================================
   SOUS TITRE
   ========================================================= */

.contact-subtitle {
    margin:
        34px 0 18px;

    padding-bottom: 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-bottom:
        1px solid
        var(--softLine);
}

.contact-subtitle span {
    color: var(--gold2);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    text-transform: uppercase;
}

.contact-subtitle small {
    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   GROUPES DYNAMIQUES
   ========================================================= */

.request-group {
    display: none;

    margin-bottom: 42px;
}

.request-group.is-visible {
    display: block;

    animation:
        request-group-in
        0.45s ease;
}

@keyframes request-group-in {

    from {
        opacity: 0;

        transform:
            translateY(12px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}

.request-group-diagnostic {
    padding: 24px 26px;

    color:
        rgba(
            242,
            231,
            212,
            0.74
        );

    line-height: 1.7;

    border-left:
        2px solid
        var(--gold2);

    background:
        rgba(
            210,
            163,
            99,
            0.06
        );
}

.request-group-diagnostic p {
    margin: 0;
}


/* =========================================================
   PHOTOS
   ========================================================= */

.photo-drop-zone {
    position: relative;

    min-height: 260px;

    padding: 45px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    text-align: center;

    border:
        1px dashed
        rgba(
            210,
            163,
            99,
            0.48
        );

    background:
        radial-gradient(
            circle at center,
            rgba(
                210,
                163,
                99,
                0.08
            ),
            transparent 65%
        );

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.photo-drop-zone:hover,
.photo-drop-zone.is-dragging {
    border-color: var(--gold2);

    background:
        rgba(
            210,
            163,
            99,
            0.07
        );
}

.photo-drop-zone input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.photo-plus {
    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    margin-bottom: 8px;

    border:
        1px solid
        rgba(
            210,
            163,
            99,
            0.55
        );

    color: var(--gold2);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
}

.photo-drop-zone strong {
    color: var(--gold2);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    font-weight: 400;

    text-transform: uppercase;
}

.photo-drop-zone > span:not(.photo-plus) {
    color:
        rgba(
            242,
            231,
            212,
            0.70
        );

    font-size: 14px;
}

.photo-drop-zone small {
    color: var(--muted);

    font-size: 11px;
}


/* previews */

.photo-preview {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(130px, 1fr)
        );

    gap: 12px;

    margin-top: 20px;
}

.photo-preview-item {
    position: relative;

    height: 130px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            210,
            163,
            99,
            0.30
        );

    background:
        #0c0a08;
}

.photo-preview-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.photo-preview-file {
    height: 100%;

    padding: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--muted);

    font-size: 11px;

    text-align: center;

    word-break: break-word;
}


/* =========================================================
   CONSENTEMENT
   ========================================================= */

.contact-consent {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin: 22px 0;

    color:
        rgba(
            242,
            231,
            212,
            0.70
        );

    font-size: 13px;

    line-height: 1.6;

    cursor: pointer;
}

.contact-consent input {
    margin-top: 4px;

    accent-color: var(--gold2);
}

.contact-final-note {
    margin-top: 32px;

    padding: 20px 24px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    border-left:
        2px solid
        var(--gold);

    background:
        rgba(
            210,
            163,
            99,
            0.055
        );
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.contact-navigation {
    margin-top: 48px;

    padding-top: 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 16px;

    border-top:
        1px solid
        var(--softLine);
}

.contact-navigation-first {
    justify-content: flex-end;
}

.contact-navigation .button {
    margin-top: 0;

    cursor: pointer;
}


/* =========================================================
   ERREURS
   ========================================================= */

.contact-step-error {
    min-height: 20px;

    margin-top: 20px;

    color: #dba785;

    font-size: 13px;
}

.contact-server-errors,
.contact-success {
    width: min(100%, 1050px);

    box-sizing: border-box;

    margin: 0 auto 40px;

    padding: 24px 28px;
}

.contact-server-errors {
    color:
        rgba(
            242,
            231,
            212,
            0.80
        );

    border-left:
        2px solid
        #ba7258;

    background:
        rgba(
            150,
            70,
            45,
            0.10
        );
}

.contact-server-errors strong {
    color: #e0b098;
}

.contact-server-errors ul {
    margin:
        12px 0 0;

    padding-left: 20px;
}

.contact-server-errors li {
    margin: 5px 0;
}

.contact-success {
    display: flex;

    align-items: center;

    gap: 22px;

    border:
        1px solid
        rgba(
            210,
            163,
            99,
            0.38
        );

    background:
        rgba(
            210,
            163,
            99,
            0.065
        );
}

.contact-success-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--gold2);

    color: var(--gold2);

    font-size: 20px;
}

.contact-success strong {
    color: var(--gold2);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    font-weight: 400;

    text-transform: uppercase;
}

.contact-success p {
    margin:
        8px 0 0;

    color:
        rgba(
            242,
            231,
            212,
            0.72
        );

    line-height: 1.6;
}


/* =========================================================
   ANTI SPAM
   ========================================================= */

.contact-honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}



/* =========================================================
   CONTACT RAPIDE - POPUP
   ========================================================= */

.quick-contact-modal {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.quick-contact-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.quick-contact-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(0, 0, 0, 0.84);

    backdrop-filter:
        blur(8px);
}

.quick-contact-dialog {
    position: relative;
    z-index: 2;

    width: min(100%, 760px);
    max-height: calc(100vh - 60px);

    overflow-y: auto;

    padding: 46px 48px;

    border:
        1px solid
        rgba(210, 163, 99, 0.42);

    background:
        radial-gradient(
            circle at top right,
            rgba(182, 130, 66, 0.16),
            transparent 320px
        ),
        linear-gradient(
            145deg,
            #12100e 0%,
            #070606 100%
        );

    box-shadow:
        0 40px 120px
        rgba(0, 0, 0, 0.70);

    transform:
        translateY(30px)
        scale(0.97);

    transition:
        transform
        0.45s
        cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-contact-modal.is-open
.quick-contact-dialog {
    transform:
        translateY(0)
        scale(1);
}

.quick-contact-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(210, 163, 99, 0.35);

    background:
        rgba(0, 0, 0, 0.24);

    color: var(--gold2);

    font-size: 25px;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.quick-contact-close:hover {
    border-color: var(--gold2);

    background:
        rgba(210, 163, 99, 0.07);

    transform: rotate(4deg);
}

.quick-contact-heading {
    margin-bottom: 34px;
    padding-right: 45px;
}

.quick-contact-heading h2 {
    margin: 0;

    color: var(--cream);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(30px, 3.5vw, 46px);

    font-weight: 400;

    line-height: 1.08;

    text-transform: uppercase;
}

.quick-contact-heading h2 .gold {
    display: block;
    color: var(--gold2);
}

.quick-contact-heading p {
    max-width: 590px;

    margin: 20px 0 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}

.quick-contact-actions {
    margin-top: 34px;
    padding-top: 26px;

    display: flex;
    justify-content: flex-end;
    gap: 14px;

    border-top:
        1px solid
        var(--softLine);
}

.quick-contact-actions .button {
    margin-top: 0;
}

body.quick-contact-open {
    overflow: hidden;
}

@media (max-width: 640px) {

    .quick-contact-modal {
        padding: 14px;
    }

    .quick-contact-dialog {
        max-height: calc(100vh - 28px);

        padding:
            38px 22px
            28px;
    }

    .quick-contact-heading {
        padding-right: 35px;
    }

    .quick-contact-actions {
        flex-direction: column-reverse;
    }

    .quick-contact-actions .button {
        width: 100%;
        max-width: none;
    }
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    .contact-hero-content {
        width: 75%;

        padding-left: 34px;
    }

    .contact-section {
        padding:
            72px 30px
            90px;
    }

    .contact-step {
        padding:
            46px 36px
            40px;
    }

    .field-grid {
        grid-template-columns:
            1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .contact-hero {
        min-height: 560px;
    }

    .contact-hero-content {
        min-height: 560px;

        width: 100%;

        box-sizing: border-box;

        padding:
            60px 24px;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-section {
        padding:
            58px 18px
            70px;
    }

    .contact-timeline {
        display: flex;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .contact-timeline::-webkit-scrollbar {
        display: none;
    }

    .timeline-step {
        flex:
            0 0
            125px;

        min-height: 88px;

        padding:
            15px 8px;
    }

    .timeline-number {
        font-size: 20px;
    }

    .timeline-label {
        font-size: 9px;
    }

    .contact-step {
        min-height: 0;

        padding:
            38px 22px
            32px;
    }

    .contact-step-header {
        grid-template-columns:
            1fr;

        gap: 12px;
    }

    .contact-step-number {
        font-size: 46px;
    }

    .choice-grid-main,
    .choice-grid-small {
        grid-template-columns:
            1fr;
    }

    .choice-card {
        min-height: 115px;
    }

    .choice-card-small {
        min-height: 75px;
    }

    .contact-navigation {
        flex-direction: column-reverse;
    }

    .contact-navigation .button {
        width: 100%;
        max-width: none;
    }

    .contact-navigation-first {
        flex-direction: column;
    }

    .photo-drop-zone {
        min-height: 220px;

        padding:
            35px 20px;
    }
}


/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-step,
    .request-group,
    .timeline-step,
    .timeline-progress-bar,
    .choice-card {
        animation: none !important;
        transition: none !important;
    }
}
