/* === Design tokens === */
/* Theme clair (defaut) — porte aussi sur :root seul, qui reste le fallback
   quand le viewer n'a pas encore pose data-theme (zero flash, cf assets/mock.js). */
:root,
[data-theme="light"] {
    --color-orange: #f57933;
    --color-orange-light: #f58a4d;
    --color-orange-deep: #e1621a;
    --color-dark: #373532;
    --color-dark-2: #575654;
    --color-bg: #fafafa;
    /* Plaque du logo : le logo.png a un texte sombre et ne s'inverse pas,
       sa plaque reste donc claire dans les deux themes. */
    --color-logo-plate: #f1efed;
    --color-white: #ffffff;
    --color-white-soft: #fcfcfc;
    --color-on-dark: #ffffff;
    --color-text: #3f3f3f;
    --color-text-strong: #2c2c2c;
    --color-text-muted: #a5a5a5;
    --color-text-quote: #343333;
    --color-border: #e7e7e7;
    --color-border-card: #dcd1d1;
    --color-danger: #c0392b;

    --font-display: "Russo One", system-ui, sans-serif;
    --font-body: "Palanquin", system-ui, sans-serif;
    --font-heading: "Palanquin Dark", system-ui, sans-serif;

    --shadow-card: 4px 4px 6px rgba(132, 125, 125, 0.25);
    --shadow-cta: 4px 4px 4px 1px rgba(36, 52, 62, 0.25);
    --shadow-avis: 6px 6px 27px 2px rgba(192, 178, 157, 0.25);
    --shadow-header: 0 4px 4px rgba(72, 74, 76, 0.25);

    --max-width: 1440px;

    /* Contrat viewer creep-mockup (#1179 et suites) — noms fixes, lus par
       assets/mock.js (--accent pour la marque d'inspection). */
    --bg: var(--color-bg);
    --card: var(--color-white);
    --border: var(--color-border);
    --text: var(--color-text);
    --text-2: var(--color-text-muted);
    --accent: var(--color-orange);
}

/* Theme sombre — memes noms de tokens, palette inversee. L'accent garde la
   teinte orange de la marque ; les surfaces (blanc -> gris tres sombre,
   bg -> quasi-noir) et les ombres (opacite claire invisible en sombre) sont
   celles qui bougent. */
[data-theme="dark"] {
    --color-dark: #26221e;
    --color-dark-2: #1a1815;
    --color-bg: #131211;
    --color-logo-plate: #e8e4de;
    --color-white: #1c1a17;
    --color-white-soft: #fbf7f2;
    --color-on-dark: #ffffff;
    --color-text: #e8e4de;
    --color-text-strong: #f8f6f2;
    --color-text-muted: #96908a;
    --color-text-quote: #d4cec7;
    --color-border: #3a352f;
    --color-border-card: #443e37;
    --color-danger: #ff6b5e;

    --shadow-card: 4px 4px 10px rgba(0, 0, 0, 0.6);
    --shadow-cta: 4px 4px 8px rgba(0, 0, 0, 0.55);
    --shadow-avis: 6px 6px 22px rgba(0, 0, 0, 0.55);
    --shadow-header: 0 4px 10px rgba(0, 0, 0, 0.6);

    --bg: var(--color-bg);
    --card: var(--color-white);
    --border: var(--color-border);
    --text: var(--color-text);
    --text-2: var(--color-text-muted);
    --accent: var(--color-orange);
}

/* === Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

[data-theme="light"] {
    color-scheme: light;
}

[data-theme="dark"] {
    color-scheme: dark;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* === Layout helpers === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 32px;
    text-align: center;
    color: var(--color-text-strong);
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--color-orange);
    color: var(--color-on-dark);
    font-size: 20px;
    padding: 14px 40px;
    box-shadow: var(--shadow-cta);
}

.btn--dark {
    background: var(--color-dark);
    color: var(--color-on-dark);
    font-size: 16px;
    padding: 12px 32px;
    box-shadow: var(--shadow-cta);
}

.btn--dark-large {
    background: var(--color-dark);
    color: var(--color-on-dark);
    font-size: 20px;
    padding: 18px 32px;
    width: 100%;
}

/* === Header === */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 60px;
    background: var(--color-dark);
    box-shadow: var(--shadow-header);
    z-index: 100;
}

.site-header__inner {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.site-header__logo-bg {
    position: absolute;
    top: 0;
    left: 82px;
    width: 148px;
    height: 90px;
    background: var(--color-logo-plate);
    z-index: 1;
}

.site-header__logo {
    position: absolute;
    top: 6px;
    left: 86px;
    height: 70px;
    width: 136px;
    z-index: 2;
    overflow: hidden;
}

.site-header__logo img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: left center;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 60px;
}

.site-header__nav a {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-on-dark);
    font-size: 16px;
}

.site-header__nav a:hover {
    color: var(--color-orange);
}

.site-header__cta {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 253px;
    background: var(--color-orange);
    color: var(--color-on-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 16px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.site-header__cta i {
    font-size: 18px;
}

/* === Hero === */
.hero {
    position: relative;
    height: 783px;
    margin-top: 60px;
    color: var(--color-on-dark);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero-bg.jpg") center/cover no-repeat;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.62);
    z-index: -1;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 50px;
    line-height: 80px;
    text-transform: uppercase;
    max-width: 721px;
    margin-bottom: 12px;
}

.hero__title em {
    font-style: normal;
    color: var(--color-orange);
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 50px;
}

/* === Services === */
.services {
    background: var(--color-bg);
    padding: 95px 0 110px;
    text-align: center;
}

.services__title {
    margin-bottom: 136px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 390px);
    gap: 20px;
    justify-content: center;
    margin-bottom: 35px;
}

/* Card flip */
.service-card {
    width: 390px;
    height: 322px;
    perspective: 1200px;
    filter: drop-shadow(var(--shadow-card));
}

.service-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card:hover .service-card__inner,
.service-card:focus-within .service-card__inner {
    transform: rotateY(180deg);
}

.service-card__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    overflow: hidden;
}

.service-card__face--back {
    transform: rotateY(180deg);
}

/* Front */
.service-card__face--front {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 30px;
    text-align: center;
}

.service-card__icon {
    width: 64px;
    height: 60px;
    background: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

.service-card__icon i {
    font-size: 28px;
    color: var(--color-on-dark);
}

.service-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-text-strong);
    margin-bottom: 18px;
}

.service-card__desc {
    font-size: 16px;
    color: var(--color-text-strong);
    line-height: 1.5;
    max-width: 312px;
}

.service-card__arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 22px;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__arrow i {
    color: var(--color-on-dark);
    font-size: 11px;
}

/* Back */
.service-card__face--back {
    color: var(--color-on-dark);
    padding: 0;
    border: 1px solid var(--color-border-card);
}

.service-card__bg {
    position: absolute;
    inset: 0;
    background: url("../images/services-bg-back.jpg") center/cover no-repeat;
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 138, 77, 0.88);
}

.service-card__back-content {
    position: relative;
    height: 100%;
    padding: 36px 40px 36px 78px;
    display: flex;
    flex-direction: column;
}

.service-card__back-icon {
    position: absolute;
    top: 0;
    left: 2px;
    width: 61px;
    height: 56px;
    background: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__back-icon i {
    font-size: 24px;
    color: var(--color-on-dark);
}

.service-card__back-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-on-dark);
    margin: 30px -40px 26px -78px;
}

.service-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: var(--color-on-dark);
}

.service-card__list li i {
    font-size: 16px;
    color: var(--color-on-dark);
    flex-shrink: 0;
}

/* === About === */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding-left: 121px;
}

.about__content {
    padding: 90px 0;
    max-width: 570px;
    justify-self: start;
}

.about__media {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
}

.about__title {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 56px;
    text-transform: uppercase;
}

.about__title span {
    color: var(--color-orange-deep);
}

.about__text {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 28px;
}

.about__quote {
    position: relative;
    padding-left: 28px;
    border-left: 3px solid var(--color-orange-light);
    font-size: 20px;
    color: var(--color-text-quote);
    margin: 36px 0 56px;
    font-style: normal;
}

.about__stats {
    display: flex;
    gap: 90px;
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: 50px;
    color: var(--color-orange-light);
    line-height: 1;
}

.about__stat-label {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 8px;
}

.about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Réalisations === */
.realisations {
    padding: 80px 0 100px;
    text-align: center;
}

.realisations__title {
    margin-bottom: 70px;
}

.realisations__slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
}

.realisations__grid {
    display: grid;
    grid-template-columns: 637fr 401fr;
    gap: 30px;
    flex: 1 1 0;
    max-width: 1068px;
    min-width: 0;
}

.realisation-card {
    position: relative;
    overflow: hidden;
    color: var(--color-on-dark);
    text-align: left;
}

.realisation-card--large {
    height: 571px;
    grid-row: span 2;
}

.realisation-card--small {
    height: 268px;
}

.realisation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.realisation-card__corner {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-orange-light);
    z-index: 2;
}

.realisation-card__corner-inner {
    position: absolute;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.realisation-card--large .realisation-card__corner {
    width: 65px;
    height: 65px;
}

.realisation-card--large .realisation-card__corner-inner {
    width: 55px;
    height: 55px;
    top: 22px;
    left: 18px;
}

.realisation-card--large .realisation-card__corner-inner i {
    color: var(--color-on-dark);
    font-size: 22px;
}

.realisation-card--small .realisation-card__corner {
    width: 45px;
    height: 45px;
}

.realisation-card--small .realisation-card__corner-inner {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 9px;
    background: var(--color-dark-2);
}

.realisation-card--small .realisation-card__corner-inner i {
    color: var(--color-on-dark);
    font-size: 16px;
}

.realisation-card__legend {
    position: absolute;
    left: 46px;
    bottom: 50px;
    z-index: 2;
}

.realisation-card--small .realisation-card__legend {
    left: 18px;
    bottom: 30px;
}

.realisation-card__legend h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.realisation-card--small .realisation-card__legend h3 {
    font-size: 20px;
    letter-spacing: -1px;
}

.realisation-card__legend p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 20px;
}

.realisation-card--small .realisation-card__legend p {
    font-size: 16px;
}

/* === Avis === */
.avis {
    background: var(--color-bg);
    padding: 120px 0;
    text-align: center;
}

.avis__title {
    margin-bottom: 28px;
}

.avis__lead {
    font-size: 20px;
    color: var(--color-text-strong);
    max-width: 980px;
    margin: 0 auto 75px;
}

.avis__grid {
    display: grid;
    grid-template-columns: repeat(3, 330px);
    gap: 40px;
    justify-content: center;
}

.avis-card {
    position: relative;
    background: var(--color-white);
    box-shadow: var(--shadow-avis);
    padding: 36px 33px;
    text-align: left;
    height: 287px;
}

.avis-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.avis-card__stars i {
    color: var(--color-orange);
    font-size: 20px;
}

.avis-card__quote {
    font-size: 16px;
    color: var(--color-text-strong);
    margin-bottom: 30px;
}

.avis-card__author {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-text-strong);
}

.avis-card__role {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-text-quote);
    margin-top: 4px;
}

.avis-card__mark {
    position: absolute;
    top: 4px;
    right: 0;
    width: 39px;
    height: 40px;
    pointer-events: none;
}

.avis-card__mark::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 17px;
    background: var(--color-orange-light);
}

.avis-card__mark::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 23px;
    height: 23px;
    background: var(--color-dark);
}

/* === Contact === */
.contact {
    background: var(--color-orange);
    padding: 100px 0;
    color: var(--color-on-dark);
    text-align: center;
}

.contact__title {
    font-family: var(--font-display);
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--color-white-soft);
}

.contact__infos {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 70px;
}

.contact__infos > div {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
}

.contact__infos i {
    font-size: 20px;
    color: var(--color-on-dark);
}

.contact__form-wrap {
    background: var(--color-white);
    max-width: 841px;
    margin: 0 auto;
    padding: 70px 100px 60px;
    position: relative;
    text-align: left;
    color: var(--color-text);
}

.contact__form-corner {
    position: absolute;
    top: 14px;
    left: 18px;
    width: 65px;
    height: 65px;
    background: var(--color-orange-light);
    z-index: 2;
}

.contact__form-corner::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 18px;
    width: 55px;
    height: 55px;
    background: var(--color-dark);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-text-strong);
    text-align: center;
    margin-bottom: 50px;
}

.field {
    margin-bottom: 24px;
}

.field label {
    display: block;
    font-size: 16px;
    color: var(--color-text-strong);
    margin-bottom: 10px;
}

.field input,
.field textarea {
    width: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 16px;
    color: var(--color-text-strong);
}

.field input {
    height: 50px;
}

.field textarea {
    height: 150px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--color-danger);
}

.field__error {
    display: block;
    color: var(--color-danger);
    font-size: 14px;
    margin-top: 6px;
}

/* === Top footer === */
.top-footer {
    background: var(--color-dark);
    color: var(--color-on-dark);
    padding: 70px 0 60px;
}

.top-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.top-footer__brand img {
    width: 100%;
    max-width: 335px;
    height: auto;
}

.top-footer__brand-contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.top-footer__brand-contact div {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
}

.top-footer__brand-contact i {
    font-size: 16px;
    color: var(--color-orange-light);
}

.top-footer h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -1px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.top-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.top-footer ul li {
    font-size: 16px;
}

.top-footer ul a:hover {
    color: var(--color-orange);
}

/* === Footer === */
.site-footer {
    background: var(--color-dark-2);
    color: var(--color-on-dark);
    height: 60px;
    display: flex;
    align-items: center;
}

.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

/* === Slider arrows === */
.realisations__nav {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--color-orange-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, transform 0.15s ease;
}

.realisations__nav:hover {
    background: var(--color-orange);
}

.realisations__nav--next:hover {
    transform: translateX(2px);
}

.realisations__nav--prev:hover {
    transform: translateX(-2px);
}

.realisations__nav i {
    color: var(--color-on-dark);
    font-size: 22px;
}

/* === Focus visible (a11y) === */
a:focus-visible,
button:focus-visible,
.service-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* === Pages statiques (mentions legales / confirmation devis) === */
.static-page {
    padding: 140px 0 100px;
}

.static-page__title {
    font-family: var(--font-display);
    font-size: 40px;
    text-transform: uppercase;
    color: var(--color-text-strong);
    margin-bottom: 12px;
    text-align: center;
}

.static-page__lead {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 56px;
    text-align: center;
}

.static-page__block {
    max-width: 760px;
    margin: 0 auto 40px;
}

.static-page__block h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-text-strong);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.static-page__block p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 10px;
}

.static-page__fictif {
    color: var(--color-text-muted);
    font-size: 14px;
    font-style: italic;
}

.confirm {
    text-align: center;
}

.confirm__icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-on-dark);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.confirm__actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* === Responsive === */
@media (max-width: 1280px) {
    .site-header__nav {
        gap: 28px;
    }
    .about {
        padding-left: 60px;
        gap: 40px;
    }
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 390px));
    }
    .realisations__slider {
        gap: 12px;
        padding: 0 16px;
    }
}

@media (max-width: 1100px) {
    .site-header__nav {
        gap: 20px;
        font-size: 14px;
    }
    .about {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 32px;
    }
    .about__content {
        max-width: 100%;
    }
    .about__media {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .services__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-card {
        margin: 0 auto;
    }
    .realisations__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .realisation-card--large,
    .realisation-card--small {
        grid-row: auto;
        height: 320px;
    }
    .avis__grid {
        grid-template-columns: 1fr;
    }
    .top-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact__form-wrap {
        max-width: calc(100% - 48px);
        padding: 80px 24px 40px;
    }
    .contact__infos {
        flex-direction: column;
        gap: 16px;
    }
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 850px) {
    .site-header__nav {
        display: none;
    }
    .site-header__cta {
        width: 180px;
        font-size: 14px;
    }
    .static-page {
        padding: 100px 24px 60px;
    }
    .static-page__title {
        font-size: 28px;
    }
    .hero {
        height: auto;
        min-height: 520px;
        padding: 80px 24px;
    }
    .hero__title {
        font-size: 34px;
        line-height: 50px;
    }
    .hero__subtitle {
        font-size: 16px;
    }
    .services {
        padding: 60px 24px 80px;
    }
    .services__title {
        margin-bottom: 60px;
    }
    .about {
        padding: 50px 24px;
    }
    .about__title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    .about__stats {
        gap: 40px;
        justify-content: center;
    }
    .about__stat-number {
        font-size: 36px;
    }
    .section-title {
        font-size: 24px;
    }
    .contact {
        padding: 60px 0;
    }
    .contact__title {
        font-size: 24px;
    }
    .contact__subtitle {
        font-size: 16px;
    }
    .contact__form-wrap {
        max-width: calc(100% - 32px);
        padding: 80px 20px 40px;
    }
    .realisations {
        padding: 60px 0 80px;
    }
    .realisation-card--large,
    .realisation-card--small {
        height: 260px;
    }
    .avis {
        padding: 70px 0;
    }
    .realisation-card__legend {
        left: 18px;
        bottom: 24px;
    }
    .realisation-card__legend h3 {
        font-size: 18px;
        letter-spacing: -0.5px;
    }
    .realisation-card__legend p {
        font-size: 14px;
    }
    .avis__lead {
        font-size: 16px;
        padding: 0 24px;
    }
}

@media (max-width: 600px) {
    .site-header__logo-bg {
        left: 16px;
        width: 120px;
        height: 80px;
    }
    .site-header__logo {
        left: 20px;
        width: 110px;
        height: 60px;
    }
    .site-header__cta {
        width: 150px;
        font-size: 12px;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
        gap: 8px;
    }
    .hero__title {
        font-size: 28px;
        line-height: 38px;
    }
    .top-footer {
        padding: 50px 0 40px;
    }
    .top-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .site-footer__inner {
        flex-direction: column;
        gap: 6px;
        padding: 12px 24px;
        text-align: center;
        font-size: 14px;
    }
    .site-footer {
        height: auto;
        padding: 12px 0;
    }
}
