/* =====================
   PAGE LOADER
===================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.page-loader-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    rgba(106, 178, 177, 0.3) 100%
  );
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.page-loader-logo {
  position: relative;
  z-index: 1;
  width: 170px;
  height: auto;
}

.page-loader-spinner {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(28, 49, 107, 0.2);
  border-top-color: #1c316b;
  border-radius: 50%;
  animation: page-loader-spin 0.8s linear infinite;
}

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

/* Image avec placeholder skeleton (shimmer en fond de l'image) */
.img-ph {
  background-color: #edf0f5;
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  background-repeat: no-repeat;
  background-size: 200% 100%;
  animation: img-shimmer 1.3s ease-in-out infinite;
}

.img-ph--loaded {
  background-image: none;
  background-color: transparent;
  animation: none;
}

@keyframes img-shimmer {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -50% 0;
  }
}

/* =====================
   FONTS
===================== */
@font-face {
  font-family: "Autography";
  src: url("/fonts/Autography-3ioccn.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =====================
   NAVBAR
===================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: white;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(28, 49, 107, 0.08);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.site-header.header-scrolled {
  box-shadow: 0 4px 20px rgba(28, 49, 107, 0.12);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

/* MENU MOBILE */
.menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 99999;
  flex-direction: column;
  padding: 32px 24px;
  overflow-y: auto;
}

.menu-mobile--ouvert {
  display: flex;
  z-index: 999999;
}

.menu-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-self: flex-end;
  margin-bottom: 40px;
}

.menu-mobile-liens {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-mobile-liens {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.menu-mobile-lien {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #1c316b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-mobile-sous {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: -12px;
  padding-left: 2px;
}

.menu-mobile-sous-lien {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(28, 49, 107, 0.6);
  text-decoration: none;
}

.menu-mobile-lien:hover {
  opacity: 0.6;
}

.nav-principale {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 140px;
  background: white;
}

.nav-logo img {
  width: 179px;
  height: 87px;
  flex-shrink: 0;
}

.nav-liens {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-lien {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1.44px;
  color: #1c316b;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-lien:hover {
  opacity: 0.6;
}

.nav-lien--actif {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(28, 49, 107, 0.5);
}

/* Sous-menu "Nos Réalisations" (filtres au survol) */
.nav-lien-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-sous-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 18px;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  z-index: 200;
}

.nav-sous-menu::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  height: 26px;
}

.nav-lien-wrap:hover .nav-sous-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-sous-menu-lien {
  padding: 11px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #1c316b;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s;
}

.nav-sous-menu-lien:hover {
  background: rgba(237, 240, 245, 0.7);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: #1c316b;
  transition: all 0.3s;
}

.nav-burger span:nth-child(1),
.nav-burger span:nth-child(2) {
  width: 24px;
}
.nav-burger span:nth-child(3) {
  width: 16px;
}

@media (max-width: 1024px) {
  .nav-liens {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}

.site-header nav a {
  color: #1c316b;
}

.savoir-faire-title {
  font-family: "Autography", cursive;
  color: #1c316b;
}

.savoir-faire-text {
  font-family: "Montserrat", sans-serif;
}

/* =====================
   HERO CAROUSEL
===================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 140px);
  overflow: hidden;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-carousel-slide--actif {
  opacity: 1;
}

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

.hero-carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.hero-carousel-dot--actif {
  background: white;
}

.hero-home-titre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 2;
  font-family: "Autography", cursive;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 90px);
  color: #b8c3cd;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

/* =====================
   HERO (ancien)
===================== */
.section-hero {
  height: calc(100vh - 140px);
  overflow: hidden;
}

.hero-figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

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

/* =====================
   SECTION SAVOIR FAIRE
===================== */
.section-savoir-faire {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.savoir-faire-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1108px;
  gap: 48px;
}

.savoir-faire-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 67px;
  white-space: nowrap;
  text-align: center;
  color: #1c316b;
}

.savoir-faire-texte {
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
  color: #1c316b;
  text-align: center;
}

/* =====================
   SECTION EXPÉRIENCE
===================== */
.section-experience {
  padding: 80px 0;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1170px;
  margin: 0 auto 48px auto;
  padding: 0 60px;
}

.experience-titre {
  font-size: 72px;
  color: #1c316b;
  line-height: 1;
}

.experience-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c316b;
  text-align: right;
  max-width: 520px;
  line-height: 1.6;
  padding-top: 8px;
}

.experience-liste {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 60px;
}

.experience-item {
  display: block;
  text-decoration: none;
  border-top: 1px solid #e5e5e5;
  overflow: hidden;
}

.experience-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.experience-item-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  gap: 60px;
}

.experience-item-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.1;
  min-width: 380px;
}

.experience-item-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c316b;
  opacity: 0.6;
  line-height: 1.6;
  width: 400px;
  flex-shrink: 0;
}

.experience-item-desc-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.experience-item-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.experience-item:hover .experience-item-arrow {
  transform: translateX(6px);
}

.experience-item-img-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.experience-item:hover .experience-item-img-wrapper {
  max-height: 300px;
}

.experience-item-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* =====================
   SECTION CONTACT
===================== */
.section-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 120px;
}

.contact-titre {
  font-size: 96px;
  color: #1c316b;
  line-height: 1;
  margin-bottom: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 770px;
}

.contact-champ {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c316b;
}

.contact-input {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #999;
  background: #edf0f5;
  border: none;
  padding: 16px 20px;
  width: 100%;
  outline: none;
}

.contact-input:focus {
  outline: 1px solid #1c316b;
}

.contact-textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #999;
  background: #edf0f5;
  border: none;
  padding: 16px 20px;
  width: 100%;
  min-height: 140px;
  resize: none;
  outline: none;
}

.contact-textarea:focus {
  outline: 1px solid #1c316b;
}

.contact-interets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-interet-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1c316b;
  background: #edf0f5;
  border: 1px solid rgba(24, 24, 24, 0.1);
  padding: 12px 24px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.contact-interet-btn:hover,
.contact-interet-btn.actif {
  background: #1c316b;
  color: white;
}

.contact-succes-inline {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #1c316b;
  text-align: center;
  padding: 24px 0;
}

.contact-infos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 24px 80px;
}

.contact-info-bloc {
  width: 370px;
  height: 159px;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  border: 1px solid rgba(24, 24, 24, 0.1);
  background: rgba(237, 240, 245, 0.2);
}

.contact-info-icon {
  flex-shrink: 0;
}

.contact-info-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1c316b;
  margin-bottom: 6px;
}

.contact-info-valeur {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.5;
}

.contact-submit {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  line-height: 110%;
  text-align: center;
  color: #edf0f5;
  background: #1c316be5;
  border: none;
  padding: 24px;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-submit:hover {
  background: #1c316b;
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-erreur {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #d64545;
  margin-top: 6px;
}

.contact-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(237, 240, 245, 0.4);
  border-top-color: #edf0f5;
  border-radius: 50%;
  animation: page-loader-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

/* Mentions légales */
.mentions-section {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 24px 100px;
  box-sizing: border-box;
}

.mentions-bloc {
  margin-bottom: 40px;
}

.mentions-bloc-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1c316b;
  margin-bottom: 12px;
}

.mentions-texte {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #1c316b;
}

.mentions-lien {
  color: #1c316b;
  text-decoration: underline;
}

.mentions-texte + .mentions-texte {
  margin-top: 16px;
}

.mentions-texte + .mentions-bloc {
  margin-top: 48px;
}

/* =====================
   SECTION RÉGION IDF
===================== */
.section-region-idf {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.section-region-idf::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 249.437px;
  height: 249.437px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    rgba(106, 178, 177, 0.3) 100%
  );
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.region-idf-content {
  display: flex;
  width: 870px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.region-idf-texte {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}

.region-idf-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.2;
}

.region-idf-titre strong {
  font-weight: 700;
  color: #1c316b;
}

.region-idf-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.7;
  opacity: 0.7;
}

.region-idf-logo {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

/* =====================
   FOOTER
===================== */
.footer-sapide {
  background: #eceef3;
  width: 100%;
}

.footer-inner {
  max-width: 1130px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(28, 49, 107, 0.15);
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-social-icon {
  stroke: #1c316b;
  transition: opacity 0.2s;
}

.footer-social-icon:hover {
  opacity: 0.6;
}

.footer-liens {
  display: flex;
  align-items: center;
  gap: 48px;
}

.footer-lien {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #1c316b;
  text-decoration: none;
}

.footer-lien:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 32px;
  text-align: center;
}

.footer-copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #1c316b;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-liens {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-lien {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}

/* =====================
   SECTION FAQ
===================== */
.accordion-item .accordion-body {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 300;
  font-style: normal;
  color: #1c316b;
  line-height: 30px;
}

.accordion-item .accordion-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  color: #1c316b;
  line-height: 105%;
}

.faq-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1c316b;
  text-align: center;
  margin-bottom: 48px;
}

/* =====================
   SECTION LOGOS
===================== */
/* Flux Instagram (carrousel) */
.section-instagram {
  max-width: 1170px;
  margin: 0 auto;
  padding: 96px 0 80px;
}

.insta-header {
  text-align: center;
  padding: 0 24px 32px;
}

.insta-titre {
  font-family: "Montserrat", sans-serif;
  color: #1c316b;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1.25;
  margin: 0;
}

.insta-accent {
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: #1c316b;
  margin: 18px auto 0;
}

.insta-accent--bas {
  margin-top: 44px;
}

.insta-lien {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1c316b;
  text-decoration: none;
  transition:
    gap 0.25s ease,
    opacity 0.2s;
}

.insta-lien:hover {
  gap: 16px;
  opacity: 0.75;
}

/* @username : le <span> ne doit pas récupérer la couleur sombre d'un utilitaire Tailwind. */
.insta-lien span {
  color: #1c316b;
}

.insta-carousel-wrap {
  position: relative;
}

.insta-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

.insta-arrow:hover {
  background: #f2f4f7;
}

.insta-arrow--prev {
  left: 8px;
}

.insta-arrow--next {
  right: 8px;
}

.insta-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px;
  box-sizing: border-box;
}

.insta-carousel::-webkit-scrollbar {
  display: none;
}

.insta-item {
  flex: 0 0 auto;
  width: 240px;
  height: 240px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  background: #edf0f5;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.insta-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .section-instagram {
    padding: 56px 0 48px;
  }
  .insta-titre {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
  .insta-header {
    padding-bottom: 24px;
  }
  .insta-lien {
    font-size: 12px;
    margin-top: 14px;
  }
  .insta-arrow {
    display: none;
  }
  .insta-carousel {
    padding: 0 20px;
    gap: 8px;
  }
  .insta-item {
    width: 170px;
    height: 170px;
  }
}

.section-logos {
  padding: 60px 0;
  max-width: 1170px;
  margin: 0 auto;
}

.logos-grille {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.logo-item {
  position: relative;
  min-height: 140px;
  padding: 24px;
  margin: 0;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.logo-item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 74px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    filter 0.2s;
}

.logo-item-img.est-actif {
  opacity: 0.65;
}

.logo-item:hover .logo-item-img.est-actif {
  opacity: 1;
  filter: grayscale(0%);
}

/* =====================
   SECTION NOTRE DIFFÉRENCE
===================== */
.section-notre-difference {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.notre-difference-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.notre-difference-titre-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  max-width: 100%;
}

/* Meme typo que .insta-titre ("Rejoignez-nous sur Instagram") */
.notre-difference-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #1c316b;
  text-align: center;
  line-height: 1.25;
  margin: 0;
}

.notre-difference-signature {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  color: #1c316b;
  text-align: center;
  line-height: 30px;
}

.notre-difference-texte {
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  font-weight: 400;
  font-style: normal;
  color: #1c316b;
  text-align: center;
  line-height: 30px;
  width: 1108px;
}

/* =====================
   SECTION RÉALISATIONS
===================== */
.section-realisations {
  padding: 60px 0;
}

.section-realisations.page-realisations {
  padding-top: 100px;
}

.realisations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.realisations-titre {
  font-size: 80px;
  color: #1c316b;
  line-height: 1;
}

.realisations-filtres {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 8px;
}

.realisations-filtres-ligne {
  display: flex;
  gap: 40px;
}

.realisations-filtres-col {
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.realisation-filtre {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #1c316b;
  text-align: right;
  line-height: 50px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.realisation-filtre.actif {
  opacity: 1;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-underline-position: from-font;
}

.realisations-grille {
  display: grid;
  grid-template-columns: repeat(3, 370px);
  row-gap: 42px;
  column-gap: 30px;
  width: 1170px;
  margin: 0 auto;
}

.realisation-card {
  display: block;
  text-decoration: none;
}

.realisation-card-figure {
  overflow: hidden;
  margin: 0;
  width: 370px;
  height: 370px;
}

.realisation-card-img {
  width: 370px;
  height: 370px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.realisation-card:hover .realisation-card-img {
  transform: scale(1.05);
}

.realisation-card-infos {
  width: 370px;
  padding-top: 12px;
}

.realisation-card-client {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1c316b;
  text-align: right;
  letter-spacing: 0.36px;
  line-height: 160%;
  margin-bottom: 4px;
}

.realisation-card-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #1c316b;
  line-height: 110%;
  letter-spacing: -0.9px;
}

.realisations-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.realisation-card-infos-page {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
}

/* Grille 2 colonnes page réalisations */
.realisations-grille-2col {
  display: grid;
  grid-template-columns: repeat(2, 570px);
  gap: 42px 30px;
  margin: 0 auto;
  width: 1170px;
}

.realisation-card-figure-lg {
  width: 570px;
  height: 570px;
}

.realisation-card-img-lg {
  width: 570px;
  height: 570px;
  object-fit: cover;
}

/* =====================
   HERO PAGE NOTRE AGENCE
===================== */
.agence-hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 10px;
  position: relative;
}

.agence-hero-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 249.437px;
  height: 249.437px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    rgba(106, 178, 177, 0.3) 100%
  );
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.agence-hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 568px;
  height: 335px;
  position: relative;
  z-index: 1;
}

.agence-hero-titre {
  color: #1c316b;
  font-family: "Autography", cursive;
  font-size: 114px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
}

.agence-hero-agence-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 175px;
  margin-top: -18px;
}

.agence-hero-gradient {
  position: absolute;
  width: 335px;
  height: 335px;
  border-radius: 335px;
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    rgba(106, 178, 177, 0.3) 100%
  );
  filter: blur(75px);
  z-index: 0;
}

.agence-hero-agence {
  position: relative;
  z-index: 1;
  color: #1c316b;
  text-align: center;
  font-family: "Autography", cursive;
  font-size: 114px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
}

/* Contour léger sur tous les titres en cursive (Autography) */
.agence-hero-titre,
.agence-hero-agence,
.atelier-humaine-titre,
.atelier-humaine-l1,
.atelier-humaine-l2,
.atelier-humaine-script,
.atelier-savoir-titre,
.atelier-savoir-script,
.agence-excellence-titre,
.agence-excellence-script,
.agence-force-titre,
.agence-force-titre-script,
.projet-autres-titre,
.projet-autres-script,
.projet-contact-titre,
.projet-contact-script,
.agence-cta-titre-script,
.hero-home-titre {
  -webkit-text-stroke: 0.7px currentColor;
}

.agence-phrase-section {
  width: 1170px;
  margin: 0 auto;
  padding: 0 0 56px;
  text-align: center;
}

.agence-phrase-texte {
  color: #1c316b;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1.68px;
}

/* Stats Notre Agence */
.agence-stats-section {
  width: 1170px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.agence-stats-liste {
  display: inline-flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.agence-stat-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.agence-stat-number {
  color: #1c316b;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-family: "Autography", cursive;
  font-size: 114px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.agence-stat-label {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-top: 8px;
  white-space: pre-line;
}

.agence-stat-desc {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  margin-top: 8px;
}

.agence-image-section {
  width: 1170px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.agence-image-figure {
  width: 1170px;
  height: 714px;
  overflow: hidden;
}

.agence-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Voile bleu léger sur la grande image N&B de la page Atelier
   (mix-blend-mode: color -> teinte la photo en bleu de marque). */
.atelier-image-bleutee {
  position: relative;
}

.atelier-image-bleutee::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1c316b;
  mix-blend-mode: color;
  opacity: 0.5;
  pointer-events: none;
}

.agence-texte-section {
  width: 1170px;
  margin: 0 auto;
  padding-bottom: 64px;
  text-align: left;
}

.agence-texte-complement {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 24px;
}

.agence-texte-presentation {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

/* Les <span> internes (ex. découpage |BR|) héritent du bleu et ne doivent pas
   récupérer la couleur sombre d'un utilitaire Tailwind de main.css. */
.agence-texte-presentation span {
  color: #1c316b;
}

.atelier-texte-accompagne {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.atelier-equipe-texte {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
}

.atelier-equipe-texte + .atelier-equipe-texte {
  margin-top: 24px;
}

.atelier-equipe-section {
  padding-top: 120px;
}

/* Services Notre Agence */
.agence-services-section {
  width: 1170px;
  margin: 0 auto;
  padding-bottom: 0;
}

.agence-service-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 60px 0;
  border-top: 1px solid rgba(24, 24, 24, 0.1);
  background: rgba(237, 240, 245, 0.2);
}

.agence-service-item:last-child {
  border-bottom: 1px solid rgba(24, 24, 24, 0.1);
}

.agence-service-ligne,
.agence-service-titre-txt {
  display: block;
  color: #1c316b;
}

.agence-service-titre {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 78px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: capitalize;
  white-space: pre-line;
  flex-shrink: 0;
  width: 620px;
}

.agence-service-puce {
  display: inline-block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  vertical-align: middle;
}

.atelier-etapes .agence-service-titre {
  text-transform: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.atelier-etapes .agence-service-puce {
  flex-shrink: 0;
  margin-top: 10px;
}

.agence-service-desc {
  color: #1c316b;
  font-family: "Satoshi", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.38px;
  max-width: 530px;
  text-align: left;
  padding-top: 16px;
}

.agence-savoir-section {
  width: 1170px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
}

.agence-savoir-texte {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

/* Notre Force */
.agence-force-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 1170px;
  margin: 0 auto;
  padding-bottom: 80px;
  gap: 60px;
  position: relative;
}

.agence-force-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 249.437px;
  height: 249.437px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    rgba(106, 178, 177, 0.3) 100%
  );
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.agence-force-figure {
  flex-shrink: 0;
  width: 530px;
  height: 530px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.agence-force-contenu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.agence-force-titre {
  font-family: "Autography", cursive;
  font-size: 120px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.1;
}

.agence-force-titre-script {
  display: block;
  margin-left: 150px;
  margin-top: -60px;
  font-family: "Autography", cursive;
  font-size: 120px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1;
}

.agence-force-intro {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1c316b;
  line-height: 160%;
  letter-spacing: 0.4px;
}

.agence-force-texte {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1c316b;
  line-height: 160%;
  letter-spacing: 0.4px;
}

.agence-force-intro strong {
  font-weight: 700;
}

.agence-force-liste-intro {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.7;
}

.agence-force-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.agence-force-liste li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.agence-force-liste li::before {
  content: "·";
  position: absolute;
  left: 0;
}

/* Excellence + Avantages */
.agence-excellence-section {
  text-align: center;
  padding: 100px 0 60px;
  width: 1170px;
  margin: 0 auto;
}

.agence-excellence-surtitre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.agence-excellence-ligne {
  display: block;
  width: 80px;
  height: 1px;
  background: #181818;
  opacity: 0.3;
}

.agence-excellence-label {
  font-family: "Century Gothic", "Trebuchet MS", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1c316b;
}

.agence-excellence-titre {
  font-family: "Autography", cursive;
  font-size: 114px;
  font-style: normal;
  font-weight: 400;
  color: #1c316b;
  line-height: 110%;
  letter-spacing: -1.92px;
  text-align: center;
  margin-bottom: 32px;
}

.agence-excellence-script {
  font-family: "Autography", cursive;
  font-size: 114px;
  font-style: normal;
  font-weight: 400;
  color: #1c316b;
  line-height: 110%;
  letter-spacing: -3.42px;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #000;
  text-align: center;
}

.agence-excellence-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.agence-avantages-section {
  width: 1240px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.agence-avantages-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.agence-avantage-card {
  padding: 60px 56px;
  border: 1px solid rgba(24, 24, 24, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agence-avantage-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.agence-avantage-titre {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  white-space: pre-line;
}

.agence-avantage-desc {
  color: #1c316b;
  font-family: "Satoshi", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.agence-cta-btn {
  display: flex;
  width: 368px;
  padding: 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(28, 49, 107, 0.9);
  color: #edf0f5;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0 auto;
  transition: background 0.2s;
}

.agence-cta-btn:hover {
  background: #1c316b;
}

/* =====================
   NOTRE ATELIER
===================== */
.atelier-humaine-section {
  width: 1170px;
  margin: 0 auto;
  padding: 100px 0;
}

.atelier-humaine-titre-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.atelier-humaine-titre-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    rgba(106, 178, 177, 0.3) 100%
  );
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.atelier-humaine-titre {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-align: left;
  font-family: "Autography", cursive;
  font-size: 80px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.15;
  margin-bottom: 16px;
}

.atelier-humaine-l1,
.atelier-humaine-l2 {
  display: block;
  color: #1c316b;
}

.atelier-humaine-l2 {
  margin-left: 1.6em;
}

.atelier-humaine-sous-titre {
  position: relative;
  z-index: 1;
}

.atelier-humaine-script {
  font-family: "Autography", cursive;
  font-size: 80px;
  font-weight: 400;
  color: #1c316b;
}

.atelier-humaine-sous-titre {
  color: #1c316b;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.36px;
}

.atelier-collage {
  position: relative;
  width: 1170px;
  height: 910px;
  margin-bottom: 60px;
}

/* Image haut-gauche : paysage */
.atelier-collage-haut-gauche {
  position: absolute;
  left: 30px;
  top: 20px;
  width: 390px;
  height: 316px;
  overflow: hidden;
  z-index: 1;
}

/* Image bas-gauche : portrait vertical */
.atelier-collage-gauche {
  position: absolute;
  left: 40px;
  top: 360px;
  width: 390px;
  height: 488px;
  overflow: hidden;
  z-index: 3;
}

/* Image centre */
.atelier-collage-centre {
  position: absolute;
  left: 320px;
  top: 175px;
  width: 531px;
  height: 366px;
  overflow: hidden;
  z-index: 4;
}

/* Image haut-droite : coin haut-droit, portrait */
.atelier-collage-haut-droite {
  position: absolute;
  left: 781px;
  top: 0;
  width: 359px;
  height: 449px;
  overflow: hidden;
  z-index: 2;
}

/* Image bas-droite : paysage */
.atelier-collage-bas-droite {
  position: absolute;
  left: 710px;
  top: 460px;
  width: 370px;
  height: 449px;
  overflow: hidden;
  z-index: 5;
}

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

.atelier-collage-texte {
  position: absolute;
  bottom: -140px;
  left: 0;
  width: 490px;
  z-index: 6;
}

.atelier-humaine-label {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1c316b;
  margin-bottom: 10px;
}

.atelier-humaine-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.7;
}

.atelier-humaine-texte-section {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 100px;
  box-sizing: border-box;
  text-align: left;
}

.atelier-humaine-texte {
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}

.atelier-humaine-texte--fort {
  color: #1c316b;
}

.atelier-humaine-texte + .atelier-humaine-texte {
  margin-top: 24px;
}

/* Savoir-faire français */
.atelier-savoir-section {
  width: 1170px;
  margin: 0 auto;
  padding: 80px 0;
}

.atelier-savoir-titre-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.atelier-savoir-titre {
  font-family: "Autography", cursive;
  font-size: 104px;
  font-weight: 400;
  color: #1c316b;
  line-height: 0.85;
}

.atelier-savoir-script-wrapper {
  display: inline-block;
  margin-left: 155px;
}

.atelier-savoir-script {
  font-family: "Autography", cursive;
  font-size: 104px;
  font-weight: 400;
  color: #1c316b;
}

.atelier-savoir-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.atelier-savoir-grille .agence-avantage-card {
  background: rgba(237, 240, 245, 0.2);
  padding: 60px 40px;
  margin-right: -1px;
  margin-bottom: -1px;
}

.atelier-savoir-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atelier-savoir-icon svg {
  width: 36px;
  height: 36px;
}

.atelier-savoir-item-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1c316b;
  line-height: 1.3;
}

.atelier-savoir-item-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.7;
}

.agence-cta-section {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.agence-cta-titre-script {
  font-family: "Autography", cursive;
  font-size: 96px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1;
}

.contact-page-section {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}

.contact-page-section .contact-form {
  width: 1130px;
}

.contact-succes-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  position: relative;
  padding: 80px 40px;
}

.contact-succes-gradient {
  position: absolute;
  width: 249.437px;
  height: 249.437px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 243, 230, 0.3) 0%,
    rgba(106, 178, 177, 0.3) 100%
  );
  filter: blur(75px);
  z-index: 0;
}

.contact-succes-picto {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.contact-succes-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.contact-succes-texte {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  max-width: 700px;
}

/* =====================
   PAGE PROJET
===================== */
.projet-page {
  font-family: "Montserrat", sans-serif;
}

.projet-hero-tags {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto 16px;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.projet-hero-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1c316b;
  border: 1px solid #1c316b;
  border-radius: 4px;
  padding: 8px 16px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.projet-hero-tag:hover {
  background: #1c316b;
  color: #fff;
  border-color: #1c316b;
}

.projet-hero {
  width: 1170px;
  height: 702px;
  margin: 0 auto;
  overflow: hidden;
}

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

.projet-intro {
  position: relative;
  width: 1170px;
  margin: 0 auto;
  padding: 48px 0 40px;
}

.projet-intro-gauche {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
}

.projet-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #1c316b;
  line-height: 110%;
  letter-spacing: -1.92px;
}

.projet-description {
  font-family: "Satoshi", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #1c316b;
  line-height: 140%;
}

.projet-client {
  position: absolute;
  top: 48px;
  right: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  color: #1c316b;
  line-height: 110%;
  letter-spacing: -0.9px;
  white-space: nowrap;
}

.projet-section {
  width: 1170px;
  margin: 0 auto;
  padding: 40px 0;
}

.projet-section-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 970px;
  gap: 12px;
  margin: 0 auto;
}

.projet-section-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #1c316b;
  line-height: 110%;
}

.projet-section-texte {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1c316b;
  line-height: 160%;
}

.projet-carousel-section {
  width: 970px;
  margin: 0 auto;
  padding: 40px 0;
}

.projet-carousel-caption {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1c316b;
  line-height: 160%;
  margin-top: 24px;
}

.projet-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.projet-carousel-track {
  flex: 1;
  overflow: hidden;
}

.projet-carousel-slide {
  display: none;
  gap: 16px;
  align-items: stretch;
}

.projet-carousel-slide--actif {
  display: flex;
}

.projet-carousel-img {
  flex: 1;
  width: 0;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.projet-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #1c316b;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.projet-carousel-btn:hover {
  background: #1c316b;
}

.projet-carousel-btn:hover svg path {
  stroke: white;
}

.projet-carousel-desktop {
  display: flex;
}

.projet-carousel-mobile {
  display: none;
}

.projet-carousel-mobile-img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.projet-carousel-mobile-img {
  width: 270px;
  height: 161px;
  object-fit: cover;
  border-radius: 4px;
}

.projet-quote-section {
  width: 970px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.projet-quote-inner {
  position: relative;
  border: 1px solid rgba(28, 49, 107, 0.2);
  border-radius: 4px;
  padding: 32px 40px;
  background: rgba(28, 49, 107, 0.03);
}

.projet-quote-inner::before {
  content: "";
  position: absolute;
  left: -57.5px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  width: 115px;
  height: 8px;
  background: #1c316b;
  border-radius: 2px;
}

.projet-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1c316b;
  line-height: 160%;
}

.projet-presse {
  margin: 60px auto;
}

.projet-presse-inner {
  display: flex;
  width: 970px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 51px;
  margin: 0 auto;
}

.projet-presse-lien {
  color: #1c316b;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-decoration: none;
}

.projet-presse-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.projet-presse-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.projet-presse-logo-lien {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.projet-presse-logo-lien:hover {
  opacity: 0.6;
}

.projet-autres {
  width: 1170px;
  margin: 0 auto;
  padding: 60px 0;
  border-top: 1px solid rgba(24, 24, 24, 0.1);
  text-align: center;
}

.projet-autres-titre {
  font-family: "Autography", cursive;
  font-size: 60px;
  font-weight: 400;
  color: #1c316b;
  margin-bottom: 40px;
  line-height: 1.1;
}

.projet-autres-script {
  position: relative;
  z-index: 1;
  font-family: "Autography", cursive;
  font-size: 60px;
  font-weight: 400;
  color: #1c316b;
}

/* Halo bleu lumineux derrière "Réalisations" */
.projet-autres-script-wrap {
  position: relative;
  display: inline-block;
}

.projet-autres-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 160%;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(96, 142, 214, 0.45),
    rgba(96, 142, 214, 0)
  );
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

/* Vignettes "Autres réalisations" — une par sous-projet, centrées */
.projet-autres-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 48px;
}

.projet-autres-vignettes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.projet-autres-vignette {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform 0.25s ease;
}

.projet-autres-vignette:hover {
  transform: translateY(-4px);
}

.projet-autres-vignette-figure {
  display: block;
  width: 360px;
  height: 360px;
  overflow: hidden;
}

.projet-autres-vignette-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.projet-autres-vignette:hover .projet-autres-vignette-img {
  transform: scale(1.04);
}

.projet-autres-vignette-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.projet-autres-vignette-client {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: italic;
  color: #1c316b;
}

/* Modal lightbox */
.projet-modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 80px;
  background: rgba(251, 251, 252, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.projet-modal-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.projet-modal-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.projet-modal-contenu {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 640px;
}

.projet-modal-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.projet-modal-legende {
  text-align: center;
}

.projet-modal-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #1c316b;
  line-height: 1.2;
}

.projet-modal-sous {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: italic;
  color: #1c316b;
  margin-top: 6px;
}

.projet-modal-compteur {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #1c316b;
  letter-spacing: 1px;
  margin-top: 12px;
}

.projet-autres-carousel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.projet-autres-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.2s;
}

.projet-autres-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.projet-autres-grille {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
}

.projet-autres-grille .realisation-card:nth-child(2),
.projet-autres-grille .realisation-card--offset {
  margin-top: 60px;
}

.projet-retour {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1c316b;
  line-height: 160%;
  text-decoration: none;
}

/* Navigation bas de page projet : précédent / retour / suivant */
.projet-nav-bas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 24px 96px;
  box-sizing: border-box;
}

.projet-nav-lien {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1c316b;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.projet-nav-lien:hover {
  color: #1c316b;
}

.projet-nav-retour {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #1c316b;
  text-decoration: none;
  border: 1px solid rgba(28, 49, 107, 0.4);
  border-radius: 4px;
  padding: 14px 28px;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}

.projet-nav-retour:hover {
  background: #1c316b;
  color: #fff;
}

.projet-contact {
  border-top: 1px solid rgba(24, 24, 24, 0.1);
  padding-top: 80px;
}

.projet-contact-titre {
  font-family: "Autography", cursive;
  font-size: 60px;
  font-weight: 400;
  color: #1c316b;
  margin-bottom: 40px;
  line-height: 1.2;
}

.projet-contact-script {
  font-family: "Autography", cursive;
  font-size: 60px;
  font-weight: 400;
  color: #1c316b;
}

/* =====================
   RESPONSIVE PAGES PROJET
===================== */
@media (max-width: 768px) {
  .projet-hero-tags {
    width: 100%;
    padding: 16px 20px 0;
    margin: 0 auto 12px;
    box-sizing: border-box;
    gap: 8px;
  }
  .projet-hero-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .projet-hero {
    width: 100%;
    height: 235px;
    margin: 0;
  }

  .projet-hero-img {
    width: 100%;
    height: 235px;
    object-fit: cover;
  }

  .projet-intro {
    width: 100%;
    padding: 24px 20px 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .projet-intro-gauche {
    display: contents;
  }

  .projet-titre {
    font-size: 40px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -1.2px;
    order: 1;
  }

  .projet-client {
    position: static;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.6px;
    margin-top: 8px;
    display: block;
    order: 2;
    align-self: flex-start;
    text-align: left;
  }

  .projet-description {
    color: #1c316b;
    font-family: "Satoshi", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    order: 3;
    margin-top: 16px;
    max-width: 330px;
  }

  .projet-section {
    width: 100%;
    padding: 0 20px;
    margin-top: 32px;
  }

  .projet-section-inner {
    width: 100%;
    padding: 0;
    gap: 10px;
  }

  .projet-section-titre {
    font-size: 28px;
    font-weight: 400;
    line-height: 110%;
  }

  .projet-section-texte {
    color: #1c316b;
    font-family: "Satoshi", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    max-width: 330px;
  }

  .projet-carousel-section {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 32px;
  }

  .projet-carousel-desktop {
    display: none;
  }

  .projet-carousel-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .projet-carousel-caption {
    font-size: 14px;
    line-height: 170%;
    margin-top: 24px;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .projet-quote-section {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 32px;
  }

  .projet-quote-inner {
    padding: 24px 20px;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .projet-quote-inner::before {
    left: -4px;
    width: 8px;
    height: 60px;
    transform: translateY(-50%);
  }

  .projet-quote {
    font-size: 14px;
    line-height: 170%;
  }

  .projet-presse {
    margin: 40px 0;
  }

  .projet-presse-inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 28px;
    align-items: flex-start;
  }

  .projet-presse-lien {
    font-size: 16px;
  }

  .projet-presse-logos {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .projet-presse-logo-img {
    height: 24px;
  }

  .projet-autres {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .projet-autres-titre {
    font-size: 44px;
  }

  .projet-autres-script {
    font-size: 44px;
  }

  .projet-autres-nav {
    gap: 10px;
    margin-bottom: 36px;
  }

  .projet-autres-vignettes {
    gap: 28px;
  }

  .projet-autres-vignette-figure {
    width: min(260px, 62vw);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .projet-autres-vignette-titre {
    font-size: 20px;
  }

  .projet-modal {
    padding: 16px;
    gap: 8px;
  }

  .projet-modal-close {
    top: 16px;
    right: 16px;
  }

  .projet-modal-contenu {
    max-width: 100%;
  }

  .projet-modal-img {
    max-height: 62vh;
  }

  .projet-modal-arrow {
    position: absolute;
    bottom: 24px;
    z-index: 2;
  }

  .projet-modal-arrow--prev {
    left: 28px;
  }

  .projet-modal-arrow--next {
    right: 28px;
  }

  .projet-autres-carousel {
    gap: 12px;
  }

  .projet-autres-grille {
    flex: 1;
    overflow: hidden;
  }

  .projet-autres-grille .realisation-card:nth-child(2),
  .projet-autres-grille .realisation-card--offset {
    display: none;
  }

  .projet-autres-grille .realisation-card:first-child {
    width: 100%;
    min-width: 100%;
  }

  .projet-autres-grille .realisation-card-figure-lg {
    width: 266px;
    height: 266px;
  }

  .projet-autres-grille .realisation-card-img-lg {
    width: 266px;
    height: 266px;
    object-fit: cover;
  }

  .projet-nav-bas {
    padding: 28px 16px 48px;
    gap: 12px;
  }
  .projet-nav-txt {
    display: none;
  }
  .projet-nav-fleche {
    font-size: 22px;
    color: #1c316b;
  }
  .projet-nav-retour {
    font-size: 13px;
    padding: 12px 16px;
    text-align: center;
  }

  .projet-contact {
    padding: 40px 20px 0;
    box-sizing: border-box;
  }

  .projet-contact-titre {
    font-size: 44px;
    margin-bottom: 24px;
  }

  .projet-contact-script {
    font-size: 44px;
  }
}

/* CTA page réalisations */
.realisation-cta-section {
  padding: 60px 0;
  border-top: 1px solid #e5e5e5;
}

.realisation-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1170px;
  margin: 0 auto;
}

.realisation-cta-texte-wrapper {
  display: flex;
  width: 633px;
  height: 239px;
  flex-direction: column;
  justify-content: center;
}

.realisation-cta-titre {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  color: #1c316b;
  line-height: 50px;
  margin-bottom: 16px;
}

.realisation-cta-texte {
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  font-weight: 400;
  font-style: normal;
  color: #1c316b;
  line-height: 30px;
}

.realisation-cta-btn {
  display: flex;
  width: 368px;
  padding: 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(28, 49, 107, 0.9);
  color: #edf0f5;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.realisation-cta-btn:hover {
  background: #1c316b;
}

.btn-outline {
  display: flex;
  padding: 24px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(28, 49, 107, 0.8);
  background: rgba(237, 240, 245, 0.6);
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline:hover {
  background: #1c316b;
  color: white;
}

.bg-backgroundBody {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-grey {
  --tw-bg-opacity: 1;
  background-color: rgb(237 236 236 / var(--tw-bg-opacity));
}

/* Carousel mobile logos */
.logos-carousel {
  display: none;
}

/* Carousel mobile réalisations */
.realisations-header-mobile {
  display: none;
}
.realisations-carousel {
  display: none;
}
.realisations-filtres-dropdown {
  display: none;
}
.realisations-progress-track {
  display: none;
}

.realisations-progress-track {
  position: relative;
  width: calc(100% - 48px);
  margin: 16px auto 0;
  height: 3px;
  background: #edf0f5;
  border-radius: 2px;
}

.realisations-progress-bar {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  background: #d3d1d1;
  border-radius: 2px;
  transition: left 0.1s ease;
}

/* =====================
   RESPONSIVE MOBILE
===================== */
@media (max-width: 768px) {
  /* NAV */
  .nav-principale {
    padding: 0 24px;
    height: 80px;
  }
  .nav-logo img {
    width: 110px;
    height: auto;
  }

  /* HERO */
  .hero-carousel {
    height: 100svh;
  }
  .hero-carousel-img {
    object-position: left center;
  }
  .section-hero {
    height: 100svh;
  }
  .hero-figure {
    width: 100%;
    height: 100%;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* SAVOIR FAIRE */
  .section-savoir-faire {
    padding: 48px 24px;
  }
  .savoir-faire-container {
    width: 100%;
    gap: 28px;
  }
  .savoir-faire-heading {
    font-size: 52px;
    height: auto;
  }
  .savoir-faire-texte {
    font-size: 16px;
    line-height: 26px;
  }

  /* RÉALISATIONS */
  .section-realisations {
    padding: 40px 0;
  }
  .realisations-header-desktop {
    display: none;
  }

  /* Header mobile */
  .realisations-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    margin-bottom: 24px;
  }
  .realisations-titre-mobile {
    font-size: 52px;
    color: #1c316b;
    line-height: 1;
  }
  .realisations-filtre-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .realisations-filtre-btn img {
    width: 28px;
    height: 28px;
  }

  /* Dropdown filtres mobile */
  .realisations-filtres-dropdown {
    display: flex;
    flex-direction: column;
    padding: 0 24px 20px;
    gap: 12px;
  }
  .realisation-filtre-mobile-item {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1c316b;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 1px solid rgba(24, 24, 24, 0.08);
  }
  .realisation-filtre-mobile-item.actif {
    text-decoration: underline;
  }

  /* Grille desktop cachée, carousel visible */
  .realisations-grille-desktop {
    display: none;
  }
  .realisations-carousel {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }
  .realisations-progress-track {
    display: none;
  }
  .realisation-carousel-card {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    text-decoration: none;
  }
  .realisation-carousel-card .realisation-card-infos {
    width: 100%;
  }
  .realisation-carousel-figure {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin: 0;
  }
  .realisation-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .realisations-cta {
    margin-top: 32px;
    padding: 0 24px;
  }

  /* NOTRE DIFFÉRENCE */
  .section-notre-difference {
    padding: 48px 24px;
  }
  .notre-difference-titre-wrapper {
    width: 100%;
    height: auto;
  }
  .notre-difference-titre {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
  .notre-difference-texte {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
  }
  .notre-difference-signature {
    font-size: 22px;
  }

  /* EXPÉRIENCE */
  .section-experience {
    padding: 48px 0;
  }
  .experience-header {
    flex-direction: column;
    padding: 0 24px;
    gap: 12px;
    margin-bottom: 32px;
  }
  .experience-titre {
    font-size: 52px;
  }
  .experience-subtitle {
    text-align: left;
    max-width: 100%;
    font-size: 14px;
  }
  .experience-liste {
    padding: 0 24px;
  }
  .experience-item-header {
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }
  .experience-item-titre {
    font-size: 28px;
    min-width: unset;
    width: 100%;
  }
  .experience-item-desc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
  }
  .experience-item-desc {
    width: auto;
    flex: 1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .experience-item-arrow {
    flex-shrink: 0;
  }

  /* LOGOS */
  .section-logos {
    padding: 40px 0;
  }
  .logos-grille {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-item {
    min-height: 116px;
    padding: 16px 12px;
  }
  .logo-item-img {
    max-height: 52px;
    max-width: 100%;
  }

  /* FAQ */
  .faq-titre {
    font-size: 24px;
    margin-bottom: 32px;
  }

  /* RÉGION IDF */
  .section-region-idf {
    padding: 40px 24px;
  }
  .region-idf-content {
    width: 100%;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .region-idf-logo {
    width: 100px;
    order: -1;
  }
  .region-idf-texte {
    align-items: center;
  }
  .region-idf-titre {
    font-size: 24px;
  }

  /* CONTACT */
  .section-contact {
    padding: 48px 24px 80px;
  }
  .contact-titre {
    font-size: 52px;
    margin-bottom: 40px;
  }
  .contact-form {
    width: 100%;
  }
  .contact-page-section {
    padding: 0 24px 80px;
  }
  .contact-page-section .contact-form {
    width: 100%;
  }

  /* BTN */
  .btn-outline {
    padding: 18px 24px;
    font-size: 13px;
  }

  /* PAGE RÉALISATIONS */
  .section-realisations.page-realisations {
    padding-top: 48px;
  }
  .realisations-grille-2col {
    display: none;
  }
  .realisation-cta-section {
    padding: 48px 24px;
  }
  .realisation-cta-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }
  .realisation-cta-texte-wrapper {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .realisation-cta-titre {
    font-size: 24px;
    line-height: 36px;
  }
  .realisation-cta-texte {
    font-size: 16px;
    line-height: 26px;
  }
  .realisation-cta-btn {
    width: 100%;
    padding: 20px;
    font-size: 14px;
  }

  /* PAGE NOTRE ATELIER */
  .agence-hero-section {
    padding: 48px 24px 32px;
  }
  .agence-hero-titre {
    font-size: 72px;
  }
  .agence-hero-agence {
    font-size: 72px;
  }
  .agence-savoir-section {
    width: 100%;
    padding: 40px 24px;
  }
  .agence-savoir-texte {
    font-size: 20px;
    line-height: 34px;
  }
  .agence-image-section {
    width: 100%;
    padding: 0 24px;
  }
  .agence-image-figure {
    width: 100%;
    height: 240px;
  }
  .agence-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .agence-services-section {
    width: 100%;
    padding: 0 24px;
  }
  .agence-service-item {
    flex-direction: column;
    gap: 12px;
    padding: 28px 0;
  }
  .agence-service-titre {
    font-size: 38px;
    min-width: unset;
    width: 100%;
  }
  .agence-service-ligne[style] {
    margin-left: 0 !important;
  }
  .agence-service-desc {
    font-size: 15px;
    width: 100%;
  }

  /* PAGE NOTRE AGENCE responsive complet */
  .agence-hero-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0;
  }
  .agence-hero-agence-wrapper {
    margin-left: 0;
    align-self: flex-end;
    margin-right: 8px;
  }
  .agence-hero-gradient {
    width: 150px;
    height: 150px;
  }
  .agence-phrase-section {
    width: 100%;
    padding: 0 24px;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
  }
  .agence-phrase-texte {
    font-size: 20px;
  }
  .agence-stats-section {
    width: 100%;
    padding: 0 24px 40px;
    box-sizing: border-box;
  }
  .agence-stats-liste {
    flex-direction: column;
    gap: 24px;
  }
  .agence-stat-number {
    font-size: 64px;
  }
  .agence-stat-label {
    font-size: 20px;
  }
  .agence-stat-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .agence-texte-section {
    width: 100%;
    padding: 0 24px 40px;
    box-sizing: border-box;
  }
  .agence-texte-presentation {
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    padding-top: 40px;
  }
  .agence-force-section {
    width: 100%;
    flex-direction: column;
    padding: 0 24px 40px;
    box-sizing: border-box;
    gap: 32px;
  }
  .agence-force-figure {
    width: 100%;
    height: 280px;
  }
  .agence-force-titre {
    font-size: 48px;
  }
  .agence-force-titre-script {
    font-size: 48px;
    margin-left: 40px;
  }
  .agence-force-intro,
  .agence-force-texte {
    font-size: 16px;
  }
  .agence-excellence-section {
    width: 100%;
    padding: 60px 24px 40px;
    box-sizing: border-box;
  }
  .agence-excellence-titre {
    font-size: 56px;
  }
  .agence-excellence-script {
    font-size: 56px;
  }
  .agence-excellence-label {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .agence-excellence-ligne {
    width: 40px;
  }
  .agence-avantages-section {
    width: 100%;
    padding: 0 24px 40px;
    box-sizing: border-box;
  }
  .agence-avantages-grille {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .agence-avantage-card {
    padding: 32px 24px;
  }
  .agence-avantage-titre {
    font-size: 24px;
  }
  .agence-avantage-desc {
    font-size: 16px;
    width: 100%;
  }
  .agence-cta-btn {
    width: 100%;
    max-width: 320px;
  }
  .agence-cta-section {
    padding: 40px 24px;
    box-sizing: border-box;
  }
  .agence-cta-titre-script {
    font-size: 40px;
  }

  /* Collage atelier → empilement vertical */
  .atelier-humaine-section {
    width: 100%;
    padding: 48px 24px;
  }
  .atelier-humaine-titre {
    font-size: 52px;
  }
  .atelier-humaine-script {
    font-size: 52px;
  }
  .atelier-collage {
    width: 100%;
    height: 0;
    padding-bottom: 73.5%;
  }
  .atelier-collage-haut-gauche {
    left: 4%;
    top: 3%;
    width: 31%;
    height: 33%;
  }
  .atelier-collage-gauche {
    left: 8%;
    top: 40%;
    width: 27%;
    height: 50%;
  }
  .atelier-collage-centre {
    left: 29%;
    top: 18%;
    width: 28%;
    height: 44%;
  }
  .atelier-collage-haut-droite {
    left: 62%;
    top: 0;
    width: 33%;
    height: 52%;
  }
  .atelier-collage-bas-droite {
    left: 48%;
    top: 54%;
    width: 37%;
    height: 40%;
  }
  .atelier-collage-texte {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
  }

  /* Savoir-faire français */
  .atelier-savoir-section {
    width: 100%;
    padding: 48px 24px;
  }
  .atelier-savoir-titre {
    font-size: 58px;
  }
  .atelier-savoir-script-wrapper {
    margin-left: 40px;
  }
  .atelier-savoir-script {
    font-size: 58px;
  }
  .atelier-savoir-grille {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .atelier-humaine-sous-titre {
    font-size: 12px;
  }
  .atelier-humaine-label {
    font-size: 18px;
  }
  .atelier-humaine-desc {
    font-size: 13px;
  }
  .atelier-humaine-texte-section {
    width: 100%;
    padding: 60px 24px;
  }
  .atelier-humaine-texte {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
  }

  /* Page Notre atelier — mobile : section étapes
     (réduire les titres + espacer sous la section) */
  .atelier-etapes {
    margin-bottom: 48px;
  }
  /* Texte de la section suivante (équipe) centré */
  .atelier-equipe-texte {
    text-align: center;
  }
  /* Section savoir-faire : cartes centrées */
  .atelier-savoir-grille .agence-avantage-card {
    align-items: center;
    text-align: center;
  }

  /* Avantage cards */
  .agence-avantage-card {
    width: 100%;
  }
  .agence-avantage-titre {
    font-size: 16px;
  }

  /* CTA */
  .agence-cta-section {
    padding: 48px 24px;
  }
  .agence-cta-titre-script {
    font-size: 52px;
  }
  .agence-cta-btn {
    width: 100%;
    padding: 20px;
    font-size: 14px;
  }
}

/* ===== Sélecteur de langue FR / EN ===== */
.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-switcher--header {
  gap: 10px;
  margin-left: 8px;
}

.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #1c316b;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.lang-option:hover {
  opacity: 0.75;
}

.lang-option--actif {
  opacity: 1;
}

.lang-flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(28, 49, 107, 0.12);
}

.lang-code {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Bloc langue en bas du menu mobile */
.menu-mobile-lang {
  margin-top: auto;
  padding-top: 40px;
}

.lang-switcher--mobile {
  gap: 22px;
}

.lang-switcher--mobile .lang-flag {
  width: 34px;
  height: 23px;
  border-radius: 3px;
}

.lang-switcher--mobile .lang-code {
  font-size: 20px;
}

/* =====================
   Titres signature : léger contour
===================== */
.savoir-faire-title,
.hero-home-titre,
.agence-force-titre-script,
.agence-excellence-script,
.atelier-humaine-script,
.atelier-savoir-script,
.agence-cta-titre-script,
.projet-autres-script,
.projet-contact-script {
  -webkit-text-stroke: 0.7px currentColor;
}

/* =====================
   Réduction des tailles de texte — DESKTOP uniquement
   (mobile < 769px inchangé)
===================== */
@media (min-width: 769px) {
  /* Texte général : 23px -> 19px */
  .savoir-faire-texte,
  .notre-difference-texte,
  .agence-savoir-texte,
  .realisation-cta-texte {
    font-size: 19px;
  }

  /* Texte général : 19px -> 16px */
  .accordion-item .accordion-body,
  .agence-service-desc,
  .agence-avantage-desc {
    font-size: 16px;
  }

  /* Cards : 30px -> 22px */
  .realisation-card-titre {
    font-size: 22px;
  }

  /* Cards : 18px -> 16px */
  .realisation-card-client {
    font-size: 16px;
  }
}

/* =====================
   Champ intérêts : dropdown mobile (select multi-checkbox)
===================== */
.interets-select {
  display: none;
  position: relative;
}

.interets-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: #edf0f5;
  border: 1px solid rgba(24, 24, 24, 0.1);
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.interets-select-value {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.interets-select-chevron {
  flex-shrink: 0;
  color: #1c316b;
  transition: transform 0.2s;
}

.interets-select.open .interets-select-chevron {
  transform: rotate(180deg);
}

.interets-select-panel {
  border: 1px solid rgba(24, 24, 24, 0.1);
  border-top: none;
  background: #fff;
}

.interets-select-option {
  width: 100%;
  display: block;
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(24, 24, 24, 0.06);
  color: #1c316b;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.interets-select-option:last-child {
  border-bottom: none;
}

.interets-select-option.actif {
  background: #1c316b;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-interets {
    display: none;
  }
  .interets-select {
    display: block;
  }
}

/* =====================
   Page Notre agence : section expertises (Design / Branding…)
===================== */
.agence-services-section:not(.atelier-etapes) .agence-service-item {
  background: #fff;
}
.agence-services-section .agence-service-titre {
  text-transform: none;
}
@media (min-width: 769px) {
  .agence-services-section .agence-service-titre {
    font-size: 52px;
  }
}

/* =====================
   Page Notre agence — mobile : centrer les textes (hors expertises)
   + remettre "force" sous "Notre"
===================== */
@media (max-width: 768px) {
  .page-agence .agence-phrase-texte,
  .page-agence .agence-texte-presentation,
  .page-agence .agence-texte-complement,
  .page-agence .agence-savoir-texte,
  .page-agence .agence-force-intro,
  .page-agence .agence-force-texte,
  .page-agence .agence-excellence-section,
  .page-agence .agence-excellence-desc {
    text-align: center;
  }
  .page-agence .agence-force-contenu {
    align-items: center;
    text-align: center;
  }
  .page-agence .agence-force-titre-script {
    margin-left: 0;
    margin-top: 0;
  }
}

/* Page Notre agence — mobile : réduire les textes principaux
   (hors section Excellence et hors tableau expertises) */
@media (max-width: 768px) {
  .page-agence .agence-texte-presentation,
  .page-agence .agence-texte-complement,
  .page-agence .agence-savoir-texte,
  .page-agence .agence-force-intro,
  .page-agence .agence-force-texte {
    font-size: 16px;
  }
}

/* Retour à la ligne réservé au desktop */
@media (max-width: 768px) {
  .br-desktop {
    display: none;
  }
}
