@keyframes home-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes announcement-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes site-header-fixed-reveal {
    0% {
        opacity: .88;
    }
    to {
        opacity: 1;
    }
}

@keyframes hero-col-fade-a {
    0%, 40%, to {
        opacity: 1;
    }
    50%, 90% {
        opacity: 0;
    }
}

@keyframes hero-col-fade-b {
    0%, 40%, to {
        opacity: 0;
    }
    50%, 90% {
        opacity: 1;
    }
}

@keyframes st6-marquee-run {
    0% {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes home-real-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes presentation-badge-rotate {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes typed-cursor-blink {
    0%, 49% {
        opacity: 1;
    }
    50%, to {
        opacity: 0;
    }
}

@keyframes tzp-logos-marquee {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

body.has-custom-cursor,
body.has-custom-cursor * {
    cursor: none !important;
}

body.has-custom-cursor.custom-cursor--native-fallback,
body.has-custom-cursor.custom-cursor--native-fallback * {
    cursor: auto !important;
}

body.has-custom-cursor.custom-cursor--native-fallback .custom-cursor {
    opacity: 0 !important;
    visibility: hidden;
}

.custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: 2147483646;
    pointer-events: none;
    mix-blend-mode: normal;
}

.custom-cursor--idle {
    opacity: 0;
}

.custom-cursor--hidden {
    opacity: 0;
    transition: opacity .2s ease;
}

.custom-cursor__dot,
.custom-cursor__ring {
    position: absolute;
    left: 0;
    top: 0;
    will-change: transform;
    border-radius: 50%;
    transition: width .25s ease, height .25s ease, border-color .25s ease, background-color .25s ease, opacity .2s ease;
}

.custom-cursor__ring {
    width: 3.2rem;
    height: 3.2rem;
    margin: 0;
    border: 2px solid color-mix(in srgb, var(--color-primary, #c6a47e) 85%, transparent);
    background: 0 0;
    opacity: .9;
}

.custom-cursor__dot {
    width: .6rem;
    height: .6rem;
    margin: 0;
    border: 0;
    background-color: var(--color-primary-dark, #885c2d);
    opacity: 1;
}

.custom-cursor--hover .custom-cursor__ring {
    width: 5.2rem;
    height: 5.2rem;
    border-color: transparent;
    background-color: color-mix(in srgb, var(--color-primary, #c6a47e) 23%, transparent);
}

.custom-cursor--hover .custom-cursor__dot {
    width: .35rem;
    height: .35rem;
    background-color: var(--color-primary-dark, #885c2d);
    opacity: .92;
}

@supports not (color: color-mix(in srgb, white, black)) {
    .custom-cursor__ring {
        border-color: rgba(198, 164, 126, .85);
    }
    .custom-cursor--hover .custom-cursor__ring {
        background-color: rgba(198, 164, 126, .12);
    }
}

.home-loader {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 20%, #f2eadf 0, #f9f5ef 35%, #fff 100%);
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}

html.home-loader-pending body {
    overflow: hidden;
}

html.home-loader-pending .home-loader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-loader,
.home-loader.is-leaving {
    opacity: 0;
    visibility: hidden;
}

.home-loader__inner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #2a2a2a;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.home-loader__spinner {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 3px solid rgba(136, 92, 45, .22);
    border-top-color: var(--color-primary-dark, #885c2d);
    animation: home-loader-spin .9s linear infinite;
}

.home-loader__text {
    font-size: 1.2rem;
}

.sr-fade-up {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .65s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--sr-delay, 0ms);
    will-change: opacity, transform;
}

.sr-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.sr-fade-up--paragraph {
    transform: translate3d(0, 34px, 0);
    transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .95s cubic-bezier(.2, .7, .2, 1);
}

@media (prefers-reduced-motion:reduce) {
    .sr-fade-up,
    .sr-fade-up--paragraph,
    .sr-fade-up.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.announcement-ticker {
    background: var(--color-announcement);
    color: var(--color-secondary);
    overflow: hidden;
    height: var(--announcement-h);
    display: flex;
    align-items: center;
    margin: .5rem;
    border-radius: 2.5rem;
}

@media (max-width:767px) {
    .announcement-ticker {
        display: none;
    }
}

.announcement-ticker__inner {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.announcement-ticker__track {
    display: flex;
    width: max-content;
    animation: announcement-ticker-scroll 55s linear infinite;
}

@media (prefers-reduced-motion:reduce) {
    .announcement-ticker__track {
        animation: none;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: var(--space-2);
        padding: var(--space-1) var(--container-pad);
    }
    .announcement-ticker,
    .announcement-ticker__track {
        height: auto;
        min-height: var(--announcement-h);
    }
    .announcement-ticker__group[aria-hidden=true] {
        display: none;
    }
}

.announcement-ticker__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: var(--space-4);
    padding-right: var(--space-8);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.announcement-ticker__sep {
    opacity: .65;
    font-size: .65em;
}

.announcement-ticker__item {
    opacity: .95;
}

.announcement-ticker__link {
    color: #000 !important;
    text-decoration: none;
    border-bottom: 1px solid rgb(255 255 255/.35);
    transition: opacity var(--transition-fast), border-color var(--transition-fast);
}

.announcement-ticker__link:hover {
    opacity: .9;
    border-bottom-color: #fff;
    border-bottom-width: 2px;
}

.announcement-ticker__link--phone {
    display: inline-flex;
    align-items: center;
    gap: .45em;
    border-bottom: none;
    text-decoration: underline;
    text-decoration-color: rgb(255 255 255/.35);
    text-underline-offset: .2em;
}

.announcement-ticker__link--phone:hover {
    text-decoration-color: #fff;
}

.announcement-ticker__phone-icon {
    flex-shrink: 0;
    opacity: .95;
}

.site-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

body.has-hero:not(:has(.hero)) {
    padding-top: var(--site-header-offset);
}

.site-header {
    z-index: 200;
}

.site-header,
body.has-hero {
    position: relative;
}

body.has-hero .site-header-wrap:not(.header-wrap--in-flow) .site-header {
    position: relative;
}

body.has-hero .site-header-wrap.header-wrap--in-flow .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 201;
    animation: site-header-fixed-reveal .32s ease-out forwards;
}

@media (prefers-reduced-motion:reduce) {
    body.has-hero .site-header-wrap.header-wrap--in-flow .site-header {
        animation: none;
    }
}

body.has-hero .site-header-wrap.header-wrap--in-flow .header-mainbar {
    background: var(--color-white);
}

@media (max-width:767px) {
    .header.header-mainbar {
        background: var(--color-white);
    }
}

body.has-hero .site-header-wrap.header-wrap--in-flow .nav-link {
    color: var(--color-secondary) !important;
}

body.has-hero .site-header-wrap.header-wrap--in-flow .nav-item.active>.nav-link,
body.has-hero .site-header-wrap.header-wrap--in-flow .nav-link:hover {
    color: var(--color-primary-dark) !important;
}

body.has-hero .site-header-wrap.header-wrap--in-flow .nav-toggle span {
    background: var(--color-secondary);
}

body.has-hero .logo img {
    transition: max-height var(--transition-base), transform var(--transition-base);
}

body.has-hero .site-header-wrap.header-wrap--in-flow .logo img {
    width: 12rem;
}

@media (max-width:991px) {
    .logo img,
    body.has-hero .site-header-wrap.header-wrap--in-flow .logo img {
        width: 11.5rem;
    }
}

@media (min-width:1200px) {
    body.has-hero .site-header-wrap:not(.header-wrap--in-flow) .nav-item--devis {
        display: none;
    }
}

.nav-item--devis {
    flex-shrink: 0;
}

.nav-item--devis>.btn-solid-primary::after {
    display: none;
}

.nav-item--devis .btn-solid-primary {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 11px 24px;
    font-size: 1.6rem;
}

@media (max-width:1199px) {
    .nav .nav-item--devis {
        display: none !important;
    }
}

.float-phones {
    position: fixed;
    z-index: 9980;
    left: max(1.2rem, env(safe-area-inset-left, 0));
    bottom: max(1.2rem, env(safe-area-inset-bottom, 0));
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    max-width: min(22rem, calc(100vw - 2.4rem));
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
}

@media (max-width:767px) {
    .float-phones {
        left: 50%;
        top: 80px;
        bottom: inherit;
        flex-direction: row;
        max-width: 90%;
        transform: translateX(-50%);
        z-index: 180;
    }
}

body.has-hero:not(.float-phones-visible) .float-phones {
    opacity: 0;
    visibility: hidden;
    transform: translateY(.8rem);
    pointer-events: none;
}

body.has-hero:not(.float-phones-visible) .float-phones__link {
    pointer-events: none;
}

.float-phones__link {
    pointer-events: auto;
    text-decoration: none;
}

.float-phones .float-phones__link.btn-solid-primary {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-3);
    width: 100%;
    max-width: 100%;
    text-align: left;
}

@media (max-width:767px) {
    .float-phones .float-phones__link.btn-solid-primary {
        gap: 0;
        padding: 5px 15px;
    }
}

.float-phones__icon {
    flex-shrink: 0;
    display: block;
}

.float-phones__value {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

html {
    scroll-padding-top: var(--site-header-offset);
}

.site-header .header-mainbar {
    min-height: var(--header-bar-h);
    display: flex;
    align-items: center;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header-main {
    width: 100%;
    min-height: var(--header-bar-h);
}

@media (max-width:991px) {
    .header-main-end {
        margin-left: 4rem;
    }
}

.header-nav-cluster {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-4);
    min-width: 0;
}

.header-youtube {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    opacity: .95;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.header-youtube:hover {
    opacity: 1;
    transform: scale(1.05);
}

.header-youtube__logo {
    display: block;
    width: 3.2rem;
    height: auto;
    max-height: 3.2rem;
    object-fit: contain;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-size: var(--fs-md);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--color-heading);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

body.has-hero .nav-link {
    color: #fff !important;
}

.nav-item>.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: .2rem;
    background-color: var(--color-primary);
    transition: width .3s ease;
}

.nav-item.active>.nav-link::after,
.nav-item>.nav-link:hover::after {
    width: 70%;
}

.nav-submenu {
    list-style: none;
    margin: 0;
    padding: var(--space-2);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 27rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(.4rem);
    transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
    z-index: 50;
}

.nav-item--has-children:focus-within .nav-submenu,
.nav-item--has-children:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

:not(.nav-item--mega) .nav-submenu-item:not(:last-child) {
    border-bottom: 1px dashed var(--color-primary);
}

.nav-submenu a {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-size: var(--fs-sm);
    color: var(--color-heading) !important;
    text-decoration: none;
    border-radius: var(--radius-sm);
    line-height: 22px;
    letter-spacing: .5px;
}

.nav-submenu a:hover {
    background: var(--color-white-alt);
    color: var(--color-primary-dark) !important;
}

.nav-link--services-parent {
    cursor: pointer;
    user-select: none;
}

.nav-submenu--mega .nav-submenu-item a {
    padding: .6rem;
}

@media (min-width:1200px) {
    .nav-item--mega {
        position: static;
    }
    .nav-submenu--mega {
        position: absolute;
        left: 50%;
        right: auto;
        top: 65%;
        width: min(100vw - 3.2rem, var(--container-max));
        max-width: var(--container-max);
        min-width: unset;
        margin: 0;
        padding: var(--space-6);
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
        gap: var(--space-2);
        transform: translate(-50%, .4rem);
        border-radius: var(--radius-lg);
        z-index: 300;
        box-shadow: var(--shadow-lg);
    }
    .nav-item--has-children:focus-within .nav-submenu--mega,
    .nav-item--has-children:hover .nav-submenu--mega {
        transform: translate(-50%, 0);
    }
    .header-main-end--mobile-only {
        display: none !important;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    width: 4.4rem;
    height: 4.4rem;
    padding: 0;
    border: 0;
    background: 0 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 2.4rem;
    background: var(--color-secondary);
    border-radius: 1px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(calc(.5rem + 2px)) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(calc(-.5rem - 2px)) rotate(-45deg);
}

@media (max-width:1199px) {
    .nav-toggle {
        display: flex;
    }
    body:has(#main-nav.nav--open) .site-header .header-mainbar {
        background: var(--color-white);
        box-shadow: 0 1px 0 rgb(0 0 0/.06);
    }
    body.has-hero:has(#main-nav.nav--open) .nav-toggle span {
        background: var(--color-secondary);
    }
    body:has(#main-nav.nav--open) .site-header-wrap {
        z-index: 260;
    }
    body.has-hero .site-header-wrap.header-wrap--in-flow:has(#main-nav.nav--open) .site-header {
        z-index: 261;
    }
    .nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 71px;
        background: #fff;
        padding: var(--space-6);
        padding-top: var(--space-6);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 250;
        overflow-y: auto;
    }
    body.has-hero .site-header-wrap.header-wrap--in-flow .nav {
        top: var(--header-bar-h);
    }
    .nav--open {
        transform: translateX(0);
    }
    body.has-hero .nav .nav-link {
        color: var(--color-heading) !important;
    }
    .nav-submenu a:hover,
    body.has-hero .nav .nav-item.active>.nav-link {
        color: var(--color-primary-dark) !important;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav .nav-item>.nav-link::after {
        display: none;
    }
    .nav-link,
    .nav-submenu a {
        color: var(--color-heading) !important;
    }
    .nav-link {
        padding: var(--space-4);
        font-size: var(--fs-md);
        border-bottom: 1px solid rgb(0 0 0/.08);
    }
    .nav-item--has-children>.nav-link {
        position: relative;
        padding-right: 3.6rem;
    }
    .nav-item--has-children>.nav-link::before {
        content: "";
        position: absolute;
        right: var(--space-3);
        top: 50%;
        width: .55em;
        height: .55em;
        margin-top: -.1em;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-50%) rotate(45deg);
        transition: transform var(--transition-base);
        pointer-events: none;
        opacity: .75;
    }
    .nav-item--has-children.is-open>.nav-link::before {
        transform: translateY(-50%) rotate(225deg);
        margin-top: .15em;
    }
    .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--color-white-alt);
        box-shadow: none;
        margin-top: 0;
        border-radius: var(--radius-sm);
        padding: var(--space-1) 0;
    }
    .nav-submenu a {
        border-bottom: 1px solid rgb(0 0 0/.06);
    }
    .nav-submenu a:hover {
        background: rgb(0 0 0/.04);
    }
    .nav-item.is-open .nav-submenu {
        display: block;
    }
    .nav-item--has-children:hover .nav-submenu {
        display: none;
    }
    .nav-item--has-children.is-open .nav-submenu {
        display: block;
    }
    .nav-mobile-hero-extra {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-5);
        margin-top: var(--space-6);
        padding-top: var(--space-6);
        border-top: 1px solid rgb(0 0 0/.1);
        text-align: center;
    }
    .nav-mobile-hero-extra .hero-bottom-meta {
        color: var(--color-heading);
        max-width: 28rem;
    }
    .nav-mobile-hero-extra .hero-bottom-badge-img {
        filter: none;
    }
    .nav-mobile-hero-extra .hero-scroll-hint {
        color: var(--color-heading) !important;
        border-color: rgb(0 0 0/.2);
    }
    .nav-mobile-hero-extra .hero-scroll-hint:hover {
        background: rgb(0 0 0/.05);
        border-color: var(--color-heading);
    }
}

@media (min-width:1200px) {
    .nav-mobile-hero-extra {
        display: none !important;
    }
}

.hero,
.hero-media {
    z-index: 0;
    max-width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
}

.hero.hero--prestations {
    min-height: unset;
    height: 80dvh;
    overflow-x: hidden;
    overflow-y: auto;
}
.couverture .hero.hero--prestations {
    min-height: 1px;
    height: auto;
}

@media (min-width:1600px) {
    .hero.hero--prestations {
        height: 65dvh;
    }
}

.hero.hero--prestations .hero-inner {
    min-height: unset;
    height: 100%;
}

.hero.hero--prestations .hero-heading {
    font-size: 4rem;
    margin: 0 auto var(--space-6);
    max-width: 80%;
}

.hero.hero--prestations .hero-encart__panel {
    top: 50%;
}

.hero .hero-service-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero .hero-service-img-wrap__inner {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    box-sizing: border-box;
}

.hero .hero-service-img-wrap__inner .tzp-hero__service-img-stack {
    position: absolute;
    left: max(env(safe-area-inset-left, 0), var(--container-pad));
    top: 50%;
    transform: translateY(-50%);
}

.hero .tzp-hero__service-img-stack {
    max-width: min(100%, 200px);
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}
.container-video_ .hero-video {
    height: 310px;
}
.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--hero-overlay-bg);
    pointer-events: none;
}

.hero-media-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.couverture .hero-media-wrap,
.couverture .hero-media {
    position: static;
}

.couverture .hero-items-video {
    background: #d4bca1;
}
.couverture .container-video_ {
    display: flex;
    overflow-y: hidden;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 16px;
}
.Mobile.couverture .container-video_ {
    display: block;
    height: auto;
}
.couverture .container-video_ > div {
    flex: 1;
    position: relative;
}
.couverture .container-video_ .video-wrapper {
    position: relative;
}
.subtitle-video {
    text-transform: uppercase;
    text-align: center;
    padding: 10px 10px 7px;
    font-size: 2rem;
    letter-spacing: 2px;
}
.Mobile .subtitle-video {
    padding-top: 0;
    padding-bottom: 0;
}
.title_couverture {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.Mobile .title_couverture {
    display: none;
}
.title_couverture .sabas-hero__copy {
    width: 80%;
}
.title_couverture .sabas-hero__copy img {
    margin: 0 auto 15px;
}
.title_couverture .sabas-hero__kicker {
    font-size: 3rem;
    line-height: 130%;
}
.Mobile .title_couverture .sabas-hero__kicker {
    font-size: 2rem;
    padding-top: 13px;
}
.title_couverture .btn-solid-primary {
    background-color: var(--color-primary-dark);
    color: white !important;
}
.title_couverture .sabas-hero__actions {
    justify-content: center;
}

.title_couverture .btn-solid-primary:hover {
    color: var(--color-primary-dark) !important;
    background-color: white;
    transform: translateY(-1px);
}
.title_couverture .sabas-hero__phone:hover {
    color: white !important;
}

.hero-media-wrap .hero-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 100%;
    margin: 0;
}

.hero-media-wrap .hero-items.hero-items--ville-8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
}
.couverture .hero-media-wrap .hero-items.hero-items--ville-8 {
    grid-template-rows: min-content;
    height: 440px;
}
.Mobile.couverture .hero-media-wrap .hero-items.hero-items--ville-8 {
    display: block;
    overflow: hidden;
    height: 300px;
}

.hero-media-wrap .hero-items.hero-items--prestations-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
}

.hero-media-wrap .hero-items--prestations-3 .hero-col-fade__slide--a {
    animation: hero-col-fade-a 10s ease-in-out infinite;
}

.hero-media-wrap .hero-items--prestations-3 .hero-col-fade__slide--b {
    animation: hero-col-fade-b 10s ease-in-out infinite;
}

.hero-media-wrap .hero-items--prestations-3>.hero-col-fade:nth-child(1) .hero-col-fade__slide {
    animation-delay: 0s;
}

.hero-media-wrap .hero-items--prestations-3>.hero-col-fade:nth-child(2) .hero-col-fade__slide {
    animation-delay: .8s;
}

.hero-media-wrap .hero-items--prestations-3>.hero-col-fade:nth-child(3) .hero-col-fade__slide {
    animation-delay: 1.6s;
}

@media (prefers-reduced-motion:reduce) {
    .hero-media-wrap .hero-items--prestations-3 .hero-col-fade__slide {
        animation: none !important;
    }
    .hero-media-wrap .hero-items--prestations-3 .hero-col-fade__slide--a {
        opacity: 1;
    }
    .hero-media-wrap .hero-items--prestations-3 .hero-col-fade__slide--b {
        opacity: 0;
    }
}

.hero-col-fade .inner-wrap,
.hero-col-fade__wrap,
.hero-media-wrap .hero-items .work-item.style-2 {
    height: 100%;
    min-height: 0;
}

.hero-col-fade__wrap {
    position: relative;
    overflow: hidden;
}

.hero-col-fade__slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-col-fade__slide {
    position: absolute;
    inset: 0;
    margin: 0;
}

.hero-col-fade__slide .top-level-image {
    display: block;
}

.hero-media-wrap .hero-items--ville-8 .hero-col-fade__slide--a {
    animation: hero-col-fade-a 10s ease-in-out infinite;
}

.hero-media-wrap .hero-items--ville-8 .hero-col-fade__slide--b {
    animation: hero-col-fade-b 10s ease-in-out infinite;
}

.hero-media-wrap .hero-items--ville-8>.hero-col-fade:nth-child(1) .hero-col-fade__slide {
    animation-delay: 0s;
}

.hero-media-wrap .hero-items--ville-8>.hero-col-fade:nth-child(2) .hero-col-fade__slide {
    animation-delay: .6s;
}

.hero-media-wrap .hero-items--ville-8>.hero-col-fade:nth-child(3) .hero-col-fade__slide {
    animation-delay: 1.2s;
}

.hero-media-wrap .hero-items--ville-8>.hero-col-fade:nth-child(4) .hero-col-fade__slide {
    animation-delay: 1.8s;
}

.hero-media-wrap .hero-items--ville-8>.hero-col-fade:nth-child(5) .hero-col-fade__slide {
    animation-delay: 2.4s;
}

.hero-media-wrap .hero-items--ville-8>.hero-col-fade:nth-child(6) .hero-col-fade__slide {
    animation-delay: 3s;
}

.hero-media-wrap .hero-items--ville-8>.hero-col-fade:nth-child(7) .hero-col-fade__slide {
    animation-delay: 3.6s;
}

.hero-media-wrap .hero-items--ville-8>.hero-col-fade:nth-child(8) .hero-col-fade__slide {
    animation-delay: 4.2s;
}

@media (prefers-reduced-motion:reduce) {
    .hero-media-wrap .hero-items--ville-8 .hero-col-fade__slide {
        animation: none !important;
    }
    .hero-media-wrap .hero-items--ville-8 .hero-col-fade__slide--a {
        opacity: 1;
    }
    .hero-media-wrap .hero-items--ville-8 .hero-col-fade__slide--b {
        opacity: 0;
    }
}

.hero-media-wrap .hero-items .col {
    width: 100%;
    height: 100%;
    padding: 4px;
}
.couverture .hero-media-wrap .hero-items .col {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-media-wrap .hero-items .wide,
.hero-media-wrap .hero-items .wide_tall {
    width: 100%;
}

.hero-media-wrap .hero-items .top-level-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:999px) {
    .hero-media-wrap .hero-items.hero-items--ville-8 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }
    .hero-media-wrap .hero-items .col,
    .hero-media-wrap .hero-items .wide,
    .hero-media-wrap .hero-items .wide_tall {
        width: 100%;
    }
}

@media (max-width:690px) {
    .hero-media-wrap .hero-items:not(.hero-items--ville-8):not(.hero-items--prestations-3) {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }
    .hero-media-wrap .hero-items.hero-items--ville-8 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }
    .hero-media-wrap .hero-items.hero-items--prestations-3 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }
    .hero-media-wrap .hero-items .col,
    .hero-media-wrap .hero-items .wide,
    .hero-media-wrap .hero-items .wide_tall {
        width: 100%;
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(10rem + var(--header-bar-h) + var(--space-8)) var(--container-pad) var(--space-8);
}

.hero-main-inner {
    width: 100%;
    max-width: 96rem;
}

.hero-copy {
    text-align: center;
    max-width: 90rem;
    margin-inline: auto;
}

.hero-kicker {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgb(255 255 255/.85);
    margin-bottom: var(--space-4);
}

.hero-heading {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    color: #fff !important;
    font-size: clamp(2.8rem, 5.5vw, 7rem);
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-6);
}

.hero-heading-accent,
.hero-heading-line {
    display: block;
}

.hero-heading-line {
    text-transform: uppercase;
}

.hero-heading-accent {
    margin-top: var(--space-2);
    font-size: .42em;
    font-weight: var(--fw-light);
    opacity: .95;
}

.hero-lead {
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
    color: rgb(255 255 255/.92);
    margin: 0 0 var(--space-8);
    max-width: 64rem;
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
}

.hero-encart {
    position: absolute;
    inset: 0;
    z-index: 99;
    pointer-events: none;
}

.hero-encart__inner {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    box-sizing: border-box;
    pointer-events: none;
}

.hero-encart__panel {
    position: absolute;
    top: 50%;
    right: max(env(safe-area-inset-right, 0), var(--container-pad));
    transform: translateY(-50%);
    width: 250px;
    pointer-events: auto;
}

@media (max-width:1199px) {
    .hero-inner {
        align-items: center;
        padding-top: var(--space-4);
        display: block;
        position: absolute;
        transform: translateY(-50%);
    }
    .hero-main {
        flex: 1 1 auto;
        width: 100%;
        min-height: 0;
        padding: 2rem 0;
    }
    .hero .hero-service-img-wrap {
        position: relative;
        inset: auto;
        width: 100%;
        flex-shrink: 0;
        pointer-events: none;
    }
    .hero .hero-service-img-wrap__inner {
        height: auto;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .hero .hero-service-img-wrap__inner .tzp-hero__service-img-stack {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-inline: auto;
    }
    .hero .hero-encart {
        position: relative;
        inset: auto;
        width: 100%;
        flex-shrink: 0;
        pointer-events: none;
    }
    .hero .hero-encart__inner {
        height: auto;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .hero .hero-encart__panel {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: auto;
        max-width: min(100%, 42rem);
        margin-inline: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: clamp(3rem, 5vw, 4rem);
        flex-wrap: wrap;
        pointer-events: auto;
    }
    .hero.hero--prestations .hero-encart__panel {
        top: auto;
    }
    .hero .hero-encart__panel span img {
        margin-left: 0;
        margin-top: 0;
    }
    .hero-inner {
        top: 67%;
        min-height: 1px;
    }
    .hero .hero-service-img-wrap__inner .tzp-hero__service-img-stack {
        max-width: 13rem !important;
    }
    .hero.hero--prestations .hero-heading {
        font-size: 2.3rem;
    }
}

@media (max-width:991px) {
    .hero-encart {
        display: none;
    }
    .hero.hero--prestations .hero-inner {
        height: auto;
    }
}

.hero-encart span img {
    width: 190px;
    margin-left: auto;
    margin-top: -21px;
}

.hero-bfmtv {
    display: block;
    line-height: 0;
}

.hero-bfmtv img {
    display: block;
    max-width: 100%;
    height: auto;
    transform-origin: center center;
    transition: transform var(--transition-base);
}

.hero-bfmtv:focus-visible img,
.hero-bfmtv:hover img {
    transform: scale(1.08);
}

@media (prefers-reduced-motion:reduce) {
    .hero-bfmtv img {
        transition: none;
    }
    .hero-bfmtv:focus-visible img,
    .hero-bfmtv:hover img {
        transform: none;
    }
}

.btn-ghost,
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-8);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff !important;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: var(--radius-full);
    background: 0 0;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-ghost:hover,
.btn-hero-ghost:hover {
    background: #fff;
    color: var(--color-secondary) !important;
}

.btn-hero-outline,
.btn-solid-primary,
.hero-bottom-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-body);
    text-decoration: none;
}

.btn-solid-primary,
.hero-bottom-card-btn {
    gap: var(--space-2);
    padding: var(--space-2) 3.2rem;
    font-family: inherit;
    color: #1e1e1e !important;
    border: 0;
    border-radius: var(--radius-full);
    cursor: pointer;
    background-color: var(--color-primary);
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-solid-primary:hover,
.hero-bottom-card-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    color: white !important;
}

@media (prefers-reduced-motion:reduce) {
    .btn-solid-primary:hover,
    .hero-bottom-card-btn:hover {
        transform: none;
    }
}

.btn-hero-outline {
    padding: var(--space-3) 3.2rem;
    color: rgb(255 255 255/.95) !important;
    border-bottom: 2px solid var(--color-primary);
    transition: color var(--transition-fast);
}

.btn-hero-outline:hover {
    color: var(--color-primary) !important;
}

.hero-bottom-bar {
    position: relative;
    flex-shrink: 0;
    padding: var(--space-6) 0;
    border-top: 1px solid rgb(255 255 255/.15);
}

.hero-bottom-bar-flag {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.hero-bottom-bar-flag img {
    display: block;
    width: auto;
    max-width: 12rem;
    object-fit: contain;
}

.hero-bottom-extras {
    display: contents;
}

.hero-bottom-bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1fr) auto;
    gap: var(--space-6);
    align-items: center;
}

@media (max-width:1023px) {
    .hero-bottom-bar-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-bottom-extras {
        display: none;
    }
    .hero-bottom-badges,
    .hero-bottom-meta,
    .hero-scroll-hint {
        justify-self: center;
    }
}

.hero-bottom-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgb(0 0 0/.45);
    border: 1px solid rgb(255 255 255/.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.hero-bottom-card-thumb {
    flex-shrink: 0;
    width: 7.4rem;
    height: 7.4rem;
}

.hero-bottom-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}

.hero-bottom-card-body {
    text-align: left;
    min-width: 0;
}

.hero-bottom-card-text {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-sm);
    line-height: var(--lh-snug);
    color: rgb(255 255 255/.9);
}

.hero-bottom-badges,
.hero-bottom-meta {
    display: flex;
    align-items: center;
    margin: 0;
}

.hero-bottom-meta {
    letter-spacing: .06em;
    color: #fff;
    gap: 15px;
    max-width: 270px;
}

.hero-bottom-meta img {
    height: auto;
}

.hero-bottom-badges {
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.hero-bottom-badge-img {
    display: block;
    width: auto;
    height: auto;
    max-height: 9.6rem;
    object-fit: contain;
    /*filter: invert(1);*/
}

.devis-sidebar-body .hero-bottom-badge-img {
    filter: none;
    max-height: 7rem;
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    color: #fff !important;
    border: 1px solid rgb(255 255 255/.35);
    border-radius: 50%;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.hero-scroll-hint:hover {
    background: rgb(255 255 255/.1);
    border-color: #fff;
}

.devis-sidebar {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
}

.devis-sidebar--open {
    pointer-events: auto;
    visibility: visible;
}

.devis-sidebar-backdrop {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0/.83);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.devis-sidebar--open .devis-sidebar-backdrop {
    opacity: 1;
}

.devis-sidebar-extras {
    display: none;
    position: absolute;
    z-index: 1;
    right: 400px;
    top: 0;
    max-width: min(28rem, calc(100vw - 40rem - 2.4rem));
    background: #c6a47e;
    height: 100%;
    pointer-events: none;
    width: 50%;
}

@media (min-width:1024px) {
    .devis-sidebar--open .devis-sidebar-extras {
        display: flex;
        align-items: center;
        height: 100%;
    }
}

.devis-sidebar-extras-inner {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
    padding-top: 20px;
}

.devis-sidebar-extras .hero-bottom-meta {
    max-width: 100%;
    padding-right: 2rem;
    flex-direction: row-reverse;
    text-align: right;
    line-height: 130%;
}

.devis-sidebar-extras .hero-bottom-badges {
    justify-content: flex-start;
}

.devis-sidebar-panel {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: min(100%, 40rem);
    max-width: 100%;
    height: 100%;
    max-height: 100dvh;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .28s ease;
}

.devis-sidebar--open .devis-sidebar-panel {
    transform: translateX(0);
}

.devis-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    flex-shrink: 0;
    padding: var(--space-5) var(--space-5) var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.devis-sidebar-title {
    margin: 0;
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
}

.devis-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--color-text-muted);
    background: 0 0;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.devis-sidebar-close:hover {
    color: var(--color-text);
    background: rgb(0 0 0/.06);
}

.devis-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-5);
    -webkit-overflow-scrolling: touch;
}

.devis-sidebar-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.devis-sidebar-phones {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    padding: var(--space-5);
    flex-direction: column;
}

.devis-sidebar-phones .float-phones__link {
    text-decoration: none;
}

.devis-sidebar-phones .float-phones__link.btn-solid-primary {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
}

.devis-sidebar-rappel-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-3);
    align-items: stretch;
}

.devis-sidebar-rappel-actions .devis-sidebar-rappel-input {
    margin-bottom: 0 !important;
    min-width: 0;
}

@media (max-width:480px) {
    .devis-sidebar-rappel-actions {
        grid-template-columns: 1fr;
    }
}

.devis-sidebar-section {
    margin-bottom: var(--space-8);
}

.devis-sidebar-section:last-child {
    margin-bottom: 0;
}

.devis-sidebar .h3 {
    margin: 0 0 32px;
    text-transform: uppercase;
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    text-align: center;
    letter-spacing: 1px;
}

.devis-sidebar .h3 span {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: var(--space-1);
}

.devis-sidebar .form-input {
    margin-bottom: var(--space-3);
}

.devis-sidebar textarea.form-input {
    min-height: 7rem;
    resize: vertical;
    border: none;
    border-radius: 7px;
    background-color: #f4ece2;
}

.devis-sidebar .btn-devis {
    display: block;
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    text-align: center;
    background-color: var(--color-primary);
    border: 0;
    border-radius: 99px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.devis-sidebar .btn-devis:hover {
    background-color: var(--color-primary-dark);
}

.devis-sidebar .devis-sidebar-rappel-actions .btn-devis.devis-sidebar-rappel-submit {
    display: inline-block;
    width: auto;
    min-width: 11rem;
    margin-top: 0;
    white-space: nowrap;
}

@media (max-width:480px) {
    .devis-sidebar .devis-sidebar-rappel-actions .btn-devis.devis-sidebar-rappel-submit {
        width: 100%;
        min-width: 0;
    }
}

body.devis-sidebar-open {
    overflow: hidden;
}

.hero-form-panel {
    padding-bottom: var(--space-12);
}

.hero-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-6);
    max-width: 96rem;
    margin-inline: auto;
}

.hero-form-tabs {
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.tab-btn {
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    border: 0;
    background: 0 0;
    color: var(--color-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.tab-btn.active {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.hero-form-grid {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width:767px) {
    .hero-form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group--full {
    grid-column: 1/-1;
}

.form-group {
    margin: 0;
}

.form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    border: 2px solid #282624;
    border-radius: 25px;
    transition: border-color var(--transition-fast);
}

@media (max-width:767px) {
    .form-input {
        margin-bottom: 10px;
    }
}

.form-input:focus {
    outline: 0;
    border-color: var(--color-primary);
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: #fff !important;
    background-color: var(--color-primary);
    border: 0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-block {
    width: 100%;
}

.form-note {
    margin: var(--space-4) 0 0;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.hero-form-qr {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.form-label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-3);
}

.qr-code {
    margin-inline: auto;
}

.services {
    padding: var(--space-12) 0;
    background-color: var(--color-white-alt);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section-title {
    margin-bottom: var(--space-8);
}

.services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-5);
    margin-bottom: 6rem;
}

.services-kicker {
    color: var(--color-primary-dark);
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: .12em;
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-3);
}

.services-title {
    margin: 0;
    font-family: "Permanent Marker";
    color: var(--color-heading);
    line-height: var(--lh-tight);
    font-size: var(--fs-3xl);
}

.services-head__cta {
    flex: 0 0 auto;
}

.services-position {
    margin-right: -12%;
    max-width: none;
    min-width: 0;
}

.services-carousel-one {
    position: relative;
    min-width: 0;
}

.service-card {
    display: block;
    transition: transform var(--transition-fast);
}

.service-card--showcase {
    border-radius: .6rem;
}

.service-content,
.service-image {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-image {
    position: relative;
    overflow: hidden;
    background-color: var(--color-primary-dark);
}

.service-cardy .service-image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 6rem;
    height: 6rem;
    margin: 0;
    right: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) translateX(-5rem);
    transition: opacity .75s cubic-bezier(.19, 1, .22, 1), transform .75s cubic-bezier(.19, 1, .22, 1);
    transition-delay: .1s;
    background: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.service-cardy:hover .service-image::after {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
}

@media (prefers-reduced-motion:reduce) {
    .service-cardy .service-image::after {
        transition-duration: .2s;
        transform: translate(-50%, -50%);
    }
    .service-cardy:hover .service-image::after {
        opacity: 1;
    }
}

.service-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .5s ease, opacity .35s ease;
}

.service-title {
    padding: var(--space-4) 0;
    margin: 0;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    color: var(--color-heading);
    line-height: var(--lh-tight);
    font-size: var(--fs-xl);
    text-align: left;
    background: 0 0;
    position: relative;
    display: inline-block;
}

.service-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: .5rem;
    width: 5rem;
    height: .3rem;
    background: var(--color-primary);
    transition: width .35s ease;
}

.service-card--showcase:hover .service-image img {
    transform: scale(1.05);
    opacity: .14;
}

.service-card--showcase:hover .service-title::before {
    width: calc(100% - (var(--space-4)*2));
}

.services-carousel-one .owl-stage-outer {
    overflow: visible;
    clip-path: inset(0 -100vw 0 0);
}

.services-carousel-one.owl-theme .owl-nav {
    margin-top: 3rem;
    text-align: left;
}

.services-carousel-one.owl-theme .owl-nav [class*=owl-] {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0;
    background: var(--color-primary);
    color: var(--color-white);
    transition: background-color .25s ease;
}

.ht .ht-tabs-nav.owl-theme .owl-nav [class*=owl-]:hover,
.services-carousel-one.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--color-primary-dark);
}

.ht .ht-tabs-nav.owl-carousel .owl-nav button.owl-next,
.services-carousel-one.owl-carousel .owl-nav button.owl-next {
    margin-left: 1rem;
}

@media (max-width:991px) {
    .services-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .services-position {
        margin-right: 0;
    }
    .services-carousel-one {
        padding-bottom: 6rem;
    }
}

.mobile-forms {
    padding: var(--space-8) 0;
    background: var(--color-white-alt);
}

.mobile-form-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.form-title {
    margin-top: 0;
    margin-bottom: var(--space-4);
}

.btn-secondary {
    display: block;
    text-align: center;
    padding: var(--space-4);
    font-weight: var(--fw-bold);
    color: var(--color-secondary) !important;
    text-decoration: none;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-md);
}

.mb-4 {
    margin-bottom: var(--space-8);
}

.mobile-contacts {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
    align-items: center;
}

.video-section .video-wrapper {
    position: relative;
    /*aspect-ratio: 608/408;*/
    height: auto;
    text-align: center;
    /*background: #000;*/
}
.video-section .video-wrapper .presentation-cta {
    margin-top: 20px;
    margin-left: auto;
}

.titre-video {
    font-family: "Permanent Marker";
    font-size: 4rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #745d44;
}

.st6 .video-wrapper iframe,
.st6 .video-wrapper video,
.video-section .video-wrapper .yt-poster,
.video-hero .video-wrapper iframe,
.video-left_ .video-wrapper:not(.is-playing) iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-hero .video-wrapper.is-playing iframe {
    position: static;
    height: 234px;
}

.video-section .video-wrapper .yt-poster,
.video-hero .video-wrapper .yt-poster,
.video-left_ .video-wrapper .yt-poster {
    z-index: 2;
    padding: 0;
    cursor: pointer;
    background: #000;
}
.video-left_ .video-wrapper .yt-poster {
    width: 100%;
    background: none;
    border: none;
}

.st6 .video-wrapper .yt-poster img,
.video-section .video-wrapper .yt-poster img,
.video-hero .video-wrapper .yt-poster img,
.video-left_ .video-wrapper .yt-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-section .video-wrapper .yt-play,
.video-hero .video-wrapper .yt-play,
.video-left_ .video-wrapper .yt-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 50%;
    background: rgb(0 0 0/.66);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.st6 .video-wrapper .yt-play svg,
.video-section .video-wrapper .yt-play svg,
.video-left_ .video-wrapper .yt-play svg {
    width: 2.2rem;
    height: 2.2rem;
    margin-left: .2rem;
}

.st6 .video-wrapper.is-playing .yt-poster,
.video-hero .video-wrapper.is-playing .yt-poster,
.video-left_ .video-wrapper.is-playing .yt-poster {
    display: none;
}

.st6 .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.st6 .video-wrapper iframe,
.st6 .video-wrapper video {
    object-fit: cover;
}

.st6 .video-wrapper .yt-poster {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgb(0 0 0/.08);
}

.st6 .video-wrapper .yt-poster--video {
    background: linear-gradient(to top, rgb(0 0 0/.34), rgb(0 0 0/.08));
}

.st6 .video-wrapper .yt-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 50%;
    background: rgb(0 0 0/.66);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-stats {
    padding: 0;
    margin-top: 9rem;
    border-top: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
}

.part-ville .home-stats {
    margin-top: 0;
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-stats__cell {
    padding: var(--space-8) var(--space-5);
    border-inline-end: 3px solid var(--color-white);
}

.home-stats__cell:last-child {
    border-inline-end: none;
}

.home-stats__row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-height: 100%;
}

.home-stats__figure {
    display: flex;
    align-items: baseline;
    gap: .15em .35em;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: 1;
    color: var(--color-heading);
}

.home-stats__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
}

.home-stats__num {
    font-size: clamp(3.6rem, 7vw, 6.4rem);
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
}

.home-stats__suffix {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: var(--fw-bold);
    color: #7c674f;
    letter-spacing: .02em;
}

.home-stats__label,
.home-stats__tagline {
    margin: 0;
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    color: var(--color-primary-dark);
}

.home-stats__label {
    font-size: var(--fs-sm);
    letter-spacing: .1em;
    text-transform: uppercase;
    max-width: 16ch;
}

@media (min-width:992px) {
    .home-stats__cell--tagline .home-stats__row {
        justify-content: center;
        text-align: center;
    }
}

.home-stats__tagline {
    max-width: min(100%, 26rem);
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-md), 2.2vw, var(--fs-xl));
    letter-spacing: .02em;
}

@media screen and (max-width:991px) {
    .home-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-stats__cell {
        border-block-end: 1px solid var(--color-border);
    }
}

@media screen and (max-width:575px) {
    .home-stats__grid {
        grid-template-columns: 1fr;
    }
    .home-stats__cell {
        border-inline-end: none;
        border-block-end: 1px solid var(--color-border);
        padding-inline: var(--space-4);
    }
    .home-stats__cell:last-child {
        border-block-end: none;
    }
}

.st6-marquee {
    background-color: #fff;
    padding: clamp(2rem, 4vw, 4rem) 0 0;
    overflow: hidden;
}

.st6-marquee__inner {
    width: 100%;
    overflow: hidden;
}

.st6-marquee__track {
    display: block;
    width: max-content;
    will-change: transform;
}

.st6-marquee__motion {
    display: flex;
    width: max-content;
    animation: st6-marquee-run 48s linear infinite;
}

.st6-marquee__group {
    flex-shrink: 0;
    display: flex;
    gap: clamp(2rem, 5vw, 5rem);
    padding-right: clamp(2rem, 5vw, 5rem);
}

.st6-marquee__item {
    font-family: "Cabin", var(--font-heading);
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 15rem);
    line-height: .9;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px rgb(0 0 0/.3);
}

.st6:not(.st6_video_temoignages) {
    background-color: #fff;
    padding: clamp(5rem, 8vw, 9rem) 0;
    overflow-x: clip;
}

.st6_video_temoignages {
    padding-bottom: 3rem;
}

.st6 .container {
    display: block;
}

.st6 .st6-head {
    align-items: flex-start;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.st6 .st6-k {
    display: block;
    font-size: 1.3rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgb(0 0 0/.6);
    margin-bottom: 1.2rem;
}

.st6 .st6-text {
    color: #111;
    display: block;
}

.st6 .st6-text>:first-child {
    margin-top: 0;
}

.st6 .st6-temoignages {
    display: block;
}

.st6 .st6-temoignages.owl-carousel .owl-stage-outer {
    overflow: visible;
    clip-path: inset(0 -100vw 0 0);
}

.st6 .st6-item {
    overflow: hidden;
    background: #000;
    aspect-ratio: 4/3;
}

@media (max-width:1000px) {
    .st6 .st6-head {
        margin-bottom: 2rem;
    }
}

.home-real {
    padding: clamp(4.5rem, 7vw, 5rem) 0;
}

.home-real__head {
    text-align: center;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.home-real__kicker,
.home-real__title {
    margin: 0 0 var(--space-3);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
}

.home-real__kicker {
    font-size: var(--fs-sm);
    letter-spacing: .18em;
    color: var(--color-primary-dark);
}

.home-real__title {
    font-family: "Permanent Marker";
    font-size: 4rem;
    line-height: var(--lh-tight);
    color: var(--color-heading);
        margin-top: 44px;
    border-top: 1px solid #c6a47e;
    padding-top: 40px;
}

.home-real__lead {
    margin: 0;
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
    color: rgb(0 0 0/.58);
}

.home-real__marquees {
    display: flex;
    flex-direction: column;
    gap: clamp(.75rem, 2vw, 1.25rem);
    margin-top: clamp(1rem, 3vw, 2rem);
}

.home-real__marquee,
.home-real__marquee-inner {
    width: 100%;
    overflow: hidden;
}

.home-real__marquee-track {
    display: flex;
    width: max-content;
    animation: home-real-marquee-scroll 100s linear infinite;
    will-change: transform;
}

.home-real__marquee--reverse .home-real__marquee-track {
    animation-direction: reverse;
}

.home-real__marquee-group {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    gap: clamp(1rem, 2vw, 1.6rem);
    padding-right: clamp(1rem, 2vw, 1.6rem);
}

.home-real__marquees .home-real__cell {
    width: clamp(20rem, 50vw, 38rem);
    flex-shrink: 0;
    margin: 0;
}

.home-real__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.6rem);
}

.home-real__cell {
    margin: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgb(0 0 0/.08);
    background: var(--color-white);
    transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.home-real__cell:hover {
    box-shadow: 0 14px 40px rgb(0 0 0/.12);
    transform: translateY(-3px);
}

.home-real__link {
    display: block;
    text-decoration: none;
    color: inherit;
    outline: 0;
}

.home-real__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.home-real__media {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-primary-dark);
}

.home-real__cell:not(.home-real__cell--video) .home-real__media::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 6rem;
    height: 6rem;
    margin: 0;
    right: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) translateX(-5rem);
    transition: opacity .75s cubic-bezier(.19, 1, .22, 1), transform .75s cubic-bezier(.19, 1, .22, 1);
    transition-delay: .1s;
    background: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cg stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.home-real__cell:not(.home-real__cell--video):hover .home-real__media::after {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
}

.home-real__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, opacity .35s ease;
}

.home-real__cell:not(.home-real__cell--video):hover .home-real__img {
    transform: scale(1.05);
    opacity: .14;
}

.home-real__cell--video .home-real__img,
.ht .ht-media img.is-active,
.site-footer__wk a:hover img {
    opacity: 1;
}

.home-real__cell--video:hover .home-real__img {
    transform: scale(1.05);
    opacity: .85;
}

.home-real__cell--video .home-real__play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform var(--transition-base);
}

.home-real__cell--video:hover .home-real__play {
    transform: scale(1.06);
}

.home-real__cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.home-real__btn {
    text-decoration: none;
}

@media (max-width:991px) {
    .home-real__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:520px) {
    .home-real__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion:reduce) {
    .home-real__marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        row-gap: var(--space-4);
    }
    .home-real__marquee-group[aria-hidden=true] {
        display: none;
    }
    .home-real__marquee,
    .home-real__marquee-inner {
        overflow: visible;
    }
    .home-real__marquees .home-real__cell {
        width: min(100%, 36rem);
    }
    .home-real__cell {
        transition: box-shadow var(--transition-base);
    }
    .home-real__cell:hover {
        transform: none;
    }
    .home-real__cell:not(.home-real__cell--video) .home-real__media::after {
        transition-duration: .2s;
        transform: translate(-50%, -50%);
    }
    .home-real__cell:not(.home-real__cell--video):hover .home-real__media::after {
        opacity: 1;
    }
    .home-real__cell:not(.home-real__cell--video):hover .home-real__img {
        transform: none;
        opacity: 1;
    }
    .home-real__cell--video:hover .home-real__img {
        transform: none;
        opacity: 1;
    }
    .home-real__cell--video:hover .home-real__play {
        transform: none;
    }
}

.video-section .video-wrapper .presentation-rotating-badge {
    position: absolute;
    left: -4rem;
    bottom: 2rem;
    z-index: 3;
    width: clamp(8rem, 14vw, 25rem);
    height: auto;
    pointer-events: none;
    animation: presentation-badge-rotate 16s linear infinite;
    transform-origin: center;
}

@media (max-width:991px) {
    .video-section .divider-wrap,
    .video-section .presentation-figure,
    .video-section .presentation-rotating-badge {
        display: none !important;
    }
}

.video-section {
    background: radial-gradient(circle at top right, #ffc881 0, rgba(243, 243, 243, 0) 41%);
    padding: 10rem 0 0;
    overflow: hidden;
}

.video-section .presentation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.6rem, 3vw, 3.2rem);
}

@media (max-width:991px) {
    .video-section .presentation-grid {
        padding-bottom: 4rem;
    }
}

@media (min-width:992px) {
    .video-section .presentation-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    .video-section .presentation-media {
        order: 2;
    }
    .video-section .presentation-content {
        order: 1;
    }
}

@media (min-width:1200px) {
    .presentation-content-panel {
        padding-right: calc(100vw * .01);
        text-align: center;
        line-height: 130%;
    }
}

.presentation-content-panel p>strong {
    font-family: "Permanent Marker";
    font-size: 3rem;
    font-weight: normal;
}

.divider-wrap .divider-vertical {
    width: 1px;
    margin: 4.5rem auto;
    padding-top: 17px;
    padding-bottom: 17px;
    background-color: #000;
}

.figure-wrap-content {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    max-width: 70%;
}

section.ht {
    padding-bottom: 9rem;
}

section.ht.ht--white {
    background-color: #fff;
}

.ht--white-alt {
    background-color: var(--color-white-alt);
}

.part-ville section.ht {
    padding-top: 9rem;
}

.ht .ht-cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

@media (min-width:992px) {
    .ht .ht-cols {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 90px;
        align-items: start;
    }
}

.ht .ht-copy {
    display: grid;
    gap: 1.25rem;
}

.part-ville .ht .ht-copy {
    overflow-x: hidden;
}

.ht .ht-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 615/615;
}

.ht .ht-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .35s ease;
}

.ht .ht-media img:only-child {
    opacity: 1;
}

.ht .ht-html :first-child {
    margin-top: 0;
}

.ht .ht-html :last-child {
    margin-bottom: 0;
}

.ht .ht-tabs-nav {
    position: relative;
    width: 100%;
}

.ht .ht-tabs-slide {
    min-height: 1px;
}

.ht .ht-tabs-nav .owl-nav {
    margin-top: 5rem;
    text-align: left;
}

.ht .ht-tabs-nav.owl-theme .owl-nav [class*=owl-] {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0;
    background: var(--color-primary);
    color: var(--color-white);
    transition: background-color .25s ease;
}

.ht .ht-tabs-nav .owl-dots {
    margin-top: 1rem;
}

.ht .ht-tabs-nav.owl-carousel .owl-item {
    min-height: 0;
}

.ht-cta {
    border-bottom: 1px solid #ddd;
    padding-bottom: 4rem;
    margin-top: 3rem;
}

.part-ville .ht-cta {
    padding-bottom: 0;
    border: 0;
}

.ht-exp {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    color: var(--color-heading);
}

.ht-exp__icon {
    color: var(--color-primary-dark);
    flex: 0 0 auto;
}

.ht-exp__txt {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tx5 {
    padding-top: 9rem;
}

.part-ville .tx5 {
    padding-bottom: 9rem;
}

.tx5-head {
    margin-bottom: 5rem;
}

.tx5 .tx5-title {
    margin: 0;
    color: var(--color-heading);
    line-height: 1.15;
}

.tx5 .tx5-title .l1,
.tx5 .tx5-title .l2 {
    display: block;
}

.tx5 .tx5-title .l2 {
    color: color-mix(in srgb, var(--color-primary) 62%, white);
}

.tx5 .tx5-grid {
    display: grid;
    gap: 9rem;
}

@media (min-width:992px) {
    .tx5 .tx5-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        align-items: stretch;
    }
}

.tx5 .tx5-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-5);
}

.tx5 .tx5-copy .item-text {
    margin: 0;
}

.tx5 .tx5-copy .item-text :first-child {
    margin-top: 0;
}

.tx5 .tx5-copy .item-text :last-child {
    margin-bottom: 0;
}

.tx5 .tx5-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: .9rem;
}

@media (min-width:768px) {
    .tx5 .tx5-media {
        grid-template-columns: 1fr 1fr;
    }
}

.tx5 .tx5-media img {
    width: 100%;
    height: clamp(14rem, 26vw, 21rem);
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.tx5 .tx5-media img:first-child {
    align-self: flex-end;
    height: auto;
}

.tx5 .tx5-media-parallax {
    position: relative;
    overflow: hidden;
    align-self: end;
    height: 300px;
}

.tx5 .tx5-media-parallax img {
    width: 100%;
    height: clamp(14rem, 26vw, 21rem);
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    transform-origin: center center;
}

@media (max-width:991px) {
    .hx {
        min-height: 0;
    }
    .hx-stick {
        position: relative;
        top: 0;
        height: auto;
        overflow: visible;
    }
    .hx-track {
        flex-direction: column;
        width: 100%;
        transform: none !important;
        will-change: auto;
    }
    .hx-slide {
        flex: 0 0 auto;
        width: 100%;
        min-height: auto;
        height: auto;
    }
}

@media (prefers-reduced-motion:reduce) {
    .hx-track {
        transform: none !important;
        will-change: auto;
    }
}

.tzp-section {
    position: relative;
    padding: var(--space-12) 0 var(--space-10);
    color: var(--color-white);
    overflow: hidden;
}

.tzp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: var(--tzp-decor-url);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 75%;
    opacity: .1;
    right: -38rem;
}

.tzp-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--color-primary-dark);
    background-image: radial-gradient(ellipse 120% 80% at 20% 20%, color-mix(in srgb, var(--color-primary) 35%, transparent) 0%, transparent 55%), linear-gradient(165deg, var(--color-primary-dark) 0%, color-mix(in srgb, var(--color-secondary) 88%, black) 100%);
}

.tzp-section .container {
    position: relative;
    z-index: 2;
}

.tzp-header {
    margin-bottom: var(--space-10);
}

.tzp-title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-2xl);
    letter-spacing: .06em;
    color: var(--color-white);
    text-align: center;
}

span.subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 4rem;
    margin-top: 2rem;
    color: #000;
}

@media (max-width:767px) {
    span.subtitle {
        font-size: 3rem;
    }
}

.tzp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(var(--space-6), 4vw, var(--space-12));
    align-items: start;
    margin-bottom: clamp(var(--space-10), 6vw, var(--space-16));
}

.tzp-hero--full {
    display: inherit;
    grid-template-columns: 1fr;
}

.tzp-quote-carousel-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.tzp-quote-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.tzp-quote-item.is-hidden {
    display: none;
}

.tzp-load-more-wrap {
    margin: var(--space-6) 0 0;
    text-align: center;
}

.tzp-load-more-btn {
    min-width: 16rem;
}

.tzp-reviews-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto var(--space-6);
    text-align: left;
    background: rgb(43 36 27/32%);
    padding: 2rem;
    border-radius: 1rem;
    align-items: center;
}

.tzp-reviews-head__meta {
    display: flex;
    line-height: 130%;
    flex-direction: column;
}

.tzp-reviews-head__brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.tzp-reviews-head__brand .injected-svg {
    width: 7rem;
    height: auto;
    display: block;
}

.tzp-reviews-head__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgb(255 255 255/.82);
}

.tzp-reviews-head__rating-line {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.tzp-reviews-head__value {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--color-white);
}

.text-animation {
    margin-top: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    color: rgb(255 255 255/.92);
}

.text-animation__lead {
    font-size: var(--fs-lg);
    margin-right: .5rem;
}

.text-animation__typed {
    color: var(--color-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
}

.text-animation__item {
    display: none;
}

.typed-cursor {
    display: inline-block;
    color: var(--color-primary);
    font-weight: var(--fw-bold);
    animation: typed-cursor-blink .9s steps(1, end) infinite;
}

.tzp-quote__note--stars,
.tzp-reviews-head__stars {
    display: inline-flex;
    align-items: center;
}

.tzp-reviews-head__stars {
    gap: .3rem;
}

.tzp-reviews-head__star,
.tzp-star {
    display: inline-flex;
    width: 14px;
    height: 14px;
}

.tzp-reviews-head__star svg,
.tzp-star svg {
    width: 100%;
    height: 100%;
}

.tzp-reviews-head__star svg path,
.tzp-star.is-on svg path {
    fill: #ffd54a;
}

.tzp-reviews-head__count {
    color: rgb(255 255 255/.8);
}

.tzp-more--head-end {
    margin: 0;
    text-align: right;
    padding-left: 0;
    flex-shrink: 0;
}

.tzp-hero__service-img-stack {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.tzp-hero__service-img-stack .tzp-hero__service-img {
    animation: none;
}

.tzp-hero__service-img-stack .tzp-hero__service-img:first-child {
    position: relative;
    z-index: 0;
    animation: presentation-badge-rotate 16s linear infinite;
}

.tzp-hero__service-img-stack .tzp-hero__service-img:last-child {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: contain;
    transform: none;
}

@media (prefers-reduced-motion:reduce) {
    .tzp-hero__service-img-stack .tzp-hero__service-img:first-child {
        animation: none;
    }
}

.tzp-hero__service-img {
    display: block;
    max-width: min(100%, 28rem);
    width: auto;
    height: auto;
    object-fit: contain;
    transform-origin: center;
}

.devis-sidebar-extras-inner .tzp-hero__service-img-stack {
    margin-inline: auto;
    max-width: 180px;
}

@media (max-width:991px) {
    .tzp-google-logo {
        display: block;
        width: 4rem;
        height: auto;
        object-fit: contain;
    }
}

.tzp-quote__body {
    margin: 0 0 var(--space-4);
    padding: 0;
    border: 0;
    min-height: 5rem;
}

.tzp-quote-item {
    box-sizing: border-box;
    background: rgb(43 36 27/32%);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
}

.tzp-quote-item img {
    width: 25px !important;
    margin: auto;
}

.tzp-quote__text {
    margin: 0;
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    line-height: var(--lh-relaxed);
    font-size: 13px;
    color: rgb(255 255 255/.95);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tzp-quote__note {
    margin-bottom: var(--space-3);
}

.tzp-quote__note--stars {
    justify-content: center;
    gap: .35rem;
    min-height: 23px;
}

.tzp-star.is-off svg path {
    fill: rgb(255 255 255/.28);
}

.tzp-quote__author {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    font-style: normal;
    letter-spacing: .12em;
    justify-content: center;
    margin-top: 1rem;
}

cite.tzp-quote__author svg {
    width: 15px;
}

.tzp-quote__empty {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-md);
    color: rgb(255 255 255/.75);
}

.tzp-more {
    margin: 0;
    padding-left: 2rem;
}

.tzp-more--below {
    margin-bottom: 0;
    padding-left: 0;
    text-align: center;
}

.tzp-more__link {
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: .25em;
}

.tzp-more__link:hover {
    color: var(--color-primary);
}

.site-footer .textwidget .texte-agence a:hover {
    color: var(--color-primary);
}

.tzp-logos {
    padding-top: var(--space-10);
    border-top: 1px solid rgb(255 255 255/.15);
}

.tzp-logos__title {
    font-family: "Permanent Marker";
    margin: 0 0 var(--space-8);
    font-size: var(--fs-2xl);
    line-height: var(--lh-tight);
    color: var(--color-primary);
    text-align: center;
}

.tzp-logos__inner {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.tzp-logos__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: tzp-logos-marquee 50s linear infinite;
}

.tzp-logos__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: var(--space-8);
    padding-right: var(--space-8);
}

.tzp-logos__cell {
    flex: 0 0 auto;
    transition: filter .35s ease;
}

@media (hover:hover) and (pointer:fine) {
    .tzp-logos:hover .tzp-logos__cell:not(:hover) {
        filter: blur(3.5px);
    }
    .tzp-logos__img-wrap img {
        filter: brightness(0) invert(1);
    }
    .tzp-logos__cell:hover .tzp-logos__img-wrap img {
        filter: none;
    }
    .tzp-logos__cell:hover .tzp-logos__img-wrap {
        opacity: 1;
    }
}

.tzp-logos__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.8rem;
    padding: var(--space-2);
    opacity: .92;
    transition: opacity var(--transition-fast);
}

.tzp-logos__img-wrap img {
    max-width: 100%;
    max-height: 9rem;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter .35s ease;
}

@media screen and (max-width:991px) {
    .tzp-reviews-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .tzp-more--head-end {
        text-align: center;
        margin-top: 1rem;
    }
    .tzp-hero {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .tzp-score {
        justify-content: flex-start;
    }
}

@media screen and (max-width:1199px) {
    .tzp-quote-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width:767px) {
    .tzp-quote-list {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion:reduce) {
    .tzp-logos__track {
        animation: none;
        display: block;
        width: 100%;
        will-change: auto;
    }
    .tzp-logos__group[aria-hidden=true] {
        display: none;
    }
    .tzp-logos__group:not([aria-hidden]) {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        row-gap: var(--space-6);
        column-gap: var(--space-5);
        padding-right: 0;
    }
    .tzp-logos__inner {
        mask-image: none;
    }
}

.site-footer {
    position: relative;
    z-index: 10;
    overflow: hidden;
    background-color: var(--color-white);
    color: var(--color-text);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--tzp-decor-url);
    background-repeat: no-repeat;
    background-position: -42rem bottom;
    background-size: 80%;
    background-attachment: fixed;
    opacity: .16;
}

.site-footer__copyright,
.site-footer__widgets {
    position: relative;
    z-index: 1;
}

.site-footer__widgets {
    padding-block: var(--space-12) var(--space-8);
    border-bottom: none;
    background-color: transparent;
}

.site-footer__row {
    display: grid;
    gap: var(--space-10);
    margin: 0;
}

@media (min-width:1000px) {
    #footer-widgets[data-cols="3"] .site-footer__row {
        grid-template-columns: minmax(0, 35%) minmax(0, 1fr) minmax(0, 1fr);
        gap: var(--space-8);
        align-items: start;
    }
}

.site-footer__logo {
    margin-bottom: var(--space-5);
}

.site-footer__logo-link {
    display: inline-block;
}

.site-footer__logo img {
    max-width: min(22rem, 100%);
    height: auto;
    vertical-align: middle;
}

.site-footer__address {
    margin: 0 0 var(--space-5);
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: var(--color-text);
}

.site-footer .textwidget .texte-agence p {
    margin: 0;
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    color: var(--color-text-muted);
}

.site-footer .textwidget .texte-agence a {
    text-underline-offset: .15em;
    transition: color var(--transition-fast);
}

.site-footer .widget-title,
.site-footer__widget-title {
    display: block;
    margin: 0 0 var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.site-footer__list {
    padding: 0;
}

.site-footer__list,
.site-footer__widget .site-footer__list li {
    margin: 0;
    list-style: none;
}

.site-footer__widget .site-footer__list li:last-child {
    border-bottom: none;
}

.site-footer .widget_text .textwidget>:last-child {
    margin-bottom: 0;
}

.site-footer__list a {
    display: inline;
    color: var(--color-heading);
    text-decoration: none;
    background-image: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) 100%);
    background-repeat: no-repeat;
    background-size: 0 2px;
    background-position: 0 100%;
    transition: color var(--transition-fast), background-size .45s cubic-bezier(.2, .75, .5, 1);
}

.site-footer__list a:focus-visible,
.site-footer__list a:hover {
    color: var(--color-primary-dark);
    background-size: 100% 2px;
}

.site-footer__list--cities {
    display: block;
}

.site-footer__contact-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.site-footer__contact-addr {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: var(--color-text);
}

.site-footer__phones {
    margin: 0 0 var(--space-5);
    padding: 0;
    list-style: none;
}

.site-footer__phones li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
}

.site-footer__phones li:first-child {
    padding-top: 0;
}

.site-footer__phones li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.site-footer__phone-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.site-footer__phone-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    color: var(--color-primary-dark);
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.site-footer__phone-icon svg {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
}

.site-footer__phone-link:focus-visible .site-footer__phone-icon,
.site-footer__phone-link:hover .site-footer__phone-icon {
    color: var(--color-primary);
}

.site-footer__phone-num {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--color-heading);
}

.site-footer__phone-link:focus-visible .site-footer__phone-num,
.site-footer__phone-link:hover .site-footer__phone-num {
    color: var(--color-primary-dark);
}

.site-footer__rappel {
    width: 100%;
    margin-top: var(--space-2);
    justify-content: center;
    padding: 1.5rem 3.2rem;
}

.site-footer__copyright {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding-block: var(--space-5);
}

.site-footer__copyright-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    text-align: center;
    font-size: var(--fs-sm);
}

@media (min-width:768px) {
    .site-footer__copyright-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }
}

.site-footer__legal a {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: var(--fw-bold);
}

.site-footer__legal a:focus-visible,
.site-footer__legal a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.site-footer__wk img {
    width: auto;
    opacity: .88;
    transition: opacity var(--transition-fast);
}

@media (min-width:992px) {
    .texte-agence {
        max-width: 70%;
    }
}

.realisations-page {
    background: linear-gradient(180deg, var(--color-white-alt) 0%, var(--color-white) 28rem);
}

.realisations-page__header {
    margin-bottom: var(--space-10);
    text-align: center;
    max-width: 64rem;
    margin-inline: auto;
}

.realisations-page__title {
    margin: 0 0 var(--space-4);
    font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
    font-weight: var(--fw-bold);
    font-family: var(--font-heading), var(--font-body), sans-serif;
    color: var(--color-heading);
    line-height: var(--lh-tight);
}

.realisations-page__empty,
.realisations-page__lead {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
}

.realisations-page__lead {
    margin: 0;
    line-height: var(--lh-relaxed);
}

.realisations-page__empty {
    margin: var(--space-12) auto;
    padding: var(--space-8);
    max-width: 48rem;
    text-align: center;
    background: var(--color-white);
    border: 1px dashed var(--color-border);
}

.realisations-album {
    margin-bottom: var(--space-16);
}

.realisations-album:last-of-type {
    margin-bottom: 0;
}

.realisations-album__title {
    margin: 0 0 var(--space-8);
    padding-bottom: var(--space-3);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    font-family: var(--font-heading), var(--font-body), sans-serif;
    color: var(--color-heading);
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    min-width: min(100%, 28rem);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--space-4);
}

@media (min-width:576px) {
    .realisations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:992px) {
    .realisations-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-6);
    }
}

.realisations-card {
    min-width: 0;
}

.realisations-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.realisations-card__link:focus-visible,
.realisations-card__link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--color-primary) 35%, var(--color-border));
}

.realisations-card__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.realisations-card__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-white-alt);
}

.realisations-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.realisations-card__link:hover .realisations-card__img {
    transform: scale(1.04);
}

.realisations-card--video .realisations-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.realisations-card--video .realisations-card__play svg {
    filter: drop-shadow(0 4px 12px rgb(0 0 0/.35));
}

.realisations-card__caption {
    padding: var(--space-4);
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    color: var(--color-text);
    flex: 1;
}

.realisations-card__caption:empty {
    display: none;
}

@media (prefers-reduced-motion:reduce) {
    .realisations-card__link:hover,
    .realisations-card__link:hover .realisations-card__img {
        transform: none;
    }
}

.last-block {
    padding-top: var(--space-12);
}

.last-block .content-block {
    max-width: 90rem;
    margin-inline: auto;
    text-align: center;
}

.Mobile .last-block .content-block {
    text-align: left;
}

.last-block,
.page-contact,
.page-devis,
.page-temoignages {
    padding-bottom: var(--space-12);
}

.page-contact__intro,
.page-devis__intro,
.page-temoignages__intro {
    padding-top: var(--space-8);
    padding-bottom: var(--space-6);
}

.page-contact__title,
.page-devis__title,
.page-temoignages__title {
    margin: 0 0 var(--space-4);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: var(--fw-bold);
    color: var(--color-primary-dark);
}

.page-temoignages__title span {
    color: var(--color-secondary);
}

.page-contact__lead,
.page-devis__lead,
.page-temoignages__lead {
    max-width: 42rem;
    margin: 0;
    font-size: var(--fs-lg);
    line-height: 1.55;
    color: var(--color-text-muted);
}

.page-contact__main,
.page-devis__main,
.page-temoignages__main {
    padding-bottom: var(--space-10);
}

.page-contact__card,
.page-devis__card,
.page-temoignages__card {
    padding: var(--space-6) var(--space-6) var(--space-8);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.page-contact__card-title,
.page-devis__card-title,
.page-temoignages__card-title {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-secondary);
}

.page-contact__form-hint,
.page-devis__form-hint,
.page-temoignages__form-hint {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.page-contact__form-hint,
.page-devis__form-hint,
.page-temoignages__quote p {
    margin: 0;
}

.page-temoignages__form-hint {
    margin: 0 0 var(--space-5);
}

.page-contact__card--form .page-contact__form,
.page-devis__card--form .page-devis__form {
    display: grid;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

@media (min-width:640px) {
    .page-contact__card--form .page-contact__form,
    .page-devis__card--form .page-devis__form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .page-contact__card--form .form-group--full,
    .page-devis__card--form .form-group--full {
        grid-column: 1/-1;
    }
}

.page-contact__link,
.page-devis__link {
    color: var(--color-secondary);
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.page-contact__link:hover,
.page-devis__link:hover {
    color: var(--color-primary-dark);
}

.page-contact__sep,
.page-devis__sep {
    color: var(--color-text-muted);
    font-weight: 400;
}

.page-contact__card--form textarea.form-input,
.page-devis__card--form textarea.form-input {
    min-height: 8rem;
    resize: vertical;
}

.page-contact__grid {
    display: grid;
    gap: var(--space-8);
    align-items: start;
}

@media (min-width:992px) {
    .page-contact__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        gap: var(--space-10);
    }
}

.page-contact__address {
    margin: 0 0 var(--space-6);
    font-style: normal;
}

.page-contact__addr-lines {
    margin: 0;
    line-height: 1.6;
    color: var(--color-text);
}

.page-contact__block {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
}

.page-contact__block:first-of-type {
    margin-top: var(--space-4);
}

.page-contact__label {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--color-primary);
}

.page-contact__phones {
    margin: 0;
    font-size: var(--fs-lg);
}

.page-contact__email {
    font-size: var(--fs-base);
    line-height: 1.55;
}

.page-contact__email a {
    color: var(--color-primary-dark);
    word-break: break-word;
}

.page-contact__map {
    margin-top: var(--space-4);
}

.page-contact__map #Maps {
    min-height: 22rem;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.page-devis__layout {
    display: grid;
    gap: var(--space-8);
    align-items: start;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width:992px) {
    .page-devis__layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        max-width: none;
        gap: var(--space-10);
    }
}

.page-devis__aside-title {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-primary-dark);
}

.page-devis__aside-text {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--color-text-muted);
}

.page-devis__phones {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-lg);
}

.page-devis__aside-foot {
    margin: 0;
    font-size: var(--fs-sm);
}

.page-devis__inline-link {
    color: var(--color-primary-dark);
    font-weight: var(--fw-bold);
    text-decoration: underline;
    text-underline-offset: .15em;
}

.page-devis__inline-link:hover {
    color: var(--color-secondary);
}

.page-devis__card--cta {
    background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 10%, var(--color-white)) 0%, var(--color-white) 100%);
}

.page-temoignages__grid {
    display: grid;
    gap: var(--space-8);
    align-items: start;
}

@media (min-width:992px) {
    .page-temoignages__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: var(--space-10);
    }
}

.page-temoignages__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.page-temoignages__item {
    padding: var(--space-5) var(--space-6);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.page-temoignages__item-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.item-tem .avis,
.page-temoignages__item .avis {
    display: inline-block;
    vertical-align: top;
}

.page-temoignages__item .avis {
    flex-shrink: 0;
}

.page-temoignages__item-title {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-primary-dark);
    line-height: 1.35;
}

.page-temoignages__quote {
    margin: 0 0 var(--space-3);
    padding: 0;
    border: 0;
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text);
}

.page-temoignages__item-author {
    margin: 0;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--color-text-muted);
}

.page-temoignages__form {
    display: grid;
    gap: var(--space-4);
    margin-top: 0;
}

@media (min-width:640px) {
    .page-temoignages__form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .page-temoignages__form .form-group--full,
    .page-temoignages__form>.btn-primary {
        grid-column: 1/-1;
    }
}

.page-temoignages__rating {
    margin-bottom: 0;
}

.page-temoignages__rating>i {
    display: inline-block;
    vertical-align: middle;
}

.page-temoignages__rating-hint {
    display: block;
    margin-top: var(--space-3);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.45;
}

.page-temoignages__card--form #avis_form.page-temoignages__form {
    padding: 0;
}

.page-temoignages__card--form textarea.form-input {
    min-height: 7rem;
    resize: vertical;
}

#avis_form {
    margin-top: 15px;
}

.page-temoignages #avis_form {
    margin-top: 0;
}

#MonAvis,
#avis_form:not(.page-temoignages__form) {
    padding: 0 2%;
}

.page-temoignages #MonAvis,
.page-temoignages #avis_form {
    padding: 0;
}

#MonAvis span:not(.page-temoignages__rating-hint) {
    font-size: 18px;
    color: #333;
    display: block;
}

#avis_form:not(.page-temoignages__form) label {
    display: block;
    margin-bottom: 8px;
}

#avis_form:not(.page-temoignages__form) .input-form {
    margin: 0 0 15px;
    width: 100%;
}

.avis a {
    width: 10%;
    float: left;
    height: 100%;
}

.avis>i {
    background: url(../images/rating-sprit.png) no-repeat;
    display: inline-block;
    height: 23px;
    width: 120px;
    margin-right: 15px;
}

.avis-0 {
    background-position: 0 0 !important;
}

.avis-1 {
    background-position: 0 -25px !important;
}

.avis-2 {
    background-position: 0 -50px !important;
}

.avis-3 {
    background-position: 0 -75px !important;
}

.avis-4 {
    background-position: 0 -100px !important;
}

.avis-5 {
    background-position: 0 -125px !important;
}

.avis-6 {
    background-position: 0 -150px !important;
}

.avis-7 {
    background-position: 0 -175px !important;
}

.avis-8 {
    background-position: 0 -200px !important;
}

.avis-9 {
    background-position: 0 -225px !important;
}

.avis-10 {
    background-position: 0 -250px !important;
}

.texte-agence {
    line-height: 120%;
    font-size: 12px;
}

.texte-agence a {
    color: inherit;
    text-decoration: none;
}

body.page-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, var(--color-white-alt) 0%, #f4ece2 42%, color-mix(in srgb, var(--color-primary) 12%, white) 100%);
}

body.page-404 .page-404 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-6, 2.4rem) var(--space-4, 1.6rem);
    text-align: center;
}

.page-404__wrap {
    width: 100%;
    max-width: 44rem;
}

.page-404__logo {
    display: inline-block;
    margin: 0 auto var(--space-5, 2rem);
}

.page-404__logo img {
    margin: 0 auto;
    max-width: min(22rem, 85vw);
    height: auto;
}

.page-404__code,
.page-404__title {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
}

.page-404__code {
    margin: 0;
    font-size: clamp(5rem, 18vw, 9rem);
    line-height: 1;
    color: var(--color-primary);
    opacity: .22;
    letter-spacing: -.05em;
}

.page-404__title {
    margin: -1.6rem 0 var(--space-3, 1.2rem);
    font-size: var(--fs-2xl);
    line-height: var(--lh-tight);
    color: var(--color-heading);
}

.page-404__lead {
    margin: 0 auto var(--space-5);
    max-width: 32rem;
    font-size: var(--fs-md);
    line-height: var(--lh-snug);
    color: var(--color-text);
}

.page-404__cta {
    margin-top: var(--space-2, 0.8rem);
}

.sabas-hero__trust-bar {
    position: relative;
    z-index: 2;
    background: #fbf2e8;
    border-top: 1px solid color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.sabas-hero__trust-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.Mobile .sabas-hero__trust-inner {
    padding-bottom: 20px;
}

@media (min-width:992px) {
    .sabas-hero__trust-inner {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.95fr);
        gap: var(--space-6) var(--space-8);
        align-items: center;
    }
}

.sabas-hero__trust-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    text-align: center;
    padding: 15px 0 20px;
}

.Mobile .sabas-hero__trust-head {
    align-items: center;
}

@media (min-width:576px) {
    .sabas-hero__trust-head {
        align-items: center;
    }
}

.sabas-hero__trust-photo {
    width: auto;
    max-width: min(12rem, 42vw);
    height: auto;
    display: block;
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

.sabas-hero__trust-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    color: var(--color-heading);
}

.sabas-hero__trust-body img {
    max-width: none;
    width: 10rem;
    flex-shrink: 0;
    height: auto;
}

.sabas-hero__trust-badges img:first-child {
    width: 12rem;
}

.sabas-hero__trust-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
}

.sabas-hero__trust-row.sabas-hero__trust-row--top>div {
    background: white;
    padding: 20px;
    text-align: center;
    line-height: 1.4;
    justify-content: center;
    display: flex;
}

.rightBlockHero .sabas-hero__trust-row.sabas-hero__trust-row--top>div {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    padding: 15px;
}

.sabas-hero__trust-row--top .sabas-hero__trust-formation,
.sabas-hero__trust-row--top .sabas-hero__trust-press,
.sabas-hero__trust-row--top .sabas-hero__trust-qr {
    flex: 1;
}

.sabas-hero__trust-row--bottom .sabas-hero__trust-badges {
    flex: 1 1 auto;
    justify-content: center;
}

.sabas-hero__trust-badges span {
    width: calc(50% - 16px);
    flex: 0 0 calc(50% - 16px);
    border: 1px solid #c6a47e;
    height: 130px;
    display: flex;
    align-items: center;
    padding: 20px;
}

.sabas-hero__trust-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2);
    flex: 0 0 auto;
}

@media (max-width:640px) {
    .sabas-hero__trust-row--top {
        /*flex-direction: column;*/
        gap: var(--space-4);
    }
}

.sabas-hero__trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    min-width: min-content;
}

.sabas-hero__trust-badge {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.sabas-hero__trust-formation-img {
    width: 16rem !important;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
}

.sabas-hero__trust-formation-text {
    min-width: 0;
}

.sabas-hero__trust-line {
    text-transform: uppercase;
    margin: 1rem 0 0;
    font-weight: var(--fw-bold);
    letter-spacing: .06em;
    display: block;
}

.rightBlockHero .sabas-hero__trust-line {
    font-size: 12px;
}

.sabas-hero__trust-line+.sabas-hero__trust-line {
    margin-top: var(--space-1);
}

.sabas-hero__trust-press {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-4) var(--space-6);
}

.sabas-hero__trust-bfm {
    display: inline-flex;
    line-height: 0;
    opacity: .95;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.sabas-hero__trust-bfm:focus-visible,
.sabas-hero__trust-bfm:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.sabas-hero__trust-bfm img {
    width: 15rem;
    height: auto;
    object-fit: contain;
    display: block;
}

.sabas-hero__trust-qr img {
    display: block;
    width: 10rem;
    height: auto;
    margin: auto;
}

.sabas-hero__trust-qr-caption {
    text-transform: uppercase;
    margin-top: 1rem;
    font-weight: var(--fw-bold);
    letter-spacing: .06em;
    display: block;
}

.sabas-hero__trust-stars {
    font-size: 2.5rem;
    line-height: 1;
    color: #e6a800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sabas-hero__trust-rating-text {
    margin: 0;
    font-size: var(--fs-lg);
    color: var(--color-heading);
}

.sabas-hero__trust-bar .sabas-hero__trust-badges>span {
    width: calc(25% - 16px);
    flex: calc(25% - 16px);
    height: 85px;
    margin-top: 1.2rem;
    padding: 5px;
    justify-content: center;
}

.sabas-hero__trust-bar .sabas-hero__trust-body {
    padding: 1rem 0;
}

.sabas-hero__trust-bar .sabas-hero__trust-badges {
    justify-content: center;
}

.sabas-hero__trust-bar .sabas-hero__trust-badges img:first-child {
    width: 8rem;
}

.rightBlockHero {
    display: flex;
    align-items: center;
}
.Mobile .rightBlockHero {
    display: block;
}

.video-hero iframe {
    width: 100%;
}

.video-hero {
    position: relative;
    margin-left: 16px;
}

button#videoPlayPauseBtn {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    z-index: 90;
    font-size: 25px;
    border: 0;
    background-color: rgb(255 255 255 / 44%);
    padding: 10px;
    line-height: 100%;
}
button#videoPlayPauseBtn:hover {
    background-color: white
}

.realisations-card__media {
    position: relative;
    overflow: hidden;
}

.realisations-card__logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 85px;
    height: auto;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 6px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease;
}

.realisations-card:hover .realisations-card__logo {
    opacity: 0.9;
}

/* Version responsive pour mobile */
@media (max-width: 768px) {
    .realisations-card__logo {
        width: 50px;
        bottom: 5px;
        right: 5px;
        padding: 3px;
    }
}

/* Section avec la carte en sticky */
.texte-realisations {
    position: relative;
    text-align: left;
}

@media(min-width: 992px) {
    .texte-realisations {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }
    
    .carte-idf-inner {
        flex: 0 0 40%;
        max-width: 40%;
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
    
    .carte-idf span {
        display: block;
    }
    
    .carte-idf img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .text-right-rea {
        flex: 1;
    }
}
.carte-idf span {
    position: relative;
}
.adresse-carte > div {
    position: absolute;
    width: 150px;
    border: 1px solid #c6a47e;
    border-radius: 6px;
    padding: 5px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    background: #f7f0e7;
    z-index: 2;
}
.adresse-carte > div::before {
    content: "";
    display: block;
    margin: 0 auto 15px;
    background-image: url(../images/icons/map-location.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
}
.adresse-carte > div#carte77 {
    top: 27%;
    right: 10%;
}
.adresse-carte > div#carte91 {
    bottom: 10%;
    left: 13%;
}
.carte-idf-inner {
    transition: transform 0.2s ease;
}
.carte-idf {
    transition: transform 0.2s ease;
    position: relative;
}
.deplacement-accroche {
    display: flex;
    gap: 13px;
    align-items: center;
    font-family: "Permanent Marker";
    font-size: 25px;
    color: #885c2d;
    line-height: 120%;
}
@media(max-width: 767px) {
    .deplacement-accroche {
        border-bottom: 1px solid;
        margin-bottom: 15px;
        font-size: 20px;
    }
}
.texte-realisations h2 {
    font-size: 26px;
}
.texte-realisations p:not(:last-child) {
    line-height: 1.5;
    margin-bottom: 0;
}
.texte-realisations h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.texte-realisations ul {
    gap: 20px;
    display: flex;
    list-style: none;
    padding-left: 0;
    flex-wrap: wrap;
    justify-content: space-between;
}
.texte-realisations ul li {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    border: 1px solid var(--color-announcement);
    padding: 20px;
    text-align: left;
    line-height: 1.5;
}
.texte-realisations ul li:first-child {
    flex-basis: 100%;
    flex-grow: 1;
    max-width: 100%;
}
@media(max-width: 767px) {
    .texte-realisations ul li {
        flex-direction: column;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*
Showroom
*/
body.showroom-de-mon-entreprise {
    padding-top: 0 !important;
}
.banner-showroom {
    position: relative;
}
.image-showroom {
    display: flex;
    position: relative;
}
.image-showroom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.image-showroom img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
}
.text-banner {
    border: 1px solid var(--color-announcement);
    position: absolute;
    z-index: 2;
    right: -10%;
    top: 52%;
    transform: translate(-50%, -50%);
    padding: 20px;
    max-width: 500px;
    background: rgb(0 69 64 / 0%);
    backdrop-filter: blur(8px);
}
.rectangle-bg {
    position: absolute;
}
.text-banner h1 {
    color: white;
    text-shadow: 0 0 2px black;
    text-transform: uppercase;
}
.showroomm-text {
    line-height: 130%;
    position: relative;
    z-index: 3;
}
.showroomm-text h2,
.qualitePresta h2 {
    font-family: "Permanent Marker";
    font-weight: normal;
}
.showroom-col ul {
    list-style: none;
    padding-left: 0;
}
.showroom-col ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.showroom-col ul li::before {
    content: "";
    background-image: url(../images/icons/checkmark.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
}
.item-showroom_2 {
    padding: 60px 0;
    display: flex;
}
.showroom-col, 
.showroom-col-img {
    flex: 1;
}
.showroom-col-img span {
    padding-left: 10rem;
    display: flex;
    height: 100%;
}
.showroom-col-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.qualitePresta {
    background-color: white;
    padding: 60px 0;
}
.qualite-item {
    line-height: 130%;
}
.qualite-item p:not(:last-child) {
    margin-bottom: 15px;
}
.qualite-block {
    display: flex;
    align-items: center;
    gap: 20px;
}
.imgLabel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sowroomMap {
    background: #b39069;
    position: relative;
}
.sowroomMap #Map {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    min-height: 250px;
    z-index: 100;
}
.right-showroomMap {
    line-height: 130%;
    width: 50%;
    margin-left: auto;
    padding: 60px 60px 30px;
    color: white;
}
.right-showroomMap h2 {
    font-family: "Permanent Marker";
    font-weight: normal;
    color: white;
}

@media(min-width: 992px) {
    .item-showroom_1 {
        max-width: 860px;
        background: white;
        padding: 40px;
        margin-top: -20rem;
    }
    .imgLabel {
        flex: 0 0 250px;
        max-width: 250px;
    }
}

@media(max-width: 767px) {
    .banner-showroom {
        padding-top: 66px;
    }
    .text-banner {
        position: static;
        transform: none;
        border: none;
    }
    .text-banner h1 {
        color: black;
        text-shadow: none;
        font-size: 23px;
    }
    .showroomm-text {
        padding-top: 30px;
        border-top: 2px solid var(--color-announcement);
    }
    .item-showroom_2 {
        flex-direction: column-reverse;
    }
    .showroom-col-img span {
        padding-left: 0;
        margin-bottom: 15px;
    }
    .qualite-block {
        flex-direction: column;
    }
    .imgLabel {
        width: 150px;
    }
    .sowroomMap #Map {
        position: relative !important;
        width: 100%;
    }
    .right-showroomMap {
        width: 100%;
        padding: 30px;
    }

}