:root {
    --color-white: #ffffff;
    --color-black: #202325;
    --color-text: #5e6468;
    --color-muted: #9ca5aa;
    --color-line: #dde2e5;
    --color-teal: #1db7bc;
    --color-teal-dark: #118e93;
    --color-teal-soft: #8de3e6;
    --container-width: min(1140px, calc(100vw - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--color-white);
    color: var(--color-text);
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.content-shell {
    width: var(--container-width);
    margin: 0 auto;
}

.home-main {
    padding-top: 0;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 600;
    background: #ffffff;
    border-top: 1px solid #dfe2e4;
    border-bottom: 1px solid #edf0f1;
}

.site-header .content-shell,
.site-footer .content-shell {
    width: min(1200px, calc(100vw - 48px));
}

.site-header.is-scrolled {
    box-shadow: 0 8px 22px rgba(24, 35, 40, 0.1);
}

.site-header__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.75rem;
    min-height: 162px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.site-header__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__brand img {
    width: 238px;
    height: auto;
}

.site-header__right {
    flex: 1;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 10px;
}

.site-header__contact {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    min-height: 28px;
}

.site-header__contact-link,
.site-header__address {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    color: #7b8084;
    font-size: 0.9375rem;
    letter-spacing: 0;
    line-height: 1;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    white-space: nowrap;
}

.site-header__contact-link {
    font-weight: 700;
}

.site-header__contact img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-top: 1px;
}

.site-header__menu-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-left: 0;
}

.site-header__mobile-menu {
    display: none;
    border-top: 1px solid #eceeef;
}

.site-header__mobile-menu-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.site-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.72rem;
    border: 1px solid #b8bdbf;
    background: #f5f5f5;
    color: #6c7276;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-header__nav {
    flex: initial;
}

.site-header__nav-list {
    margin: 0;
    padding: 0;
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    list-style: none;
}

.site-header__nav-item a {
    color: #8a8e92;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.2s ease;
    line-height: 1;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    white-space: nowrap;
}

.site-header__nav-item--current a,
.site-header__nav-item a:hover,
.site-header__nav-item a:focus-visible {
    color: #149ba1;
}

.site-header__facebook {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1e9ca2;
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    font-family: Arial, sans-serif;
    padding-bottom: 1px;
    flex-shrink: 0;
}

.site-header.is-scrolled .site-header__container {
    align-items: center;
    min-height: 54px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-header.is-scrolled .site-header__brand {
    margin-top: 0;
}

.site-header.is-scrolled .site-header__brand img {
    width: 166px;
}

.site-header.is-scrolled .site-header__right {
    margin-top: 0;
    gap: 0;
}

.site-header.is-scrolled .site-header__contact {
    display: none;
}

.site-header--desinfection .site-header__container {
    min-height: 148px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-header--desinfection .site-header__brand {
    margin-top: 30px;
}

.site-header--desinfection .site-header__right {
    max-width: 900px;
    gap: 0.58rem;
    margin-top: 2px;
}

.site-header--desinfection .site-header__contact {
    justify-content: flex-end;
    gap: 1.25rem;
    min-height: 24px;
}

.site-header--desinfection .site-header__contact-link,
.site-header--desinfection .site-header__address {
    font-size: 100%;
    letter-spacing: 0.015em;
}

.site-header--desinfection .site-header__contact img {
    width: 10px;
    height: 10px;
    margin-top: 0;
}

.site-header--desinfection .site-header__menu-row {
    justify-content: flex-start;
    gap: 0.52rem;
    padding-left: 0;
}

.site-header--desinfection .site-header__nav {
    background: #0f1315;
    border: 1px solid #212629;
    padding: 0 0.92rem;
}

.site-header--desinfection .site-header__nav-list {
    min-height: 32px;
    gap: 0.78rem;
}

.site-header--desinfection .site-header__nav-item a {
    color: #fafafa;
    font-size: 100%;
    letter-spacing: 0.02em;
}

.site-header--desinfection .site-header__nav-item--current a,
.site-header--desinfection .site-header__nav-item a:hover,
.site-header--desinfection .site-header__nav-item a:focus-visible {
    color: #1eb2b9;
}

.site-header--desinfection .site-header__facebook {
    width: 22px;
    height: 22px;
    font-size: 100%;
    padding-bottom: 1px;
}

.site-header--travaux .site-header__container {
    min-height: 126px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.site-header--travaux .site-header__brand {
    margin-top: 16px;
}

.site-header--travaux .site-header__brand img {
    width: 176px;
}

.site-header--travaux .site-header__right {
    max-width: 940px;
    margin-top: 0;
    gap: 0.48rem;
}

.site-header--travaux .site-header__contact {
    justify-content: flex-start;
    gap: 1.2rem;
    min-height: 18px;
}

.site-header--travaux .site-header__contact-link,
.site-header--travaux .site-header__address {
    color: #7d8286;
    font-size: 56.25%;
    letter-spacing: 0.01em;
}

.site-header--travaux .site-header__contact img {
    width: 10px;
    height: 10px;
    margin-top: 0;
}

.site-header--travaux .site-header__menu-row {
    justify-content: flex-start;
    gap: 0.56rem;
    padding-left: 0;
}

.site-header--travaux .site-header__nav-list {
    min-height: 24px;
    gap: 0.72rem;
}

.site-header--travaux .site-header__nav-item a {
    font-size: 53.125%;
    letter-spacing: 0.02em;
}

.site-header--travaux .site-header__facebook {
    width: 16px;
    height: 16px;
    font-size: 62.5%;
    padding-bottom: 1px;
}

.site-header--travaux.is-scrolled {
    border-bottom-color: #131719;
}

.site-header--travaux.is-scrolled .site-header__container {
    align-items: center;
    min-height: 82px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.site-header--travaux.is-scrolled .site-header__brand {
    margin-top: 0;
}

.site-header--travaux.is-scrolled .site-header__brand img {
    width: 148px;
}

.site-header--travaux.is-scrolled .site-header__right {
    max-width: 1020px;
    margin-top: 0;
    gap: 0.36rem;
}

.site-header--travaux.is-scrolled .site-header__contact {
    justify-content: flex-start;
    gap: 1.35rem;
    min-height: 16px;
}

.site-header--travaux.is-scrolled .site-header__contact-link,
.site-header--travaux.is-scrolled .site-header__address {
    color: #7d8387;
    font-size: 56.25%;
    letter-spacing: 0.01em;
}

.site-header--travaux.is-scrolled .site-header__contact img {
    width: 10px;
    height: 10px;
    margin-top: 0;
}

.site-header--travaux.is-scrolled .site-header__menu-row {
    justify-content: flex-start;
    gap: 0.56rem;
    padding-left: 0;
}

.site-header--travaux.is-scrolled .site-header__nav {
    background: #0f1315;
    border: 1px solid #202427;
    padding: 0 0.8rem;
}

.site-header--travaux.is-scrolled .site-header__nav-list {
    min-height: 32px;
    gap: 0.72rem;
}

.site-header--travaux.is-scrolled .site-header__nav-item a {
    color: #fbfbfb;
    font-size: 53.125%;
    letter-spacing: 0.02em;
}

.site-header--travaux.is-scrolled .site-header__nav-item--current a,
.site-header--travaux.is-scrolled .site-header__nav-item a:hover,
.site-header--travaux.is-scrolled .site-header__nav-item a:focus-visible {
    color: #1db7bc;
}

.site-header--travaux.is-scrolled .site-header__facebook {
    width: 16px;
    height: 16px;
    font-size: 62.5%;
    padding-bottom: 1px;
}

.site-floating__top {
    position: fixed;
    right: 15px;
    bottom: 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #9f9f9f;
    border: 0;
    z-index: 650;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.site-floating__top::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 4px solid #ffffff;
    border-left: 4px solid #ffffff;
    transform: rotate(45deg) translate(1px, 2px);
}

.site-floating__top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.site-floating__top img {
    display: none;
}

.site-floating__top span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-floating__cookies {
    position: fixed;
    left: 5px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
    z-index: 650;
    padding: 0;
}

.site-floating__cookies::before {
    content: "\2699";
    color: #000000;
    font-size: 1.25rem;
    line-height: 30px;
}

body.has-cookie-preferences-open {
    overflow: hidden;
}

.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10020;
    max-width: min(480px, calc(100vw - 32px));
}

.cookie-banner__inner {
    display: grid;
    gap: 1rem;
    padding: 1.1rem 1.1rem 1rem;
    border: 1px solid rgba(22, 142, 145, 0.2);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(24, 33, 38, 0.18);
}

.cookie-banner__copy {
    display: grid;
    gap: 0.5rem;
}

.cookie-banner__title {
    margin: 0;
    color: #253138;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cookie-banner__text {
    margin: 0;
    color: #3c464b;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-banner__actions,
.cookie-preferences__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.cookie-banner__button {
    min-height: 40px;
    padding: 0.7rem 1rem;
    border: 1px solid #168e91;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}

.cookie-banner__button--ghost {
    background: #ffffff;
    color: #168e91;
}

.cookie-banner__button--primary {
    background: #168e91;
    color: #ffffff;
}

.cookie-preferences {
    position: fixed;
    inset: 0;
    z-index: 10030;
}

.cookie-preferences__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 28, 0.55);
}

.cookie-preferences__dialog {
    position: relative;
    width: min(680px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    padding: 1.25rem;
    overflow: auto;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.cookie-preferences__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.cookie-preferences__eyebrow {
    margin: 0 0 0.25rem;
    color: #168e91;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-preferences__title {
    margin: 0;
    color: #253138;
    font-family: "Euphemia UCAS", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.cookie-preferences__close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(22, 142, 145, 0.28);
    background: #ffffff;
    color: #253138;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-preferences__description {
    margin: 0 0 1rem;
    color: #3c464b;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.cookie-preferences__form {
    display: grid;
    gap: 0.85rem;
}

.cookie-preferences__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(22, 142, 145, 0.18);
    background: #f7f9fa;
}

.cookie-preferences__item--locked {
    background: #eef5f5;
}

.cookie-preferences__item-copy {
    display: grid;
    gap: 0.35rem;
}

.cookie-preferences__item-copy strong {
    color: #253138;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cookie-preferences__item-copy span,
.cookie-preferences__switch span {
    color: #3c464b;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-preferences__switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.site-floating__mobile-nav {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    border: 0;
    background: rgba(22, 142, 145, 0.82);
    cursor: pointer;
    z-index: 9999;
    text-decoration: none;
}

.site-floating__mobile-nav::before,
.site-floating__mobile-nav::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 17px;
    height: 2px;
    background: #ffffff;
    transform: translateX(-50%);
}

.site-floating__mobile-nav::before {
    top: 16px;
}

.site-floating__mobile-nav::after {
    top: 27px;
}

.site-floating__mobile-nav span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 17px;
    height: 2px;
    background: #ffffff;
    transform: translate(-50%, -50%);
    text-indent: -9999px;
    overflow: hidden;
}

.desinfection-page {
    background: #ffffff;
}

.desinfection-header {
    position: sticky;
    top: 0;
    z-index: 550;
    background: #f7f7f7;
    border-top: 1px solid #e4e6e8;
    border-bottom: 1px solid #eceef0;
}

.desinfection-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.desinfection-header__brand img {
    width: 116px;
    height: auto;
}

.desinfection-header__right {
    flex: 1;
    max-width: 920px;
}

.desinfection-header__contact {
    min-height: 26px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2rem;
}

.desinfection-header__contact-item {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #8b8f94;
    font-size: 100%;
    letter-spacing: 0.01em;
}

.desinfection-header__contact-item img {
    width: 11px;
    height: 11px;
}

.desinfection-header__menu-toggle {
    display: none;
    border: 1px solid #b8bdc0;
    background: #f1f1f1;
    color: #6a7175;
    text-transform: uppercase;
    font-size: 100%;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.6rem;
}

.desinfection-header__nav-list {
    margin: 0;
    padding: 0.15rem 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.85rem;
    list-style: none;
    flex-wrap: wrap;
}

.desinfection-header__nav-item a {
    color: #7a7f82;
    font-size: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.desinfection-header__nav-item--current a {
    color: #1ca2a8;
}

.desinfection-hero {
    position: relative;
    height: 570px;
    overflow: hidden;
}

.desinfection-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.desinfection-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.desinfection-hero__slide--default {
    opacity: 1;
}

.desinfection-hero.is-alt .desinfection-hero__slide--default {
    opacity: 0;
}

.desinfection-hero.is-alt .desinfection-hero__slide--alt {
    opacity: 1;
}

.desinfection-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 24px;
}

.desinfection-hero__cta {
    min-width: 164px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(116, 122, 127, 0.78);
    color: #f7f7f7;
    font-size: 100%;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.55rem 0.8rem;
}

.desinfection-hero__dots {
    display: inline-flex;
    gap: 0.35rem;
}

.desinfection-hero__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.desinfection-hero__dot--active {
    background: #22b8bf;
}

.desinfection-content {
    background: #f7f7f7 url("src/images/original/motif-f.png") repeat;
}

.desinfection-content__spacer {
    height: 278px;
    background: #ffffff;
}

.desinfection-content__body {
    padding: 2.1rem 0 1.4rem;
}

.desinfection-content__title {
    margin: 0 0 0.45rem;
    color: #3a4044;
    font-size: 100%;
    line-height: 1.04;
    text-transform: uppercase;
}

.desinfection-content__lead {
    margin: 0 0 0.3rem;
    color: #8f959a;
    font-size: 100%;
    line-height: 1.45;
}

.desinfection-tabs {
    margin-top: 0.75rem;
}

.desinfection-tabs__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.desinfection-tabs__trigger {
    width: 100%;
    border: 1px solid #c3c7cb;
    padding: 0;
    background: #f0f0f0;
    cursor: pointer;
}

.desinfection-tabs__trigger img {
    width: 100%;
    height: 62px;
    object-fit: cover;
    filter: brightness(0.8);
}

.desinfection-tabs__trigger span {
    margin: -16px auto 8px;
    min-height: 32px;
    width: calc(100% - 14px);
    display: grid;
    place-items: center;
    padding: 0.18rem 0.3rem;
    background: #1ea9ae;
    color: #ffffff;
    font-size: 100%;
    text-transform: none;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.desinfection-tabs__trigger.is-active span {
    background: #1d9ea5;
}

.desinfection-tabs__panel {
    margin-top: 0.75rem;
    padding: 0.5rem 0.5rem 0.75rem;
    border: 1px solid #d6dade;
    background: rgba(255, 255, 255, 0.76);
}

.desinfection-tabs__panel-title {
    margin: 0 0 0.45rem;
    color: #4a4f54;
    font-size: 100%;
    text-transform: uppercase;
}

.desinfection-tabs__panel-text {
    margin: 0 0 0.7rem;
    color: #7f868c;
    font-size: 100%;
    line-height: 1.45;
}

.desinfection-tabs__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    max-width: 560px;
    margin: 0 auto;
}

.desinfection-tabs__images img {
    width: 100%;
    aspect-ratio: 1.46;
    object-fit: cover;
}

.desinfection-content__meta {
    margin: 0.35rem 0 0;
    color: #9ca2a7;
    font-size: 100%;
    line-height: 1.4;
}

.desinfection-content__meta a {
    color: #2eb5b9;
}

.desinfection-footer {
    background: #f7f7f7 url("src/images/original/motif-f.png") repeat;
    padding: 0.85rem 0 0.95rem;
}

.desinfection-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 1rem;
    align-items: end;
}

.desinfection-footer__logo {
    width: 90px;
    height: auto;
}

.desinfection-footer__left-socials {
    margin-top: 0.3rem;
    display: flex;
    gap: 0.35rem;
}

.desinfection-footer__left-socials a {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #73787c;
    color: #ffffff;
    font-size: 100%;
    text-transform: uppercase;
}

.desinfection-footer__contact h2 {
    margin: 0 0 0.32rem;
    color: #1aa3a8;
    font-size: 100%;
    text-transform: uppercase;
}

.desinfection-footer__contact p {
    margin: 0 0 0.3rem;
    color: #262a2d;
    font-size: 100%;
    line-height: 1.35;
}

.desinfection-footer__notice p {
    margin: 0 0 0.6rem;
    text-align: right;
    color: #4f565a;
    font-size: 100%;
    line-height: 1.35;
}

.desinfection-footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.desinfection-footer__social {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: #ffffff;
    font-size: 100%;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.desinfection-footer__social--facebook {
    background: #4c72b8;
}

.desinfection-footer__social--x {
    background: #000000;
    font-size: 100%;
}

.desinfection-footer__legal {
    margin-left: 0.35rem;
    color: #158f96;
    font-size: 100%;
}

.site-hero {
    position: relative;
    width: 100%;
    height: 570px;
    overflow: hidden;
}

.site-hero__media {
    position: absolute;
    inset: 0;
}

.site-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 0.17) 100%);
}

.site-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.site-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0.65rem;
    padding-bottom: 28px;
}

.site-hero__loader {
    display: none;
}

.site-hero__cta {
    min-width: 3vw;
    min-height: 3vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 131, 134, 0.88);
    color: #f8f8f8;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.8rem 1.4rem;
}

.site-hero__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.site-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.site-hero__dot--active {
    background: #20b5ba;
}

.values-section {
    position: relative;
    padding: 126px 0 84px;
    background: #ffffff;
}

.values-section__title {
    margin: 0 0 66px;
    text-align: center;
    color: #2f3338;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.values-section__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.values-section__card {
    text-align: center;
    padding: 0;
}

.values-section__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.35rem;
    object-fit: contain;
    opacity: 0.7;
}

.values-section__card-title {
    margin: 0 auto;
    max-width: 170px;
    color: #404448;
    font-size: 0.9375rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
}

.values-section__mobile-dots {
    display: none;
}

.about-section {
    padding: 26px 0 78px;
    background: #fafbfc url("src/images/original/motif.png") repeat;
}

.about-section__intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.32fr);
    min-height: 554px;
    overflow: hidden;
    background: #1f9fa5;
}

.about-section__intro::before {
    content: "";
    position: absolute;
    inset: 52px 44px 44px 44px;
    border: 6px solid #ffffff;
    z-index: 1;
}

.about-section__intro-text {
    position: relative;
    z-index: 2;
    padding: 82px 74px 76px 84px;
    display: flex;
    align-items: center;
    background: transparent;
}

.about-section__intro-copy {
    max-width: 575px;
}

.about-section__intro-text h2 {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: clamp(3rem, 4.2vw, 4.125rem);
    line-height: 0.95;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.about-section__intro-text p {
    margin: 0;
    max-width: 500px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.45;
}

.about-section__intro-image {
    min-height: 554px;
    position: relative;
    z-index: 2;
}

.about-section__intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.about-section__card {
    border: 0;
    background: #efefef;
    padding: 1.7rem 1.85rem 1.5rem;
}

.about-section__card-title {
    margin: 0;
    min-height: 118px;
    color: #33363a;
    font-size: 1.125rem;
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.about-section__card-text {
    margin: 1rem 0 0;
    color: #3e4347;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.about-section__card a {
    color: #21b4b9;
}

.about-section__list {
    margin: 1.05rem 0 0;
    padding: 0;
    list-style: none;
}

.about-section__list li {
    position: relative;
    padding-left: 1.2rem;
    color: #3f4448;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.about-section__list li + li {
    margin-top: 0.16rem;
}

.about-section__list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #1d2327;
    font-size: 0.875rem;
}

.about-section__card-note {
    margin: 1.55rem 0 0;
    color: #3f4348;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.news-section {
    padding: 76px 0 94px;
    background: transparent;
}

.news-section__title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.news-section__title {
    margin: 0;
    color: #24afb3;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.news-section__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-y;
    scroll-behavior: smooth;
}

.news-section__viewport::-webkit-scrollbar {
    display: none;
}

.news-section__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.news-section__track {
    display: flex;
}

.news-section__page {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
}

.news-section__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
}

.news-section__card {
    background: transparent;
    padding: 0;
}

.news-section__card-image {
    width: 100%;
    height: 218px;
    object-fit: cover;
    background: #cfcfcf;
}

.news-section__card-title {
    margin: 0.95rem 0 0.5rem;
    color: #3b3f44;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.news-section__card-title a {
    color: inherit;
    text-decoration: none;
}

.news-section__card-excerpt {
    margin: 0;
    color: #555b60;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.news-section__card-link {
    margin-top: 1rem;
    min-width: 84px;
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #888f93;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 0.9rem;
}

.news-section__card-link {
    text-decoration: none;
}

.news-section__dots {
    margin-top: 1.05rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.news-section__dot {
    appearance: none;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #27b8bc;
    background: transparent;
    cursor: pointer;
}

.news-section__dot:focus-visible {
    outline: 2px solid #1e2327;
    outline-offset: 3px;
}

.news-section__dot--active {
    background: #1e2327;
    border-color: #1e2327;
}

.testimonials-section {
    background: #ffffff;
}

.testimonials-section__container {
    text-align: center;
    padding-bottom: 1.4rem;
}

.testimonials-section__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-y;
    scroll-behavior: smooth;
}

.testimonials-section__viewport::-webkit-scrollbar {
    display: none;
}

.testimonials-section__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.testimonials-section__track {
    display: flex;
}

.testimonials-section__page {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.testimonials-section__title {
    margin: 0;
    color: #24b0b4;
    font-size: 1.125rem;
    line-height: 1;
    text-transform: uppercase;
}

.testimonials-section__dots {
    margin: 0.75rem 0 1rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.testimonials-section__dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #75cfd3;
    position: relative;
}

.testimonials-section__dot::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #28b8bc;
}

.testimonials-section__dot--muted {
    border-color: #b9bec2;
}

.testimonials-section__dot--muted::before {
    background: #b9bec2;
}

.testimonials-section__meta {
    margin: 0;
    color: #52565a;
    font-size: 0.6875rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.testimonials-section__meta span {
    margin-left: 1.6rem;
}

.testimonials-section__quote {
    margin: 0.5rem auto 1.25rem;
    max-width: 760px;
    color: #596066;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.testimonials-section__pager {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.testimonials-section__pager-dot {
    width: 0.78rem;
    height: 0.78rem;
    padding: 0;
    border: 1px solid #95a0a6;
    border-radius: 999px;
    background: transparent;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.testimonials-section__pager-dot--active {
    border-color: #1e2327;
    background: #1e2327;
    transform: scale(1.08);
}

.testimonials-section__wave {
    position: relative;
    height: 300px;
    margin-top: -8px;
    background: linear-gradient(180deg, #21b6bb 0%, #14979e 100%);
    overflow: hidden;
}

.testimonials-section__wave::before {
    content: "";
    position: absolute;
    left: -12%;
    top: -222px;
    width: 124%;
    height: 336px;
    border-radius: 0 0 50% 50%;
    background: #ffffff;
}

.testimonials-section__wave::after {
    content: "";
    position: absolute;
    left: -14%;
    top: -102px;
    width: 128%;
    height: 248px;
    border-radius: 0 0 50% 50%;
    background: rgba(121, 229, 231, 0.72);
}

.contact-strip {
    margin-top: 2%;
    position: relative;
    z-index: 5;
    padding-bottom: 2.1rem;
}

.contact-strip__container {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
}

.contact-strip__title {
    margin: 0;
    padding-top: 5.6rem;
    color: #14979e;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-strip__form {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    grid-template-areas:
        "name message"
        "phone message"
        "email message"
        "legal legal"
        "consent consent"
        ". submit";
    gap: 0.4rem 0.5rem;
}

.contact-strip__feedback {
    grid-column: 1 / -1;
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
    font-size: 0.875rem;
    line-height: 1.4;
}

.contact-strip__feedback--success {
    border-color: #9ce5e8;
    background: rgba(255, 255, 255, 0.92);
    color: #0d6d73;
}

.contact-strip__feedback--error {
    border-color: #f0b3b3;
    background: rgba(255, 255, 255, 0.92);
    color: #a53737;
}

.contact-strip__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-strip__input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #9ce5e8;
    background: #ffffff;
    color: #677277;
    font-size: 0.9375rem;
    padding: 0.6rem 0.85rem;
    font-family: inherit;
}

.contact-strip__input::placeholder {
    color: #7f878c;
}

.contact-strip__input--name {
    grid-area: name;
}

.contact-strip__input--phone {
    grid-area: phone;
}

.contact-strip__input--email {
    grid-area: email;
}

.contact-strip__input--message {
    grid-area: message;
    min-height: 92px;
    resize: none;
}

.contact-strip__submit {
    grid-area: submit;
    width: 100%;
    min-height: 47px;
    border: 0;
    background: #898f94;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
}

.contact-strip__legal {
    grid-area: legal;
    margin: 0.15rem 0 0;
    color: #14979e;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.contact-strip__legal a {
    color: inherit;
    text-decoration: underline;
}

.contact-strip__consent {
    grid-area: consent;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #14979e;
    font-size: 0.8125rem;
    line-height: 1.35;
}

.contact-strip__consent input {
    margin: 0;
}

.contact-strip__consent a {
    text-decoration: underline;
}

.site-footer {
    position: relative;
    min-height: 342px;
    padding: 1.5rem 0 1rem;
    background: #f7f7f7 url("src/images/original/motif-f.png") repeat;
    border-top: 0;
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 8px solid rgba(48, 177, 186, 0.62);
    border-right-color: transparent;
    transform: rotate(24deg);
}

.site-footer::before {
    left: -10px;
    top: 12px;
    width: 44px;
    height: 44px;
}

.site-footer::after {
    right: 150px;
    top: 112px;
    width: 34px;
    height: 34px;
}

.site-footer__container {
    position: relative;
    display: grid;
    grid-template-columns: 16rem 22rem 15rem;
    justify-content: space-between;
    column-gap: 3rem;
    align-items: start;
    min-height: 224px;
    padding: 1.7rem 2.25rem 0 2.65rem;
}

.site-footer__brand {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.95rem;
    padding-top: 0.9rem;
}

.site-footer__brand::before,
.site-footer__brand::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 7px solid rgba(98, 193, 201, 0.85);
    border-right-color: transparent;
    transform: rotate(34deg);
}

.site-footer__brand::before {
    top: 30px;
    left: -34px;
    width: 30px;
    height: 30px;
}

.site-footer__brand::after {
    bottom: -38px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-width: 6px;
}

.site-footer__logo {
    width: 156px;
    height: auto;
}

.site-footer__facebook-gray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    line-height: 0;
}

.site-footer__facebook-gray img {
    width: 36px;
    height: 35px;
    display: block;
}

.site-footer__contact h3 {
    margin: 0 0 0.95rem;
    color: #149ba1;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
}

.site-footer__contact p {
    margin: 0;
    color: #202325;
    font-size: 1rem;
    line-height: 1.45;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

.site-footer__address {
    margin-bottom: 0.95rem;
}

.site-footer__phone {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.site-footer__notice {
    justify-self: end;
    padding-top: 2.95rem;
    text-align: center;
}

.site-footer__notice p {
    margin: 0;
    color: #222527;
    font-size: 1rem;
    line-height: 1.45;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

.site-footer__bottom {
    margin-top: 0.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.site-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1rem;
}

.site-footer__mini-socials {
    display: flex;
    align-items: center;
    gap: 0.28rem;
}

.site-footer__mini-social {
    width: 27px;
    height: 27px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.site-footer__mini-social--facebook {
    background: #446fb9;
    padding-bottom: 1px;
}

.site-footer__mini-social--x {
    background: #000000;
}

.site-footer__legal {
    color: #1a9ea4;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

.site-footer__legal:hover,
.site-footer__legal:focus-visible {
    text-decoration: underline;
}

@media (max-width: 1279px) {
    .site-footer {
        min-height: 0;
        padding-top: 1.25rem;
    }

    .site-footer__container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 2rem;
        row-gap: 1.4rem;
        padding: 1.25rem 1.5rem 0;
    }

    .site-footer__notice {
        grid-column: 1 / -1;
        justify-self: center;
        padding-top: 0;
    }

    .site-footer::after {
        right: 22px;
        top: 120px;
    }
}

.content-main--simple {
    padding: 8rem 0 4rem;
}

.legal-page {
    padding: 4.5rem 0 5rem;
    background: #f5f7f7 url("src/images/original/motif-f.png") repeat;
}

.legal-page__hero {
    padding-bottom: 2rem;
}

.legal-page__hero-shell {
    display: grid;
    gap: 0.85rem;
}

.legal-page__eyebrow {
    margin: 0;
    color: #1a9ea4;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-page__title {
    margin: 0;
    color: #202325;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.legal-page__intro {
    margin: 0;
    max-width: 860px;
    color: #576065;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.legal-page__content {
    padding-top: 0.5rem;
}

.legal-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(26, 158, 164, 0.16);
    box-shadow: 0 22px 55px rgba(34, 51, 58, 0.08);
    padding: 2rem;
}

.legal-card > section + section {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-line);
}

.legal-card h2 {
    margin: 0 0 0.85rem;
    color: #202325;
    font-size: 1.375rem;
    line-height: 1.2;
}

.legal-card p {
    margin: 0;
    color: #5e6468;
    font-size: 1rem;
    line-height: 1.75;
}

.legal-card p + p {
    margin-top: 0.85rem;
}

.legal-card a {
    color: #118e93;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.legal-card code {
    padding: 0.1rem 0.32rem;
    background: rgba(17, 142, 147, 0.08);
    border-radius: 0.2rem;
    color: #2c4044;
    font-size: 0.92em;
}

.legal-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    color: #5e6468;
    font-size: 1rem;
    line-height: 1.7;
}

.article-card {
    border: 1px solid var(--color-line);
    background: #fff;
    padding: 1.25rem;
}

.article-card__header h1 {
    margin: 0;
}

.article-card__meta {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    color: var(--color-muted);
}

.testimonials-archive {
    padding: 4.5rem 0 5rem;
    background: #f5f7f7 url("src/images/original/motif-f.png") repeat;
}

.testimonials-archive__hero {
    padding-bottom: 2rem;
}

.testimonials-archive__hero-shell {
    display: grid;
    gap: 0.85rem;
}

.testimonials-archive__eyebrow {
    margin: 0;
    color: #1a9ea4;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.testimonials-archive__title {
    margin: 0;
    max-width: 900px;
    color: #202325;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.testimonials-archive__intro {
    margin: 0;
    max-width: 860px;
    color: #576065;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.testimonials-archive__content {
    padding-top: 0.5rem;
}

.testimonials-archive__list {
    display: grid;
    gap: 1.5rem;
}

.testimonials-archive__card {
    border: 1px solid rgba(26, 158, 164, 0.16);
    box-shadow: 0 22px 55px rgba(34, 51, 58, 0.08);
    padding: 2rem;
}

.testimonials-archive__rating {
    display: flex;
    gap: 0.4rem;
    margin: 0 0 0.9rem;
}

.testimonials-archive__rating-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    background: #1a9ea4;
}

.testimonials-archive__rating-dot--muted {
    background: rgba(26, 158, 164, 0.16);
}

.testimonials-archive__card-title {
    margin: 0;
    color: #202325;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.1;
}

.testimonials-archive__card-title a {
    color: inherit;
    text-decoration: none;
}

.testimonials-archive__card .article-card__content {
    color: #5e6468;
    line-height: 1.75;
}

.testimonials-archive__card .article-card__content > :first-child {
    margin-top: 0;
}

.testimonials-archive__card .article-card__content > :last-child {
    margin-bottom: 0;
}

.nouveautes-page {
    background: #ffffff;
}

.nouveautes-page__spacer {
    height: 300px;
    background: #ffffff;
}

.nouveautes-content {
    background: #f2f2f2 url("src/images/original/motif-f.png") repeat;
    padding: 84px 0 112px;
}

.nouveautes-content__title {
    margin: 0 0 42px;
    max-width: 980px;
    color: #2f3336;
    font-size: 4rem;
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: 0.005em;
    text-transform: uppercase;
}

.nouveautes-content__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-y;
    scroll-behavior: smooth;
}

.nouveautes-content__viewport::-webkit-scrollbar {
    display: none;
}

.nouveautes-content__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.nouveautes-content__track {
    display: flex;
}

.nouveautes-content__page {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
}

.nouveautes-content__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 34px;
}

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

.nouveautes-card__linkbox {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(30, 35, 39, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(30, 35, 39, 0.08);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nouveautes-card__linkbox:hover,
.nouveautes-card__linkbox:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(30, 35, 39, 0.22);
    box-shadow: 0 24px 52px rgba(30, 35, 39, 0.14);
}

.nouveautes-card__linkbox:focus-visible {
    outline: 3px solid rgba(36, 175, 179, 0.35);
    outline-offset: 4px;
}

.nouveautes-card__media {
    overflow: hidden;
    background: #c6c6c6;
}

.nouveautes-card__title {
    margin: 0;
    color: #303438;
    font-size: 1.375rem;
    line-height: 1.2;
    font-weight: 700;
}

.nouveautes-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    padding: 24px 24px 26px;
}

.nouveautes-card__image {
    width: 100%;
    aspect-ratio: 6 / 5;
    object-fit: cover;
    background: #c6c6c6;
    transition: transform 260ms ease;
}

.nouveautes-card__linkbox:hover .nouveautes-card__image,
.nouveautes-card__linkbox:focus-visible .nouveautes-card__image {
    transform: scale(1.04);
}

.nouveautes-card__date {
    margin: 0;
    color: #5b646b;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nouveautes-card__excerpt {
    margin: 0;
    color: #4b5054;
    font-size: 0.9375rem;
    line-height: 1.55;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nouveautes-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e2327;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.nouveautes-card__cta::after {
    content: "\2192";
    font-size: 1rem;
    transition: transform 180ms ease;
}

.nouveautes-card__linkbox:hover .nouveautes-card__cta::after,
.nouveautes-card__linkbox:focus-visible .nouveautes-card__cta::after {
    transform: translateX(4px);
}

.nouveautes-content__dots {
    margin-top: 1.4rem;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
}

.nouveautes-content__dot {
    appearance: none;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #1e2327;
    background: transparent;
    cursor: pointer;
}

.nouveautes-content__dot:focus-visible {
    outline: 2px solid #1e2327;
    outline-offset: 3px;
}

.nouveautes-content__dot--active {
    background: #1e2327;
}

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

@media (max-width: 1040px) {
    .home-main {
        padding-top: 0;
    }

    .site-header__container {
        min-height: 118px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-header__brand {
        margin-top: 0;
    }

    .site-header__brand img {
        width: 188px;
    }

    .site-header__right {
        margin-top: 0;
        gap: 0.7rem;
    }

    .site-header__contact {
        justify-content: flex-start;
        gap: 1rem;
        min-height: auto;
    }

    .site-header__address {
        display: inline-flex;
        white-space: normal;
        line-height: 1.35;
    }

    .site-header__contact-link {
        font-size: 0.8125rem;
    }

    .site-header__menu-toggle {
        display: inline-flex;
    }

    .site-header__mobile-menu {
        display: block;
    }

    .site-header__menu-row {
        justify-content: flex-end;
    }

    .site-header__facebook {
        display: none;
    }

    .site-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: var(--container-width);
        background: #f7f7f7;
        border: 1px solid #d8dcdf;
        z-index: 620;
    }

    .site-header.is-menu-open .site-header__nav {
        display: block;
    }

    .site-header.is-menu-open .site-header__nav-list {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.45rem 0.25rem;
    }

    .site-header.is-menu-open .site-header__nav-item {
        width: 100%;
    }

    .site-header.is-menu-open .site-header__nav-item a {
        width: 100%;
        display: block;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .site-header--desinfection .site-header__container {
        min-height: 124px;
    }

    .site-header--desinfection .site-header__brand img {
        width: 180px;
    }

    .site-header--desinfection .site-header__right {
        max-width: 680px;
        gap: 0.48rem;
    }

    .site-header--desinfection .site-header__contact {
        justify-content: center;
    }

    .site-header--desinfection .site-header__address {
        display: inline-flex;
    }

    .site-header--desinfection .site-header__menu-row {
        justify-content: center;
    }

    .site-header--desinfection .site-header__facebook {
        display: inline-flex;
    }

    .site-header--desinfection .site-header__nav {
        display: block;
        position: static;
        transform: none;
        width: auto;
        background: #0f1315;
        border: 1px solid #212629;
    }

    .site-header--desinfection .site-header__nav-list {
        min-height: 28px;
        gap: 0.5rem;
    }

    .site-header--desinfection .site-header__nav-item a {
        font-size: 100%;
    }

    .site-header--travaux .site-header__container {
        min-height: 116px;
        align-items: flex-start;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .site-header--travaux .site-header__brand {
        margin-top: 10px;
    }

    .site-header--travaux .site-header__brand img {
        width: 156px;
    }

    .site-header--travaux .site-header__right {
        max-width: 760px;
        margin-top: 2px;
        gap: 0.34rem;
    }

    .site-header--travaux .site-header__contact {
        justify-content: flex-start;
        gap: 0.85rem;
    }

    .site-header--travaux .site-header__address {
        display: inline-flex;
    }

    .site-header--travaux .site-header__menu-row {
        justify-content: flex-start;
    }

    .site-header--travaux .site-header__facebook {
        display: inline-flex;
        width: 20px;
        height: 20px;
        font-size: 75%;
        padding-bottom: 1px;
    }

    .site-header--travaux .site-header__nav {
        display: block;
        position: static;
        transform: none;
        width: auto;
        background: transparent;
        border: 0;
    }

    .site-header--travaux .site-header__nav-list {
        min-height: 24px;
        gap: 0.7rem;
    }

    .site-header--travaux .site-header__nav-item a {
        font-size: 56.25%;
    }

    .site-header--actualites .site-header__container {
        min-height: 120px;
    }

    .site-header--actualites .site-header__brand img {
        width: 168px;
    }

    .site-header--actualites .site-header__right {
        max-width: 760px;
        gap: 0.5rem;
    }

    .site-header--actualites .site-header__contact {
        justify-content: flex-start;
    }

    .site-header--actualites .site-header__address {
        display: inline-flex;
    }

    .site-hero {
        height: 470px;
    }

    .values-section {
        padding: 96px 0 72px;
    }

    .values-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-section__list {
        gap: 1.5rem;
    }

    .about-section__intro {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-section__intro-image {
        min-height: 320px;
    }

    .contact-strip {
        margin-top: -112px;
    }

    .contact-strip__container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-strip__title {
        padding-top: 0;
    }

    .site-footer__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__bottom {
        margin-top: 1.1rem;
    }

    .desinfection-header__inner {
        min-height: 72px;
    }

    .desinfection-header__contact-item {
        font-size: 100%;
    }

    .desinfection-header__nav-list {
        gap: 0.5rem;
    }

    .desinfection-header__nav-item a {
        font-size: 100%;
    }

    .desinfection-hero {
        height: 470px;
    }

    .desinfection-content__spacer {
        height: 220px;
    }

    .desinfection-content__title {
        font-size: 100%;
    }

    .desinfection-tabs__panel-title {
        font-size: 100%;
    }

    .nouveautes-page__spacer {
        height: 210px;
    }

    .nouveautes-content {
        padding-top: 62px;
    }

    .nouveautes-content__title {
        max-width: 760px;
        margin-bottom: 34px;
        font-size: 3.25rem;
    }

    .nouveautes-content__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nouveautes-card__body {
        padding: 22px 20px 24px;
    }

    .nouveautes-card__title {
        font-size: 1.2rem;
    }

    .nouveautes-card__excerpt {
        font-size: 0.9rem;
    }

    .values-section__title {
        font-size: 1.125rem;
    }

    .about-section__intro-text h2 {
        font-size: clamp(2.4rem, 6vw, 3.3rem);
    }

    .testimonials-section__title {
        font-size: 1.125rem;
    }
}

@media (max-width: 760px) {
    .content-shell {
        width: min(100vw - 28px, 620px);
    }

    .site-header .content-shell,
    .site-footer .content-shell {
        width: min(100vw - 28px, 620px);
    }

    .home-main {
        padding-top: 0;
    }

    .site-header__brand img {
        width: 82px;
    }

    .site-header__address {
        display: inline-flex;
    }

    .site-header__contact-link,
    .site-header__address {
        white-space: normal;
        text-align: center;
        justify-content: center;
        line-height: 1.35;
    }

    .site-header__contact-link {
        font-size: 0.8125rem;
    }

    .site-header__contact {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }

    .site-header__right {
        width: 100%;
        max-width: none;
        align-items: center;
        gap: 0.45rem;
    }

    .site-header__contact img {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-top: 0;
    }

    .site-header__mobile-menu {
        display: block;
    }

    .site-header__mobile-menu-inner {
        min-height: 54px;
        justify-content: center;
    }

    .site-header__menu-toggle {
        display: inline-flex;
        min-height: 38px;
        padding: 0.55rem 1.1rem;
        border: 1px solid #b8c0c4;
        background: #ffffff;
        color: #1e2327;
        font-weight: 700;
        letter-spacing: 0.06em;
    }

    .site-header.is-menu-open .site-header__menu-toggle {
        border-color: #149ba1;
        background: #149ba1;
        color: #ffffff;
    }

    .site-header--actualites .site-header__container {
        min-height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-header--actualites .site-header__brand {
        margin-top: 0;
    }

    .site-header--actualites .site-header__brand img {
        width: 170px;
    }

    .site-header--actualites .site-header__right {
        width: 100%;
        max-width: none;
        align-items: center;
        gap: 0.32rem;
    }

    .site-header--actualites .site-header__contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.26rem;
    }

    .site-header--actualites .site-header__contact-link,
    .site-header--actualites .site-header__address {
        font-size: 100%;
        text-align: center;
        justify-content: center;
        white-space: normal;
    }

    .site-header--actualites .site-header__contact img {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-top: 0;
    }

    .site-header--actualites .site-header__menu-row {
        justify-content: center;
        width: 100%;
        padding-left: 0;
    }

    .site-header--actualites .site-header__nav {
        display: none;
    }

    .site-header--actualites.is-menu-open .site-header__nav {
        display: block;
    }

    .site-header--actualites.is-menu-open .site-header__nav-list {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.45rem 0.25rem;
    }

    .site-header--actualites.is-menu-open .site-header__nav-item {
        width: 100%;
    }

    .site-header--actualites.is-menu-open .site-header__nav-item a {
        width: 100%;
        display: block;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .site-header--actualites .site-header__facebook {
        display: inline-flex;
        width: 38px;
        height: 38px;
        font-size: 2rem;
        padding-bottom: 2px;
    }

    .site-header--desinfection .site-header__container {
        min-height: 104px;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .site-header--desinfection .site-header__brand {
        margin-top: 0;
    }

    .site-header--desinfection .site-header__brand img {
        width: 72px;
    }

    .site-header--desinfection .site-header__right {
        width: 100%;
        max-width: none;
        align-items: center;
        gap: 0.26rem;
    }

    .site-header--desinfection .site-header__contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.18rem;
    }

    .site-header--desinfection .site-header__contact-link,
    .site-header--desinfection .site-header__address {
        font-size: 100%;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    .site-header--desinfection .site-header__contact img {
        display: inline-block;
        width: 9px;
        height: 9px;
    }

    .site-header--desinfection .site-header__menu-row {
        justify-content: center;
        width: 100%;
    }

    .site-header--desinfection .site-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: min(100vw - 28px, 620px);
        background: #101315;
        border: 1px solid #24282b;
        z-index: 620;
        padding: 0;
    }

    .site-header--desinfection.is-menu-open .site-header__nav {
        display: block;
    }

    .site-header--desinfection.is-menu-open .site-header__nav-list {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.38rem 0.32rem;
    }

    .site-header--desinfection.is-menu-open .site-header__nav-item {
        width: 100%;
    }

    .site-header--desinfection.is-menu-open .site-header__nav-item a {
        width: 100%;
        display: block;
        padding: 0.46rem 0.5rem;
        font-size: 100%;
        color: #edf0f1;
    }

    .site-header--desinfection .site-header__facebook {
        width: 12px;
        height: 12px;
        font-size: 100%;
        padding-bottom: 1px;
    }

    .site-header--travaux .site-header__container {
        min-height: 106px;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .site-header--travaux .site-header__brand {
        margin-top: 0;
    }

    .site-header--travaux .site-header__brand img {
        width: 84px;
    }

    .site-header--travaux .site-header__right {
        width: 100%;
        max-width: none;
        align-items: center;
        gap: 0.24rem;
    }

    .site-header--travaux .site-header__contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.18rem;
    }

    .site-header--travaux .site-header__contact-link,
    .site-header--travaux .site-header__address {
        font-size: 50%;
        white-space: normal;
        text-align: center;
        justify-content: center;
        letter-spacing: 0.01em;
    }

    .site-header--travaux .site-header__contact img {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-top: 0;
    }

    .site-header--travaux .site-header__menu-row {
        justify-content: center;
        width: 100%;
        padding-left: 0;
    }

    .site-header--travaux .site-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: min(100vw - 28px, 620px);
        background: #101315;
        border: 1px solid #24282b;
        z-index: 620;
        padding: 0;
    }

    .site-header--travaux.is-menu-open .site-header__nav {
        display: block;
    }

    .site-header--travaux.is-menu-open .site-header__nav-list {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.38rem 0.32rem;
    }

    .site-header--travaux.is-menu-open .site-header__nav-item {
        width: 100%;
    }

    .site-header--travaux.is-menu-open .site-header__nav-item a {
        width: 100%;
        display: block;
        padding: 0.46rem 0.5rem;
        font-size: 75%;
        color: #edf0f1;
    }

    .site-header--travaux .site-header__facebook {
        display: inline-flex;
        width: 12px;
        height: 12px;
        font-size: 68.75%;
        padding-bottom: 1px;
    }

    .site-header__container {
        min-height: 94px;
        align-items: flex-start;
        gap: 0.5rem;
        padding-top: 10px;
        padding-bottom: 8px;
    }

    .site-header__brand {
        margin-top: 0;
    }

    .site-header__menu-row {
        justify-content: center;
    }

    .site-header__nav {
        width: min(100vw - 28px, 620px);
    }

    .site-header__nav-list {
        gap: 0;
    }

    .site-header__facebook {
        display: inline-flex;
        width: 18px;
        height: 18px;
        font-size: 0.875rem;
        background: #23b8bc;
    }

    .site-hero {
        height: 276px;
    }

    .site-hero__cta {
        min-width: 178px;
        min-height: 32px;
        font-size: 0.5625rem;
    }

    .values-section {
        padding: 76px 0 56px;
    }

    .values-section__title {
        margin-bottom: 28px;
        font-size: 0.875rem;
    }

    .values-section__grid,
    .about-section__grid,
    .news-section__list,
    .site-footer__container {
        grid-template-columns: 1fr;
    }

    .site-footer__container {
        row-gap: 1rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .site-footer__brand {
        padding-top: 0;
    }

    .site-footer__notice {
        justify-self: start;
        text-align: left;
        padding-top: 0.35rem;
    }

    .values-section__grid {
        display: flex;
        justify-content: center;
    }

    .values-section__card {
        width: 100%;
        max-width: 210px;
    }

    .values-section__card:not(:nth-child(2)) {
        display: none;
    }

    .values-section__mobile-dots {
        margin-top: 1.35rem;
        display: flex;
        justify-content: center;
        gap: 0.35rem;
    }

    .values-section__mobile-dot {
        width: 16px;
        height: 16px;
        background: #25b7bb;
    }

    .values-section__mobile-dot--active {
        background: #1d2327;
    }

    .news-section {
        padding: 58px 0 70px;
    }

    .news-section__list {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .news-section__card-image {
        height: 240px;
    }

    .about-section {
        padding: 12px 0 56px;
    }

    .about-section__intro {
        display: block;
        min-height: 0;
        padding-top: 0;
    }

    .about-section__intro::before {
        inset: 12px;
        border-width: 4px;
    }

    .about-section__intro-image {
        min-height: 292px;
    }

    .about-section__intro-text {
        position: absolute;
        left: 16px;
        right: 28%;
        bottom: 20px;
        padding: 18px 16px 16px;
        align-items: flex-start;
        z-index: 3;
        background: #1f9fa5;
    }

    .about-section__intro-text h2 {
        margin-bottom: 10px;
        font-size: 2.0625rem;
        line-height: 0.96;
    }

    .about-section__intro-text p {
        font-size: 0.75rem;
        line-height: 1.45;
    }

    .about-section__card {
        padding: 1.3rem 1rem 1.2rem;
    }

    .about-section__card-title {
        min-height: 0;
        font-size: 0.9375rem;
    }

    .about-section__card-text,
    .about-section__list li,
    .about-section__card-note {
        font-size: 0.75rem;
    }

    .testimonials-section__title {
        font-size: 1.875rem;
        line-height: 1;
    }

    .testimonials-section__meta {
        font-size: 0.875rem;
    }

    .testimonials-section__meta span {
        margin-left: 0.85rem;
    }

    .testimonials-section__quote {
        max-width: 320px;
        font-size: 0.875rem;
    }

    .testimonials-section__wave {
        height: 190px;
    }

    .contact-strip {
        margin-top: -74px;
        padding-bottom: 1.5rem;
    }

    .contact-strip__form {
        grid-template-columns: 1fr;
        grid-template-areas:
            "name"
            "phone"
            "email"
            "message"
            "legal"
            "consent"
            "submit";
    }

    .contact-strip__input {
        min-height: 52px;
    }

    .contact-strip__input--message {
        min-height: 88px;
    }

    .contact-strip__consent {
        font-size: 0.75rem;
    }

    .contact-strip__legal {
        font-size: 0.75rem;
    }

    .contact-strip__submit {
        width: 100%;
        min-height: 52px;
    }

    .site-footer {
        padding-top: 1.5rem;
    }

    .site-footer__logo {
        width: 128px;
    }

    .site-footer__facebook-gray {
        margin-left: 0;
    }

    .site-footer__facebook-gray img {
        width: 32px;
        height: 31px;
    }

    .site-footer__contact h3 {
        font-size: 1.1875rem;
    }

    .site-footer__contact p,
    .site-footer__notice p {
        font-size: 0.9375rem;
    }

    .site-footer__legal {
        font-size: 0.9375rem;
    }

    .legal-page {
        padding: 3rem 0 3.75rem;
    }

    .legal-card {
        padding: 1.5rem;
    }

    .legal-card > section + section {
        margin-top: 1.4rem;
        padding-top: 1.4rem;
    }

    .site-footer--desinfection {
        padding-top: 0.85rem;
    }

    .site-footer--desinfection::after {
        right: -28px;
        top: 84px;
    }

    .site-footer--desinfection .site-footer__container {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 0.85fr);
        gap: 0.35rem;
        align-items: end;
    }

    .site-footer--desinfection .site-footer__brand {
        padding-left: 0;
        gap: 0.24rem;
    }

    .site-footer--desinfection .site-footer__logo {
        width: 86px;
    }

    .site-footer--desinfection .site-footer__facebook-gray {
        width: 21px;
        height: 21px;
        font-size: 100%;
    }

    .site-footer--desinfection .site-footer__contact h3 {
        font-size: 100%;
    }

    .site-footer--desinfection .site-footer__contact p {
        font-size: 100%;
    }

    .site-footer--desinfection .site-footer__notice {
        text-align: right;
        padding-top: 0.2rem;
    }

    .site-footer--desinfection .site-footer__notice p {
        font-size: 100%;
    }

    .site-footer--desinfection .site-footer__bottom {
        margin-top: 0.45rem;
        gap: 0.12rem;
    }

    .site-footer--desinfection .site-footer__mini-social {
        width: 14px;
        height: 14px;
        font-size: 100%;
        border-radius: 2px;
    }

    .site-footer--desinfection .site-footer__mini-social--x {
        font-size: 100%;
    }

    .site-footer--desinfection .site-footer__legal {
        font-size: 100%;
    }

    .site-floating__top {
        right: 8px;
        bottom: 12px;
    }

    .site-floating__mobile-nav {
        display: inline-flex;
    }

    .desinfection-header__inner {
        min-height: 66px;
    }

    .desinfection-header__brand img {
        width: 88px;
    }

    .desinfection-header__contact {
        display: none;
    }

    .desinfection-header__menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .desinfection-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: min(100vw - 28px, 620px);
        background: #1d2124;
        border: 1px solid #303437;
        z-index: 25;
    }

    .desinfection-header.is-menu-open .desinfection-header__nav {
        display: block;
    }

    .desinfection-header__nav-list {
        padding: 0.45rem 0.35rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .desinfection-header__nav-item {
        width: 100%;
    }

    .desinfection-header__nav-item a {
        display: block;
        width: 100%;
        font-size: 100%;
        color: #d6d8da;
        padding: 0.46rem;
    }

    .desinfection-hero {
        height: 470px;
    }

    .desinfection-hero__cta {
        min-width: 152px;
    }

    .desinfection-content__spacer {
        height: 260px;
    }

    .desinfection-content__title {
        font-size: 100%;
    }

    .desinfection-tabs__list {
        grid-template-columns: 1fr;
    }

    .desinfection-tabs__panel-title {
        font-size: 100%;
    }

    .nouveautes-page__spacer {
        height: 200px;
    }

    .nouveautes-content {
        padding: 52px 0 74px;
    }

    .nouveautes-content__title {
        max-width: 340px;
        margin-bottom: 30px;
        font-size: 3rem;
        line-height: 1.06;
    }

    .nouveautes-content__grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .nouveautes-card__linkbox {
        border-radius: 22px;
    }

    .nouveautes-card__body {
        gap: 12px;
        padding: 20px 18px 22px;
    }

    .nouveautes-card__title {
        font-size: 1.18rem;
    }

    .nouveautes-card__date {
        font-size: 0.8rem;
    }

    .nouveautes-card__excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .nouveautes-card__cta {
        font-size: 0.92rem;
    }

    .about-section__intro-text h2 {
        font-size: 100%;
    }

    .testimonials-section__title {
        font-size: 100%;
    }

    .desinfection-tabs__images {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .desinfection-footer__inner {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .desinfection-footer__notice p {
        text-align: left;
        margin: 0;
    }

    .desinfection-footer__bottom {
        justify-content: flex-start;
    }
}

.nettoyage-specifique-page {
    background: #ffffff;
}

.nettoyage-specifique-hero {
    position: relative;
    height: 570px;
    overflow: hidden;
}

.nettoyage-specifique-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nettoyage-specifique-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nettoyage-specifique-hero__slide--default {
    opacity: 1;
}

.nettoyage-specifique-hero.is-alt .nettoyage-specifique-hero__slide--default {
    opacity: 0;
}

.nettoyage-specifique-hero.is-alt .nettoyage-specifique-hero__slide--alt {
    opacity: 1;
}

.nettoyage-specifique-hero__overlay {
    position: absolute;
    inset: 0;
}

.nettoyage-specifique-hero__loader {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
}

.nettoyage-specifique-hero__cta {
    position: absolute;
    left: 50%;
    bottom: 163px;
    transform: translateX(-50%);
    min-width: 0;
    padding: 0.72rem 1.25rem;
    background: rgba(126, 132, 136, 0.82);
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 100%;
    line-height: 1;
}

.nettoyage-specifique-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    gap: 0.32rem;
}

.nettoyage-specifique-hero__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(22, 142, 145, 0.45);
}

.nettoyage-specifique-hero__dot--active {
    background: #168e91;
}

.nettoyage-specifique-content {
    padding: 60px 0 54px;
    background: #f3f3f3 url("src/images/original/motif-f.png") repeat;
}

.nettoyage-specifique-content__title {
    margin: 0 0 22px;
    max-width: 920px;
    color: #2e3236;
    font-family: "Euphemia UCAS", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 375%;
    font-weight: 400;
    line-height: 1.06;
    text-transform: uppercase;
}

.nettoyage-specifique-content__lead {
    margin: 0 0 20px;
    color: #3a4044;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 100%;
    line-height: 1.6;
}

.nettoyage-specifique-content__lead a {
    color: #168e91;
}

.nettoyage-specifique-accordion {
    margin-bottom: 20px;
}

.nettoyage-specifique-accordion__item {
    margin: 0;
}

.nettoyage-specifique-accordion__title {
    display: block;
    width: 100%;
    margin: 0;
    padding: 15px 10px 13px;
    border-bottom: 2px solid #ffffff;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background: #168e91;
    color: #ffffff;
    font-family: "Euphemia UCAS", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 225%;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.nettoyage-specifique-accordion__title:hover {
    background: #19a4a7;
}

.nettoyage-specifique-accordion__title.is-open {
    background: #1db9bd;
}

.nettoyage-specifique-accordion__panel {
    padding: 20px;
    background: #ebebeb;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.5);
}

.nettoyage-specifique-accordion__panel[hidden] {
    display: none;
}

.nettoyage-specifique-accordion__panel p {
    margin: 0;
    color: #282828;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 100%;
    line-height: 1.6;
}

.nettoyage-specifique-content__meta {
    margin: 0;
    color: #3a4044;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 100%;
    line-height: 1.6;
}

.nettoyage-specifique-content__meta a {
    color: #168e91;
}

@media (max-width: 991px) {
    .nettoyage-specifique-hero {
        height: 470px;
    }

    .nettoyage-specifique-hero__cta {
        bottom: 140px;
    }

    .nettoyage-specifique-hero__dots {
        bottom: 56px;
    }

    .nettoyage-specifique-content__title {
        font-size: 356.25%;
    }

    .nettoyage-specifique-accordion__title {
        font-size: 213.75%;
    }
}

@media (max-width: 767px) {
    .nettoyage-specifique-hero {
        height: 470px;
    }

    .nettoyage-specifique-hero__cta {
        bottom: 116px;
    }

    .nettoyage-specifique-hero__dots {
        bottom: 42px;
    }

    .nettoyage-specifique-content {
        padding: 42px 0 40px;
    }

    .nettoyage-specifique-content__title {
        max-width: none;
        font-size: 318.75%;
        line-height: 1.04;
    }

    .nettoyage-specifique-content__lead {
        margin-bottom: 16px;
    }

    .nettoyage-specifique-accordion__title {
        padding: 13px 10px 11px;
        font-size: 191.25%;
    }

    .nettoyage-specifique-accordion__panel {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        right: 12px;
        bottom: 12px;
        max-width: calc(100vw - 24px);
    }

    .cookie-banner__actions,
    .cookie-preferences__actions,
    .cookie-preferences__item {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__button,
    .cookie-preferences__close {
        width: 100%;
    }

    .cookie-preferences__dialog {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        margin: 10px auto;
        padding: 1rem;
    }

    .desinfection-hero {
        height: 276px;
    }

    .nettoyage-specifique-hero {
        height: 276px;
    }

    .nettoyage-specifique-hero__cta {
        bottom: 102px;
        padding: 0.72rem 1rem;
        font-size: 87.5%;
    }

    .nettoyage-specifique-content__title {
        font-size: 281.25%;
    }

    .nettoyage-specifique-content__lead,
    .nettoyage-specifique-content__meta,
    .nettoyage-specifique-accordion__panel p {
        font-size: 93.75%;
        line-height: 1.5;
    }

    .nettoyage-specifique-accordion__title {
        font-size: 168.75%;
    }
}

.travaux-batiment-page {
    background: #ffffff;
}

.travaux-batiment-hero {
    height: 570px;
}

.travaux-batiment-hero__media::after {
    background: linear-gradient(90deg, rgba(22, 27, 31, 0.76) 0%, rgba(22, 27, 31, 0.52) 34%, rgba(22, 27, 31, 0.18) 100%);
}

.travaux-batiment-hero__media img {
    object-position: center center;
}

.travaux-batiment-hero__overlay {
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.travaux-batiment-hero__content {
    min-height: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 82px 0 70px;
}

.travaux-batiment-hero__kicker {
    margin: 0;
    color: #c9f3f4;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.travaux-batiment-hero__title {
    margin: 0;
    color: #ffffff;
    font-family: "Euphemia UCAS", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 387.5%;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.travaux-batiment-hero__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 156.25%;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-transform: uppercase;
}

.travaux-batiment-hero__solutions {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 118.75%;
    font-weight: 600;
    line-height: 1.3;
}

.travaux-batiment-hero__solutions p {
    margin: 0;
}

.travaux-batiment-hero__lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 100%;
    line-height: 1.6;
}

.travaux-batiment-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.travaux-batiment-hero__highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.5rem 0.8rem;
    background: rgba(17, 142, 147, 0.88);
    color: #f7ffff;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.travaux-batiment-hero__cta {
    min-width: 0;
    margin-top: 0.15rem;
    padding: 0.82rem 1.3rem;
    background: rgba(126, 132, 136, 0.9);
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 100%;
    line-height: 1;
}

.travaux-batiment-content {
    background: #f3f3f3 url("src/images/original/motif-f.png") repeat;
}

.travaux-batiment-content__body {
    padding: 58px 0 34px;
}

.travaux-batiment-content__intro {
    max-width: 1020px;
}

.travaux-batiment-content__title {
    margin: 0 0 14px;
    max-width: 940px;
    color: #2e3236;
    font-family: "Euphemia UCAS", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 375%;
    font-weight: 400;
    line-height: 1.04;
    text-transform: uppercase;
}

.travaux-batiment-content__lead {
    margin: 0;
    color: #4f565a;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 87.5%;
    line-height: 1.62;
}

.travaux-batiment-highlights {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.travaux-batiment-highlights__item {
    background: #ebebeb;
    padding: 1.15rem 1rem 1.1rem;
    box-shadow: inset 0 0 0 1px rgba(170, 176, 181, 0.18);
}

.travaux-batiment-highlights__item h3,
.travaux-batiment-benefits__item h3,
.travaux-batiment-sectors__item h3,
.travaux-batiment-steps__item h3 {
    margin: 0;
    color: #2f3438;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.travaux-batiment-highlights__item p,
.travaux-batiment-benefits__item p,
.travaux-batiment-sectors__item p,
.travaux-batiment-steps__item p {
    margin: 0.75rem 0 0;
    color: #545b60;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
}

.travaux-batiment-split {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.travaux-batiment-split__card,
.travaux-batiment-benefits__item,
.travaux-batiment-sectors__item,
.travaux-batiment-steps__item {
    background: #ebebeb;
    padding: 1.55rem 1.45rem 1.45rem;
}

.travaux-batiment-split__eyebrow,
.travaux-batiment-section__eyebrow,
.travaux-batiment-reassurance__eyebrow,
.travaux-batiment-final-cta__eyebrow {
    margin: 0 0 0.6rem;
    color: #1aaeb3;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.travaux-batiment-split__title,
.travaux-batiment-section__title,
.travaux-batiment-reassurance__title,
.travaux-batiment-final-cta__title {
    margin: 0;
    color: #2e3236;
    font-family: "Euphemia UCAS", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 225%;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
}

.travaux-batiment-split__text,
.travaux-batiment-reassurance__text,
.travaux-batiment-final-cta__text {
    margin: 0.9rem 0 0;
    color: #4f565a;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.62;
}

.travaux-batiment-split__list,
.travaux-batiment-tabs__panel-list,
.travaux-batiment-reassurance__list {
    margin: 0.95rem 0 0;
    padding: 0;
    list-style: none;
}

.travaux-batiment-split__list li,
.travaux-batiment-tabs__panel-list li,
.travaux-batiment-reassurance__list li {
    position: relative;
    padding-left: 1.1rem;
    color: #4c555a;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

.travaux-batiment-split__list li + li,
.travaux-batiment-tabs__panel-list li + li,
.travaux-batiment-reassurance__list li + li {
    margin-top: 0.3rem;
}

.travaux-batiment-split__list li::before,
.travaux-batiment-tabs__panel-list li::before,
.travaux-batiment-reassurance__list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #1aaeb3;
    font-size: 0.8125rem;
}

.travaux-batiment-section {
    margin-top: 18px;
}

.travaux-batiment-section__header {
    margin-bottom: 0.9rem;
}

.travaux-batiment-tabs__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    height:23vh;
}

.travaux-batiment-tabs__trigger {
    position: relative;
    width: 100%;
    border: 0;
    padding: 0;
    background: #1f2529;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
}

.travaux-batiment-tabs__trigger img {
    width: 100%;
    height:23vh;
    object-fit: cover;
    filter: brightness(0.72);
}

.travaux-batiment-tabs__trigger span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 16px);
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
    transform: translate(-50%, -50%);
    background: #168e91;
    color: #f4f7f8;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 100%;
    line-height: 1.02;
    text-align: center;
}

.travaux-batiment-tabs__trigger.is-active span {
    background: #1db7bc;
}

.travaux-batiment-tabs__panel {
    margin-top: 10px;
    padding: 14px;
    background: #ebebeb;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 1rem;
    align-items: stretch;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.45);
}

.travaux-batiment-tabs__panel[hidden] {
    display: none;
}

.travaux-batiment-tabs__panel-copy {
    min-width: 0;
}

.travaux-batiment-tabs__panel-title {
    margin: 0 0 8px;
    color: #2e3236;
    font-family: "Euphemia UCAS", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 225%;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.travaux-batiment-tabs__panel-text {
    margin: 0;
    color: #4f565a;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.62;
}

.travaux-batiment-tabs__media {
    min-height: 100%;
}

.travaux-batiment-tabs__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.travaux-batiment-benefits,
.travaux-batiment-sectors,
.travaux-batiment-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.travaux-batiment-benefits__item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    opacity: 0.75;
    margin-bottom: 1rem;
}

.travaux-batiment-steps__item {
    position: relative;
}

.travaux-batiment-steps__number {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #9fcfd2;
    border-radius: 50%;
    color: #e88b2f;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.6875rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.travaux-batiment-reassurance {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.2rem;
    padding: 1.7rem 1.6rem;
    background: #1f9fa5;
}

.travaux-batiment-reassurance__title,
.travaux-batiment-reassurance__text,
.travaux-batiment-reassurance__list li,
.travaux-batiment-reassurance__eyebrow {
    color: #ffffff;
}

.travaux-batiment-reassurance__eyebrow {
    color: #d7f7f8;
}

.travaux-batiment-reassurance__list li::before {
    color: #ffffff;
}

.travaux-batiment-final-cta {
    margin-top: 18px;
    padding: 1.5rem 1.55rem;
    background: #2b3135;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.travaux-batiment-final-cta__title,
.travaux-batiment-final-cta__text,
.travaux-batiment-final-cta__eyebrow {
    color: #ffffff;
}

.travaux-batiment-final-cta__button {
    min-width: 194px;
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    background: #1db7bc;
    color: #f9ffff;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.travaux-batiment-content__meta {
    margin: 6px 0 0;
    color: #5f666a;
    font-family: "Open Sans", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 68.75%;
    line-height: 1.45;
}

.travaux-batiment-content__meta a {
    color: #168e91;
}

@media (max-width: 991px) {
    .travaux-batiment-hero {
        height: 470px;
    }

    .travaux-batiment-hero__content {
        max-width: 560px;
        padding: 44px 0 36px;
        gap: 0.7rem;
    }

    .travaux-batiment-hero__title {
        font-size: 250%;
    }

    .travaux-batiment-hero__subtitle {
        font-size: 112.5%;
    }

    .travaux-batiment-hero__solutions {
        font-size: 100%;
    }

    .travaux-batiment-hero__lead {
        font-size: 0.875rem;
        line-height: 1.45;
    }

    .travaux-batiment-hero__highlights span {
        min-height: 30px;
        padding: 0.4rem 0.65rem;
        font-size: 0.75rem;
    }

    .travaux-batiment-content__title,
    .travaux-batiment-section__title,
    .travaux-batiment-split__title,
    .travaux-batiment-reassurance__title,
    .travaux-batiment-final-cta__title,
    .travaux-batiment-tabs__panel-title {
        font-size: 200%;
    }

    .travaux-batiment-highlights,
    .travaux-batiment-benefits,
    .travaux-batiment-sectors,
    .travaux-batiment-steps,
    .travaux-batiment-tabs__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .travaux-batiment-tabs__panel,
    .travaux-batiment-reassurance,
    .travaux-batiment-split {
        grid-template-columns: 1fr;
    }

    .travaux-batiment-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .travaux-batiment-hero {
        height: 470px;
    }

    .travaux-batiment-hero__content {
        max-width: none;
        padding: 34px 0 30px;
        gap: 0.55rem;
    }

    .travaux-batiment-hero__title {
        font-size: 200%;
    }

    .travaux-batiment-hero__subtitle {
        font-size: 100%;
        letter-spacing: 0.03em;
    }

    .travaux-batiment-hero__solutions {
        gap: 0.2rem;
        font-size: 0.875rem;
    }

    .travaux-batiment-hero__lead {
        font-size: 0.75rem;
    }

    .travaux-batiment-hero__highlights span {
        min-height: 26px;
        padding: 0.35rem 0.55rem;
        font-size: 0.6875rem;
    }

    .travaux-batiment-content__body {
        padding: 42px 0 30px;
    }

    .travaux-batiment-content__lead,
    .travaux-batiment-tabs__panel-text,
    .travaux-batiment-content__meta {
        font-size: 0.8125rem;
    }

    .travaux-batiment-highlights,
    .travaux-batiment-benefits,
    .travaux-batiment-sectors,
    .travaux-batiment-steps,
    .travaux-batiment-tabs__list,
    .travaux-batiment-split {
        grid-template-columns: 1fr;
    }

    .travaux-batiment-tabs__trigger img {
        height: 92px;
    }

    .travaux-batiment-tabs__trigger span {
        width: calc(100% - 20px);
        min-height: 28px;
    }

    .travaux-batiment-tabs__panel {
        padding: 12px;
    }

    .travaux-batiment-content__title,
    .travaux-batiment-section__title,
    .travaux-batiment-split__title,
    .travaux-batiment-reassurance__title,
    .travaux-batiment-final-cta__title,
    .travaux-batiment-tabs__panel-title {
        font-size: 162.5%;
    }
}

@media (max-width: 480px) {
    .travaux-batiment-hero {
        height: 276px;
    }

    .travaux-batiment-hero__cta {
        margin-top: 0;
        padding: 0.55rem 0.85rem;
        font-size: 68.75%;
    }

    .travaux-batiment-hero__title {
        font-size: 125%;
    }

    .travaux-batiment-hero__content {
        padding: 18px 0 16px;
        gap: 0.35rem;
    }

    .travaux-batiment-hero__subtitle {
        font-size: 75%;
        line-height: 1.1;
    }

    .travaux-batiment-hero__solutions,
    .travaux-batiment-hero__lead,
    .travaux-batiment-hero__highlights {
        display: none;
    }

    .travaux-batiment-content__lead,
    .travaux-batiment-hero__lead,
    .travaux-batiment-tabs__panel-text,
    .travaux-batiment-content__meta {
        font-size: 68.75%;
        line-height: 1.4;
    }

    .travaux-batiment-tabs__trigger span {
        font-size: 87.5%;
        min-height: 26px;
    }

    .travaux-batiment-content__title,
    .travaux-batiment-section__title,
    .travaux-batiment-split__title,
    .travaux-batiment-reassurance__title,
    .travaux-batiment-final-cta__title,
    .travaux-batiment-tabs__panel-title {
        font-size: 131.25%;
    }

    .travaux-batiment-split__card,
    .travaux-batiment-highlights__item,
    .travaux-batiment-benefits__item,
    .travaux-batiment-sectors__item,
    .travaux-batiment-steps__item,
    .travaux-batiment-reassurance,
    .travaux-batiment-final-cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .travaux-batiment-final-cta__button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .legal-page__title {
        font-size: 2rem;
        line-height: 1.02;
    }

    .legal-page__intro,
    .legal-card p,
    .legal-card ul {
        font-size: 0.975rem;
        line-height: 1.7;
    }

    .legal-card {
        padding: 1.2rem;
    }
}
