@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo/static/Archivo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo/static/Archivo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo/static/Archivo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo/static/Archivo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Narrow";
  src: url("/assets/fonts/archivo-Narrow/static/ArchivoNarrow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Narrow";
  src: url("/assets/fonts/archivo-Narrow/static/ArchivoNarrow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Narrow";
  src: url("/assets/fonts/archivo-Narrow/static/ArchivoNarrow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Narrow";
  src: url("/assets/fonts/archivo-Narrow/static/ArchivoNarrow-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   0) VARIABLES GLOBALES
========================================= */
:root {
  --vert-fonce: #4D5C40;
  --orange: #DB993B;
  --vert-moyen: #72B08B;
  --vert-clair: #BEE3B5;
  --gris-bg: #F2F2F2;
  --white: #ffffff;
  --black: #000000;

  --font-body: "Archivo", sans-serif;
  --font-heading: "Archivo Narrow", sans-serif;

  --fs-base: 16px;
  --lh-base: 1.6;

  --fs-h1: clamp(2.2rem, 1.2rem + 3vw, 4rem);
  --fs-h2: clamp(1.8rem, 1rem + 2vw, 3rem);
  --fs-h3: clamp(1.5rem, 0.9rem + 1.5vw, 2.3rem);
  --fs-h4: clamp(1.25rem, 0.85rem + 1vw, 1.8rem);
  --fs-h5: clamp(1.1rem, 0.8rem + 0.6vw, 1.4rem);
  --fs-h6: clamp(1rem, 0.8rem + 0.3vw, 1.15rem);

  --content-max: 1600px;
  --gutter: clamp(16px, 2.5vw, 40px);
  --block-gap: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--vert-fonce);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--font-heading);
  color: var(--vert-fonce);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}


.header {
  width: 100%;
  background: var(--white);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.top-bar {
  background: var(--gris-bg);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.top-bar__left a,
.top-bar__right a {
  color: var(--vert-fonce);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.top-bar__right {
  display: flex;
  align-items: center;
}

.top-bar__right img {
  width: 20px;
  height: 20px;
}

/* =========================
   NAV BAR
========================= */
.nav-bar {
  background: var(--white);
}

.nav-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  gap: 24px;
}

.nav-bar__logo {
  width: 205px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-bar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 44px;
  padding: 6px 6px 5px 7px;
  border-radius: 50px;
}

.nav-menu__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--vert-fonce);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 50px;
  transition: 0.2s ease;
}

.nav-menu__link:hover {
  opacity: 0.8;
}

.nav-menu__link--contact {
  background: var(--vert-clair);
}

.nav-bar__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav-bar__cta:hover {
  opacity: 0.9;
}


/* =========================
   NAV BAR
========================= */
.nav-bar {
  background: var(--white);
  position: relative;
}

.nav-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  gap: 24px;
}

.nav-bar__logo {
  width: 205px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-bar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 44px;
  padding: 6px 6px 5px 7px;
  border-radius: 50px;
}

.nav-menu__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--vert-fonce);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 50px;
  transition: 0.2s ease;
}

.nav-menu__link:hover {
  opacity: 0.8;
}

.nav-menu__link--contact {
  background: var(--vert-clair);
}

.nav-bar__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav-bar__cta:hover {
  opacity: 0.9;
}

/* =========================
   BOUTON HAMBURGER
========================= */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 50px;
  background: var(--vert-fonce);
  transition: 0.25s ease;
}

/* Animation du bouton */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   MENU MOBILE
========================= */
.mobile-menu {
  display: none;
  width: 100%;
  background: var(--white);
  border-top: 1px solid rgba(77, 92, 64, 0.12);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 30px 30px;
}

.mobile-menu__link,
.mobile-menu__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: normal;
}

.mobile-menu__link {
  color: var(--vert-fonce);
  font-size: 14px;
  background: var(--gris-bg);
}

.mobile-menu__link--contact {
  background: var(--vert-clair);
}

.mobile-menu__cta {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
}

.mobile-menu.is-open {
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1040px) {
  .nav-bar__inner {
    padding: 20px 30px;
  }

  .nav-menu,
  .nav-bar__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (min-width: 1041px) {
  .mobile-menu {
    display: none !important;
  }
}





/* =========================
   HERO
========================= */
.hero {
  width: 100%;
  background: var(--white);
}

.hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 30px 80px 30px;
  gap: 40px;
}

.hero__content {
  display: flex;
  width: 710px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.hero__title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero__subtitle {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.hero__text {
  width: 426px;
  max-width: 100%;
  flex-shrink: 0;
}

.hero__text p {
  margin: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

@media (max-width: 1205px) {
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 30px 60px 30px;
    gap: 30px;
  }

  .hero__content,
  .hero__text {
    width: 100%;
  }

  .hero__title {
    font-size: clamp(2.5rem, 7vw, 4.375rem);
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__text p {
    font-size: 17px;
    line-height: 27px;
  }
}

@media (max-width: 640px) {
  .hero__inner {
    padding: 25px 20px 50px 20px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__text p {
    font-size: 16px;
    line-height: 26px;
  }
}


/* =========================
   HERO VALUES
========================= */
.hero-values {
  width: 100%;
  background: var(--white);
  padding: 0 0 0px 0;
}

.hero-values__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
}

.hero-values__image {
  width: 100%;
  height: 428px;
  border-radius: 15px;
  overflow: hidden;
}

.hero-values__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-values__cards {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}

.hero-values__card {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 15px;
  background: var(--vert-fonce);
}

.hero-values__card-title {
  margin: 0;
  color: var(--vert-clair);
  font-family: var(--font-body);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero-values__card-text {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 1040px) {
  .hero-values {
    padding: 0 0 60px 0;
  }

  .hero-values__inner {
    padding: 0 30px;
  }

  .hero-values__image {
    height: 340px;
  }

  .hero-values__cards {
    flex-direction: column;
  }

  .hero-values__card {
    gap: 20px;
  }

  .hero-values__card-title {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .hero-values__inner {
    padding: 0 20px;
  }

  .hero-values__image {
    height: 240px;
    border-radius: 12px;
  }

  .hero-values__card {
    padding: 18px;
    border-radius: 12px;
  }

  .hero-values__card-title {
    font-size: 20px;
  }

  .hero-values__card-text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* =========================
   SERVICES
========================= */
.services {
  width: 100%;
  background: var(--white);
  padding: 100px 0 0 0;
}

.services__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 30px;
}

.services__eyebrow {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.services__title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  width: 100%;
}

.service-card {
  display: flex;
  align-items: flex-end;
  min-height: 438px;
  padding: 221px 19px 25px 20px;
  border-radius: 15px;
  background-color: #d9d9d9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  padding: 26px 20px 18px 24px;
  border-radius: 15px;
  background: var(--white);
}

.service-card__title {
  margin: 0;
  color: var(--vert-fonce);
  font-family: var(--font-body);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.service-card__text {
  margin: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 1040px) {
  .services {
    padding: 80px 0 0 0;
  }

  .services__inner {
    padding: 0 30px;
  }

  .services__title {
    font-size: 38px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .services {
    padding: 60px 0 0 0;
  }

  .services__inner {
    padding: 0 20px;
  }

  .services__eyebrow {
    font-size: 16px;
  }

  .services__title {
    font-size: 30px;
  }

  .service-card {
    min-height: 360px;
    padding: 160px 14px 14px 14px;
    border-radius: 12px;
  }

  .service-card__content {
    padding: 20px 16px;
    border-radius: 12px;
    gap: 12px;
  }

  .service-card__title {
    font-size: 22px;
  }

  .service-card__text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* =========================
   PARTNERS
========================= */
.partners {
  width: 100%;
  background: var(--white);
}

.partners__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 60px 50px;
}

.partners__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.partners__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.partners__item:nth-child(1) img {
  width: 224px;
  height: 25px;
}

.partners__item:nth-child(2) img {
  width: 286px;
  height: 38.418px;
}

.partners__item:nth-child(3) img {
  width: 208px;
  height: 31px;
}

.partners__item:nth-child(4) img {
  width: 163px;
  height: 65px;
}

.partners__item:nth-child(5) img {
  width: 139px;
  height: 47px;
}

@media (max-width: 1040px) {
  .partners__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 30px;
    gap: 40px 50px;
  }
}

@media (max-width: 640px) {
  .partners__inner {
    padding: 40px 20px;
    gap: 30px;
  }

  .partners__item {
    width: calc(50% - 15px);
    flex-shrink: 1;
  }

  .partners__item img {
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    max-height: 50px;
    object-fit: contain;
    margin: 0 auto;
  }
}


/* =========================
   SECTEURS D'ACTIVITÉS
========================= */
.activity-sectors {
  width: 100%;
  background: var(--vert-fonce);
  padding: 100px 0;
}

.activity-sectors__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 30px;
}

.activity-sectors__eyebrow {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

.activity-sectors__title {
  margin: 0;
  width: 923px;
  max-width: 100%;
  color: var(--white);
  text-align: center;
  font-family: var(--font-body);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.activity-slider {
  width: 100%;
  display: flex;
  justify-content: center;
}

.activity-slider__image {
  width: 100%;
  max-width: 1281px;
  min-height: 570px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 15px;
  background-color: #d9d9d9;
  background-image: url("/images/secteur-residentiel.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-image 0.35s ease-in-out;
}

.activity-slider__tabs {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.activity-slider__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 0;
  gap: 10px;
  padding: 30px;
  border: none;
  border-radius: 15px;
  background: var(--white);
  color: var(--vert-fonce);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.activity-slider__tab:hover {
  opacity: 0.92;
}

.activity-slider__tab.is-active {
  background: var(--vert-clair);
}

@media (max-width: 1040px) {
  .activity-sectors {
    padding: 80px 0;
  }

  .activity-sectors__inner {
    padding: 0 30px;
  }

  .activity-sectors__title {
    font-size: 38px;
  }

  .activity-slider__image {
    min-height: 500px;
    padding: 20px;
  }

  .activity-slider__tabs {
    flex-wrap: wrap;
    gap: 16px;
  }

  .activity-slider__tab {
    flex: 1 1 calc(50% - 8px);
    padding: 22px 18px;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .activity-sectors {
    padding: 60px 0;
  }

  .activity-sectors__inner {
    padding: 0 20px;
    gap: 24px;
  }

  .activity-sectors__eyebrow {
    font-size: 16px;
  }

  .activity-sectors__title {
    font-size: 30px;
  }

  .activity-slider__image {
    min-height: 420px;
    padding: 14px;
    border-radius: 12px;
  }

  .activity-slider__tabs {
    flex-direction: column;
    gap: 12px;
  }

  .activity-slider__tab {
    width: 100%;
    flex: none;
    padding: 18px 16px;
    font-size: 16px;
    border-radius: 12px;
  }
}


/* =========================
   DÉMOLITION DE PISCINE
========================= */
.pool-demo {
  width: 100%;
  background: var(--white);
}

.pool-demo__inner {
  display: flex;
  align-items: center;
  gap: 108px;
  min-height: 702px;
  padding: 100px 60px;
}

.pool-demo__content {
  display: flex;
  width: 492px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.pool-demo__eyebrow {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.pool-demo__title {
  margin: 0;
  width: 445px;
  max-width: 100%;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pool-demo__text {
  margin: 0;
  align-self: stretch;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.pool-demo__image {
  flex: 1 1 0;
  align-self: stretch;
  border-radius: 15px;
  overflow: hidden;
  min-height: 500px;
}

.pool-demo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 1040px) {
  .pool-demo__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    min-height: auto;
    padding: 80px 30px;
  }

  .pool-demo__content {
    width: 100%;
  }

  .pool-demo__title {
    width: 100%;
    font-size: 38px;
  }

  .pool-demo__image {
    width: 100%;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .pool-demo__inner {
    padding: 60px 20px;
    gap: 30px;
  }

  .pool-demo__eyebrow {
    font-size: 16px;
  }

  .pool-demo__title {
    font-size: 30px;
  }

  .pool-demo__image {
    min-height: 300px;
    border-radius: 12px;
  }
}


/* =========================
   COMPANY MISSION
========================= */
.company-mission {
  width: 100%;
  background: var(--gris-bg);
}

.company-mission__inner {
  display: flex;
  align-items: center;
  gap: 104px;
  padding: 100px 81px 100px 60px;
}

.company-mission__gallery {
  display: flex;
  width: 622px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex-shrink: 0;
}

.company-mission__gallery-top {
  display: flex;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.company-mission__image {
  border-radius: 15px;
  overflow: hidden;
}

.company-mission__image--small {
  flex: 1 1 0;
  height: 288px;
}

.company-mission__image--large {
  width: 100%;
  height: 254px;
}

.company-mission__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-mission__content {
  display: flex;
  width: 573px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.company-mission__eyebrow {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.company-mission__title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.company-mission__text {
  margin: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* =========================
   CONTACT / SOUMISSION
========================= */
.contact-quote {
  width: 100%;
  background:
    linear-gradient(to bottom, var(--white) 0 132px, var(--vert-fonce) 132px 100%);
}

.contact-quote__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  min-height: 1024px;
  padding: 100px 60px 148px 60px;
}

.contact-quote__content {
  display: flex;
  width: 465px;
  max-width: 100%;
  padding: 200px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.contact-quote__title {
  margin: 0;
  color: var(--vert-clair);
  font-family: var(--font-body);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact-quote__text {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.contact-quote__form-wrap {
  width: 754px;
  max-width: 100%;
  flex-shrink: 0;
}

.quote-form {
  display: flex;
  width: 100%;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
}

.quote-form__title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.quote-form__group {
  width: 100%;
}

.quote-form__field {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  border-radius: 15px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  outline: none;
}

.quote-form__field::placeholder {
  color: var(--black);
  opacity: 1;
}

.quote-form__field--textarea {
  height: 320px;
  padding: 20px;
  resize: none;
  line-height: 1.4;
}

.quote-form__submit {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.quote-form__submit:hover {
  opacity: 0.9;
}

.quote-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}


@media (max-width: 1040px) {
  .contact-quote {
    background:
      linear-gradient(to bottom, var(--white) 0 100px, var(--vert-fonce) 100px 100%);
  }

  .contact-quote__inner {
    flex-direction: column;
    min-height: auto;
    padding: 80px 30px 100px 30px;
    gap: 40px;
  }

  .contact-quote__content,
  .contact-quote__form-wrap {
    width: 100%;
  }

  .contact-quote__content {
    padding: 120px 0 0 0;
  }

  .contact-quote__title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .contact-quote {
    background:
      linear-gradient(to bottom, var(--white) 0 70px, var(--vert-fonce) 70px 100%);
  }

  .contact-quote__inner {
    padding: 60px 20px 80px 20px;
    gap: 30px;
  }

  .contact-quote__content {
    padding: 80px 0 0 0;
  }

  .contact-quote__title {
    font-size: 30px;
  }

  .quote-form {
    padding: 20px;
    border-radius: 12px;
  }

  .quote-form__title {
    font-size: 22px;
  }

  .quote-form__field {
    height: 50px;
    font-size: 16px;
    border-radius: 12px;
  }

  .quote-form__field--textarea {
    height: 220px;
    padding: 16px;
  }
}

/* =========================
   RÉALISATIONS
========================= */
.projects {
  width: 100%;
  background: var(--gris-bg);
  padding: 100px 0;
}

.projects__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
}

.projects__intro {
  display: flex;
  width: 1100px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-bottom: 30px;
}

.projects__eyebrow {
  margin: 0;
  color: var(--orange);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.projects__title {
  margin: 0;
  color: var(--black);
  text-align: center;
  font-family: var(--font-body);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.projects__text {
  margin: 0;
  color: var(--black);
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.projects__item {
  width: 100%;
  aspect-ratio: 428 / 344;
  border-radius: 15px;
  overflow: hidden;
}

.projects__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1040px) {
  .projects {
    padding: 80px 0;
  }

  .projects__inner {
    padding: 0 30px;
  }

  .projects__title {
    font-size: 38px;
  }

  .projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .projects {
    padding: 60px 0;
  }

  .projects__inner {
    padding: 0 20px;
  }

  .projects__eyebrow {
    font-size: 16px;
  }

  .projects__title {
    font-size: 30px;
  }

  .projects__grid {
    grid-template-columns: 1fr;
  }

  .projects__item {
    border-radius: 12px;
  }
}


/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--vert-fonce);
  color: var(--white);
}

.site-footer__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: space-between;
  flex-wrap: wrap;
  column-gap: 234px;
  row-gap: 50px;
  padding: 100px 86px 20px 94px;
  min-height: 539px;
}

.site-footer__brand {
  display: flex;
  width: 408px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.site-footer__logo {
  display: flex;
  width: 344px;
  height: 84px;
  justify-content: flex-start;
  align-items: center;
}

.site-footer__logo img {
  width: 344px;
  height: 84px;
  object-fit: contain;
}

.site-footer__description {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.site-footer__nav {
  display: flex;
  width: 164px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.site-footer__nav a {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.site-footer__info {
  display: flex;
  width: 220px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex-shrink: 0;
}

.site-footer__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
}

.site-footer__heading {
  margin: 0;
  color: var(--vert-clair);
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.site-footer__text,
.site-footer__text a {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.site-footer__social img {
  width: 16px;
  height: 16px;
}

.site-footer__bottom {
  padding: 0 20px 20px 20px;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--white);
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1040px) {
  .site-footer__inner {
    justify-content: flex-start;
    column-gap: 60px;
    row-gap: 40px;
    padding: 80px 30px 20px 30px;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    padding: 60px 20px 20px 20px;
    row-gap: 35px;
  }

  .site-footer__brand,
  .site-footer__nav,
  .site-footer__info {
    width: 100%;
  }

  .site-footer__logo {
    width: 260px;
    height: auto;
  }

  .site-footer__logo img {
    width: 260px;
    height: auto;
  }

  .site-footer__nav {
    gap: 16px;
  }

  .site-footer__nav a {
    font-size: 15px;
  }

  .site-footer__bottom p {
    font-size: 12px;
    line-height: 18px;
  }
}