@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Libre+Caslon+Display&display=swap");

/* =========================================================
   ROSETTA ALBELICE — STYLE GÉNÉRAL
   ========================================================= */

:root {
    --color-ink: #191815;
    --color-dark: #0e0e0d;
    --color-muted: #686259;
    --color-paper: #f7f4ee;
    --color-white: #fffdf9;
    --color-stone: #e8e1d6;
    --color-violet: #6252a3;
    --color-gold: #a88958;
    --color-line: rgba(25, 24, 21, 0.15);
    --color-shadow: rgba(30, 27, 22, 0.09);

    --font-serif: "Libre Caslon Display", Georgia, serif;
    --font-sans: "DM Sans", Arial, sans-serif;

    --page-width: min(1180px, calc(100% - 48px));
    --text-width: 720px;
    --header-height: 88px;

    --section-space: clamp(80px, 10vw, 100px);
    --small-space: clamp(48px, 7vw, 90px);
}

/* =========================================================
   NORMALISATION
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    color: var(--color-ink);
    background-color: var(--color-paper);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
}

/*
 * L’image de fond et le voile blanc sont séparés du contenu.
 * Les textes et les photographies restent donc entièrement opaques.
 */

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    z-index: -2;
    background:
        url("../img/cover.jpg")
        center center / cover
        no-repeat;
}

body::after {
    z-index: -1;
    background: rgba(247, 244, 238, 0.842);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.08;
}

h1 {
    max-width: 850px;
    margin-bottom: 26px;
    font-size: clamp(3rem, 6vw, 6.3rem);
    letter-spacing: -0.045em;
}



h2 {
    margin-bottom: 26px;
    font-size: clamp(2.4rem, 4.5vw, 4.7rem);
    letter-spacing: -0.035em;
}




h3 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

p {
    margin-bottom: 1.25em;
}

::selection {
    color: #fff;
    background: var(--color-violet);
}

#titre-principal {
    max-width: 900px;
    font-size: clamp(3rem, 4.2vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

#sous-titre {
    max-width: 650px;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 16px;
    color: #fff;
    background: var(--color-ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-violet);
    outline-offset: 4px;
}

/* =========================================================
   ÉLÉMENTS COMMUNS
   ========================================================= */

.page-width {
    width: var(--page-width);
    margin-right: auto;
    margin-left: auto;
}

.section {
    padding:
        var(--section-space)
        max(24px, calc((100vw - 1180px) / 2));
}


.section--white {
    background: rgba(255, 253, 249, 0.96);
}

.section--stone {
    background: rgba(232, 225, 214, 0.96);
}

.section--dark {
    color: #fff;
    background: var(--color-ink);
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--color-violet);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    align-items: center;
}

.section--dark .eyebrow {
    color: #cfbd96;
}

.lead {
    max-width: var(--text-width);
    color: var(--color-muted);
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.45;
}

.section-heading {
    max-width: 100%;
    margin-bottom: clamp(44px, 7vw, 80px);
}

.section-heading > p:last-child {
    max-width: var(--text-width);
    color: var(--color-muted);
    font-size: 1.08rem;
}

/* =========================================================
   BOUTONS ET LIENS
   ========================================================= */

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 12px 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-ink);
    color: #fff;
    background: var(--color-ink);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.button:hover {
    border-color: var(--color-violet);
    background: var(--color-violet);
    transform: translateY(-2px);
}

.button--small {
    min-height: 44px;
    padding: 8px 18px;
}

.button--light {
    border-color: #fff;
    color: var(--color-ink);
    background: #fff;
}

.button--light:hover {
    border-color: var(--color-stone);
    color: var(--color-ink);
    background: var(--color-stone);
}

.button--outline {
    color: var(--color-ink);
    background: transparent;
}

.button--outline:hover {
    color: #fff;
}

.text-link {
    display: inline-flex;
    padding-bottom: 4px;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

/* =========================================================
   EN-TÊTE ET MENU
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--color-line);
    background: rgba(247, 244, 238, 0.95);
    backdrop-filter: blur(14px);
}

.navigation {
    width: var(--page-width);
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    gap: 26px;
    align-items: center;
}

.brand {
    display: flex;
    margin-right: auto;
    gap: 13px;
    align-items: center;
    line-height: 1.2;
    text-decoration: none;
}

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.brand__text {
    display: grid;
    gap: 3px;
}

.brand strong {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 400;
}

.brand small {
    color: var(--color-muted);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.menu {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
    list-style: none;
}

.menu a {
    position: relative;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}

.menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--color-violet);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu a[aria-current="page"] {
    color: var(--color-violet);
}

.menu-toggle {
    display: none;
}

/* =========================================================
   ACCUEIL — GRANDE INTRODUCTION
   ========================================================= */

.home-hero {
    width: var(--page-width);
    margin: 0 auto;
    padding: clamp(48px, 7vw, 80px) 0;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(45px, 7vw, 110px);
    align-items: top;
}

.home-hero__image {
    position: relative;
    min-height: 660px;
    align-self: stretch;
}

.home-hero__image::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 45%;
    height: 35%;
    border-top: 1px solid var(--color-gold);
    border-right: 1px solid var(--color-gold);
}

.home-hero__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}

.home-hero__content {
    position: relative;
}

.home-hero__subtitle {
    color: var(--color-muted);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.home-hero__domains {
    margin-bottom: 28px;
    color: var(--color-violet);
    font-weight: 600;
}

.home-hero__actions {
    margin: 34px 0 44px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.question-list {
    margin: 0;
    padding: 22px 0 0;
    display: grid;
    gap: 5px;
    border-top: 1px solid var(--color-line);
    color: #0e0e0d;
    font-size: 14px;
    font-weight: 500;
    list-style: none;
}

.question-list li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--color-violet);
    vertical-align: 2px;
}

/* =========================================================
   EN-TÊTE DES PAGES INTÉRIEURES
   ========================================================= */

.page-hero {
    width: var(--page-width);
    margin: 0 auto;
    padding: clamp(48px, 7vw, 80px) 0;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(45px, 7vw, 110px);
    align-items: top;
}

.page-hero__image {
    height: min(70vh, 720px);
    min-height: 560px;
}

.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__image--portrait img {
    object-position: 50% 35%;
}

.page-hero__image--architecture img {
    object-position: center;
}

.page-hero__content {
    max-width: 610px;
}

.page-hero__content > p:not(.eyebrow):not(.lead) {
    color: var(--color-muted);
}

/* =========================================================
   CONTENU TEXTUEL
   ========================================================= */

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(50px, 9vw, 130px);
    align-items: start;
}

.rich-text {
    max-width: var(--text-width);
}

.rich-text h2 {
    margin-top: 1.2em;
}

.rich-text h3 {
    margin-top: 1.7em;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
}

.rich-text p,
.rich-text li {
    color: var(--color-muted);
}

.rich-text strong {
    color: var(--color-ink);
}

.content-aside {
    position: sticky;
    top: calc(var(--header-height) + 34px);
    padding: 34px;
    border-top: 3px solid var(--color-violet);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 16px 50px var(--color-shadow);
}

.content-aside h2,
.content-aside h3 {
    margin: 0;
    padding: 15px 0;
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
}

.content-aside p {
    color: var(--color-muted);
    font-size: 15px;
}

/* =========================================================
   LISTES DE COMPÉTENCES
   ========================================================= */

.service-list {
    margin: 32px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--color-line);
    background: var(--color-line);
    list-style: none;
}

.service-list li {
    position: relative;
    min-height: 70px;
    padding: 20px 22px 20px 50px;
    color: var(--color-ink);
    background: rgba(255, 253, 249, 0.97);
}

.service-list li::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 24px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-violet);
}

/* =========================================================
   POURQUOI ME FAIRE CONFIANCE
   ========================================================= */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
}

.trust-card {
    min-height: 220px;
    padding: clamp(28px, 4vw, 46px);
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    background: rgba(255, 253, 249, 0.92);
}

.trust-card__number {
    display: block;
    margin-bottom: 32px;
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 20px;
}

.trust-card h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================================
   ÉTAPES DU DOSSIER
   ========================================================= */

.steps {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    list-style: none;
    counter-reset: step;
}

.steps li {
    position: relative;
    padding: 60px 22px 25px 0;
    border-top: 1px solid var(--color-line);
    counter-increment: step;
}

.steps li::before {
    content: "0" counter(step);
    position: absolute;
    top: 18px;
    color: var(--color-violet);
    font-family: var(--font-serif);
    font-size: 18px;
}

.steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: -1px;
    right: 16px;
    left: 0;
    height: 1px;
    background: var(--color-violet);
    transform: scaleX(0.35);
    transform-origin: left;
}

.steps strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

/* =========================================================
   HONORAIRES
   ========================================================= */

.fees-introduction {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.fees-grid {
    margin-top: clamp(50px, 8vw, 90px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.fee-card {
    padding: clamp(36px, 6vw, 70px);
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 18px 60px var(--color-shadow);
}

.fee-card h2 {
    font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.fee-card p {
    color: var(--color-muted);
}

.price {
    margin: 28px 0;
    color: var(--color-violet);
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-size: clamp();
    line-height: 1.15;
}

.price small {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-family: var(--font-sans);
    font-size: 13px;
}

/* =========================================================
   APPEL À L’ACTION
   ========================================================= */

.call-to-action {
    padding:
        clamp(70px, 9vw, 120px)
        max(24px, calc((100vw - 1180px) / 2));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    color: #fff;
    background: var(--color-ink);
}

.call-to-action h2 {
    max-width: 800px;
    margin-bottom: 14px;
}

.call-to-action p {
    max-width: 700px;
    margin-bottom: 0;
    color: #d6d2ca;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-hero {
    width: var(--page-width);
    min-height: 680px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 80px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.contact-hero__image {
    min-width: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(232, 225, 214, 0.97);
}


.contact-hero__image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
}

.contact-hero__content {
    position: relative;
}

.contact-hero__content > p {
    color: var(--color-muted);
}

/* =========================================================
   COORDONNÉES
   ========================================================= */

.contact-details {
    margin: 38px 0;
    padding: 12px 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.contact-details div {
    padding: 16px 0;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.contact-details dt {
    color: var(--color-muted);
}

.contact-details dd {
    min-width: 0;
    margin: 0;
    font-weight: 600;
    text-align: right;
    overflow-wrap: anywhere;
}

.contact-details a {
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-details a:hover {
    color: var(--color-violet);
}

/* =========================================================
   CARTE ET FORMULAIRE
   ========================================================= */

.contact-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: clamp(50px, 8vw, 110px);
}

.contact-grid > * {
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

/* Carte Google Maps */

.contact-grid iframe {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 450px;
    border: 0;
}

/* Formulaire */

.contact-form {
    position: relative;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: clamp(32px, 5vw, 60px);
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 18px 60px var(--color-shadow);
    box-sizing: border-box;
}

.form-row {
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 22px;
}

.form-field {
    min-width: 0;
    width: 100%;
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    display: block;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 0;
    color: var(--color-ink);
    background: #fff;
    box-sizing: border-box;
}

.form-field input {
    min-height: 50px;
    padding: 10px 14px;
}

.form-field textarea {
    min-height: 170px;
    padding: 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-violet);
}

.form-note {
    color: var(--color-muted);
    font-size: 12px;
}

/* Emplacement temporaire de la carte */

.map-placeholder {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    padding: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-line);
    color: var(--color-muted);
    background: var(--color-stone);
    text-align: center;
    box-sizing: border-box;
}

/* =========================================================
   CONTACT — TABLETTES
   ========================================================= */

@media (max-width: 900px) {
    .contact-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-hero__image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .contact-hero__content {
        max-width: none;
        padding: 72px 36px;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }

    .contact-grid iframe {
        width: 100% !important;
        height: 420px;
    }
}

/* =========================================================
   CONTACT — GSM
   ========================================================= */

@media (max-width: 600px) {
    .contact-hero {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-hero__image {
        width: 100%;
        max-width: 100%;
    }

    .contact-hero__image img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        object-fit: contain;
    }

    .contact-hero__content {
        width: 100%;
        max-width: 100%;
        padding: 64px 20px;
    }

    .contact-details div {
        flex-direction: column;
        gap: 2px;
    }

    .contact-details dd {
        text-align: left;
    }

    .contact-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .contact-grid > div,
    .contact-form {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .contact-grid iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 360px;
    }

    .contact-form {
        padding: 28px 18px;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .map-placeholder {
        min-height: 340px;
        padding: 24px 18px;
    }
}


/* =========================================================
   PIED DE PAGE
   ========================================================= */

.site-footer {
    padding:
        48px
        max(24px, calc((100vw - 1180px) / 2));
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: center;
    color: #fff;
    background: var(--color-dark);
    font-size: 13px;
}

.site-footer strong {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
}

.site-footer p {
    margin: 3px 0 0;
    color: #aaa69f;
}

.footer-menu {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
    list-style: none;
}

.footer-menu a {
    text-decoration: none;
}

.footer-menu a:hover {
    text-decoration: underline;
}

/* =========================================================
   TABLETTES
   ========================================================= */

@media (max-width: 1100px) {
    .header-button {
        display: none;
    }

    .menu {
        gap: 15px;
    }

    .menu a {
        font-size: 12px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 0;
    }
}

@media (max-width: 900px) {
    :root {
        --page-width: min(760px, calc(100% - 36px));
    }

    .menu-toggle {
        display: flex;
        padding: 10px 0;
        gap: 10px;
        align-items: center;
        border: 0;
        background: transparent;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

    .menu-toggle__icon,
    .menu-toggle__icon::before {
        display: block;
        width: 21px;
        height: 1px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .menu-toggle__icon {
        position: relative;
    }

    .menu-toggle__icon::before {
        content: "";
        position: absolute;
        top: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon {
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
        top: 0;
        transform: rotate(90deg);
    }

    .menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        padding:
            28px
            max(18px, calc((100vw - 760px) / 2));
        gap: 18px;
        align-items: stretch;
        flex-direction: column;
        border-bottom: 1px solid var(--color-line);
        background: var(--color-paper);
        box-shadow: 0 18px 40px var(--color-shadow);
    }

    .menu--open {
        display: flex;
    }

    .menu a {
        display: block;
        font-size: 15px;
    }

    .home-hero,
    .page-hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .home-hero__content,
    .page-hero__content {
        grid-row: 1;
    }

    .home-hero__image,
    .page-hero__image {
        min-height: 680px;
        grid-row: 2;
    }

    .content-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-aside {
        position: static;
        max-width: 600px;
    }

    .fees-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        grid-template-columns: 1fr;
    }

    .contact-hero__image img {
        min-height: 650px;
        max-height: 760px;
    }

    .call-to-action {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer {
        grid-template-columns: 1fr auto;
    }

    .site-footer > p {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   MOBILES
   ========================================================= */

@media (max-width: 600px) {
    :root {
        --page-width: calc(100% - 28px);
        --header-height: 74px;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand small {
        display: none;
    }

    .section {
        padding: 82px 20px;
    }

    .home-hero,
    .page-hero {
        padding-top: 36px;
    }

    .home-hero__image,
    .page-hero__image {
        min-height: 540px;
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        min-height: auto;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .steps li {
        padding-left: 55px;
    }

    .steps li::before {
        left: 0;
    }

    .steps li::after {
        display: none;
    }

    .contact-hero__image img {
        min-height: 560px;
    }

    .contact-hero__content {
        padding: 72px 24px;
    }

    .contact-details div {
        flex-direction: column;
        gap: 2px;
    }

    .contact-details dd {
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 30px 22px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer > p {
        grid-column: auto;
    }

    .footer-menu {
        flex-wrap: wrap;
    }
}

/* =========================================================
   RÉDUCTION DES ANIMATIONS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}