:root {
    --paper: #f8f5ef;
    --ink: #121212;
    --muted: #5f5a53;
    --night: #071421;
    --gold: #9b793f;
    --border: #e8dfd3
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    padding-top: 70px;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
}

body:not(.dpe-improve-page) {
    background: var(--paper);
}

body.dpe-improve-page {
    background: #d9c3d4;
}
a {
    text-decoration: none;
    color: inherit
}

.header {
    height: 70px;
    padding: 0 3vw;
    display: flex;
    align-items: center;
    gap: 34px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999;
}

.brand img {
    width: 82px;
    height: auto;
    object-fit: contain;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.nav a {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .085em;
    text-transform: uppercase;
    color: #111;
    white-space: nowrap;
    transform-origin: center;
    transition: transform .22s ease, color .22s ease;
}

.nav a:hover {
    transform: scale(1.10);
    color: var(--gold);
}


/* Menu déroulant DPE dans le header */

.nav-dpe {
    position: relative;

    display: flex;
    align-items: center;
}

.nav-dpe-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.nav-dpe-trigger::after {
    content: "▾";

    position: relative;
    top: -1px;

    font-size: 9px;
    line-height: 1;
}


/* Sous-menu */

.nav-dpe-menu {
    position: absolute;
    z-index: 1500;

    top: calc(100% + 16px);
    left: 50%;

    width: 220px;
    padding: 8px;

    border: 1px solid #e0e1e6;
    border-radius: 11px;

    background: #fff;

    box-shadow:
        0 14px 35px rgba(7, 20, 33, .12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, -8px);

    transition:
        opacity .20s ease,
        visibility .20s ease,
        transform .20s ease;
}


/* Zone invisible entre le texte et le menu
   pour éviter qu'il se ferme quand on descend la souris */

.nav-dpe-menu::before {
    content: "";

    position: absolute;
    left: 0;
    top: -16px;

    width: 100%;
    height: 16px;
}


/* Ouverture */

.nav-dpe:hover .nav-dpe-menu,
.nav-dpe:focus-within .nav-dpe-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0);
}


/* Liens du sous-menu */

.nav-dpe-menu a {
    width: 100%;
    min-height: 40px;
    padding: 0 13px;

    display: flex;
    align-items: center;

    border-radius: 7px;

    color: #171717;

    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;

    letter-spacing: 0;
    text-transform: none;

    transform: none !important;

    transition:
        background .18s ease,
        color .18s ease;
}

.nav-dpe-menu a:hover {
    background: #9da8cc;
    color: #fff;

    transform: none !important;
}


/* Mise en avant du titre DPE au survol */

.nav-dpe:hover .nav-dpe-trigger,
.nav-dpe:focus-within .nav-dpe-trigger {
    color: #9da8cc;
}
.header-cta {
    display: inline-block;
    border: 1px solid var(--night);
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 10px;
    letter-spacing: .09em;
    text-transform: uppercase;
    white-space: nowrap;
    transform-origin: center;
    transition:
        transform .22s ease,
        background .22s ease,
        color .22s ease,
        box-shadow .22s ease;
}

.header-cta:hover {
    transform: scale(1.07);
    background: var(--night);
    color: #fff;
    box-shadow: 0 10px 24px rgba(7, 20, 33, .14);
}

.hero {
    min-height: calc(100vh - 96px);
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .08) 42%, rgba(0, 0, 0, .64) 100%), url("assets/collegiale.png") center/cover no-repeat
}

.hero-text {
    position: absolute;
    left: 5vw;
    bottom: 12vh;
    max-width: 720px;
    color: #fff;
}

.hero-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 0 10px 0
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    margin: 0
}

.hero h1 {
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1.02;
    margin-bottom: 20px;
}
.services-line {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .94)
}

.hero-cta {
    display: inline-block;
    margin-top: 26px;
    background: #fff;
    color: #111;
    border-radius: 999px;
    padding: 14px 25px;
    font-weight: 500;
    font-size: 14px;
    transform-origin: center;
    transition:
        transform .22s ease,
        background .22s ease,
        color .22s ease,
        box-shadow .22s ease;
}

.hero-cta:hover {
    transform: scale(1.07);
    background: var(--ink);
    color: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

.overline {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 600
}

.section-heading .overline {
    font-size: 18px;
}

.intro-logo {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 0 12px;
}

.agency-intro {
    background: #fff;
    min-height: auto;
    padding: 105px 13vw 80px;
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 70px;
    align-items: center;
}

.agency-intro-left {
    padding-top: 48px;
}

.agency-intro-left p {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(27px, 1.9vw, 34px);
    line-height: 1.38;
    text-align: center;
    margin: 0 0 50px;
    color: var(--ink);
}

.agency-intro-btn {
    width: 310px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 auto 16px;
    border-radius: 4px;
    transform-origin: center;
    transition: transform .22s ease;
}

.agency-intro-btn:hover {
    transform: scale(1.06);
}

.agency-intro-btn span {
    font-size: 22px;
    margin-left: 14px;
    line-height: 1;
}

.agency-intro-btn-dark {
    background: var(--ink);
    color: #fff;
}

.agency-intro-btn-light {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--ink);
}

.agency-intro-right p {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(21px, 1.55vw, 28px);
    line-height: 1.40;
    color: var(--ink);
    margin: 0 0 8px;
}

.section-heading h2,
.why-heading h2,
.contact-home h2 {
    font-size: clamp(30px, 3.2vw, 52px);
    line-height: 1.04;
    margin-bottom: 24px;
}

.service-section {
    background: #fff;
    padding: 28px 3vw 62px;
}

.service-section .section-heading {
    text-align: center;
    margin-bottom: 42px;
    position: relative;
}

.section-heading .overline:after {
    content: "";
    display: block;
    width: 120px;
    border-top: 1px solid var(--gold);
    margin: 18px auto 0;
}

.service-cards {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.service-content {
    flex: 1;
    padding: 25px 30px 29px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 36px;
    line-height: 1;
    margin: 0 0 14px;
}

.service-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px;
}

.service-content a {
    width: max-content;
    margin-top: auto;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
}

@media(max-width:700px) {
    .service-section {
        padding: 40px 6vw 48px;
    }

    .service-section .section-heading {
        margin-bottom: 30px;
    }

    .service-card {
        min-height: auto;
    }

    .service-card img {
        height: 210px;
    }

    .service-content h3 {
        font-size: 34px;
    }
}


/* Présentation agence - Accueil */

.home-agency-section {
    width: 100%;
    padding: 72px 7vw 88px;
    background: #fff;
    scroll-margin-top: 95px;
}

.home-agency-title {
    margin: 0 auto 58px;

    color: var(--ink);

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(56px, 4.7vw, 78px);
    line-height: .92;
    font-weight: 500;

    text-align: center;
    text-transform: uppercase;
}

.home-agency-inner {
    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 460px 600px;
    justify-content: center;
    gap: 195px;

    align-items: start;
}

.home-agency-image {
    width: 460px;
    height: 600px;

    overflow: hidden;
    border-radius: 10px;
}

.home-agency-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.home-agency-content {
    width: 600px;

    padding: 3px 0 0;
}

.home-agency-content p {
    width: 100%;

    margin: 0 0 18px;

    color: var(--ink);

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 500;
}

.home-agency-content p:last-child {
    margin-bottom: 0;
}


/* Tablette */

@media(max-width:1000px) {

    .home-agency-section {
        padding: 64px 6vw 72px;
    }

    .home-agency-title {
        margin-bottom: 44px;
        font-size: 64px;
    }

    .home-agency-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .home-agency-image {
        width: 100%;
        max-width: 560px;
        height: 520px;
    }

    .home-agency-content {
        width: 100%;
        padding: 0;
    }

    .home-agency-content p {
        font-size: 22px;
        line-height: 1.4;
    }

}


/* Mobile */

@media(max-width:600px) {

    .home-agency-section {
        padding: 42px 6vw 48px;
    }

    .home-agency-title {
        margin-bottom: 28px;
        font-size: 50px;
    }

    .home-agency-inner {
        gap: 28px;
    }

    .home-agency-image {
        height: 360px;
    }

    .home-agency-content p {
        font-size: 19px;
        line-height: 1.48;
    }

}


/* Bloc territoire - Accueil */

.territory-section {
    background: #fff;
    padding: 58px 7vw 54px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 78px;
    align-items: center;
}

.territory-map-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-24px);
}

.territory-map-svg {
    width: min(100%, 420px);
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 18px rgba(7, 20, 33, .11));
    overflow: visible;
}

.territory-zone {
    fill: transparent;
    stroke: transparent;
    stroke-width: 0;
    vector-effect: non-scaling-stroke;
    cursor: pointer;
    pointer-events: all;
    transition: fill .25s ease, stroke .25s ease;
}

.territory-zone:hover,
.territory-zone:focus,
.territory-zone.is-active {
    fill: rgba(191, 225, 238, .18);
    stroke: transparent;
    stroke-width: 0;
    outline: none;
}

.territory-map-hint {
    margin: 6px 0 0;
    color: rgba(95, 90, 83, .72);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.territory-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.territory-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.territory-legend i {
    display: inline-block;
    flex: 0 0 auto;
}

.legend-zone {
    width: 13px;
    height: 13px;
    background: #d3dde2;
    border: 1px solid rgba(7, 20, 33, .08);
}

.legend-agency {
    width: 12px;
    height: 12px;
    background: #b69a62;
    border: 1px solid var(--night);
    border-radius: 50%;
}

.territory-content {
    max-width: 760px;
    transition: opacity .2s ease;
}

.territory-content .overline {
    font-size: 15px;
    margin-bottom: 18px;
}

.territory-content h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(38px, 3.5vw, 62px);
    line-height: 1.02;
    font-weight: 600;
    color: var(--night);
    margin: 0 0 26px;
}

.territory-content p:not(.overline) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    margin: 0;
    max-width: 690px;
}

.territory-btn {
    display: inline-block;
    margin-top: 32px;
    border: 1px solid var(--night);
    border-radius: 999px;
    padding: 14px 26px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--night);
    background: transparent;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.territory-btn:hover {
    background: var(--night);
    color: #fff;
    transform: translateY(-3px);
}

@media(max-width:900px) {
    .territory-section {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 72px 6vw 78px;
    }

    .territory-content {
        order: 1;
        max-width: none;
    }

    .territory-map-wrap {
        order: 2;
        transform: none;
    }

    .territory-map-svg {
        width: min(100%, 380px);
    }

    .territory-content h2 {
        font-size: clamp(36px, 9vw, 52px);
    }

    .territory-content p:not(.overline) {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media(max-width:700px) {
    .territory-section {
        padding: 60px 6vw 68px;
    }

    .territory-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 12px;
    }

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

.why {
    background: var(--night);
    color: #fff;
    padding: 70px 7vw 40px;
}
.why-heading h2 {
    color: #fff;
    font-size: clamp(38px, 3.7vw, 60px);
    line-height: 1.05;
}
.why-heading {
    max-width: 900px;
    margin-bottom: 35px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px
}

.why-grid article {
    border-top: 1px solid rgba(157, 123, 63, .9);
    padding-top: 30px;
    transition: transform .3s ease;
}

.why-grid article:hover {
    transform: translateY(-5px);
}

.why-grid h3 {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 1.15;
}

.why-grid p {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


.contact-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: var(--paper);
    padding: 50px 7vw;
    border-top: 1px solid var(--border);
}

.contact-home > div {
    max-width: 900px;
}

.contact-home p:not(.overline) {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
    margin: 0;
    max-width: 760px;
}

.contact-btn {
    background: var(--night);
    color: #fff;
    border-radius: 999px;
    padding: 17px 32px;
    font-weight: 500;
    white-space: nowrap;
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .12);
}

@media(max-width:1150px) {
    .nav {
        gap: 14px
    }

    .header-cta {
        display: none
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .header {
        height: auto;
        padding: 18px 5vw;
        flex-wrap: wrap
    }

    .brand img {
        width: 82px;
        height: 82px
    }

    .nav {
        order: 3;
        width: 100%;
        overflow: auto;
        margin-left: 0
    }

    .hero {
        min-height: 720px
    }

    .hero-text {
        left: 5vw;
        right: 5vw;
        bottom: 6vh
    }

    .hero-logo {
        width: 150px
    }

    .agency-intro {
        padding: 70px 6vw 90px;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .agency-intro-left {
        padding-top: 0;
    }

    .agency-intro-left p {
        text-align: left;
        margin-bottom: 40px;
    }

    .agency-intro-right p {
        font-size: 28px;
    }

    .intro-logo {
        width: 160px;
    }

    .service-cards,
    .why-grid {
        grid-template-columns: 1fr
    }

    .contact-home {
        flex-direction: column;
        align-items: flex-start
    }
}

/* Animation des cartes de services */

.service-card {
    transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.service-card:hover img {
    transform: scale(1.03);
}
/* Contact centré premium */

.contact-home {
    text-align: center;
    justify-content: center;
}

.contact-content {
    max-width: 850px;
    margin: 0 auto;
}


.contact-btn {
    display: inline-block;
    margin-top: 35px;
}

/* Ajustement final section contact */

.contact-content p:not(.overline):not(.contact-subtitle) {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    margin-top: 24px;
    padding: 15px 28px;
    font-size: 17px;
}

/* Ajustement précis section contact */

.contact-home .overline {
    font-size: 18px;
}

.contact-subtitle {
    margin: 18px 0 42px;
}

.contact-content p:not(.overline):not(.contact-subtitle) {
    margin-top: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content p:not(.overline):not(.contact-subtitle) {
    margin-top: 30px;
}

.contact-text {
    max-width: 700px;
    margin: 35px auto 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

/* Test sans fond beige */

.contact-home {
    background: #fff;
    padding: 65px 7vw;
    border-top: none;
}

.contact-services {
    margin: 20px 0 30px;
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-home {
    padding-top: 100px;
    padding-bottom: 70px;
}

/* Page Vente / Transaction */

.transaction-hero {
    min-height: calc(100vh - 96px);
    position: relative;
    background-image: url("assets/photovente.png");

    background-size: cover;
    background-repeat: no-repeat;

    background-position: center 64%;
}

.transaction-hero-content {
    position: absolute;
    left: 5vw;
    bottom: 10vh;
    max-width: 620px;
    color: #fff;
}

.rental-hero .transaction-hero-content {
    bottom: 14vh;
}

.transaction-hero-content .overline {
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .20em;
}
.transaction-hero h1,
.rental-hero h1 {
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 1;
    margin-bottom: 18px;
}

.transaction-hero p:not(.overline),
.rental-hero p:not(.overline) {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    margin: 0;
}
.transaction-intro {
    background: #fff;
    padding: 50px 7vw;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.transaction-intro h2,
.property-types h2,
.timeline-heading h2 {
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.05;
    margin-bottom: 28px;
}

.intro-rent-btn {
    display: inline-block;
    margin-top: 18px;
    background: var(--ink);
    color: #fff;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: transform .3s ease, box-shadow .3s ease;
}

.intro-rent-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .12);
}

.transaction-intro-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

/* Frise interactive vente */

.sale-timeline {
    background: #fff;
    padding: 55px 7vw 35px;
    position: relative;
    overflow: hidden;
}

.timeline-heading {
    text-align: center;
    margin-bottom: 45px;
}

.timeline-heading .overline {
    font-size: 18px;
}

.timeline-heading .overline:after {
    content: "";
    display: block;
    width: 90px;
    border-top: 1px solid var(--gold);
    margin: 18px auto 0;
}

.timeline-heading h2 {
    line-height: 1.05;
    max-width: none;
    white-space: nowrap;
    margin: 0 auto;
}

.timeline-wrapper {
    --line-y: 105px;
    position: relative;
    max-width: 1450px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.timeline-bg-number {
    position: absolute;
    right: 20px;
    top: -135px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 240px;
    line-height: 1;
    color: rgba(0, 0, 0, .028);
    pointer-events: none;
    z-index: 0;
    transition: opacity .35s ease;
}

.timeline-nav {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 20px;
    padding-bottom: 55px;

    padding-left: 180px;
    padding-right: 180px;

    z-index: 2;
}

.timeline-nav::before,
.timeline-nav::after {
    content: "";
    position: absolute;
    top: var(--line-y);
    height: 0;
    border-top: 1.4px solid var(--ink);
    z-index: 1;
    transition: width .55s ease, left .55s ease, right .55s ease;
}

.timeline-nav::before {
    left: 0;
    width: var(--line-left, 0px);
}

.timeline-nav::after {
    left: var(--line-right, 0px);
    right: 0;
}

.timeline-item {
    border: none;
    background: transparent;
    padding: 0;
    text-align: center;
    cursor: pointer;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    position: relative;
    z-index: 8;
}

.timeline-item span {
    min-height: 34px;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 10px;

    position: relative;
    top: -10px;
}

.timeline-item i {
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    margin: 0 auto;
    background: #fff;
    transform: translateY(22.5px);
}

.timeline-item.active i {
    opacity: 0;
}

.timeline-wave {
    position: absolute;
    top: calc(var(--line-y) - 89.4px);
    left: 0;
    width: 520px;
    height: 120px;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    transition: none;
    background: transparent;
}

.timeline-wave::before {
    content: "";
    position: absolute;
    inset: 0;
background: url("data:image/svg+xml,%3Csvg viewBox='0 0 520 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 90 H200 C220 90 228 76 242 68 C250 60 270 60 278 68 C292 76 300 90 320 90 H525' fill='none' stroke='%23121212' stroke-width='0.9' stroke-linecap='butt'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.timeline-wave::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 39px;
    width: 10px;
    height: 10px;
    background: var(--ink);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-active-dot {
    position: absolute;
    left: 0;
    top: calc(var(--line-y) + 2px);
    width: 24px;
    height: 24px;
    font-size: 12px;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 7;
    transform: translate(-50%, -50%);
    transition: none;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

.timeline-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 55px auto 0;
    text-align: center;
}

.timeline-content p {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

/* FRise vente — version mobile uniquement */
@media (max-width: 900px) {

    .sale-timeline {
    padding: 26px 0 24px;
        overflow: hidden;
    }

        .timeline-heading {
        padding: 0 20px;
        margin-bottom: 42px;
        text-align: center;
    }

    .timeline-heading .overline {
        font-size: 13px;
        letter-spacing: .24em;
        text-align: center;
    }

    .timeline-heading .overline::after {
        margin-right: auto;
        margin-left: auto;
    }

    .timeline-heading h2 {
        max-width: 315px;
        margin: 0 auto;
        white-space: normal;
        font-size: 30px;
        line-height: 1.08;
        text-align: center;
    }

    .timeline-wrapper {
        --mobile-line-y: 102px;

        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 0 18px;
        overflow: hidden;
    }

    /* Grand numéro pâle à gauche */
    .timeline-bg-number {
        display: block;
        top: 65px;
        right: auto;
        left: 15px;
        z-index: 0;
        font-size: 112px;
        line-height: 1;
        color: rgba(18, 18, 18, .035);
        pointer-events: none;
    }

    /* Les étapes forment désormais une ligne coulissante */
    .timeline-nav {
        position: relative;
        display: flex;
        grid-template-columns: none;
        align-items: flex-end;
        width: 200% !important;
        gap: 0;
        padding: 0 0 56px;
        z-index: 3;
        transition: transform .55s cubic-bezier(.65, 0, .2, 1);
        will-change: transform;
    }

    .timeline-nav::before,
    .timeline-nav::after {
        display: none;
    }

        .timeline-item {
        flex: 0 0 calc(100% / 6) !important;
        width: calc(100% / 6) !important;
        min-width: 0 !important;
        padding: 0 6px;
        border: 0;
        box-sizing: border-box;
        color: #171717;
        text-align: center;
        opacity: 1;
        overflow: hidden;
        transition: opacity .35s ease;
    }

    .timeline-item.active {
        color: #171717;
        opacity: 1;
    }

    .timeline-item span {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin: 0 0 18px;
    top: auto;
    color: #111;
    -webkit-text-fill-color: #111;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: normal;
    overflow: hidden;
    overflow-wrap: normal;
}

    .timeline-item i {
        display: block;
        width: 9px;
        height: 9px;
        margin: 0 auto;
        border: 1px solid #111;
        border-radius: 50%;
        background: #fff;
        transform: none;
    }

    .timeline-item.active i {
        opacity: 0;
    }

       /* Suppression de la ligne séparée pour éviter la double ligne */
    .timeline-wrapper::before {
        content: none !important;
        display: none !important;
    }

    /* Ligne et vague réunies dans un seul dessin */
    .timeline-wave {
        display: block !important;
        position: absolute !important;
        top: 68px !important;
        left: 0 !important;
        width: 100% !important;
        height: 55px !important;
        z-index: 2;
        transform: none !important;
        transition: none !important;

        border: 0 !important;
        box-shadow: none !important;
        filter: none !important;

        background-color: transparent !important;
        background-repeat: no-repeat !important;
        background-position: center bottom !important;
        background-size: 100% 100% !important;

       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 55' preserveAspectRatio='none'%3E%3Cpath d='M0 54 H92 C118 54 132 18 160 18 C188 18 202 54 228 54 H320' fill='none' stroke='%231c1c1c' stroke-width='1.15' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") !important;
    }

    /* Suppression définitive de l’ancien élément gris */
    .timeline-wave::before {
        content: none !important;
        display: none !important;
    }

    /* Petit point noir au sommet */
    .timeline-wave::after {
        content: "";
        display: block !important;
        position: absolute;
        top: 14px;
        left: 50%;
        width: 10px;
        height: 10px;
        border: 0 !important;
        border-radius: 50%;
        background: #171717;
        transform: translateX(-50%);
    }

    /* Rond numéroté avec une coupure blanche de chaque côté */
    .timeline-active-dot {
        display: flex !important;
        position: absolute !important;
        top: 123px !important;
        left: 50% !important;
        width: 38px;
        height: 38px;
        z-index: 5;
        align-items: center;
        justify-content: center;

        border: 5px solid #fff !important;
        border-radius: 50%;
        box-sizing: content-box;

        background: #171717;
        transform: translate(-50%, -50%) !important;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .13);
        transition: none !important;
    }

    .timeline-active-dot span {
        font-size: 14px;
    }

    /* Un seul texte est affiché sous la frise */
        .timeline-content {
        position: relative;
        z-index: 2;
        min-height: 0;
        margin: 88px auto 0;
        padding: 0 30px;
        text-align: center;
    }

    .timeline-content p {
        margin: 0 auto;
        max-width: 310px;
        font-size: 15px;
        line-height: 1.65;
        transition:
            opacity .22s ease,
            transform .22s ease;
    }

    .timeline-content p.timeline-text-changing {
        opacity: 0;
        transform: translateY(8px);
    }
}

.sale-value {
    width: 100%;
    background: #fff;
    padding: 70px 7vw 80px;
    position: relative;
}

.sale-value-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.sale-value-inner > h2 {
    max-width: 1000px;
    margin: 0 auto 12px;
    font-size: clamp(40px, 3.4vw, 57px);
    line-height: 1;
    font-weight: 500;
}

.sale-value-intro,
.sale-value-part {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.sale-value-intro {
    margin-bottom: 36px;
}

.sale-value-part {
    padding-top: 48px;
}

.sale-value-intro h3,
.sale-value-part h3 {
    margin: 0 0 18px;
    font-size: clamp(22px, 1.5vw, 26px);
    line-height: 1.1;
    font-weight: 500;
}

.sale-value-intro p,
.sale-value-part p {
    max-width: 1000px;
    margin: 0 auto;
    color: #292929;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

/* Texte court masqué sur ordinateur */
.sale-text-mobile {
    display: none;
}

/* Le texte mobile est masqué sur ordinateur */
.sale-text-mobile {
    display: none;
}

.sale-value::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    height: 1px;
    background: var(--border);
}

.sale-value-content {
    max-width: 520px;
    padding-top: 8px;
    margin-top: 0;
}

.sale-value-content .overline {
    font-size: 17px;
}

.sale-value-content .overline:after {
    content: "";
    display: block;
    width: 120px;
    border-top: 1px solid var(--gold);
    margin: 18px 0 0;
}

.sale-value-content h2 {
    font-size: clamp(30px, 2.5vw, 42px);
    line-height: 1.05;
    margin-bottom: 28px;
}

.sale-value-content > p:not(.overline) {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
    max-width: 560px;
}

.sale-value-btn {
    display: inline-block;
    margin-top: 34px;
    background: var(--ink);
    color: #fff;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: transform .3s ease, box-shadow .3s ease;
}

.sale-value-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .12);
}

.sale-value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 0;
}

.sale-value-list article {
    background: #f7f7f5;
    border: 1px solid rgba(232, 223, 211, .85);
    border-radius: 16px;
    padding: 22px 24px;
    min-height: 160px;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.sale-value-list article:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .07);
}

.sale-value-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #edf5f8;
    border: 1px solid rgba(7, 20, 33, .06);
    border-radius: 11px;
    font-size: 0;
    margin-bottom: 22px;
    position: relative;
    box-shadow: 0 8px 18px rgba(7, 20, 33, .045);
}

.sale-value-list span::before {
    content: "";
    width: 23px;
    height: 23px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(15%) sepia(22%) saturate(1300%) hue-rotate(166deg) brightness(90%) contrast(94%);
    opacity: .95;
}

.sale-value-list article:nth-child(1) span::before {
    background-image: url("assets/icon-photo.png");
}

.sale-value-list article:nth-child(2) span::before {
    background-image: url("assets/icon-3d.png");
}

.sale-value-list article:nth-child(3) span::before {
    background-image: url("assets/icon-energie.png");
}

.sale-value-list article:nth-child(4) span::before {
    width: 27px;
    height: 27px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 3h8l4 4v14H6V3z' stroke='%2317324a' stroke-width='1.35' stroke-linejoin='round'/%3E%3Cpath d='M14 3v5h4' stroke='%2317324a' stroke-width='1.35' stroke-linejoin='round'/%3E%3Cpath d='M9 12h6M9 15h6M9 18h4' stroke='%2317324a' stroke-width='1.35' stroke-linecap='round'/%3E%3C/svg%3E");
    filter: none;
    opacity: .92;
}

.sale-value-list h3 {
    font-size: 22px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.sale-value-list p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

@media(max-width:1100px) {
    .sale-value {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sale-value-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================================================
   BLOC VENTE INSPIRÉ DE KRETZ — MOBILE UNIQUEMENT
   ================================================== */

@media (max-width: 700px) {

    .sale-value {
        width: 100%;
        padding: 0;
        background: #fff;
    }

    /* Suppression de l’ancienne ligne décorative */
    .sale-value::before {
        content: none;
        display: none;
    }

    .sale-value-inner {
        width: 100%;
        max-width: none;
        margin: 0;
    }

        /* Titre général conservé */
    .sale-value-inner > h2 {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 46px 35px 42px;
        box-sizing: border-box;
        color: #171717;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 32px;
        font-weight: 400;
        line-height: 1.08;
        text-align: center;
    }

    /* Chaque prestation devient un panneau indépendant */
    .sale-value-part {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 42px 24px 46px;
        border-top: 1px solid #ececec;
        box-sizing: border-box;
        text-align: center;
    }

    .sale-value-part:last-child {
        border-bottom: 1px solid #ececec;
    }

    /* Grands titres élégants comme chez Kretz */
        .sale-value-part h3 {
        width: 100%;
        max-width: 290px;
        margin: 0 auto 38px;
        color: #353535;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 27px;
        font-weight: 400;
        line-height: 1.12;
        text-align: center;
    }
    /* Paragraphes centrés et plus fins */
           /* Paragraphes centrés et plus fins */
        .sale-value-part p {
        width: 100%;
        max-width: 295px;
        margin: 0 auto;
        color: #0d0d0d;
        font-family: Inter, Arial, sans-serif;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.75;
        text-align: center;
    }

    /* Sur mobile : affichage des versions courtes */
    .sale-text-desktop {
        display: none;
    }

    .sale-text-mobile {
        display: inline;
    }

    /* Sur mobile : texte court uniquement */
    .sale-text-desktop {
        display: none;
    }

    .sale-text-mobile {
        display: inline;
    }
}

.property-expertise {
    background: #fff;
    padding: 40px 7vw 40px;
}

.property-expertise .section-heading {
    max-width: 950px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
}

.property-expertise .section-heading::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 1550px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 90px;
}
.property-expertise .section-heading p:not(.overline) {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.expertise-block {
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 0;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
    scroll-margin-top: 190px;
}

.expertise-block + .expertise-block {
    border-top: 1px solid var(--border);
}
.expertise-block.reverse img {
    order: 2;
}

.expertise-block img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.expertise-block > div {
    max-width: 620px;
}

.expertise-block h3 {
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.expertise-block p:not(.overline) {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media(max-width:1150px) {
    .steps-grid,
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transaction-intro,
    .sale-value-inner {
        grid-template-columns: 1fr;
    }

    .transaction-intro-image img {
        height: 520px;
    }

    .sale-value-image,
    .sale-value-image img {
        min-height: 520px;
    }
}

@media(max-width:900px) {

    .transaction-hero {
        min-height: 680px;
    }

    .transaction-hero-content,
    .rental-hero .transaction-hero-content {
        left: 24px;
        right: 24px;
        width: auto;
        max-width: none;
    }

    /* Bloc Notre approche */

    .transaction-intro {
    padding: 44px 6vw 22px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .transaction-intro-text {
        width: 100%;
    }

    .transaction-intro h2 {
        margin: 0 0 24px;
        font-size: 32px;
        line-height: 1.08;
    }

    .transaction-intro-text p:not(.overline) {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.55;
    }

    .transaction-intro-text p:last-child {
        margin-bottom: 0;
    }

    .transaction-intro-image {
        width: 100%;
        overflow: hidden;
    }

    .transaction-intro-image img {
        width: 100%;
        height: 300px;
        display: block;
        object-fit: cover;
        object-position: center 45%;
    }

        /* Expertise : une carte distincte par type de bien */

    .property-expertise {
        padding: 32px 20px 60px;
    }

    .property-expertise .section-heading {
        margin-bottom: 38px;
        padding: 0 6px;
    }
    
    .property-expertise .section-heading .overline {
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: .24em;
}

    .property-expertise .section-heading::before {
        margin-bottom: 48px;
    }

    .property-expertise .section-heading p:not(.overline) {
        font-size: 15px;
        line-height: 1.65;
    }

    .expertise-block,
    .expertise-block.reverse {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        margin: 0 auto 24px;
        padding: 0;
        overflow: hidden;
        border: 1px solid rgba(167, 126, 55, .14);
        border-radius: 14px;
        background: #f8f5f0;
    }

    .expertise-block + .expertise-block {
        border-top: 1px solid rgba(167, 126, 55, .14);
    }

    /* L’image reste toujours au-dessus du texte */
    .expertise-block img,
    .expertise-block.reverse img {
        order: 0;
        width: 100%;
        height: 230px;
        object-fit: cover;
        display: block;
    }

    /* Texte directement rattaché à son image */
    .expertise-block > div {
        order: 1;
        width: 100%;
        max-width: none;
        padding: 26px 24px 30px;
        box-sizing: border-box;
    }

    .expertise-block .overline {
        margin-bottom: 14px;
        font-size: 12px;
        line-height: 1.35;
        letter-spacing: .22em;
    }

    .expertise-block h3 {
        margin: 0 0 16px;
        font-size: 28px;
        line-height: 1.08;
    }

    .expertise-block p:not(.overline) {
        margin: 0;
        font-size: 15px;
        line-height: 1.65;
    }

    .expertise-block:last-child {
        margin-bottom: 0;
    }

}

    

/* FAQ - Page Vente */

.sale-faq {
    background: var(--paper);
    padding: 46px 7vw 34px;
}

.rental-faq {
    background: #fff;
}

.sale-faq-inner {
    max-width: 1130px;
    margin: 0 auto;
}

.sale-faq-heading {
    text-align: center;
    margin: 0 auto 32px;
}

.sale-faq-heading > p {
    margin: 0 0 10px;
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
}

.sale-faq-heading h2 {
    margin: 0;
    color: rgba(18, 18, 18, .68);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.08;
}

.sale-faq-list {
    border-top: 1px solid rgba(18, 18, 18, .16);
}

.sale-faq-item {
    border-bottom: 1px solid rgba(18, 18, 18, .16);
}

.sale-faq-item summary {
    min-height: 60px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    list-style: none;
    cursor: pointer;
}

.sale-faq-item summary::-webkit-details-marker {
    display: none;
}

.sale-faq-item summary span {
    color: rgba(18, 18, 18, .82);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.sale-faq-item summary em {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    transition: transform .25s ease;
}

.sale-faq-item[open]:not(.is-closing) summary em {
    transform: rotate(180deg);
}

.sale-faq-item > p {
    max-width: 900px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    margin: -2px 14px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    transition:
        max-height .36s ease,
        opacity .24s ease,
        transform .24s ease,
        margin .24s ease;
}

.sale-faq-item[open]:not(.is-closing) > p {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    margin: -2px 14px 20px;
}

.sale-faq-item.is-closing > p {
    max-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    margin: -2px 14px 0;
}

.sale-faq-item summary:hover span {
    color: var(--gold);
}

@media(max-width:700px) {
    .sale-faq {
        padding: 42px 6vw 30px;
    }

    .sale-faq-heading {
        margin-bottom: 28px;
    }

    .sale-faq-heading > p {
        font-size: 44px;
    }

    .sale-faq-heading h2 {
        font-size: 30px;
    }

    .sale-faq-item summary {
        min-height: 62px;
        padding: 0 2px;
        gap: 16px;
    }

    .sale-faq-item summary span {
        font-size: 21px;
    }

    .sale-faq-item > p {
    margin: 0 2px 0;
    font-size: 14px;
}

.sale-faq-item[open]:not(.is-closing) > p {
    max-height: 300px;
    margin: 0 2px 20px;
}

.sale-faq-item.is-closing > p {
    margin: 0 2px 0;
}
}

/* Bloc contact et partenaires séparés */

.contact-home {
    background: #fff !important;
    padding: 38px 7vw 50px !important;
    border-top: none !important;
}

.partners-inline {
    margin: 0;
    padding: 0 7vw 34px;
    background: #fff;
    text-align: center;
}
.partners-inline .overline,
.contact-home .overline {
    font-size: 13px !important;
    margin-bottom: 16px !important;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.partners-inline .overline::after,
.contact-home .overline::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .35;
    transition: all .3s ease;
}

.partner-logo img.active-logo {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

.partner-logo:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.08);
}

/* Page Contact */

.contact-page {
    background: #fff;
    min-height: calc(100vh - 96px);
    padding: 30px 13vw 70px;
}


.contact-page-logo {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto 12px;
}

.contact-page-title {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto 55px;
}

.contact-page-title h1 {
    font-size: clamp(30px, 2.6vw, 50px);
    line-height: 1.15;
    font-weight: 500;
    margin: 0 auto;
    white-space: nowrap;
}

.contact-actions {
    max-width: 1300px;
    margin: 0 auto 30px;
    border-top: 1px solid var(--border);
}

.contact-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    transition: background .25s ease, padding .25s ease;
}

.contact-action span {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(26px, 2.3vw, 40px);
    line-height: 1;
}

.contact-action em {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 22px;
    transition: transform .25s ease, border-color .25s ease;
}

.contact-action:hover {
    background: var(--paper);
    padding-left: 38px;
}

.contact-action:hover em {
    transform: translateX(6px);
    border-color: var(--gold);
}

.contact-infos {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
}

.contact-infos > div {
    position: relative;
    padding-left: 38px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.contact-infos > div:first-child {
    padding-left: 0;
}

.contact-infos > div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 1px;
    height: 55px;
    background: var(--border);
}

.contact-infos > div:first-child::before {
    display: none;
}

.contact-infos h2 {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 20px;
}

.contact-infos p,
.contact-infos a {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.3;
}

.social-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.social-links a {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
}

@media(max-width:900px) {
    .contact-page {
        padding: 55px 6vw 60px;
    }

    .contact-page-title {
        margin-bottom: 50px;
    }

    .contact-page-logo {
        width: 130px;
    }

    .contact-action {
        padding: 26px 0;
    }

    .contact-action:hover {
        padding-left: 0;
    }

    .contact-action em {
        width: 48px;
        height: 48px;
        font-size: 24px;
        flex-shrink: 0;
    }

    .contact-infos {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-infos > div,
    .contact-infos > div:first-child {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 28px;
    }
}

/* Page Plan du site */

.sitemap-page {
    background: #fff;
    padding: 82px 7vw 96px;
    min-height: calc(100vh - 70px);
}

.sitemap-heading {
    max-width: 980px;
    margin: 0 auto 58px;
    text-align: center;
}

.sitemap-heading .overline {
    margin-bottom: 16px;
}

.sitemap-heading .overline::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    background: var(--gold);
    margin: 14px auto 0;
}

.sitemap-heading h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(48px, 5vw, 82px);
    line-height: .98;
    font-weight: 600;
    color: var(--night);
    margin: 0 0 24px;
}

.sitemap-heading p:not(.overline) {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.sitemap-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.sitemap-card {
    background: #f8f5ef;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px 38px 30px;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.sitemap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(7, 20, 33, .07);
    border-color: rgba(155, 121, 63, .25);
}

.sitemap-card h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 2.1vw, 38px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--night);
    margin: 0 0 26px;
}

.sitemap-card a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-top: 1px solid rgba(7, 20, 33, .10);
    color: var(--night);
    transition: padding .25s ease, color .25s ease;
}

.sitemap-card a:last-child {
    border-bottom: 1px solid rgba(7, 20, 33, .10);
}

.sitemap-card a:hover {
    padding-left: 12px;
    color: var(--gold);
}

.sitemap-card span {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.sitemap-card em {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(7, 20, 33, .18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-style: normal;
    font-size: 18px;
    transition: transform .25s ease, border-color .25s ease;
}

.sitemap-card a:hover em {
    transform: translateX(5px);
    border-color: var(--gold);
}

@media(max-width:900px) {
    .sitemap-page {
        padding: 64px 6vw 76px;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sitemap-card {
        padding: 30px 26px;
        border-radius: 20px;
    }

    .sitemap-heading h1 {
        font-size: 52px;
    }

    .sitemap-heading p:not(.overline) {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* Footer global */

.site-footer {
    background: #1c1c1a;
    color: #fff;
    text-align: center;
    padding: 42px 7vw 24px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-typo {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    filter: brightness(0) invert(1);
}

.footer-logo-rond {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 28px;
}

.footer-intro {
    max-width: 780px;
    margin: 0 auto 32px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.55;
    color: rgba(255, 255, 255, .92);
}

.footer-grid {
    max-width: 1050px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 55px;
    text-align: left;
}

.footer-grid h3 {
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 16px;
    color: #fff;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 3px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    margin: 0;
}

.footer-copy {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
}

@media(max-width:900px) {
    .site-footer {
        padding: 55px 6vw 28px;
    }

    .footer-logo-typo {
        width: 130px;
        margin-bottom: 18px;
    }

    .footer-logo-rond {
        width: 80px;
        margin-bottom: 34px;
    }

    .footer-intro {
        font-size: 21px;
        margin-bottom: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        margin-bottom: 45px;
    }
}

/* Page Estimation */

.estimate-page {
    background: #fff;
    min-height: calc(100vh - 60px);
    position: relative;
    padding: 0 0 70px;
}

.estimate-progress {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(155, 121, 63, .12);
    z-index: 998;
}

.estimate-progress span {
    display: block;
    height: 100%;
    width: 20%;
    background: var(--gold);
    transition: width .35s ease;
}

.estimate-sidebar {
    position: fixed;
    left: 4vw;
    top: 170px;
    width: 210px;
    z-index: 10;
}

.estimate-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 38px;
}

.estimate-sidebar li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 23px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: rgba(18, 18, 18, .35);
    font-weight: 600;
}

.estimate-sidebar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(18, 18, 18, .25);
}

.estimate-sidebar li.active {
    color: var(--ink);
}

.estimate-sidebar li.active::before {
    background: var(--ink);
}

.estimate-back {
    border: none;
    background: transparent;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 38px;
    padding: 0;
    visibility: hidden;
}

.estimate-form {
    max-width: 1050px;
    margin: 0 auto;
    padding: 70px 0 0;
}

.estimate-step {
    display: none;
    text-align: center;
}

.estimate-step.active {
    display: block;
}

.estimate-step h1 {
    font-size: clamp(44px, 5vw, 78px);
    line-height: 1.05;
    font-weight: 500;
    margin: -40px 0 30px;
}
.estimate-card {
    background: var(--paper);
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .045);
    margin: 0 auto;
}

/* Page 1 - Adresse */

.address-card {
    max-width: 575px;
    padding: 28px;
}

.address-wrapper {
    position: relative;
    background: #fff;
    padding: 17px 22px;
    margin-bottom: 20px;
}

.address-wrapper input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--ink);
    padding: 10px 0 11px;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    outline: none;
    background: transparent;
}

.address-suggestions {
    display: none;
    position: absolute;
    left: 22px;
    right: 22px;
    top: 68px;
    background: #fff;
    border: 1px solid var(--border);
    z-index: 20;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.address-suggestions button {
    display: block;
    width: 100%;
    border: none;
    background: #fff;
    padding: 12px 14px;
    text-align: left;
    cursor: pointer;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
}

.address-suggestions button:hover {
    background: var(--paper);
}

.estimate-next {
    width: 100%;
    border: none;
    background: var(--ink);
    color: #fff;
    padding: 17px 28px;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    cursor: pointer;
}

.bottom-btn {
    width: auto;
    min-width: 245px;
    margin-top: 48px;
}

/* Page 2 - Type de bien */

.property-type-card {
    max-width: 890px;
    padding: 26px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.property-type-card label {
    height: 132px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease;
}

.property-type-card input {
    display: none;
}

.property-type-card label::before {
    content: "";
    display: block;
    width: 72px;
    height: 72px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.property-type-card label:nth-child(1)::before {
    background-image: url("assets/logoappt.png");
}

.property-type-card label:nth-child(2)::before {
    background-image: url("assets/logomaison.png");
}

.property-type-card label:nth-child(3)::before {
    background-image: url("assets/logoimmeuble.png");
}

.property-type-card label:nth-child(4)::before {
    background-image: url("assets/logoterrain.png");
    transform: scale(1.60) translateY(6px);
}

.property-type-card label:nth-child(5)::before {
    background-image: url("assets/logocommerce.png");
    transform: scale(1.35) translateY(6px);
}

.property-type-card label:nth-child(5)::before {
    background-image: url("assets/logocommerce.png");
}

.property-type-card span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
}

.property-type-card label.selected {
    border-color: var(--gold);
    background: #f8f5ef;
}

/* Page 3 - Caractéristiques */

.characteristics-card {
    max-width: 720px;
    padding: 30px 36px 26px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    margin-bottom: 26px;
}

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

.field-row label,
.message-field {
    position: relative;
    display: block;
    text-align: left;
}

.field-row span,
.message-field span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 7px;
}

.field-row input,
.field-row select,
.message-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--ink);
    background: transparent;
    padding: 7px 0 10px;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    outline: none;
}

.field-row em {
    position: absolute;
    right: 0;
    bottom: 12px;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
}

.counter-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(18, 18, 18, .35);
    padding: 13px 0;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 15px;
}

.counter-field div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter-field input {
    width: 48px;
    height: 28px;
    border: 1px solid rgba(18, 18, 18, .18);
    background: #fff;
    text-align: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    outline: none;
    pointer-events: auto;
    appearance: auto;
}

.counter-field input::-webkit-inner-spin-button,
.counter-field input::-webkit-outer-spin-button {
    opacity: 1;
}

.counter-field button {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #eee;
    cursor: pointer;
    font-size: 16px;
}

.required-info {
    margin: 18px 0 0;
    font-size: 13px;
    color: var(--ink);
}

.estimate-validation-message {
    max-width: 560px;
    margin: 18px auto 0;
    color: #9b2f2f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.estimate-field-error input,
.estimate-field-error select,
.estimate-field-error textarea {
    border-bottom-color: #9b2f2f !important;
}

.address-wrapper.estimate-field-error {
    outline: 1px solid rgba(155, 47, 47, .45);
    outline-offset: 4px;
}

.property-type-card.estimate-field-error {
    border-color: rgba(155, 47, 47, .65);
}

/* Page 4 - Date de vente */

.sale-date-card {
    max-width: 560px;
    padding: 30px 36px;
    text-align: left;
}

.sale-date-card label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 21px;
    cursor: pointer;
    font-size: 15px;
}

.sale-date-card label:last-child {
    margin-bottom: 0;
}

.sale-date-card input {
    width: 20px;
    height: 20px;
    accent-color: var(--ink);
}

/* Page 5 - Informations */

.info-card {
    max-width: 560px;
    padding: 30px 36px;
}

.info-card .field-row {
    gap: 28px;
    margin-bottom: 24px;
}

.message-field textarea {
    min-height: 68px;
    resize: vertical;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    color: var(--muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.form-consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin: 2px 0 0;
    accent-color: var(--ink);
}

.form-consent a {
    color: var(--ink);
    text-decoration: underline;
}

.form-submit-status {
    max-width: 560px;
    min-height: 20px;
    margin: 16px auto 0;
    color: #9b2f2f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.form-submit-status.is-success {
    color: #256a46;
}

/* Page 6 - Merci */

.thanks-card {
    max-width: 560px;
    padding: 38px 42px;
}

.thanks-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.thanks-card a {
    display: inline-block;
    background: var(--ink);
    color: #fff;
    padding: 15px 28px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    font-weight: 700;
}

/* Responsive */

@media(max-width:1100px) {
    .estimate-sidebar {
        display: none;
    }

    .estimate-form {
        padding: 90px 6vw 0;
    }

    .property-type-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {
    .estimate-step h1 {
        font-size: 42px;
        margin-bottom: 34px;
    }

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

    .property-type-card {
        grid-template-columns: 1fr;
    }

    .address-card,
    .characteristics-card,
    .info-card,
    .sale-date-card,
    .thanks-card {
        padding: 26px;
    }

    .bottom-btn {
        width: 100%;
        min-width: auto;
        margin-top: 38px;
    }
}

/* Page Louer votre bien */

.rental-hero {
    min-height: calc(100vh - 96px);
    position: relative;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 0%,
            rgba(0,0,0,.28) 45%,
            rgba(0,0,0,.68) 100%
        ),
        url("assets/photo-location.png");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 60%;
}

/* Page Gérer mon bien / Gestion locative */

.management-hero {
    min-height: calc(100vh - 96px);
    position: relative;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 0%,
            rgba(0,0,0,.28) 45%,
            rgba(0,0,0,.68) 100%
        ),
        url("assets/service-gestion.jpg");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 60%;
}

.management-hero .transaction-hero-content {
    bottom: 14vh;
}

.management-hero h1 {
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 1;
    margin-bottom: 18px;
}

/* Introduction gestion locative */

.management-intro-block {
    background: #fff;
    padding: 105px 6.5vw 118px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 72px;
    align-items: start;
}

.management-intro-left h2 {
    font-family: "Bebas Neue", "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: clamp(66px, 5.85vw, 110px);
    line-height: .88;
    font-weight: 400;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--night);
    margin: 0 0 32px;
    white-space: nowrap;
}

.management-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: 1px solid var(--night);
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 13px;
    color: var(--night);
    background: transparent;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.management-intro-btn span {
    font-size: 20px;
    line-height: 1;
}

.management-intro-btn:hover {
    background: var(--night);
    color: #fff;
    transform: translateY(-3px);
}

.management-intro-text {
    max-width: 760px;
    padding-top: 0;
}

.management-intro-text p {
    color: var(--night);
    font-size: 18px;
    line-height: 1.78;
    margin: 0;
    text-align: justify;
    text-align-last: left;
}

.management-intro-text strong {
    font-weight: 800;
}

.management-intro-mobile {
    display: none;
}

.management-intro-text p:last-child {
    margin-bottom: 0;
}

@media(max-width:1000px) {
    .management-intro-block {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 82px 6vw 88px;
    }

    .management-intro-left h2 {
        font-size: clamp(50px, 9vw, 76px);
        white-space: normal;
    }

    .management-intro-text {
        max-width: none;
    }

    .management-intro-text p {
        font-size: 16px;
        text-align: left;
    }
}

@media(max-width:700px) {
        .management-intro-desktop {
        display: none;
    }

    .management-intro-mobile {
    display: grid;
    gap: 16px;
}

.management-intro-mobile p {
    margin: 0;
}
    .management-intro-block {
        padding: 64px 6vw 72px;
    }

    .management-intro-left h2 {
        font-size: 46px;
    }

    .management-intro-btn {
        padding: 11px 20px;
        font-size: 12px;
    }

    .management-intro-btn span {
        font-size: 18px;
    }

    .management-intro-text p {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* Méthode gestion locative */

.management-method {
    background: #fbfaf7;
    padding: 72px 5.5vw 76px;
}

.management-method-inner {
    max-width: 1580px;
    margin: 0 auto;
}

.management-method h2 {
    font-family: "Bebas Neue", "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: clamp(62px, 5.7vw, 106px);
    line-height: .92;
    font-weight: 400;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--night);
    max-width: 1180px;
    margin: 0 0 38px;
}

.management-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 46px;
    align-items: start;
}

.management-service-card {
    min-width: 0;
}

.management-service-icon {
    height: 58px;
    margin-bottom: 14px;
    color: var(--night);
}

.management-service-icon svg {
    width: 58px;
    height: 58px;
    display: block;
    stroke: currentColor;
    stroke-width: 4.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.management-service-card h3 {
    font-family: "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: clamp(25px, 1.42vw, 31px);
    line-height: 1.03;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
    color: var(--night);
    margin: 0 0 16px;
}
.management-service-card p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.62;
    margin: 0;
    text-align: left;
}

@media(max-width:1400px) {
    .management-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px 40px;
    }
}

@media(max-width:900px) {
    .management-method {
        padding: 64px 6vw 76px;
    }

    .management-method h2 {
        font-size: clamp(54px, 10vw, 82px);
        margin-bottom: 34px;
    }

    .management-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 32px;
    }

    .management-service-card h3 {
        font-size: 29px;
    }

    .management-service-card p {
        font-size: 15px;
    }
}

@media(max-width:700px) {
    .management-method {
        padding: 56px 6vw 60px;
    }

    .management-method h2 {
        font-size: 46px;
        line-height: .92;
        margin-bottom: 32px;
    }

    .management-services-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .management-service-icon {
        height: 44px;
        margin-bottom: 8px;
    }

    .management-service-icon svg {
        width: 44px;
        height: 44px;
    }

    .management-service-card h3 {
        font-size: 26px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .management-service-card p {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* Bloc GLI - Gestion locative */

.management-gli-cover {
    background: #fff;
    padding: 105px 7vw 125px;
}

.management-gli-cover-inner {
    max-width: 1540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.management-gli-cover-media {
    width: 100%;
    max-width: 720px;
    justify-self: start;
    transform: translateX(-34px);
}

.management-gli-cover-media img {
    width: 100%;
    height: 515px;
    object-fit: cover;
    object-position: center 56%;
    display: block;
    border-radius: 34px;
}

.management-gli-cover-content {
    max-width: 725px;
    justify-self: start;
}

.management-gli-cover-content h2 {
    font-family: "Bebas Neue", "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: 46px;
    line-height: .92;
    font-weight: 400;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--night);
    margin: 0 0 22px;
}

.management-gli-cover-content p {
    color: var(--ink);
    font-size: 18.5px;
    line-height: 1.74;
    margin: 0 0 32px;
    max-width: 730px;
}

.management-gli-cover-content strong {
    font-weight: 800;
}

.management-gli-mobile-text {
    display: none;
}

.management-gli-cover-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.management-gli-cover-list li {
    position: relative;
    padding-left: 44px;
    color: var(--ink);
    font-size: 17.5px;
    line-height: 1.6;
}

.management-gli-cover-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f5efe4;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

@media(max-width:1100px) {
    .management-gli-cover-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .management-gli-cover-content {
        max-width: none;
        justify-self: stretch;
    }

    .management-gli-cover-media {
        max-width: none;
        justify-self: stretch;
    }

    .management-gli-cover-media img {
        height: 380px;
    }
}

@media(max-width:700px) {
    .management-gli-cover {
        padding: 56px 6vw 70px;
    }

    .management-gli-cover-media {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        transform: none;
    }

    .management-gli-cover-media img {
        width: 100%;
        height: 300px;
        margin: 0 auto;
        object-fit: cover;
        object-position: center 56%;
        border-radius: 24px;
    }

    .management-gli-cover-content h2 {
        font-family: "Bebas Neue", "Barlow Condensed", Impact, Arial, sans-serif;
        font-size: 46px;
        line-height: .92;
        font-weight: 400;
        letter-spacing: .005em;
        margin-bottom: 22px;
    }

    .management-gli-desktop-text {
        display: none;
    }

    .management-gli-mobile-text {
        display: block;
    }

    .management-gli-cover-content p,
    .management-gli-cover-list li {
        font-size: 15px;
    }

    .management-gli-cover-list li {
        padding-left: 40px;
    }

    .management-gli-cover-list li::before {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}

/* Bloc honoraires gestion locative */

.management-pricing {
    background: #f4f1ea;
    padding: 38px 6vw 34px;
}

.management-pricing-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 42px 70px 30px;
    text-align: center;
    background: transparent;
    border-radius: 0;
}

.management-pricing-overline {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: .30em;
    text-transform: uppercase;
    font-weight: 700;
}

.management-pricing-overline::after {
    content: "";
    display: block;
    width: 62px;
    height: 2px;
    background: var(--gold);
    margin: 14px auto 0;
}

.management-pricing h2 {
    font-family: "Bebas Neue", "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: clamp(54px, 4.25vw, 76px);
    line-height: .92;
    font-weight: 400;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--night);
    margin: 0 auto;
    max-width: 1200px;
    white-space: nowrap;
}

.management-pricing-subtitle {
    color: var(--ink);
    font-size: 20px;
    line-height: 1.45;
    margin: 18px auto 28px;
    max-width: 850px;
    font-weight: 600;
}

.management-pricing-tab-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.management-pricing-toggle {
    width: max-content;
    margin: 0 auto 36px;
    background: #fff;
    border-radius: 999px;
    padding: 5px;
    display: inline-flex;
    gap: 5px;
    box-shadow: 0 16px 40px rgba(7, 20, 33, .08);
}


.management-pricing-label-mobile,
.pricing-stars-mobile {
    display: none;
}

.pricing-stars-desktop {
    display: inline;
}

.management-pricing-toggle label {
    min-width: 158px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--night);
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

#management-pricing-new:checked ~ .management-pricing-toggle label[for="management-pricing-new"],
#management-pricing-current:checked ~ .management-pricing-toggle label[for="management-pricing-current"] {
    background: var(--night);
    color: #fff;
}

.management-pricing-panels {
    position: relative;
}

.management-pricing-panel {
    display: none;
    grid-template-columns: 350px 350px 350px;
    gap: 34px;
    align-items: stretch;
    justify-content: center;
}

#management-pricing-new:checked ~ .management-pricing-panels .management-pricing-panel-new,
#management-pricing-current:checked ~ .management-pricing-panels .management-pricing-panel-current {
    display: grid;
}

.management-pricing-card {
    background: #fff;
    border: 1px solid rgba(232, 223, 211, .95);
    border-radius: 24px;
    padding: 20px 20px 24px;
    text-align: left;
    box-shadow: 0 18px 45px rgba(7, 20, 33, .05);
    min-height: 515px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transform-origin: center;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.management-pricing-card:hover {
    transform: translateY(-7px) scale(1.022);
    box-shadow: 0 28px 62px rgba(7, 20, 33, .11);
    border-color: rgba(155, 121, 63, .24);
    z-index: 5;
}

.management-pricing-card-head {
    background: #eef0ef;
    border-radius: 18px;
    padding: 18px 20px 22px;
    margin-bottom: 24px;
    min-height: 176px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.management-pricing-card-featured .management-pricing-card-head {
    background: #efe1bd;
}

.management-pricing-card-head span {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: var(--night);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 18px;
    white-space: nowrap;
}

.management-pricing-card-head strong {
    display: block;
    font-family: "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: 54px;
    line-height: .88;
    font-weight: 800;
    color: var(--night);
    letter-spacing: -.02em;
    margin-bottom: 10px;
    white-space: nowrap;
}

.management-pricing-card-head em {
    display: block;
    font-style: normal;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
    white-space: nowrap;
}

.management-pricing-card > p {
    color: var(--night);
    font-size: 15.5px;
    line-height: 1.45;
    margin: 0 auto 22px;
    max-width: 305px;
    text-align: center;
}

.management-pricing-card-featured > p {
    text-align: center;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
}

.management-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    gap: 17px;
    width: max-content;
    max-width: 100%;
}

.management-pricing-card li {
    position: relative;
    padding-left: 36px;
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.36;
    text-align: left;
}

.management-pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #efe1bd;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.management-pricing-card-side {
    background: rgba(255, 255, 255, .66);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: none;
    text-align: center;
    padding: 26px 26px 24px;
    min-height: 515px;
}

.management-pricing-card-side h3 {
    font-family: "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: 34px;
    line-height: .95;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--night);
    margin: 0 0 30px;
}

.management-pricing-side-item {
    border-top: none;
    padding: 0;
    margin-top: 26px;
}

.management-pricing-side-item:first-of-type {
    margin-top: 0;
}

.management-pricing-side-item span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #efe1bd;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
}

.management-pricing-side-item strong {
    display: block;
    font-size: 16px;
    line-height: 1.28;
    color: var(--night);
    margin-bottom: 8px;
}

.management-pricing-side-item p {
    color: var(--ink);
    font-size: 13.5px;
    line-height: 1.42;
    margin: 0 auto;
    max-width: 270px;
}

.management-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 54px;
    margin-top: 30px;
    background: var(--night);
    color: #fff;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 800;
    transition: transform .3s ease, box-shadow .3s ease;
}

.management-pricing-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(7, 20, 33, .18);
}

.management-pricing-note {
    color: rgba(18, 18, 18, .58);
    font-size: 12.5px;
    line-height: 1.45;
    margin: 18px auto 0;
    max-width: 760px;
}

@media(max-width:1150px) {
    .management-pricing-inner {
        padding: 54px 6vw 52px;
    }

    .management-pricing-panel {
        grid-template-columns: 1fr;
    }

    .management-pricing-card {
        max-width: 380px;
        width: 100%;
        margin: 0 auto;
        min-height: auto;
    }

    .management-pricing-card-side {
        min-height: auto;
    }

    .management-pricing-card-head em {
        white-space: normal;
    }
}

@media(max-width:700px) {
    .management-pricing {
        padding: 0;
    }

    .management-pricing-inner {
        border-radius: 0;
        padding: 44px 6vw 24px;
    }

    .management-pricing h2 {
        font-size: 48px;
        white-space: normal;
    }

    .management-pricing-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    /* Boutons Sans GLI / Avec GLI */

    .management-pricing-label-desktop,
.pricing-stars-desktop {
    display: none;
}

.management-pricing-label-mobile,
.pricing-stars-mobile {
    display: inline;
}

    .management-pricing-toggle {
        width: 100%;
        max-width: 360px;
    }

    .management-pricing-toggle label {
        min-width: 0;
        width: 50%;
        font-size: 13px;
    }

    /* Sur mobile, on utilise uniquement les cartes du premier panneau */

    .management-pricing-panel-current {
        display: none !important;
    }

    .management-pricing-panel-new {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    /* Sans GLI : formule essentielle + Inclus dans l’offre */

    #management-pricing-new:checked
    ~ .management-pricing-panels
    .management-pricing-panel-new
    .management-pricing-card-featured {
        display: none;
    }

    #management-pricing-new:checked
    ~ .management-pricing-panels
    .management-pricing-panel-new
    > .management-pricing-card:not(.management-pricing-card-featured):not(.management-pricing-card-side) {
        display: flex;
    }

    /* Avec GLI : formule confort + Inclus dans l’offre */

    #management-pricing-current:checked
    ~ .management-pricing-panels
    .management-pricing-panel-new
    > .management-pricing-card:not(.management-pricing-card-featured):not(.management-pricing-card-side) {
        display: none;
    }

    #management-pricing-current:checked
    ~ .management-pricing-panels
    .management-pricing-panel-new
    .management-pricing-card-featured {
        display: flex;
    }

    /* La carte Inclus dans l’offre reste toujours affichée */

    .management-pricing-panel-new .management-pricing-card-side {
        display: flex;
    }

    .management-pricing-card {
        max-width: none;
        border-radius: 22px;
        padding: 22px 20px 28px;
    }

    .management-pricing-card-head {
        border-radius: 18px;
        padding: 22px 20px;
        min-height: auto;
    }

    .management-pricing-card-head span,
    .management-pricing-card-head em {
        white-space: normal;
    }

    .management-pricing-card-head strong {
        font-size: 52px;
    }

    .management-pricing-card li {
        font-size: 14px;
        line-height: 1.38;
    }

    .management-pricing-btn {
        width: 100%;
        min-width: 0;
    }
}

/* Bloc passerelle rénovation énergétique */

.management-energy-bridge {
    background: #f4f1ea;
    padding: 56px 7vw 66px;
}

.management-energy-bridge-card {
    max-width: 1200px;
    min-height: 370px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(7, 20, 33, .12);
    border-radius: 20px;
    padding: 44px 56px;
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 58px;
    align-items: center;
}

.management-energy-bridge-content {
    max-width: 570px;
}

.management-energy-bridge h2 {
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(25px, 1.78vw, 31px);
    line-height: 1.08;
    font-weight: 800;
    color: var(--night);
    margin: 0 0 22px;
    letter-spacing: -.02em;
}

.management-energy-bridge p {
    color: var(--night);
    font-size: 15.5px;
    line-height: 1.58;
    margin: 0 0 15px;
    max-width: 560px;
}

.management-energy-bridge-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 48px;
    margin: 18px 0 0;
    background: var(--night);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.management-energy-bridge-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(7, 20, 33, .18);
    background: #0b1b2b;
}

.management-energy-bridge-media {
    width: 100%;
    max-width: 500px;
    justify-self: center;
}

.management-energy-bridge-media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 52%;
    display: block;
}

@media(max-width:1000px) {
    .management-energy-bridge-card {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 40px 34px;
    }

    .management-energy-bridge-content {
        max-width: none;
    }

    .management-energy-bridge-media {
        max-width: none;
        justify-self: stretch;
    }

    .management-energy-bridge-media img {
        height: 300px;
    }
}

@media(max-width:700px) {
    .management-energy-bridge {
        padding: 54px 6vw 62px;
    }

    .management-energy-bridge-card {
        padding: 30px 24px;
        border-radius: 18px;
    }

    .management-energy-bridge-label {
        height: 34px;
        padding: 0 16px;
        font-size: 12px;
        margin-bottom: 24px;
    }

    .management-energy-bridge h2 {
        font-size: 27px;
    }

    .management-energy-bridge p {
        font-size: 15px;
        line-height: 1.55;
    }

    .management-energy-bridge-btn {
        width: 100%;
    }

    .management-energy-bridge-media img {
        height: 250px;
    }
}

/* FAQ gestion locative */

.management-faq {
    background: #f7f7f5;
    padding: 58px 7vw 66px;
}

.management-faq-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.management-faq-overline {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .30em;
    text-transform: uppercase;
    font-weight: 700;
}

.management-faq-overline::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}

.management-faq h2 {
    font-family: "Bebas Neue", "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: clamp(40px, 3.05vw, 56px);
    line-height: .94;
    font-weight: 400;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--night);
    margin: 0 auto 30px;
    max-width: 1260px;
    white-space: nowrap;
}

.management-faq-card {
    background: #fff;
    border-radius: 28px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 42px;
    box-shadow: 0 18px 45px rgba(7, 20, 33, .045);
}

.management-faq-item {
    border-bottom: 1px solid rgba(7, 20, 33, .07);
}

.management-faq-item:last-child {
    border-bottom: none;
}

.management-faq-item summary {
    list-style: none;
    cursor: pointer;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    text-align: left;
}

.management-faq-item summary::-webkit-details-marker {
    display: none;
}

.management-faq-item summary span {
    color: var(--night);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}

.management-faq-item summary em {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    color: var(--night);
    font-size: 21px;
    line-height: 1;
    transition: transform .28s ease, background .28s ease, color .28s ease;
}

.management-faq-item[open]:not(.is-closing) summary em {
    transform: rotate(90deg);
    background: #f5efe4;
    color: var(--gold);
}

.management-faq-item p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
    text-align: left;
    max-width: 860px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    margin: -2px 0 0;
    transition: max-height .34s ease, opacity .24s ease, transform .24s ease, margin .24s ease;
}

.management-faq-item[open]:not(.is-closing) p {
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
    margin: -2px 0 20px;
}

.management-faq-item.is-closing p {
    max-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    margin: -2px 0 0;
}

@media(max-width:900px) {
    .management-faq {
        padding: 56px 6vw 64px;
    }

    .management-faq-card {
        padding: 16px 22px;
        border-radius: 24px;
    }

    .management-faq h2 {
        font-size: 44px;
        margin-bottom: 28px;
        white-space: normal;
    }

    .management-faq-item summary {
        min-height: 64px;
        gap: 18px;
    }

    .management-faq-item summary span {
        font-size: 15px;
        font-weight: 500;
    }

    .management-faq-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .management-faq-item[open]:not(.is-closing) p {
        max-height: 240px;
    }
}

/* Bloc contact final - Gestion locative */

.management-contact {
    background: #fff !important;
    padding: 68px 7vw 74px !important;
    border-top: none !important;
    text-align: center;
}

.management-contact-content {
    max-width: 980px;
    margin: 0 auto;
}

.management-contact .overline {
    margin: 0 0 14px !important;
    color: var(--gold);
    font-size: 13px !important;
    letter-spacing: .30em;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 13px;
}

.management-contact .overline::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 54px;
    height: 2px;
    background: var(--gold);
}

.management-contact h2 {
    font-family: "Bebas Neue", "Barlow Condensed", Impact, Arial, sans-serif;
    font-size: clamp(38px, 3vw, 54px);
    line-height: .96;
    font-weight: 400;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--night);
    margin: 0 auto 24px;
}

.management-contact .contact-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.management-contact .contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 205px;
    height: 46px;
    margin: 34px auto 0;
    background: var(--night);
    color: #fff;
    border-radius: 999px;
    padding: 0 26px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.management-contact .contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(7, 20, 33, .16);
    background: #0b1b2b;
}

@media(max-width:700px) {
    .management-contact {
        padding: 62px 6vw 70px !important;
    }

    .management-contact h2 {
        font-size: 48px;
    }

    .management-contact .contact-text {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .management-contact .contact-btn {
        width: 100%;
    }
}

/* Bloc engagements - Page Louer votre bien */

.rental-commitments {
    background: #fff;
    padding: 55px 7vw 70px;
}

.rental-commitments-heading {
    text-align: center;
    max-width: 1250px;
    margin: 0 auto 38px;
}

.rental-commitments-heading .overline {
    display: none;
}

.rental-commitments-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 72px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    max-width: 1400px;
    margin: 0 auto;
    white-space: nowrap;
}

.rental-commitments-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.rental-commitments-grid article {
    min-height: 340px;
    background: #efe9df;
    border: 1px solid rgba(155, 121, 63, .18);
    border-radius: 34px;
    padding: 30px 28px 34px;
    display: grid;
    grid-template-rows: 36px 50px auto;
    align-items: start;
    position: relative;
    z-index: 1;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        border-color .35s ease;
    transform-origin: center;
}

.rental-commitments-grid article:hover {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 22px 45px rgba(7, 20, 33, .10);
    background: #e8ded0;
    border-color: rgba(155, 121, 63, .32);
    z-index: 3;
}

/* Photos masquées sur ordinateur */
.rental-commitment-image {
    display: none;
}

/* Préserve la présentation PC existante */
.rental-commitment-content {
    display: contents;
}

.rental-text-mobile {
    display: none;
}

.card-shape {
    display: block;
    align-self: start;
    margin-bottom: 0;
}

.circle {
    width: 22px;
    height: 22px;
    background: var(--night);
    border-radius: 50%;
}

.half-circle {
    width: 26px;
    height: 13px;
    background: var(--night);
    border-radius: 26px 26px 0 0;
}

.star::before {
    content: "✦";
    font-size: 28px;
    color: var(--night);
    line-height: 1;
    position: relative;
    top: -7px;
}

.dash {
    width: 34px;
    height: 6px;
    background: var(--night);
    position: relative;
    top: 4px;
}

.rental-commitments-grid h3 {
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
}

.rental-commitments-grid p {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

@media(max-width:1150px) {
    .rental-commitments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {

    .rental-commitments {
        padding: 48px 20px 60px;
    }

    .rental-commitments-heading {
        max-width: 315px;
        margin: 0 auto 38px;
        text-align: center;
    }

    .rental-commitments-heading .overline {
        display: block;
        margin-bottom: 18px;
        color: var(--gold);
        font-size: 13px;
        line-height: 1.35;
        letter-spacing: .24em;
        text-align: center;
    }

    .rental-commitments-heading .overline::after {
        margin-right: auto;
        margin-left: auto;
    }

    .rental-commitments-heading h2 {
        max-width: 315px;
        margin: 0 auto;
        white-space: normal;
        font-size: 30px;
        font-weight: 500;
        line-height: 1.08;
        text-align: center;
    }

    .rental-commitments-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }

    .rental-commitments-grid article {
        display: block;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        border: 1px solid rgba(167, 126, 55, .14);
        border-radius: 14px;
        background: #f8f5f0;
        transform: none;
        box-shadow: none;
    }

    .rental-commitments-grid article:hover {
        transform: none;
        background: #f8f5f0;
        box-shadow: none;
    }

        .rental-commitment-image {
        display: block;
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

    /* Léger zoom sur la photo Expertise locale */
    .rental-commitments-grid article:nth-child(1) .rental-commitment-image {
        transform: scale(1.12);
        transform-origin: center center;
    }

    /* Le fond beige masque le bas de l’image agrandie */
    .rental-commitment-content {
        position: relative;
        z-index: 2;
        background: #f8f5f0;
    }

    /* Recentrage particulier de l’image Suivi digitalisé */
    .rental-commitments-grid article:nth-child(4) .rental-commitment-image {
        object-position: 72% center;
    }

    .rental-commitment-content {
        display: block;
        width: 100%;
        padding: 26px 24px 30px;
        box-sizing: border-box;
    }

    .rental-commitments-grid .card-shape {
        display: none;
    }

    .rental-commitments-grid h3 {
        margin: 0 0 16px;
        color: #171717;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 28px;
        font-weight: 500;
        line-height: 1.08;
    }

    .rental-commitments-grid p {
        margin: 0;
        color: var(--muted);
        font-family: Inter, Arial, sans-serif;
        font-size: 15px;
        line-height: 1.65;
    }

    .rental-text-desktop {
        display: none;
    }

    .rental-text-mobile {
        display: inline;
    }
}

/* Formulaire final - Page Louer votre bien */

.rental-contact {
    background: #fff;
    padding: 70px 7vw 45px;
}

.rental-contact::before {
    content: "";
    display: block;
    width: 72%;
    max-width: 1200px;
    border-top: 1px solid rgba(18, 18, 18, .75);
    margin: 0 auto 70px;
}
.rental-contact-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.rental-contact h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(30px, 2.8vw, 46px);
    line-height: 1.05;
    font-weight: 600;
    margin: 0 0 36px;
}

.rental-contact h2 em {
    font-style: italic;
    font-weight: 400;
}

.rental-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 42px;
    row-gap: 20px;
}

.rental-field {
    display: flex;
    flex-direction: column;
}

.rental-field.full {
    grid-column: 1 / -1;
}

.rental-field label {
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.rental-field input,
.rental-field select,
.rental-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(18, 18, 18, .28);
    background: transparent;
    padding: 0 0 9px;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    outline: none;
}

.rental-field textarea {
    min-height: 48px;
    resize: vertical;
}

.rental-checks {
    margin-top: 26px;
}

.rental-checks label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 11px;
}

.rental-checks input {
    width: 11px;
    height: 11px;
    margin-top: 1px;
}

.rental-checks span {
    font-size: 10px;
    line-height: 1.4;
    text-transform: uppercase;
}

.rental-form-bottom {
    margin-top: 28px;
    display: flex;
    justify-content: flex-start;
}

.rental-submit {
    border: none;
    background: #2e3d47;
    color: #fff;
    padding: 17px 28px;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    cursor: pointer;
}

.rental-commitments + .rental-contact {
    margin-top: 0;
    border-top: none;
}

.rental-contact {
    background: #fff;
    padding: 35px 7vw 45px;
}

/* Bloc passerelle rénovation énergétique - Page Louer votre bien */

.rental-energy-bridge {
    background: #f4f1ea;
    padding: 52px 7vw 60px;
}

.rental-energy-bridge-card {
    max-width: 1200px;
    min-height: 370px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(7, 20, 33, .12);
    border-radius: 20px;
    padding: 44px 56px;
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 58px;
    align-items: center;
}

.rental-energy-bridge-content {
    max-width: 570px;
}

.rental-energy-bridge h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(30px, 2.05vw, 38px);
    line-height: 1.04;
    font-weight: 600;
    color: var(--night);
    margin: 0 0 22px;
}

.rental-energy-bridge p {
    color: var(--night);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 16px;
    max-width: 560px;
}

.rental-energy-mobile-text {
    display: none;
}

.rental-energy-bridge-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 48px;
    margin: 20px 0 0;
    background: var(--night);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.rental-energy-bridge-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(7, 20, 33, .18);
    background: #0b1b2b;
}

.rental-energy-bridge-media {
    width: 100%;
    max-width: 500px;
    justify-self: center;
}

.rental-energy-bridge-media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 52%;
    display: block;
}

.rental-commitments + .rental-energy-bridge {
    margin-top: 0;
}

.rental-energy-bridge + .rental-contact {
    margin-top: 0;
}

@media(max-width:1000px) {
    .rental-energy-bridge-card {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 40px 34px;
    }

    .rental-energy-bridge-content {
        max-width: none;
    }

    .rental-energy-bridge-media {
        max-width: none;
        justify-self: stretch;
    }

    .rental-energy-bridge-media img {
        height: 300px;
    }
}

@media(max-width:700px) {
    .rental-energy-bridge {
        background: #f4f1ea;
        padding: 48px 20px 56px;
    }

    .rental-energy-bridge-card {
        min-height: 0;
        padding: 28px 20px 22px;
        gap: 26px;
        border-radius: 16px;
    }

    .rental-energy-bridge h2 {
        font-size: 30px;
        line-height: 1.02;
        margin-bottom: 22px;
    }

    .rental-energy-desktop-text {
        display: none;
    }

    .rental-energy-mobile-text {
        display: block;
    }

    .rental-energy-bridge p {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    .rental-energy-bridge-btn {
    width: 88%;
    height: 44px;
    margin: 16px auto 0;
    border-radius: 10px;
    font-size: 13px;
    display: flex;
}

    .rental-energy-bridge-media img {
        height: 220px;
        object-position: center;
    }
}

/* Page Zone d’intervention */

.zone-territory-section {
    width: calc(100% + 14vw);
    max-width: none;
    margin: -12px 0 18px -7vw;
    padding-top: 24px;
    padding-bottom: 24px;
}
@media(max-width:900px) {
    .zone-territory-section {
    width: calc(100% + 12vw);
    max-width: none;
    margin: 0 0 24px -6vw;
    padding-top: 28px;
    padding-bottom: 28px;
}
}

.zone-page {
    background: #fff;
    padding: 82px 7vw 96px;
    min-height: calc(100vh - 70px);
}

.zone-heading {
    max-width: 980px;
    margin: 0 auto 28px;
    text-align: center;
}
.zone-heading .overline {
    margin-bottom: 16px;
}

.zone-heading .overline::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    background: var(--gold);
    margin: 14px auto 0;
}

.zone-heading h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(48px, 5vw, 82px);
    line-height: .98;
    font-weight: 600;
    color: var(--night);
    margin: 0 0 24px;
}

.zone-heading p:not(.overline) {
    max-width: 780px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.zone-intro-card {
    max-width: 1160px;
    margin: 0 auto 34px;
    background: #f8f5ef;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 42px 48px;
}

.zone-intro-card h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(32px, 2.7vw, 48px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--night);
    margin: 0 0 24px;
}

.zone-intro-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
    margin: 0 0 16px;
    max-width: 980px;
}

.zone-intro-card p:last-child {
    margin-bottom: 0;
}

.zone-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.zone-card {
    background: #fff;
    border: 1px solid rgba(7, 20, 33, .12);
    border-radius: 24px;
    padding: 32px 34px;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(7, 20, 33, .07);
    border-color: rgba(155, 121, 63, .25);
}

.zone-card-main {
    grid-column: 1 / -1;
    background: var(--night);
    color: #fff;
}

.zone-card h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(27px, 2vw, 38px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--night);
    margin: 0 0 24px;
}

.zone-card-main h2 {
    color: #fff;
}

.zone-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zone-city-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f8f5ef;
    border: 1px solid rgba(7, 20, 33, .08);
    color: var(--night);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.zone-card-main .zone-city-list span {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .16);
    color: #fff;
}

.zone-cta {
    max-width: 980px;
    margin: 72px auto 0;
    text-align: center;
}

.zone-cta .overline {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .30em;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 13px;
}

.zone-cta .overline::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 54px;
    height: 2px;
    background: var(--gold);
}

.zone-cta h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(34px, 3.1vw, 54px);
    line-height: 1.04;
    font-weight: 600;
    color: var(--night);
    margin: 0 auto 22px;
}

.zone-cta p:not(.overline) {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.zone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 48px;
    margin-top: 32px;
    background: var(--night);
    color: #fff;
    border-radius: 999px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 800;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.zone-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(7, 20, 33, .16);
    background: #0b1b2b;
}

@media(max-width:900px) {
    .zone-page {
        padding: 64px 6vw 76px;
    }

    .zone-heading {
        margin-bottom: 46px;
    }

    .zone-heading h1 {
        font-size: 52px;
    }

    .zone-heading p:not(.overline) {
        font-size: 16px;
        line-height: 1.65;
    }

    .zone-intro-card {
        padding: 34px 28px;
        border-radius: 22px;
    }

    .zone-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .zone-card-main {
        grid-column: auto;
    }

    .zone-card {
        padding: 30px 26px;
        border-radius: 20px;
    }

    .zone-city-list span {
        font-size: 12.5px;
    }

    .zone-cta {
        margin-top: 58px;
    }
}

@media(max-width:600px) {
    .zone-heading h1 {
        font-size: 44px;
    }

    .zone-intro-card h2,
    .zone-card h2,
    .zone-cta h2 {
        font-size: 31px;
    }

    .zone-btn {
        width: 100%;
    }
}

/* Recherche de commune - Page Zone d'intervention */

.zone-checker {
    max-width: 780px;
    margin: 0 auto;
    padding: 38px 42px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #f8f5ef;
    box-shadow: 0 18px 45px rgba(7, 20, 33, .055);
}

.zone-checker-heading {
    max-width: 650px;
    margin: 0 auto 28px;
    text-align: center;
}

.zone-checker-heading h2 {
    margin: 0;
    color: var(--night);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(34px, 3.2vw, 50px);
    font-weight: 600;
    line-height: 1.04;
}

.zone-checker-heading p {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.zone-checker-form {
    max-width: 610px;
    margin: 0 auto;
}

.zone-checker-label {
    display: block;
    margin: 0 0 10px;
    color: var(--night);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.zone-checker-field {
    padding: 7px 22px 6px;
    background: #fff;
}

.zone-checker-field input {
    width: 100%;
    height: 36px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--night);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--night);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
}

.zone-checker-field input::placeholder {
    color: #a0a5a9;
}

.zone-checker-field input:focus {
    border-bottom-color: var(--gold);
    box-shadow: 0 2px 0 var(--gold);
}

.zone-checker-form button {
    width: 100%;
    min-height: 60px;
    margin-top: 22px;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: var(--ink);
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.zone-checker-form button:hover {
    background: var(--night);
    transform: translateY(-2px);
}

.zone-checker-result {
    max-width: 680px;
    margin: 24px auto 0;
    padding: 22px 24px;
    border: 1px solid rgba(7, 20, 33, .12);
    background: #fff;
}

.zone-checker-result[hidden] {
    display: none;
}

.zone-checker-result strong {
    display: block;
    color: var(--night);
    font-size: 17px;
    line-height: 1.45;
}

.zone-checker-result p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.zone-checker-result a {
    display: inline-block;
    margin-top: 14px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
    color: var(--night);
    font-size: 13px;
    font-weight: 700;
}

.zone-checker-result--primary,
.zone-checker-result--regular {
    border-left: 4px solid #4f8a70;
}

.zone-checker-result--flexible {
    border-left: 4px solid var(--gold);
}

.zone-checker-result--unknown {
    border-left: 4px solid #8c969d;
}

@media(max-width:900px) {
    .zone-checker {
        padding: 42px 30px;
    }

    .zone-checker-heading {
        margin-bottom: 28px;
    }
}

@media(max-width:600px) {
    .zone-checker {
        padding: 34px 18px;
    }

    .zone-checker-heading h2 {
        font-size: 34px;
    }

    .zone-checker-heading p {
        font-size: 15px;
    }

    .zone-checker-field {
        padding: 22px 20px 18px;
    }

    .zone-checker-field input {
        font-size: 16px;
    }
}

/* Page Mentions légales */

.legal-page {
    background: #f3f3f1;
    min-height: calc(100vh - 70px);
    padding: 0 0 90px;
}

.legal-hero {
    padding: 55px 6vw 42px;
    text-align: center;
}

.legal-hero h1 {
    margin: 0;
    color: #1c1c1c;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(52px, 5vw, 86px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.legal-content {
    width: min(1420px, 86vw);
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 52px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    margin: 0 0 20px;
    color: #222;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(27px, 2vw, 38px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.legal-block p {
    margin: 0 0 21px;
    color: #292929;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(18px, 1.15vw, 22px);
    font-weight: 500;
    line-height: 1.45;
}

.legal-block strong {
    font-weight: 700;
}

.legal-block a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-block a:hover {
    opacity: .65;
}

@media(max-width:900px) {

    .legal-page {
        padding-bottom: 70px;
    }

    .legal-hero {
        padding: 42px 6vw 34px;
    }

    .legal-content {
        width: 88vw;
    }

    .legal-block {
        margin-bottom: 42px;
    }

    .legal-block h2 {
        font-size: 28px;
    }

    .legal-block p {
        font-size: 18px;
        line-height: 1.6;
    }

}

@media(max-width:600px) {

    .legal-hero h1 {
        font-size: 44px;
    }

    .legal-block h2 {
        font-size: 24px;
    }

}

/* =========================================================
   PAGE AMÉLIORER MON DPE
   Hero inspiré du modèle Foncia
   ========================================================= */

.dpe-improve-hero {
    --dpe-side-width: 29%;

    width: 100%;
    height: calc(100vh - 70px);
    min-height: 700px;
    max-height: 820px;

    position: relative;
    overflow: hidden;

    margin: 0;

    background-image: url("assets/imageameliorerdpe1.png");
    background-size: 140% auto;
    background-repeat: no-repeat;
    background-position: calc(50% - 60px) calc(52% + 180px);
}

/* Partie gauche beige */

.dpe-improve-side {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;

    width: var(--dpe-side-width);
    height: 100%;

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

    padding: 70px 36px 48px;

    background: #9da8cc;
    border-right: 1px solid rgba(255, 255, 255, .9);
    color: #fff;

    opacity: 0;
    transform: translateX(-100%);

    animation:
        dpeImproveSideEntrance
        .78s
        cubic-bezier(.22, .72, .22, 1)
        1s
        forwards;
}

@keyframes dpeImproveSideEntrance {

    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

.dpe-improve-breadcrumb {
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);

    width: min(100% - 70px, 310px);
    margin: 0;

    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;

    color: rgba(255, 255, 255, .90);
}

.dpe-improve-breadcrumb span {
    margin: 0 8px;
}

.dpe-improve-side-inner {
    width: min(100%, 310px);
}

.dpe-improve-side h2 {
    margin: 0 0 54px;

    font-family:
        "Barlow Condensed",
        Impact,
        Arial,
        sans-serif;

    font-size: clamp(28px, 2vw, 39px);
    line-height: .97;
    font-weight: 700;

    text-transform: uppercase;
    color: #fff;
}

.dpe-improve-side-steps {
    position: relative;
    margin: 0 0 40px;
}

.dpe-improve-side-steps::before {
    content: "";

    position: absolute;
    top: 12px;
    bottom: 24px;
    left: 10px;

    width: 1px;
    background: rgba(255, 255, 255, .65);
}

.dpe-improve-side-step {
    position: relative;

    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 18px;

    min-height: 94px;
}

.dpe-improve-side-step:last-child {
    min-height: auto;
}

.dpe-improve-side-step > span {
    width: 20px;
    height: 20px;

    display: block;

    position: relative;
    z-index: 2;

    border: 2px solid #fff;
    border-radius: 50%;

    background: transparent;
}
.dpe-improve-side-step > span::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #fff;

    transform: translate(-50%, -50%);
}

.dpe-improve-side-step p {
    margin: -2px 0 0;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;

    color: #fff;
}

.dpe-improve-side-btn {
    width: 100%;
    min-height: 66px;

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

    padding: 14px 24px;

    border: 1px solid rgba(7, 20, 33, .18);
    border-radius: 14px;

    background: #fff;
    color: var(--night);

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.dpe-improve-side-btn:hover {
    transform: scale(1.045);
    box-shadow: 0 16px 35px rgba(7, 20, 33, .14);
}

/* Partie principale sur la photo */

.dpe-improve-main {
    width: calc(100% - var(--dpe-side-width));
    height: 100%;

    margin-left: var(--dpe-side-width);

    display: flex;
    align-items: center;

    padding: 55px 6vw 45px 8.2vw;
}

.dpe-improve-main-content {
    width: min(100%, 590px);
    color: #fff;
}

.dpe-improve-main-overline {
    max-width: 520px;
    margin: 0 0 42px;

    color: rgba(255, 255, 255, .56);

    font-family:
        "Barlow Condensed",
        Impact,
        Arial,
        sans-serif;

    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
}

.dpe-improve-main h1 {
    margin: 0 0 34px;

    color: #fff;

    font-family:
        "Barlow Condensed",
        Impact,
        Arial,
        sans-serif;

    font-size: clamp(48px, 4vw, 74px);
    line-height: .94;
    font-weight: 700;

    letter-spacing: -.02em;
    text-transform: uppercase;
}

.dpe-improve-main-text {
    max-width: 560px;
    margin: 0 0 34px;

    color: rgba(255, 255, 255, .92);

    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42;
}

.dpe-improve-main-points {
    display: grid;
    gap: 14px;

    margin: 0 0 26px;
}

.dpe-improve-main-points p {
    margin: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, .92);

    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.dpe-improve-main-points span {
    width: 27px;
    height: 27px;

    flex: 0 0 auto;

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

    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;

    color: #fff;

    font-size: 10px;
    font-weight: 800;
}

.dpe-improve-main-conclusion {
    max-width: 430px;
    margin: 0 0 12px;

    color: #fff;

    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.38;
    font-weight: 800;
}

.dpe-improve-main-conclusion::after {
    content: "";

    display: block;

    width: 285px;
    max-width: 100%;
    height: 1px;

    margin-top: 15px;

    background: rgba(255, 255, 255, .72);
}

.dpe-improve-main-btn {
    width: 310px;
    min-height: 55px;

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

    margin-top: 20px;
    padding: 14px 24px;

    border-radius: 13px;

    background: #fff;
    color: var(--night);

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.dpe-improve-main-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .22);
}

/* Adaptation intermédiaire */

@media(max-width:1200px) {

    .dpe-improve-hero {
        --dpe-side-width: 34%;
    }

    .dpe-improve-main {
        padding-left: 6vw;
    }

    .dpe-improve-main h1 {
        font-size: 54px;
    }

    .dpe-improve-side {
        padding-left: 28px;
        padding-right: 28px;
    }

}

/* Version tablette / mobile */

@media(max-width:850px) {

    .dpe-improve-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    background-image: none;
}

    .dpe-improve-side {
        width: 100%;
        height: auto;
        position: relative;
        padding: 82px 7vw 54px;
        opacity: 1;
transform: none;
animation: none;
    }

    .dpe-improve-side-inner {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .dpe-improve-breadcrumb {
        top: 26px;
        width: 86%;
        max-width: 520px;
    }

    /* Premier panneau du hero */

    .dpe-improve-main {
    order: 1;
    width: 100%;
    min-height: calc(100svh - 70px);
    margin-left: 0;
    padding: 46px 7vw 44px;
    align-items: center;

    opacity: 0;
transform: translateX(-100%);

animation:
    dpeImproveSideEntrance
    .78s
    cubic-bezier(.22, .72, .22, 1)
    .25s
    forwards;

background-image: url("assets/imageameliorerdpe1.png");

background-size: cover;
background-repeat: no-repeat;
background-position: 70% center;
    }

    .dpe-improve-main-content {
    width: 100%;
    max-width: 580px;
    transform: translateY(-24px);
}

    .dpe-improve-main-overline {
    display: block;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .90);
    font-size: 18px;
    line-height: 1.1;
}

    .dpe-improve-main h1 {
        font-size: 42px;
        line-height: .92;
        margin-bottom: 22px;
    }

    .dpe-improve-main-text {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.45;
    }

    .dpe-improve-main-points {
        gap: 11px;
        margin-bottom: 0;
    }

    .dpe-improve-main-points p {
        gap: 11px;
        font-size: 14px;
        line-height: 1.32;
    }

    .dpe-improve-main-points span {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    /* Phrase redondante masquée sur mobile */

    .dpe-improve-main-conclusion {
    display: block;
    max-width: 100%;
    margin: 22px 0 0;
    font-size: 14px;
    line-height: 1.4;
}

    .dpe-improve-main-btn {
        width: 100%;
        min-height: 50px;
        margin-top: 22px;
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Deuxième panneau lavande */

    .dpe-improve-side {
        order: 2;
    }

}

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

    .dpe-improve-side {
        opacity: 1;
        transform: none;
        animation: none;
    }

}

/* Header permanent sur la page Améliorer mon DPE */

.dpe-improve-page .header {
    position: fixed;
    top: 0;
}

/* =========================================================
   AMÉLIORER MON DPE — HERO COMPACT ÉCRAN PC
   ========================================================= */

@media(min-width:851px) {

    .dpe-improve-hero {
    height: calc(100vh - 70px);
    min-height: 620px;
    max-height: 720px;
    margin: 0;
}

    .dpe-improve-side {
        padding: 48px 36px 32px;
    }

    .dpe-improve-breadcrumb {
        top: 22px;
    }

    .dpe-improve-side h2 {
        margin: 0 0 32px;
        font-size: clamp(26px, 1.75vw, 34px);
        line-height: .97;
    }

    .dpe-improve-side-steps {
        margin: 0 0 24px;
    }

    .dpe-improve-side-step {
        min-height: 76px;
    }

    .dpe-improve-side-step p {
        font-size: 13px;
        line-height: 1.3;
    }

    .dpe-improve-side-btn {
        min-height: 52px;
        padding: 11px 20px;
        font-size: 13px;
    }

    .dpe-improve-main {
        padding: 30px 3.5vw 26px 7vw;
    }

    .dpe-improve-main-content {
        width: min(100%, 520px);
        transform: translateY(-4px);
    }

    .dpe-improve-main-overline {
        max-width: 470px;
        margin: 0 0 25px;
        font-size: 19px;
        line-height: 1.05;
    }

    .dpe-improve-main h1 {
        max-width: 520px;
        margin: 0 0 24px;
        font-size: clamp(42px, 3vw, 58px);
        line-height: .91;
    }

    .dpe-improve-main-text {
        max-width: 500px;
        margin: 0 0 22px;
        font-size: 14px;
        line-height: 1.43;
    }

    .dpe-improve-main-points {
        max-width: 490px;
        gap: 10px;
        margin: 0 0 19px;
    }

    .dpe-improve-main-points p {
        gap: 11px;
        font-size: 13px;
        line-height: 1.3;
    }

    .dpe-improve-main-points span {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .dpe-improve-main-conclusion {
        max-width: 420px;
        margin: 0;
        font-size: 13px;
        line-height: 1.32;
    }

        .dpe-improve-main-conclusion::after {
        width: 255px;
        margin-top: 12px;
    }

    .dpe-improve-main-btn {
        width: 300px;
        min-height: 50px;
        margin-top: 18px;
        padding: 11px 20px;
        font-size: 13px;
    }

}


/* =========================================================
   AMÉLIORER MON DPE — PARCOURS EN 5 ÉTAPES
   ========================================================= */

.dpe-process {
    width: 100%;
    padding: 42px 3vw 40px;

    background: #f5f5f5;

    scroll-margin-top: 24px;
}

.dpe-process-inner {
    width: min(100%, 1320px);
    margin: 0 auto;
}


/* Onglets */

.dpe-process-tabs {
    width: 100%;
    max-width: 1160px;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;

    margin: 0 auto 48px;
}

.dpe-process-tab {
    position: relative;

    min-width: 0;
    height: 54px;

    padding: 0 14px;

    border: 1px solid #d6d6d6;
    border-radius: 10px;

    background: #f7f7f7;
    color: #898989;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;

    cursor: pointer;

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

.dpe-process-tab:hover {
    color: #121212;

    border-color: #bfc2ca;
    background: #f1f1f1;
}

.dpe-process-tab.is-active {
    color: #121212;

    border-color: #cfd1d7;
    background: #ececec;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .42);
}


/* Flèche orange sous l’onglet actif */

.dpe-process-tab.is-active::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -23px;

    width: 2px;
    height: 14px;

    background: #ef6c00;

    transform: translateX(-50%);
}

.dpe-process-tab.is-active::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -28px;

    width: 10px;
    height: 10px;

    border-right: 2px solid #ef6c00;
    border-bottom: 2px solid #ef6c00;

    transform:
        translateX(-50%)
        rotate(45deg);
}


/* Grande carte */

.dpe-process-panels {
    position: relative;
}

.dpe-process-panel {
    display: none;

    grid-template-columns: 55% 45%;

    min-height: 490px;

    overflow: hidden;

    border-radius: 30px;

    background: #fff;

    box-shadow:
        0 16px 38px rgba(7, 20, 33, .035);
}

.dpe-process-panel.is-active {
    display: grid;

    animation:
        dpeProcessPanelIn
        .34s
        ease
        both;
}

@keyframes dpeProcessPanelIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Partie texte */

.dpe-process-content {
    min-width: 0;

    padding: 36px 58px 32px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    background: #fff;
}

.dpe-process-label {
    min-height: 34px;

    margin: 0 0 25px;
    padding: 0 14px;

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

    border: 1px solid #252525;
    border-radius: 8px;

    color: #252525;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;

    text-transform: uppercase;
}

.dpe-process-content h2 {
    max-width: 570px;

    margin: 0 0 24px;

    color: #171717;

    font-family:
        "Barlow Condensed",
        Impact,
        Arial,
        sans-serif;

    font-size: clamp(30px, 2vw, 36px);
    line-height: .98;
    font-weight: 700;

    letter-spacing: -.02em;
    text-transform: uppercase;
}

.dpe-process-content > p:not(.dpe-process-label) {
    max-width: 580px;

    margin: 0;

    color: #252525;

    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
}


/* Bouton */

.dpe-process-btn {
    width: 250px;
    min-height: 47px;

    margin-top: auto;
    padding: 11px 20px;

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

    border: 0;
    border-radius: 10px;

    background: #9da8cc;
    color: #fff;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;

    text-align: center;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.dpe-process-btn:hover {
    transform: translateY(-3px);

    background: #8f9bc2;

    box-shadow:
        0 14px 28px rgba(73, 86, 140, .20);
}


/* Partie image */

.dpe-process-visual {
    min-width: 0;
    min-height: 490px;

    overflow: hidden;

    background: #ececec;
}

.dpe-process-visual img {
    width: 100%;
    height: 100%;
    min-height: 490px;

    display: block;

    object-fit: cover;
    object-position: center;
}
#dpe-panel-analyse .dpe-process-visual img {
    object-position: center;
}

#dpe-panel-points .dpe-process-visual img {
    object-position: center 46%;
}

#dpe-panel-scenarios .dpe-process-visual img {
    object-position: center;
}

#dpe-panel-travaux .dpe-process-visual img {
    object-position: center;
}

#dpe-panel-nouveau .dpe-process-visual img {
    object-position: center;
}


/* Écrans intermédiaires */

@media(max-width:1100px) {

    .dpe-process-tabs {
        gap: 14px;
    }

    .dpe-process-tab {
        padding: 0 10px;
        font-size: 13px;
    }

    .dpe-process-content {
        padding: 42px 44px 40px;
    }

}


/* Tablette et mobile */

@media(max-width:850px) {

    .dpe-process {
        padding: 24px 18px 42px;
    }

    /* Navigation horizontale des cinq étapes */

    .dpe-process-tabs {
        grid-template-columns: repeat(5, 150px);
        gap: 10px;
        margin: 0 auto 24px;
        padding-bottom: 3px;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .dpe-process-tab {
        height: 48px;
        padding: 0 10px;
        font-size: 12px;
    }

    .dpe-process-tab.is-active::before {
        bottom: -15px;
        height: 8px;
    }

    .dpe-process-tab.is-active::after {
        bottom: -19px;
        width: 8px;
        height: 8px;
    }

    /* Panneau actif */

    .dpe-process-panel,
    .dpe-process-panel.is-active {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 20px;
    }

    /* Photo placée avant le texte */

    .dpe-process-visual {
        order: 1;
        width: 100%;
        height: 220px;
        min-height: 220px;
    }

    .dpe-process-visual img {
        width: 100%;
        height: 220px;
        min-height: 220px;
        object-fit: cover;
    }

    /* Texte placé sous la photo */

.dpe-process-content {
    order: 2;
    min-height: 0;
    padding: 28px 22px 30px;
}

.dpe-process-label {
    min-height: 30px;
    margin: 0 0 19px;
    padding: 0 12px;
    border-radius: 7px;
    font-size: 12px;
}

.dpe-process-content h2 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1;
}

.dpe-process-content > p:not(.dpe-process-label) {
    font-size: 13px;
    line-height: 1.5;
}

.dpe-process-btn {
    width: 100%;
    min-height: 44px;
    margin-top: 24px;
    padding: 11px 18px;
    font-size: 12px;
}    

}


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

    .dpe-process-panel.is-active {
        animation: none;
    }

}

/* =========================================================
   AMÉLIORER MON DPE — AVANTAGES OUEST TRANSACTIONS
   ========================================================= */

.dpe-advantages {
    width: 100%;
    padding: 54px 0 78px;
    background: #f5f5f5;
}
.dpe-advantages-inner {
    width: 79.2vw;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 680px 725px;
    column-gap: 95px;
    align-items: start;
}


/* Colonne gauche */

.dpe-advantages-copy {
    padding: 0;
}

.dpe-advantages-title {
    margin: 0 0 34px;

    color: #171717;

    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: 0;
}

.dpe-advantages-copy h2 {
    max-width: 650px;
    margin: 0 0 21px;

    color: #171717;

    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 23px;
    line-height: 1.18;
    font-weight: 700;

    letter-spacing: 0;
}

.dpe-advantages-intro {
    max-width: 650px;
    margin: 0;

    color: #272727;

    font-family: Inter, Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.58;
    font-weight: 400;
}

/* Accordéon */

.dpe-advantages-accordion {
    width: 725px;

    overflow: hidden;

    border: 1px solid #d5d5d5;
    border-radius: 3px;

    background: #f5f5f5;
}

.dpe-advantages-item {
    margin: 0;

    border: 0;
    border-bottom: 1px solid #d5d5d5;

    background: #f5f5f5;
}

.dpe-advantages-item:last-child {
    border-bottom: 0;
}


/* Ligne fermée */

.dpe-advantages-item summary {
    width: 100%;
    min-height: 62px;

    padding: 9px 16px;

    display: flex;
    align-items: center;
    gap: 14px;

    list-style: none;

    background: #f5f5f5;
    color: #171717;

    cursor: pointer;
}

.dpe-advantages-item summary::-webkit-details-marker {
    display: none;
}

.dpe-advantages-item summary::marker {
    content: "";
}

.dpe-advantages-summary-text {
    max-width: 650px;

    font-family: Inter, Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.2;
    font-weight: 600;

    letter-spacing: 0;
}

.dpe-advantages-item summary .dpe-advantages-summary-text {
    flex: 1;
    max-width: 650px;

    font-family: Inter, Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.2;
    font-weight: 500;

    letter-spacing: 0;
}

.dpe-advantages-item summary .dpe-advantages-summary-text strong {
    display: block;

    margin-top: 3px;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}


/* Flèche */

.dpe-advantages-arrow {
    width: 10px;
    height: 10px;

    flex: 0 0 10px;

    border-top: 2px solid #171717;
    border-right: 2px solid #171717;

    transform: rotate(45deg);

    transition: transform .22s ease;
}

.dpe-advantages-item[open] .dpe-advantages-arrow {
    transform: rotate(135deg) translate(-2px, -2px);
}


/* Réponse ouverte */

.dpe-advantages-answer {
    border-top: 1px solid #d5d5d5;
    background: #fff;
}

.dpe-advantages-answer p {
    max-width: 660px;

    margin: 0;
    padding: 20px 16px 24px;

    color: #272727;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
}


/* Interactions */

.dpe-advantages-item summary:hover {
    background: #fafafa;
}

.dpe-advantages-item summary:focus {
    outline: none;
}

.dpe-advantages-item summary:focus-visible {
    outline: 2px solid #9ccfff;
    outline-offset: -2px;
}


/* Écrans intermédiaires */

@media(max-width:1900px) {

    .dpe-advantages-inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        column-gap: 70px;
    }

    .dpe-advantages-accordion {
        width: 100%;
    }

}


/* Tablette */

@media(max-width:1000px) {

    .dpe-advantages {
        padding: 58px 5vw 76px;
    }

    .dpe-advantages-inner {
        width: 100%;

        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .dpe-advantages-intro {
        max-width: 720px;
    }

}


/* Mobile */

@media(max-width:640px) {

    .dpe-advantages {
        padding: 46px 20px 62px;
    }

    .dpe-advantages-inner {
        row-gap: 32px;
    }

    .dpe-advantages-title {
        margin-bottom: 27px;
        font-size: 23px;
    }

    .dpe-advantages-copy h2 {
        margin-bottom: 21px;
        font-size: 22px;
    }

    .dpe-advantages-intro {
        font-size: 15px;
    }

    .dpe-advantages-item summary {
        min-height: 68px;
        padding: 14px 15px;
        gap: 14px;
    }

    .dpe-advantages-item summary .dpe-advantages-summary-text,
    .dpe-advantages-item summary .dpe-advantages-summary-text strong {
    font-size: 13px;
    line-height: 1.12;
}

    .dpe-advantages-answer p {
        padding: 23px 15px 27px;
        font-size: 15px;
    }

}

/* =========================================================
   AMÉLIORER MON DPE — CHAQUE LOGEMENT EST UNIQUE
   ========================================================= */

.dpe-unique-home {
    width: 100%;
    padding: 16px 0 54px;
    background: #f5f5f5;
}

.dpe-unique-home-inner {
    width: 79.2vw;
    max-width: 1400px;
    margin: 0 auto;
    padding: 46px 64px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    column-gap: 56px;
    align-items: center;

    border: 1px solid #d8d8d8;
    border-radius: 24px;
    background: #fff;
}

.dpe-unique-home-copy h2 {
    margin: 0 0 18px;

    color: #171717;

    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 27px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}

.dpe-unique-home-copy p {
    max-width: 610px;
    margin: 0 0 14px;

    color: #2a2a2a;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.dpe-unique-home-copy p:last-of-type {
    margin-bottom: 26px;
}

.dpe-unique-home-cta {
    width: 100%;
    max-width: 470px;
    min-height: 50px;
    padding: 0 24px;

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

    border-radius: 13px;
    background: #9da8cc;
    color: #fff;
    text-decoration: none;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.dpe-unique-home-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    background: #939fc4;
}

.dpe-unique-home-media {
    width: 100%;
}

.dpe-unique-home-media img {
    width: 100%;
    height: 340px;
    display: block;

    border-radius: 0;
    object-fit: cover;
    object-position: center;
}

/* Tablette */

@media (max-width: 1200px) {
    .dpe-unique-home-inner {
        grid-template-columns: 1fr;
        row-gap: 40px;
        padding: 54px 42px;
    }

    .dpe-unique-home-copy p {
        max-width: 100%;
    }

    .dpe-unique-home-cta {
        max-width: 420px;
    }
}

/* Mobile */

@media (max-width: 640px) {

    .dpe-unique-home {
        padding: 8px 20px 38px;
    }

    .dpe-unique-home-inner {
        width: 100%;
        padding: 24px 18px 20px;
        row-gap: 18px;
        border-radius: 18px;
    }

    .dpe-unique-home-copy h2 {
        margin-bottom: 14px;
        font-size: 22px;
        line-height: 1.08;
    }

    .dpe-unique-home-copy p {
        margin-bottom: 10px;
        font-size: 12.5px;
        line-height: 1.45;
    }

    .dpe-unique-home-copy p:last-of-type {
        margin-bottom: 18px;
    }

    .dpe-unique-home-cta {
        width: 100%;
        max-width: 100%;
        min-height: 44px;
        padding: 0 14px;
        border-radius: 11px;
        font-size: 12px;
    }

    .dpe-unique-home-inner {
        grid-template-columns: 1fr;
    }

    .dpe-unique-home-media {
        width: 100%;
        height: 190px;
        overflow: hidden;
    }

    .dpe-unique-home-media img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        object-position: center;
    }

}

/* =========================================================
   AMÉLIORER MON DPE — POURQUOI AMÉLIORER SON DPE
   ========================================================= */

.dpe-why {
    width: 100%;
    padding: 8px 0 72px;
    background: #f5f5f5;
}

.dpe-why-inner {
    width: 79.2vw;
    max-width: 1500px;
    margin: 0 auto;
}

.dpe-why-title {
    margin: 0 0 38px;

    color: #171717;

    text-align: center;

    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
}

.dpe-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.dpe-why-card {
    min-height: 440px;
    padding: 30px 26px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border-radius: 24px;
    background: #fff;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dpe-why-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.dpe-why-card-icon {
    width: 175px;
    height: 175px;

    margin: 0 auto 14px;

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

    overflow: hidden;
}

.dpe-why-card-icon img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: contain;

    transform: scale(2.35);
}

.dpe-why-card:nth-child(2) .dpe-why-card-icon img {
    transform: scale(2.75);
}

.dpe-why-card h3 {
    min-height: 44px;
    margin: 0 0 18px;

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

    color: #171717;
    text-align: center;

    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.08;
    font-weight: 700;
}

.dpe-why-card p {
    margin: 0;

    color: #2a2a2a;

    text-align: center;

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

/* Tablette */

@media (max-width: 1200px) {

    .dpe-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dpe-why-card {
        min-height: 0;
    }

}


/* Mobile */

@media (max-width: 640px) {

    .dpe-why {
        padding: 8px 20px 42px;
    }

    .dpe-why-inner {
        width: 100%;
    }

    .dpe-why-title {
        margin-bottom: 24px;
        font-size: 21px;
    }

    .dpe-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dpe-why-card {
        min-height: 0;
        padding: 18px 20px 20px;
        border-radius: 18px;
    }

    .dpe-why-card-icon {
        width: 95px;
        height: 95px;
        margin-bottom: 5px;
    }

    .dpe-why-card h3 {
        min-height: 0;
        margin-bottom: 11px;
        font-size: 18px;
        line-height: 1.08;
    }

    .dpe-why-card p {
        font-size: 12.5px;
        line-height: 1.45;
    }

}

/* =========================================================
   AMÉLIORER MON DPE — FAQ
   ========================================================= */

.dpe-improve-faq {
    width: 100%;
    padding: 58px 7vw 66px;

    background: #9da8cc;
}

.dpe-improve-faq-inner {
    max-width: 1180px;
    margin: 0 auto;

    text-align: center;
}

.dpe-improve-faq-overline {
    margin: 0 0 12px;

    color: rgba(255, 255, 255, .78);

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: .30em;
    text-transform: uppercase;
}

.dpe-improve-faq-overline::after {
    content: "";

    display: block;

    width: 54px;
    height: 2px;

    margin: 14px auto 0;

    background: rgba(255, 255, 255, .75);
}

.dpe-improve-faq h2 {
    max-width: 1260px;
    margin: 0 auto 32px;

    color: #fff;

    font-family:
        "Barlow Condensed",
        Impact,
        Arial,
        sans-serif;

    font-size: clamp(40px, 3.05vw, 56px);
    line-height: .94;
    font-weight: 700;

    letter-spacing: -.01em;
    text-transform: uppercase;
}


/* Grande carte blanche */

.dpe-improve-faq-card {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 42px;

    overflow: hidden;

    border-radius: 28px;

    background: #fff;

    box-shadow:
        0 20px 50px rgba(57, 67, 108, .16);
}


/* Questions */

.dpe-improve-faq-item {
    border-bottom: 1px solid rgba(7, 20, 33, .08);
}

.dpe-improve-faq-item:last-child {
    border-bottom: 0;
}

.dpe-improve-faq-item summary {
    min-height: 66px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    list-style: none;

    text-align: left;

    cursor: pointer;
}

.dpe-improve-faq-item summary::-webkit-details-marker {
    display: none;
}

.dpe-improve-faq-item summary::marker {
    content: "";
}

.dpe-improve-faq-item summary span {
    color: #171717;

    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;

    transition: color .22s ease;
}


/* Flèche */

.dpe-improve-faq-item summary em {
    width: 30px;
    height: 30px;

    flex: 0 0 auto;

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

    border-radius: 50%;

    color: #171717;

    font-family: Inter, Arial, sans-serif;
    font-size: 21px;
    line-height: 1;
    font-style: normal;

    transition:
        transform .28s ease,
        background .28s ease,
        color .28s ease;
}

.dpe-improve-faq-item[open] summary em {
    transform: rotate(90deg);

    background: #eef0f8;
    color: #8996c1;
}


/* Réponse */

.dpe-improve-faq-item > p {
    max-width: 880px;

    margin: -2px 0 22px;

    color: #565656;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;

    text-align: left;
}


/* Survol */

.dpe-improve-faq-item summary:hover span {
    color: #8996c1;
}


/* Mobile / tablette */

@media(max-width:900px) {

    .dpe-improve-faq {
        padding: 54px 6vw 62px;
    }

    .dpe-improve-faq h2 {
        font-size: 44px;
        margin-bottom: 28px;
    }

    .dpe-improve-faq-card {
        padding: 16px 22px;
        border-radius: 24px;
    }

    .dpe-improve-faq-item summary {
        min-height: 68px;
        gap: 18px;
    }

    .dpe-improve-faq-item summary span {
        font-size: 15px;
    }

    .dpe-improve-faq-item > p {
        font-size: 14px;
        line-height: 1.6;
    }

}


@media(max-width:600px) {

    .dpe-improve-faq {
        padding: 48px 20px 54px;
    }

    .dpe-improve-faq h2 {
        font-size: 37px;
    }

    .dpe-improve-faq-card {
        padding: 12px 20px;
        border-radius: 20px;
    }

}


/* =========================================================
   AMÉLIORER MON DPE — EXEMPLE ET CONTACT FINAL
   ========================================================= */

.dpe-final-actions {
    width: 100%;
    padding: 0 0 70px;
    background: #f5f5f5;
    scroll-margin-top: 30px;
}

.dpe-final-actions-inner {
    width: 79.2vw;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.dpe-final-card {
    min-height: 380px;
    padding: 52px 62px 48px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    border: 1px solid #d8d8d8;
    border-radius: 22px;

    background: #fff;
}

.dpe-final-card h2 {
    margin: 0 0 20px;

    color: #171717;

    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 27px;
    line-height: 1.12;
    font-weight: 700;
}

.dpe-final-card p {
    max-width: 570px;
    margin: 0 0 15px;

    color: #2a2a2a;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
}

.dpe-final-card p:last-of-type {
    margin-bottom: 30px;
}

.dpe-final-buttons {
    width: 100%;
    margin-top: auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.dpe-final-btn {
    min-height: 52px;
    padding: 0 22px;

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

    border: 1px solid #9da8cc;
    border-radius: 13px;

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;

    text-align: center;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        color .22s ease;
}

.dpe-final-btn-primary {
    background: #9da8cc;
    color: #fff;
}

.dpe-final-btn-secondary {
    background: #fff;
    color: #8996c1;
}

.dpe-final-btn-wide {
    width: 100%;
    max-width: 510px;
    margin-top: auto;
}

.dpe-final-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(73, 86, 140, .14);
}

.dpe-final-btn-primary:hover {
    background: #8f9bc2;
}

.dpe-final-btn-secondary:hover {
    background: #f6f7fb;
}


/* Tablette */

@media (max-width: 1000px) {

    .dpe-final-actions {
        padding: 0 5vw 64px;
    }

    .dpe-final-actions-inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .dpe-final-card {
        min-height: 0;
    }

}


/* Mobile */

@media (max-width: 640px) {

    .dpe-final-actions {
        padding: 0 20px 54px;
    }

    .dpe-final-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .dpe-final-card h2 {
        font-size: 23px;
    }

    .dpe-final-card p {
        font-size: 14px;
    }

    .dpe-final-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dpe-final-btn,
    .dpe-final-btn-wide {
        width: 100%;
        max-width: none;
    }

}
/* Bloc présentation de l'agence — version mobile */

.agency-intro-mobile-logo,
.agency-intro-mobile-title {
    display: none;
}

@media screen and (max-width: 700px) {

        .agency-intro {
        display: block;
        min-height: auto;
        padding: 52px 6vw 54px;
        background: #fff;
    }

    .agency-intro-left {
        width: 100%;
        max-width: 428px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    .agency-intro-mobile-logo {
        display: block;
        width: 154px;
        height: auto;
        margin: 0 auto 25px;
    }

    .agency-intro-desktop-title,
    .agency-intro-right {
        display: none;
    }

        .agency-intro-left .agency-intro-mobile-title {
        display: block;
        margin: 0 auto 36px;
        font-size: clamp(25px, 7.2vw, 31px);
        line-height: 1.28;
        font-weight: 500;
        text-align: center;
    }

    .agency-intro-btn {
        width: 88%;
        max-width: 428px;
        min-height: 54px;
        margin: 0 auto 24px;
        border-radius: 4px;
        font-size: 12px;
        letter-spacing: .035em;
    }

    .agency-intro-btn span {
        margin-left: 18px;
        font-size: 29px;
        font-weight: 400;
    }

    .agency-intro-btn-light {
        margin-bottom: 0;
    }
}
/* Carte des secteurs — adaptation mobile */

.territory-mobile-sector {
    display: none;
}

@media(max-width:700px) {

        .territory-section {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 40px 6vw 46px;
    }

    /* On conserve le titre au-dessus de la carte */

    .territory-content {
        order: 1;
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .territory-content .overline {
        margin-bottom: 14px;
        font-size: 13px;
        text-align: center;
    }

    .territory-content h2 {
        margin: 0;
        font-size: 37px;
        line-height: 1.08;
        text-align: center;
    }

    /* Le paragraphe et le bouton disparaissent sur mobile */

    .territory-content p:not(.overline),
    .territory-content .territory-btn {
        display: none;
    }

    .territory-map-wrap {
        order: 2;
    }

    .territory-map-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: none;
    }

    /* Consigne au-dessus de la carte */

    .territory-map-hint {
        order: 1;
        max-width: 310px;
        margin: 0 auto 16px;
        color: rgba(95, 90, 83, .72);
        font-size: 12px;
        line-height: 1.5;
        text-align: center;
    }

    /* Légende au-dessus de la carte */

    .territory-legend {
        order: 2;
        width: 100%;
        margin: 0 auto 22px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        text-align: center;
    }

    .territory-legend span {
        justify-content: center;
        white-space: normal;
    }

    /* Carte légèrement réduite, mais toujours cliquable */

    .territory-map-svg {
        order: 3;
        width: min(78vw, 300px);
        height: auto;
        margin: 0 auto;
        overflow: visible;
        touch-action: manipulation;
    }

    .territory-zone {
        cursor: pointer;
        pointer-events: all;
        touch-action: manipulation;
    }

    /* Nom du secteur affiché après le clic */

        .territory-mobile-result {
        order: 4;
        width: 100%;
        max-width: 340px;
        min-height: 38px;
        margin: 16px auto 0;
        text-align: center;
    }

    .territory-mobile-sector {
        display: block;
        margin: 0;
        color: var(--night);
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 27px;
        line-height: 1.15;
        font-weight: 600;
        text-align: center;
    }

    .territory-mobile-text {
        display: block;
        margin: 14px 0 0;
        color: var(--muted);
        font-family: Inter, Arial, sans-serif;
        font-size: 14px;
        line-height: 1.65;
        text-align: center;
    }

    .territory-mobile-sector:empty + .territory-mobile-text:empty {
        display: none;
    }
}

/* Partenaires — défilement horizontal sur mobile */

/*
La série supplémentaire reste masquée sur ordinateur.
*/

.partner-logo-marquee-copy {
    display: none;
}

@media(max-width:700px) {

    .contact-home {
        padding: 44px 6vw 38px !important;
    }

    .partners-inline {
        width: 100%;
        padding: 0 6vw 28px;
        overflow: hidden;
    }

    .partners-grid {
        width: max-content;
        max-width: none;
        margin: 0;
        padding: 4px 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 18px;
        animation: partnersMobileMarquee 38s linear infinite;
        will-change: transform;
    }

    .partner-logo,
    .partner-logo-marquee-copy {
        display: flex;
        flex: 0 0 auto;
        width: 54px;
        height: 54px;
        align-items: center;
        justify-content: center;
    }

    .partner-logo-marquee-copy {
        pointer-events: none;
    }

    .partner-logo img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    @keyframes partnersMobileMarquee {

        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 9px));
        }
    }
}

/*
Le défilement est arrêté si le téléphone est configuré
pour réduire les animations.
*/

@media(max-width:700px) and (prefers-reduced-motion:reduce) {

    .partners-grid {
        animation: none;
        max-width: 100%;
        overflow-x: auto;
    }
}

@media(max-width:700px) {

    .management-pricing + .rental-energy-bridge {
        padding-top: 20px;
    }

}.pricing-note-mobile {
    display: none;
}

@media(max-width:700px) {

    .pricing-note-desktop {
        display: none;
    }

    .pricing-note-mobile {
        display: block;
    }

}

/* Titre DPE spécifique à la page Gestion */

.management-dpe-title-mobile {
    display: none;
}

@media(max-width:700px) {

    .management-pricing + .rental-energy-bridge h2 {
        font-family: "Bebas Neue", "Barlow Condensed", Impact, Arial, sans-serif;
        font-size: 40px;
        line-height: .92;
        font-weight: 400;
        letter-spacing: .005em;
        text-transform: uppercase;
        color: var(--night);
        margin: 0 0 22px;
        text-align: left;
    }

    .management-dpe-title-desktop {
        display: none;
    }

    .management-dpe-title-mobile {
        display: block;
        width: 100%;
        margin: 0;
        text-align: left;
    }

}

/* Navigation mobile du parcours DPE — style Foncia */

.dpe-process-mobile-nav {
    display: none;
}

@media(max-width:850px) {

    .dpe-process-tabs {
        display: none;
    }

    .dpe-process-mobile-nav {
        width: 100%;
        margin: 0 auto 34px;
        padding: 0;

        position: relative;

        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 8px;
        align-items: center;

        background: transparent;
    }

    .dpe-process-mobile-title {
        min-height: 58px;
        padding: 10px 14px;

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

        background: #ececec;
        border: 1px solid #d6d6d6;
        border-radius: 10px;

        color: #2e2e2e;

        font-family: Inter, Arial, sans-serif;
        font-size: 13px;
        line-height: 1.25;
        font-weight: 700;
        text-align: center;
    }

    .dpe-process-mobile-prev,
    .dpe-process-mobile-next {
        width: 42px;
        height: 58px;
        padding: 0;

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

        border: 0;
        background: transparent;
        color: var(--night);

        font-family: Arial, sans-serif;
        font-size: 34px;
        font-weight: 300;
        line-height: 1;

        cursor: pointer;
        transition: opacity .2s ease, transform .2s ease;
    }

    .dpe-process-mobile-prev:active,
    .dpe-process-mobile-next:active {
        transform: scale(.88);
    }

    .dpe-process-mobile-prev:disabled,
    .dpe-process-mobile-next:disabled {
        opacity: .22;
        cursor: default;
    }

    /* Flèche violette sous la case active */

    .dpe-process-mobile-arrow {
        position: absolute;
        left: 50%;
        bottom: -23px;

        width: 2px;
        height: 14px;

        background: #9da8cc;
        transform: translateX(-50%);
    }

    .dpe-process-mobile-arrow::after {
        content: "";

        position: absolute;
        left: 50%;
        bottom: -1px;

        width: 8px;
        height: 8px;

        border-right: 2px solid #9da8cc;
        border-bottom: 2px solid #9da8cc;

        transform: translateX(-50%) rotate(45deg);
    }

}

/* =========================================================
   PAGE CONTACT — VERSION MOBILE
   ========================================================= */

@media(max-width:700px) {

    .contact-page {
        min-height: auto;
        padding: 38px 20px 48px;
        overflow: hidden;
    }

    .contact-page-title {
        width: 100%;
        margin: 0 auto 34px;
        text-align: center;
    }

    .contact-page-logo {
        width: 115px;
        margin: 0 auto 20px;
    }

    .contact-page-title h1 {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        white-space: normal;
        overflow-wrap: break-word;

        font-size: 31px;
        line-height: 1.05;
        text-align: center;
    }

    .contact-actions {
        width: 100%;
        margin: 0 auto 38px;
    }

    .contact-action {
        width: 100%;
        min-height: 68px;
        padding: 15px 2px;
        gap: 14px;
    }

    .contact-action span {
        min-width: 0;
        padding-right: 4px;

        font-size: 24px;
        line-height: 1.05;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .contact-action em {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;

        font-size: 19px;
    }

    .contact-infos {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
    }

    .contact-infos > div,
    .contact-infos > div:first-child {
        width: 100%;
        padding: 24px 0;
        border-top: 1px solid var(--border);
    }

    .contact-infos > div::before {
        display: none;
    }

    .contact-infos h2 {
        margin: 0 0 14px;
        font-size: 13px;
    }

    .contact-infos p,
    .contact-infos a {
        max-width: 100%;
        margin: 0;

        font-size: 13px;
        line-height: 1.55;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 18px;
    }

}

/* Bouton estimation du menu : masqué sur PC */

.mobile-menu-estimation,
.mobile-menu-contact,
.nav-dpe-back {
    display: none;
}

@media(max-width:900px) {

    .mobile-menu-estimation {
        display: flex;
    }

    .mobile-menu-contact {
        display: block;
    }

    .nav-dpe-back {
        display: flex;
    }

}

/* Espace avant le footer — page Estimation */

@media(max-width:700px) {

    .estimate-page {
        min-height: 0;
        padding-bottom: 110px;
    }

    .estimate-form {
        padding-bottom: 0;
    }

    .estimate-step.active {
        margin-bottom: 0;
        padding-bottom: 0;
    }

}

/* Zone d’intervention : accès direct à la carte sur mobile */
@media (max-width: 600px) {
    .zone-page {
        padding-top: 20px;
    }

    .zone-heading {
        display: none;
    }

    .zone-territory-section {
        margin-top: 0;
        margin-bottom: 10px;
        padding-top: 0;
        padding-top: 20px;
    }
}

/* Surtitre du bloc projet : une seule ligne sur mobile */
@media (max-width: 600px) {
    .zone-cta .overline {
        font-size: 12px;
        letter-spacing: .18em;
        white-space: nowrap;
    }
}
