/* ========================================
   VARIABLES GLOBALES
   ======================================== */

:root {
  --color-white: #ffffff;
  --color-off-white: #f3f4f5;
  --color-light-grey: #e7e6e9;
  --color-grey-light: #ccced0;
  --color-grey-medium: #66696d;
  --color-grey-dark: #43484e;
  --color-black: #171717;
  --color-real-black: #000000;
  --color-dark-green: #052625;
  --color-accent: #d7f188;

  --font-mohio: 'Mohio', serif;
  --font-silka: 'Silka', sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-bounce: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ========================================
   FONTS
   ======================================== */

@font-face {
  font-family: 'Mohio';
  src: url('../assets/fonts/Mohio-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Silka';
  src: url('../assets/fonts/silka-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Silka';
  src: url('../assets/fonts/silka-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   RESET
   ======================================== */

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

body {
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    }
html {overflow-x: clip;}

body.no-scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

/* ========================================
   TYPOGRAPHIE GLOBALE
   ======================================== */

h1 {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 68px);
  line-height: 1.05;
  color: var(--color-black);
}

h2 {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 68px);
  line-height: 1.05;
  color: var(--color-black);
}

h3 {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.3;
  color: var(--color-black);
}

p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.3;
  color: var(--color-black);
}

/* ========================================
   BOUTONS GLOBAUX (underline animé)
   ======================================== */

.btn-underline {
  position: relative;
  display: inline-block;
  font-family: var(--font-silka);
  font-weight: 500;
  width:fit-content;
  font-size: clamp(14px, 1.25vw, 16px);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: none;
}

.btn-underline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(0);
  transition: transform 0.35s var(--ease-smooth);
}

.btn-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(calc(-100% - 20px));
  transition: transform 0.35s var(--ease-smooth) 0.1s;
}

.btn-underline:hover::before {
  transform: translateX(calc(100% + 20px));
  transition: transform 0.35s var(--ease-smooth);
}

.btn-underline:hover::after {
  transform: translateX(0);
}

/* ========================================
   TAMPONS — Styles globaux
   ======================================== */

.tampon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-silka);
  font-weight: 400;
  color: var(--color-black);
  border-color: var(--color-black);
  transform: rotate(-30deg);
  transition: transform 0.8s var(--ease-bounce);
  will-change: transform;
}

.tampon-sticky {
  width: 100%;
  height: 0;
  z-index: 10;
  pointer-events: none;
}

.tampon-sticky .tampon { pointer-events: auto; }

.tampon-circle {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: clamp(10px, 0.65vw, 12px);
  line-height: 1.15;
  padding: 10px;
  position: absolute;
  z-index: 2;
  transform-origin: center;
}

.tampon-square {
  width: 125px;
  height: 125px;
  border: 1px solid currentColor;
  font-size: clamp(10px, 0.65vw, 12px);
  line-height: 1.15;
  padding: 8px;
  position: absolute;
  z-index: 2;
}

.tampon.is-fixed {
  z-index: 100;
  color: var(--color-white);
  mix-blend-mode: difference;
}

.tampon.bounce {
  animation: tamponBounce 1.8s forwards;
  transition: none;
}

@keyframes tamponBounce {
  0%   { transform: translateY(0)    rotate(var(--circle-rot, -30deg)); animation-timing-function: ease-out; }
  20%  { transform: translateY(40px) rotate(var(--circle-rot, -30deg)); animation-timing-function: ease-in; }
  42%  { transform: translateY(0)    rotate(var(--circle-rot, -30deg)); animation-timing-function: ease-out; }
  60%  { transform: translateY(14px) rotate(var(--circle-rot, -30deg)); animation-timing-function: ease-in; }
  76%  { transform: translateY(0)    rotate(var(--circle-rot, -30deg)); animation-timing-function: ease-out; }
  88%  { transform: translateY(3px)  rotate(var(--circle-rot, -30deg)); animation-timing-function: ease-in; }
  100% { transform: translateY(0) rotate(var(--circle-rot, -30deg)); }
}

.tampon-square.bounce {
  animation: tamponBounceSquare 1.8s forwards;
}

@keyframes tamponBounceSquare {
  0%   { transform: translateY(0)    rotate(var(--sq-rot, -30deg)); animation-timing-function: ease-out; }
  20%  { transform: translateY(40px) rotate(var(--sq-rot, -30deg)); animation-timing-function: ease-in; }
  42%  { transform: translateY(0)    rotate(var(--sq-rot, -30deg)); animation-timing-function: ease-out; }
  60%  { transform: translateY(14px) rotate(var(--sq-rot, -30deg)); animation-timing-function: ease-in; }
  76%  { transform: translateY(0)    rotate(var(--sq-rot, -30deg)); animation-timing-function: ease-out; }
  88%  { transform: translateY(3px)  rotate(var(--sq-rot, -30deg)); animation-timing-function: ease-in; }
  100% { transform: translateY(0) rotate(var(--sq-rot, -30deg)); }
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 35px;
  height: 35px;
  background: var(--color-off-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.scroll-top:hover {
  transform: scale(1.2);
  opacity:1;
}

.scroll-top.is-visible {
  opacity: 0.85;
  visibility: visible;
}

.scroll-top img {
  width: 41px;
  height: 41px;
  }
/* ========================================
   PAGE 404
   ======================================== */

.section-404 {
  display:flex;
  max-height:100vh;
  overflow:hidden;
  position:relative;
}

.col-404-left {
  width: 50%;
  position:relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items:flex-start;
  padding-left: 0;
  padding-bottom:0;

}

.titre-404 {
  font-family: var(--font-mohio);
  font-size: clamp(150px, 25vw, 500px);
  line-height: 0.85;
  margin-left:-20px;
  color: var(--color-black);
}

.btn-404 {margin-top:48px;
  margin-left:48px;
  color: var(--color-black);
}

.easter-egg-player {
  background: none;
  position:absolute;
  top:30px;
  z-index:5;
  right:30px;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 60px;
  height: 60px;
  transition: opacity 0.2s ease;
}

.easter-egg-player:hover {
  opacity: 0.6;
}

.music-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.music-stop {
  opacity: 0;
  transform: scale(0.8);
}

.easter-egg-player.is-playing .music-play,
.music-hit.is-playing .music-play {
  opacity: 0;
  transform: scale(0.8);
}

.easter-egg-player.is-playing .music-stop,
.music-hit.is-playing .music-stop {
  opacity: 1;
  transform: scale(1);
}

.col-404-right {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.desole-flow {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 76px);
  color: var(--color-black);
  transform: rotate(-10deg);
  transform-origin: top left;
  padding-top: 48px;
  padding-left: 25%;
  white-space: nowrap;
}

.desole-flow p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height:1.05;
}

@media (max-width: 768px) {
  .section-404 {
    flex-direction: column;
    padding: 48px 0 0;
    gap: 0;
    height:120vh;
  overflow:hidden}
  
  .btn-404 {margin-left:24px; margin-right:auto;margin-top:0; margin-bottom:48px;}

  .col-404-left {
    width: 100%;
    display:flex;
    align-items:center;
    padding-left: 0;
  }

  .col-404-right {
    width: 100%;
    height: 70vh;
    padding-top:48px;
    overflow-x:clip;
    overflow-y:visible;
  }
  .desole-flow {
    padding-left:0;
    font-size:5vh}

  .titre-404 {
    margin-bottom: 24px;
  }
}
/* ========================================
  ACCUEIL
   ======================================== */

.hero-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px 48px;
  background: transparent;
  z-index: 1200;
}

.hero-header .logo {
  text-decoration: none;
  display: inline-flex;
  font-family: var(--font-mohio);
  font-size: clamp(36px, 2vw, 35px);
  color: var(--color-white);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 10px;
}

.hero-header .logo-letter {
  display: inline-block;
  transition: margin-right 0.5s var(--ease-smooth);
  margin-right: 0;
}

.hero-header .logo:hover .logo-letter[data-letter="m"] { margin-right: 20px; }
.hero-header .logo:hover .logo-letter[data-letter="ō"] { margin-right: 60px; }
.hero-header .logo:hover .logo-letter[data-letter="h"] { margin-right: 0; }
.hero-header .logo:hover .logo-letter[data-letter="i"] { margin-right: 90px; }

.hero-header .nav-desktop {
  display: flex;
  align-items: center;
  gap: 3vw;
}

.hero-header .nav-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 16px);;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.hero-header .nav-link-inner { display: block; position: relative; }
.hero-header .nav-link-text { display: block; }

.hero-header .nav-link-text span {
  display: inline-block;
  transition: transform 0.35s var(--ease-smooth);
}

.hero-header .nav-link:hover .nav-link-text--top span { transform: translateY(-100%); }
.hero-header .nav-link-text--bottom { position: absolute; top: 0; left: 0; }
.hero-header .nav-link-text--bottom span { transform: translateY(100%); }
.hero-header .nav-link:hover .nav-link-text--bottom span { transform: translateY(0); }

.hero-header .burger {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.hero-header .burger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.4s var(--ease-smooth);
}
.hero-header .burger.is-active .burger-line {
  background: var(--color-white)!important;
}

.hero-header .burger-line:nth-child(1) { top: 0; }
.hero-header .burger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hero-header .burger-line:nth-child(3) { bottom: 0; }

.hero-header .burger.is-active .burger-line:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hero-header .burger.is-active .burger-line:nth-child(2) { opacity: 0; }
.hero-header .burger.is-active .burger-line:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  visibility: hidden;
  overflow: hidden;
  transition: transform 0.5s var(--ease-smooth), visibility 0.5s;
  z-index: 1050;
}

.nav-mobile.is-open {
  transform: translateX(0);
  visibility: visible;
}
.burger.is-active .burger-line {
  background: var(--color-white);
}

.nav-mobile .nav-mobile-link {
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-mobile.is-open .nav-mobile-link { opacity: 1; transform: translateX(0); }
.nav-mobile.is-open .nav-mobile-link:nth-child(1) { transition-delay: 0.15s; }
.nav-mobile.is-open .nav-mobile-link:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.is-open .nav-mobile-link:nth-child(3) { transition-delay: 0.25s; }
.nav-mobile.is-open .nav-mobile-link:nth-child(4) { transition-delay: 0.3s; }
.nav-mobile.is-open .nav-mobile-link:nth-child(5) { transition-delay: 0.35s; }

.hero {
  background-color: var(--color-real-black);
  padding-bottom: 80px;
}

.hero-content { padding: 150px 58px 0; }

 .hero-title{
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--color-grey-light);
  width: 100%;
  margin-bottom: 24px;
}
.hero-title span {
  font-family:Mohio;
}

.hero-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.hero-subtitle { color: var(--color-white); width: 90%;font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 70px);
  line-height: 1.05; }
.hero-btn   { color: var(--color-white); flex-shrink: 0; }

.video-section {
  background: linear-gradient(to bottom, var(--color-real-black) 50%, var(--color-white) 50%);
  padding: 0 58px;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--color-black);
}

.video-container iframe {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  border: none;
  pointer-events: none;
}

.video-container.is-playing iframe { pointer-events: auto; }

.video-controls {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.video-playpause,
.video-mute {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.video-mute {
  color: var(--color-white);
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(12px, 1vw, 14px);
}

.mute-label { opacity: 1; transition: opacity 0.3s ease; }
.video-mute.is-unmuted .mute-label { opacity: 0; }
.mute-cross-1, .mute-cross-2 { transition: opacity 0.3s ease; }
.video-mute.is-unmuted .mute-cross-1,
.video-mute.is-unmuted .mute-cross-2 { opacity: 0; }

.about {
  background-color: var(--color-white);
  padding: 72px 0 0 58px; overflow:hidden;
}

.about-columns { display: flex; position: relative;}

.about-left {
  width: 50%;
  padding-top: 600px;
  padding-right: 48px;
  padding-bottom: 100px;
}

.about-text { columns: 2; column-gap: 32px; }
.about-text p { margin: 0; break-inside: avoid; }

.about-btn { color: var(--color-black); margin-top: 40px; }

.about-photo-wrapper { position: relative; margin-top: 0; padding-top: 65px; }
.about-photo { width: 100%;margin-top: 85px; display: block;aspect-ratio:1/1;object-fit:cover;object-position:center 80%; }
.about-icon { width: 76px; height: auto; margin-left: -12px; }

.about-right { width: 50%; position: relative; padding-left: 44px;overflow-x:clip}
.about-avion { position: absolute; top: 275px; left: 0; width:65px;height:auto; }

.about-welcome-clip { width: 100%; }

.about-welcome {
  font-family: Mohio;
  font-weight: 400;
  font-size: clamp(36px, 3.7vw, 60px);
  color: var(--color-black);
  transform: rotate(5deg);
  transform-origin: bottom left;
  padding-top: 100px;
  padding-left: 24px;
  white-space: nowrap;
}

.about-welcome p {margin: 0; font-family: inherit; line-height: 1.05; font-size: inherit;}

.tampon-tour { top: 0; left: 20%; }
.tampon-tour span {transform:rotate(40deg)}
.tampon-gap  { top: 0; left: 15%; }

.expertise {
  background-color: var(--color-white);
  padding: 120px 0;
}

.expertise-wrapper { width: 100%; }

.expertise-title-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  column-gap: 32px;
  margin-bottom: 64px;
  padding-left: 20%;
}

.expertise-title { grid-column: 2; margin: 0; }

.expertise-content { position: relative; width: 100%; padding: 0 0 0 20%; }

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  column-gap: 32px;
  row-gap: 24px;
}

.tampon-sticky-circle {
  position: absolute;
  top: 0;
  left: 0;
  height: 132.52px;
  z-index: 2;
}

.tampon-breizh { position: relative; }

.expertise-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: auto;
  z-index: 2;
}
.xpt-item {margin-top:24px}
.expertise-btn {width:fit-content;color: var(--color-black);}

.expertise-item h3 { margin-top: 0; margin-bottom: 12px; }
.expertise-item p  { font-size:clamp(14px, 1.25vw, 16px); line-height: 1.2; margin: 0; }

.realisations {
  background-color: var(--color-dark-green);
  padding: 48px 0 144px 48px;
  position: relative;
}

.real-conteneur {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 80px 0 60px 0;
  padding: 78px 0 10px 24%;
}

  .fierte {
  color: var(--color-white);
  white-space: nowrap;
  padding-bottom: 20px;
  overflow-y: hidden;
}

.explosion {
  position: absolute;
  bottom: 0;
  left: 44%;
  width: 45px;
  height: auto;
  z-index: 2;
}

.paint {
  position: absolute;
  bottom: 8px;
  left: 8%;
  width: 65px;
  height: auto;
  z-index: 2;
  transform: rotate(10deg);
}

.tampon-ogm {
  color: var(--color-white);
  border-color: var(--color-white);
  top: 0;
  left: 55%;
}

.tampon-bestof {
  color: var(--color-white);
  border-color: var(--color-white);
  top: -60px;
  right: 60px;
}

.projets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 144px 20px;
  padding-right: 0;
  margin-bottom: 144px;
  align-items:start;
}
.home-real {padding-right:48px;}

.projet-3 { grid-column: span 2; }
.projet-4 { grid-column: span 2; }

.projet {
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.projet img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 10px;
}

.projet-6 img { aspect-ratio: 4/3; }

.projet video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 10px;
}

.projet-6 video { aspect-ratio: 3/6; }

.projet h3 {
  position: relative;
  display: inline;
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(14px, 1.25vw, 16px);
}

.projet p {
  color: var(--color-grey-light);
  font-size: clamp(14px, 1.25vw, 16px);
  opacity:70%;
}

.projet-video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-black);
  margin-bottom: 10px;
}

.projet-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-bottom:0;
}

.projet::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.projet-6::after { aspect-ratio: 4/3; }
.projet:hover::after { opacity: 1; }

.projet h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.6s var(--ease-smooth);
}

.projet:hover h3::after { width: 100%; }

@media (max-width: 768px) {

  .realisations {
    padding: 48px 24px 96px;
  }
  .real-conteneur {
    padding: 0;
    margin: 48px 0 32px;
  }
  .fierte {
    font-size: clamp(28px, 8vw, 48px);
    white-space: normal;
    word-break: break-word;
  }
  .explosion,
  .paint {
    display: none;
  }
  .projets {
    grid-template-columns: 1fr;
    gap: 48px 0;
    padding: 0;
    margin-bottom: 80px;
  }
  .projet-3,
  .projet-4,
  .projet-span2 {
    grid-column: span 1;
  }
  .projet-6 img,
  .projet-6 video,
  .projet-6::after {
    aspect-ratio: 4/3;
  }

  .projet-nom {
    width: 100%;
    padding-bottom: 32px;
  }
  .rainbow {
    display: none;
  }
}

.real-btn-wrapper {
  text-align: center;
  padding-right: 48px;
  margin-top: 80px;
}

.real-btn { color: var(--color-white); }

.nettoyer-btn {
  display: block;
  margin: 0 auto;
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 12px);
  color: var(--color-white);
  mix-blend-mode: difference;
  cursor: pointer;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 750;
  padding: 0 0 4px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-white);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.nettoyer-btn.is-visible { opacity: 1; pointer-events: auto; }
.nettoyer-btn:hover { opacity: 0.6; }

.tampon.is-cleaning {
  animation: tamponClean 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transition: none;
}

@keyframes tamponClean {
  0%   { transform: translateY(0); opacity: 1; }
  25%  { transform: translateY(50px); opacity: 1; }
  100% { transform: translateY(-120vh); opacity: 0; }
}

.preuve {
  width: 100%;
  padding: 160px 48px 200px 48px;
}

.preuve-img img {
  width: 35%;
  height: auto;
  display: block;
  margin-left: auto;
  padding-top: 40px;
}

.preuve-titre-wrapper { position: relative; width: fit-content; }
.preuve h2 { margin-bottom: 96px; }
.photo-team { margin-top: 20px;aspect-ratio:1/1; object-fit:cover }

.explo {
  position: absolute;
  display:block;
  fill:black;
  top: 58%;
  left: 4%;
  width: 55px;
  height: 55px;
  z-index: 2;
  transform: rotate(10deg) translateY(-50%);
}

.preuve-texte {
  width: 50%;
  padding-right: 48px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 60px;
}

.preuve-card {
  display: flex;
  flex-direction: column;
}

.preuve-chiffre {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: 29px;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 8px;
}

.preuve-desc {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.5;
  color: var(--color-grey-dark);
}
.preuve-btn {color: var(--color-black); width:fit-content}

.tampon-team { right: 20%; --sq-rot: 45deg; transform: rotate(var(--sq-rot)); }
.tampon-temps { top: -39%; left: 42%; --circle-rot: 50deg; transform: rotate(var(--circle-rot)); }

.fame {
  background: var(--color-dark-green);
  padding: 200px 48px 96px 96px;
  display: flex;
  align-items: flex-start;
  gap: 96px;
  position: relative;
}

.conteneur-table {
  position: relative;
  flex: 1;
  padding-right: 48px;
}

.titre-fame {
  position: sticky;
  top: 96px;
  flex-shrink: 0;
}

.titre-fame h2 {
  color: var(--color-white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.logo-table {
  display: grid;
  padding-top: 150px;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 3vw, 48px) clamp(24px, 2vw, 48px);
  flex: 1;
}

.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1vw, 24px);
}

.logo-cell img {
  width: 100%;
  max-width: clamp(80px, 7vw, 160px);
  max-height: clamp(40px, 5vw, 80px);
  object-fit: contain;
}

.bookmark {
  position: absolute;
  top: 70%;
  right: 32px;
  width: 40px;
  height: auto;
  z-index: 2;
  transform: rotate(10deg) translateY(-50%);
}

.tampon-creme {
  left: 60px;
  top: 0;
  color: var(--color-white);
  --circle-rot: 33deg;
  transform: rotate(var(--circle-rot));
}

.section-blog {
  background-color: var(--color-accent);
  min-height: 100vh;
  padding: 200px 48px;
  position: relative;
}

.blog-titre-wrapper {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 17%;
  padding-bottom: 100px;
}
.titre-blog.strategie {
  max-width:85%;
}
.strategie.blog-btn {width:fit-content}

.tampon-essence {
  top:50%;
  right:10%
}

.tampon-essence span {transform:rotate(40deg)}

.bombe {
  position: absolute;
  bottom: 40%;
  left: 13.3%;
  width: 60px;
  height: auto;
  z-index: 2;
  transform: rotate(124.74deg) translateY(-50%);
}

.blog-btn { color: var(--color-black); }

.tampon-matiere {
  bottom: 0;
  right: 0;
  --circle-rot: -45deg;
  transform: rotate(var(--circle-rot));
  transform-origin: center;
}

.blog-articles {
  width: 75%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.blog-card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.blog-card-img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: luminosity;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.blog-card:hover .blog-card-img::after { opacity: 1; }

.blog-card-cat {
  font-family: var(--font-silka);
  font-weight: 200;
  font-size: clamp(10px, 0.9vw, 13px);
  color: var(--color-grey-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin:16px 0 8px;
}

.blog-card-title {
  font-family: var(--font-silka);
  font-weight: 600;
  font-size: clamp(15px, 1.25vw, 16px);
  line-height: 1.15;
  color: var(--color-black);
  margin-bottom: 8px;
  position: relative;
  display: inline;
}

.blog-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-black);
  transition: width 0.6s var(--ease-smooth);
}

.blog-card:hover .blog-card-title::after { width: 100%; }

.blog-card-extrait {
  font-size: clamp(14px, 1.25vw, 16px);
  color: var(--color-dark-green);
  line-height: 1.4;
  margin-top: 8px;
}

#footer-container {overflow:hidden}

.site-footer {
  position:relative;
  background-color: var(--color-real-black);
  min-height: 100vh;
  padding: 200px 48px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-X:hidden;

}

.footer-logo {
  font-family: var(--font-mohio);
  font-size: clamp(60px, 15vw, 300px);
  display: flex;
  justify-content: space-between;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 48px;
}
.logo-footer {color: var(--color-white)}

.fl { display: inline-block; margin-left: -12px; }
.fl-m  { margin-right: 0.5em; }
.fl-o  { margin-right: 0.2em; }
.fl-h  { margin-right: 1em; }
.fl-i  { margin-right: 0.6em; }
.fl-o2 { margin-right: 0; }

.footer-desc {
  color: var(--color-grey-light);
  max-width: 50%;
  line-height: 1.5;
  margin-bottom: 64px;
}
.footer-desc a {
    text-decoration:none;
    color: var(--color-grey-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.tampon-sticky.tampon-footer {position:absolute;}
.tampon-horaire {color: var(--color-white);right:15%; --sq-rot: 35deg; transform: rotate(var(--sq-rot)) }
.tampon-horaire span {transform: rotate(-45deg)}

.footer-col p,
.footer-col a {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(12px, 2vw, 16px);
  color: var(--color-white);
  text-decoration: none;
  line-height: 1;
  display: block;
}

.footer-col a { margin-bottom: 6px;}
.footer-col a:hover { color: var(--color-white); }

.navigation a {
  text-decoration: none !important;
  font-weight: 400 !important;
}
.footer-col.navigation a {
  position: relative;
  width: fit-content;
}
.footer-col.navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.35s var(--ease-smooth);
}
.footer-col.navigation a:hover::after {
  width: 100%;
}


.footer-legal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
}

.footer-legal a,
.footer-legal span {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(10px, 0.85vw, 13px);
  color: var(--color-grey-light);
  text-decoration: none;
  justify-self: start;
}

.footer-legal a:hover { color: var(--color-white); }

@media (max-width: 1200px) {
  .fame { padding: 72px 48px; gap: 64px; }
  .logo-table { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .hero-header { padding: 20px 32px; }
  .hero-content { padding: 60px 32px 0; }
  .video-section { padding: 0 32px; }
  .about { padding: 48px 0 0 32px; }
  .about-left { padding-top: 400px; }
}

@media (max-width: 900px) {
  .fame { padding: 64px 32px; gap: 48px; }
  .logo-table { grid-template-columns: repeat(3, 1fr); }
  .logo-cell img { max-width: 120px; max-height: 60px; }
  .footer-desc { max-width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-legal { grid-template-columns: repeat(3, 1fr); text-align: center; }
}

@media (max-width: 768px) {
  .tampon-sticky {display:none;}
  .tampon-circle { display:none; }
  .tampon-square {display:none;}
  .nettoyer-btn {display:none;}
  .hero-header { padding: 20px 24px; }
  .hero-header .nav-desktop { display: none; }
  .hero-header .burger { display: block; }
  .hero-content { padding: 48px 24px 0; }
  .hero-main { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-title { width: 100%; }
  .video-section { padding: 0 24px; }
  .about { padding: 32px 0 0 24px; }
  .about-columns { flex-direction: column; }
  .about-left { width: 100%; padding-top: 48px; padding-right: 24px; padding-bottom:0; }
  .about-photo-wrapper {padding-top:0;}
  .about-text { columns: 1; }
  .about-right { display:none; }
  .explosion {bottom:25px;left:80%;}
  .expertise {padding-top:48px;}
  .expertise-title-grid,
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-title { grid-column: 1; }
  .tampon-sticky-circle,
  .expertise-icon { display: none; }
  h2.fierte {
    font-size: clamp(28px, 8vw, 48px);
    word-break: break-word;white-space:normal;}
    .real-conteneur {padding-left:0;}
  .projets {
    grid-template-columns: 1fr;
    gap: 48px 0;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 80px;
  }
  .real-btn-wrapper {padding-right:0;}
  .projet-3,
  .projet-4 {
    grid-column: span 1;
  }

  .projet-6 img,
  .projet-6 video,
  .projet-6::after {
    aspect-ratio: 4/3;
  }
  .expertise-title-grid {padding:0 48px;}
  .expertise-content {padding:0 48px;}
  .expertise-grid {grid-template-columns:repeat(2, 1fr)}
  .preuve {padding-top:100px}
  .preuve-texte {width:100%;}
  .preuve-img img {width:100%;margin-bottom:48px;}
  .explo {top:105%;left:55%;}
  .conteneur-table {padding-right:0}
  .bookmark {top:10%;right:0;transform: rotate(20deg);}
  .cell-singuliere {display:none;}
  .fame {overflow-X:hidden;}
  .blog-articles {width:100%; grid-template-columns:1fr;}
  .section-blog {padding:75px 48px}
  .blog-titre-wrapper {flex-direction:column;gap:24px;}
  .site-footer {min-height:85vh; padding-top:120px;}
  .fl-m {margin-left:0;}
}

@media (max-width: 600px) {
  .fame { flex-direction: column; padding: 48px 24px; gap: 32px; }
  .titre-fame { position: static; }
  .titre-fame h2 { writing-mode: horizontal-tb; transform: none; }
  .logo-table { grid-template-columns: repeat(3, 1fr); padding-top:75px; }
  .logo-cell img { max-width: 100px; max-height: 50px; }
}

.section_1 {

  height: 90vh;
  padding-left: 50%;
  padding-top: 40vh;
}
.btn-agence-noir {color:var(--color-real-black)}

.agence_title_wrapper {
  position: relative;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;
}
.tampon-pieds {
  position: absolute;
  Top: -35%;
  left: 17%;
}
.tampon-pieds span {
  transform: rotate(60deg);
}
.section_1 .chef {
  position: absolute;
  top: 28vh;
  left: -170px;
}

.section_1 h1 {margin-bottom:30px}

.methodo-fun-section {
  padding: 0 48px;
}

.methodo-fun-section .open-space {
  width: 55%;
  height: auto;
}

.openspace-bureau {
  position: relative;
}

.tampon-boutique {
  position: absolute;
  bottom: -180px;
  left: 10%;
  --sq-rot: 30deg;
  transform: rotate(var(--sq-rot));
}

.tampon-boutique span {
  transform: rotate(-45deg);
}

.livre-txt {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: -130px;
}

.livres {
  width: 25%;
}

.methodo-fun-content {
  display: flex;
  position:relative;
  flex-direction:column;
  gap: 48px;
  align-items: flex-start;
  margin-top: 200px;
}
.tampon-ketchup {top:55%; left:25%}
.mayo {font-family:Mohio; font-size:15px}
.methodo-fun-left {
  width: 50%;
  position: relative;
}

.methodo-fun-icon {
  position: relative;
  margin-top: -10%;
  margin-left: 10%;
}

.methodo-fun-left h2 {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 70px);
  line-height: 1.05;
  color: var(--color-black);
  margin-bottom: 24px;
}

.methodo-fun-left p {
  font-family: var(--font-silka);
  font-weight: 400;
  max-width:600px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.65;
  color: var(--color-grey-dark);
  margin-top:48px;
  margin-left:auto
}

.methodo-fun-right {
  width: 50%;
  max-width:600px;
  padding: 48px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position:relative;
}

.methodo-fun-card h3 {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 36px);
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 10px;
}

.methodo-fun-card p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.5;
  color: var(--color-grey-dark);
}
.surf {
  position: absolute;
  bottom: 140px;
  right: -48px;
  width:60px;
  height:auto;
  transform:rotate(-20deg)

}

.section_team {
  overflow: hidden;
  position: relative;
  padding-left: 48px;
  }

.team-wrapper {
  padding-top: 15vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
  max-width:75%;
width: 100%;
    }

.team-wrapper > div {
      min-width: 0;
    }

.team-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.team-photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-accent);
  mix-blend-mode: hard-light;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-photo:hover::after {
  opacity: 1;
}
.team-wrapper a {
  color: black;
}

.title-team-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.section_team .grands-pouvoirs {
  padding-top: 15%;
  margin-right: -50px;
  white-space: nowrap;
}

.chaud {
  position: absolute;
  bottom: 85px;
  right: 20%;
}
.section_team .tampon-breizh {
  position: absolute;
  left: 60%;
}
.tampon-breizh span {
  transform: rotate(60deg);
}
.valeurs-mohio {
  padding: 10% 20% 0 0;
  max-width: 50%;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  margin-right: 48px;
  padding-left: 68px;
  margin-bottom: 200px;
}
.valeur-mohio p {margin-bottom:20px}
.valeur-mohio h3 {margin-bottom:20px}

.section-4 {
  position: relative;
  height: 92vh;
  background-color: #D1F278;
  overflow: hidden;
  padding-top: 15%;
}
.textvert{
  min-width: 80%;
  max-width: 80%;
  text-align: center;
  margin:0 auto;
  gap: 10px;
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 3.7vw, 70px);
  line-height: 1.05;
  color: var(--color-black);
}
.pacman {
  position: absolute;
  left: 13%;
  bottom: 5%;
  width:65px;
  height:auto;
  transform: translateY(-50%);
}
.love {
  position: absolute;
  top: 67%;
  right: 21%;
  width: 55px;
  height:auto;
}
.pasvu{
  position: absolute;
  height:75px;width:auto;
  left: 25%;
  top: 30% ;
}
.vortex{
  position: absolute;
  top:0 ;
  right: 25vh;
}
.tampon-donne{
  position: absolute;
  top: 10vh;
  left: 35%;
  transform: translateX(-50%);
}
.section-5{
  position: relative;
  padding:20% 0 15%;
  }

.engage{
  position: relative;
  display: block;
  width: fit-content;
  max-width: calc(100% - 48px);
  margin: 0 48px 0 auto;
  text-align: left;
}
.tampon-avec-nous{
  position: absolute;
  top: -40vh;
  right: 350px;
  z-index: 2;
}
.qualites{
  display: flex;
  flex-direction: column;
  margin-left: 25%;
  max-width: 25%;
  gap: 50px;
  margin-top: 100px;
  align-items:flex-start;
}
.qualites h3 {
  margin-bottom: 10px;
}
.local-lien a {
    text-decoration:none;
    color : var(--color-black)}

.tampon-avec-nous span {
  transform: rotate(45deg);
}
.book-mark{
  position: absolute;
  width:51px;
  height: auto;
  top: 113VH;
  left: 40%;
  transform: rotate(-20deg);
}
.tampon-capot {
  position: absolute;
  --sq-rot: 20deg;
  transform: rotate(var(--sq-rot));
  top: 60%;
  right: 10%;
}
.tampon-capot span {
  transform: rotate(45deg);
}
.tampon-croissant {
  position: absolute;
  left:-50%;
  top: 0;
}
.tampon-croissant span {
transform: rotate(70deg);
}
.terrain-jeu {
  min-height: 80vh;
  position:relative;
}

.terrains {
  position: relative;
  display: block;
  width: fit-content;
  max-width: calc(100% - 48px);
  margin: 0 10% 0 auto;
  text-align: left;
}

.listes {
  padding-top: 5%;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 60px;
  margin-right: 96px;
}

.listes > div {
  min-width: 0;
}

.listes h3 {
  margin-bottom: 16px;
}

.listes ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.listes li {
  font-family: var(--font-silka);
}

.btn-jeu {
  width:50%;
  margin-left:auto;
  margin-right:96px;
  margin-top:40px;
  display:flex;
  justify-content:flex-end;
  }

.btn-croissant {
  position:relative;
}

.tampon-ca-claque {
  right: 0;
  bottom: 35%;
}
.tampon-ça-claque span {
  transform : rotate(60deg)
}
.roller {
  position: absolute;
  left: 20%;
  bottom: 75px ;
  height:65px;
  width:auto;
}
@media (max-width: 768px) {

  .section_1 {
    height: auto;
    padding: 140px 24px 48px;
  }
  .section_1 h1 {
    width: 100%;
  }
  .section_1 .chef {
    display: none;
  }

  .methodo-fun-section {
    padding: 0 24px;
  }
  .methodo-fun-section .open-space {
    width: 100%;
  }
  .livre-txt {
    margin-top: 16px;
    justify-content: flex-start;
  }
  .livres {
    width: 45%;
  }
  .methodo-fun-content {
    margin-top: 48px;
    gap: 32px;
  }
  .methodo-fun-left,
  .methodo-fun-right {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-left: 0;
  }
  .methodo-fun-left h2 {
    width: 100%;
  }
  .methodo-fun-left p {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }
  .surf {
    display: none;
  }

  .section_team {
    padding-left: 24px;
    padding-right: 24px;
  }
  .respo-title {display:none;}
  .title-team-content {
    align-items: flex-start;
  }
  .section_team .grands-pouvoirs {
    margin-right: 0;
    padding-top: 60px;
    white-space: normal;
  }
  .chaud {
    bottom: auto;
    top: 0;
    right: 10%;
    height: 45px;
    width: auto;
  }
  .team-wrapper {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding-top: 48px;
    gap: 40px;
  }
  .valeurs-mohio {
    max-width: 100%;
    margin: 0;
    padding: 48px 0;
    justify-content: flex-start;
  }

  .section-4 {
    height: 50vh;
    padding: 48px 24px 0;
  }
  .textvert {
    min-width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 3.7vw, 70px)
  }
  .pasvu {top:25px; left:15px;height:45px; width: auto;}
  .love {bottom:15px; right : 20px; height:45px; width:auto;}
  .vortex {top:45px;left:auto; right:60px; height:45px;width:auto;}
  .pacman {height:45px;width:auto;bottom:0;top:auto;left:0;}

  .section-5 {
    padding: 64px 24px;
  }
  .engage {
    max-width: 100%;
    margin: 0;
  }
  .qualites {
    margin-left: 0;
    max-width: 100%;
    margin-top:65px;
  }
  .book-mark,
  .tampon-capot {
    display: none;
  }

  .terrain-jeu {
    padding: 0 24px 48px;
  }
  .terrains {
    max-width: 100%;
    margin: 0;
    margin-bottom : 24px;
  }
  .listes {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-right: 0;
    gap: 32px 24px;
  }
  .listes > div {
    width: calc(50% - 12px);
  }
  .btn-jeu {
    width: 100%;
    margin-right: 0;
  }
  .roller {
    display: none;
  }
}

/* ========================================
   PAGE DINAN et dinard
   ======================================== */
.agence-left {
  width: 50%;
  padding-right: 48px;
  padding-bottom: 100px;
  display:flex;
  flex-direction:column;gap:48px
}
.section_agence h1 {margin-bottom:20px}
.agence-photo-wrapper { position: relative; margin-top: 0; padding-top: 0; }
.agence-photo { width: 100%; margin-top: 0; display: block; }

.section_agence {
  position:relative;
  height: 75vh;
  padding-left: 50%;
  padding-top: 40vh;
}
.beurre-sale {
  position:absolute;
  bottom:48px;
  left:-120px;
  width:55px;
  height:auto;
  transform: rotate(-15deg);
}
.agglo {
  background-color: var(--color-white);
  padding: 48px 0 0 58px; overflow:hidden;
  position:relative;
}
.about-welcome-agglo {padding-left:20%}
.tampon-dinan { bottom: -85px; right: 15%; }
.tampon-dinan span {transform:rotate(40deg)}
.tampon-agglo  { top: 50px; right: 0; }

.agence-roller {
  position:absolute;
  top:50px;
  left:100px
}

.tampon-madeindinan { top: 25%; right: 10%; }
.tampon-madeindinan span { transform: rotate(-20deg); }

.methodo-fun-right h3 { margin-bottom: 0; }

.logos-clients {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.logo-client {
  display: flex;
  align-items: center;
}
.logo-client img {
  max-width: 180px;
  width: 180px;
  height: auto;
  object-fit: contain;
}
.julie-hirtz {position:relative}

.potpeinture {
  position:absolute;
  top:20%;
  right:-48px;
  width:55px;
  height:auto;
}
.methode-title {max-width:750px; margin:0 auto}
.methode-text {display:flex;gap:48px }
.methode-content {padding: 96px 10% 0;position:relative;}
.titre-proximite {max-width:900px}
.text-1-methode, .text-2-methode, .text-3-methode {width:33%}
.text-2-methode {margin-top:96px}
.text-3-methode {margin-top:192px}
.ciseaux-icon {position:absolute;
width:65px;
height:auto;
  bottom:0
}
.agence-photo.dinard {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.logo-client.facilaw img{
  max-height:120px;
  max-width:120px}

/* ========================================
   PAGE STRATÉGIE
   ======================================== */

.hero-expertise {
  min-height: 90vh;
  padding: 180px 48px 100px;
  display: flex;
  flex-direction: column;
}

.hero-nav {
  position: relative;
  display: inline-flex;
  gap: 2vw;
  padding-bottom: 1px;
}

.hero-nav-item {
  font-weight: 500;
  color: var(--color-real-black);
  text-decoration: none;
  font-size: clamp(14px, 1.1vw, 16px);
  font-family: var(--font-silka);
}

.hero-nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--color-real-black);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.hero-line {
  position: relative;
  padding-left: 50%;
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin: auto 0 160px;
}

.hero-line h1 {
  text-wrap: balance;
  width:95%
}

.boxe {
  position: absolute;
  bottom: 15%;
  left: 40%;
  width: 55px;
  height: auto;
  z-index: 2;
  transform: rotate(15deg);
}
.avion {
  position: absolute;
  bottom: 15%;
  left: 40%;
  width: 70px;
  height: auto;
  z-index: 2;
  transform: rotate(-5deg);
}

.tampon-mike {
  bottom: -105px;
  right: 35%;
  --circle-rot: 40deg;
  transform: rotate(var(--circle-rot));
}

.strat-com {
  padding-left: 48px;
  margin-top: -200px;
  max-width: 25%;
}

.marque-section {
  padding: 150px 48px 96px;
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.marque-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5%;
  width: 60%;
  margin-left: auto;
  align-items: flex-start;
}
.marque-left {
  position: relative;
}
.marque-left h2 {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(20px, 1.4vw, 36px);
  line-height: 1.3;
  color: var(--color-black);
}
.marque-right {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.marque-right p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-grey-dark);
}
.marque-right .btn-underline {
  margin-top: 16px;
  width: fit-content;
}

.tampon-plume {
  top: 25px;
  left: 25px;
  --sq-rot: 50deg;
  transform: rotate(var(--sq-rot));
}

.tampon-plume span {
  transform: rotate(-50deg);
}

.section-raisons {
  padding: 200px 48px 150px;position:relative;
  }

.raisons-titre {
  position:relative;
  gap: 16px;
  width:70%;
  margin-bottom: 96px;
}
.raisons-titre h2 {text-wrap:balance}

.tampon-excuses {left:0}

.vinyle {
  position:absolute;
  top:380px; right:0;
  width: clamp(32px, 3.5vw, 60px);
  height: auto;
  ;
}

.raisons-grid {
  position:relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-left: 25%;
  max-width: 436px;
}

.raison-item h3 {
  margin-bottom: 12px;
}

.raison-item p {
  line-height: 1.4;
}

.section-dir-com {
  background-color: var(--color-dark-green);
  min-height: 50vh;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 48px;
  gap: 0;
}

.section-dir-com h2 {
  color: var(--color-white);
  margin-bottom: 48px;
}

.dir-com-photo {
  position: relative;
  margin-bottom: 48px;
}

.dir-com-photo img {
  max-width: 300px;
  display: block;
}

.tampon-virginie {
  position: absolute;
  left: -100px;
  top: 25%;
  color: var(--color-white);
}

.titre-virginie {
  color: var(--color-white);
  margin-bottom: 8px;
}

.poste-virginie {
  color: var(--color-white);
}

.btn-nom {
  color: var(--color-white);
}

.btn-eqp {
  color:var(--color-white);
  margin-top:48px
}

.faq-section {
  padding: 48px 48px 96px;
}

.faq-section > h2 {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 70px);
  line-height: 1.05;
  color: var(--color-black);
  margin-bottom: 96px;
  max-width: 50%;
}

.faq-item {
  border-top: 1px solid var(--color-light-grey);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--color-light-grey);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 48px;
  text-align: left;
}
.faq-item h3 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}
.faq-question-text {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.4;
  color: var(--color-black);
}

.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--color-black);
  transition: transform 0.3s var(--ease-smooth);
}

.faq-toggle::before {
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
}

.faq-toggle::after {
  width: 1px;
  height: 20px;
  left: 50%;
  top: 0;
}

.faq-item.is-open .faq-toggle::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  max-width:800px;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
  padding: 0 0;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 0 24px;
}

.faq-answer p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--color-grey-dark);
  max-width: 75%;
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--color-black);
  font-weight: 500;
}

.section-references {
  background-color: var(--color-dark-green);
  min-height: 100vh;
  display: flex;
  gap:24px;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  padding: 96px 48px;
}

.references-content {
  position:relative;
  padding:90px 0 0 0;
  text-align: center;
  max-width: 1200px;
}
.tampon-bluff {
  color:var(--color-white);
  top:0;
  left:25%;
}
.question {
  position:absolute;
  bottom:0;
  width: clamp(38px, 3.5vw, 96px);
  height: auto;
  z-index: 2;
  transform: rotate(25deg);
  margin-top: 96px;
}

.references-content h2 {
  color: var(--color-white);
  margin-bottom: 48px;
  text-wrap: pretty;
}

.references-btn {
  color: var(--color-white);
}

.section-blog--strat {
  background-color: var(--color-accent);
  min-height: auto;
  padding: 150px 48px;
  position: relative;
}

.section-blog--strat .blog-titre-wrapper {
  padding-left: 18%;
  padding-bottom: 96px;
}

.titre-blog.strategie {
  max-width:85%;
}
.strategie.blog-btn {width:fit-content}

.tampon-essence {
  top:50%;
  right:10%
}

.tampon-essence span {transform:rotate(40deg)}


.cas-clients-section {
  padding: 96px  48px;
  position: relative;
}
.title-btn-wrapper {
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:flex-end;
  padding-bottom:96px
  }

.cas-clients-section h2 {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 70px);
  line-height: 1.05;
  color: var(--color-black);
  max-width: 50%;
  }

.cas-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cas-client {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.cas-client img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cas-clients-btn {
  margin-top: 48px;
  display: flex;
  justify-content: flex-end;
}

.tampon-mirettes {
  position: absolute;
  top: 33%;
  left: 0;
}

@media (max-width: 768px) {

  .hero-expertise {
    min-height: auto;
    padding: 140px 24px 24px;
  }
  .hero-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-nav-item {padding-bottom: 4px;}
  
  .hero-nav-item.active {
  border-bottom: 1px solid var(--color-real-black);
}
  .hero-line {
    padding-left: 0;
    gap: 32px;
    margin: 32px 0 0;
  }
  .hero-line h1 {
    width: 100%;
  }
  .boxe {
    bottom: auto;
    left: auto;
    bottom: -52px;
    top:auto;
    right: 0;
    width:45px;
    height:auto;
    transform:rotate(0deg);
  }
  .avion {
    bottom: auto;
    left: auto;
    bottom: -60px;
    top:auto;
    right: 0;
    width:45px;
    height:auto;
  }

  .strat-com {
    padding: 24px 24px 0;
    margin-top: 0;
    max-width: 100%;
    width: 100%;
  }

  .marque-section {
  padding: 0 24px;
  gap: 0;
}
  .marque-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 0;
  padding: 48px 0;
  gap: 24px;
}
  .marque-left,
  .marque-right {
   width: 100%;
   max-width: 100%;
}
  .section-raisons {
    padding: 96px 24px 64px;
  }
  .raisons-titre {
    width: 100%;
    padding-left: 0;
    margin-bottom: 48px;
  }
  .raisons-grid {
    margin-left: 0;
    max-width: 100%;
  }
  .vinyle {
    top: 0;
    right: 0;
  }

  .section-dir-com {
    padding: 48px 24px;
  }
  .dir-com-photo {
      display:flex;
      justify-content:center;
  }
  .dir-com-photo img {
    max-width: 60%;
  }

  .faq-section {
    padding: 24px 24px 64px;
  }
  .faq-section > h2 {
    max-width: 100%;
  }
  .faq-answer p {
    max-width: 100%;
  }

  .section-references {
    padding: 64px 24px;
  }
  .reference-content {padding:0;}
  .section-blog--strat {
    padding: 96px 24px;
  }
  .section-blog--strat .blog-titre-wrapper {
    padding-left: 0;
    padding-bottom: 48px;
  }
  .titre-blog.strategie {
    max-width: 100%;
  }
  .title-btn-wrapper {
      flex-direction:column;
      align-items:flex-start;
  }
  .cas-clients-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}


.hero-projets {
  min-height: 90vh;
  padding: 160px 48px 100px;
  display: flex;
  flex-direction: column;
}

.hero-projet-title {
  position: relative;
  padding-left: 50%;
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin: auto 0 160px;
}

.hero-line h1 {
  text-wrap: balance;
  width:95%
}
.tampon-idee {
  bottom:-15%;
  left:45%;
  --circle-rot: 50deg;
  transform: rotate(var(--circle-rot));
}

.poisson {
  position: absolute;
  bottom: 35%;
  left: 40%;
  width: clamp(38px, 10vw, 95px);
  height: auto;
  z-index: 2;
  }

.sup-inf  { position: absolute;
  top: 150vh;
  right: 0;
  width: clamp(38px, 10vw, 95px);
  height: auto;
  z-index: 2;}

.yeux  { position: absolute;
  top: 255vh;
  left: 23%;
  width: clamp(38px, 10vw, 95px);
  height: auto;
  z-index: 2;}
  
.tampon-encore {
  top:315vh;left:75%;
  --circle-rot: -33deg;
  transform:translatex(-50%) rotate(var(--circle-rot));
}

.tampon-bzh {top:90vh; right:0; --sq-rot: 25deg; transform: rotate(var(--sq-rot))}

.tampon-bzh span {transform:rotate(-45deg)}

.projet-span2 {
  grid-column: span 2;
}
.projet-l3-3 img { aspect-ratio: 3/4; }
.projet-l3-3::after {
  aspect-ratio: 3/4;
}
.projets-dynamique {padding-right:0}
.projets-dynamique .projet h3 {color: var(--color-real-black)}
.projets-dynamique .projet p {color: var(--color-grey-medium)}
.projets-dynamique .projet h3::after {
  background-color: var(--color-real-black);
}

.charger-plus-btn {
  color: var(--color-real-black);
}
@media (max-width: 768px) {

  .hero-projets {
    min-height: auto;
    padding: 140px 24px 0;
  }
  .hero-projet-title {
    padding-left: 0;
    gap: 48px;
    margin: 0 0 48px;
  }
  .hero-projet-title h1 {
    width: 100%;
  }
  .poisson {top:5%; left:80%;}
  .sup-inf {top:190vh; left:0;}
  .yeux {top:350vh; left:90%;
  }
  .projets.projets-dynamique {
    grid-template-columns: 1fr;
    gap: 48px 0;
    padding: 0;
  }
  .projets-dynamique {
    padding-right: 0;
  }
  .projet-span2 {
    grid-column: span 1;
  }
}

.progress-wrapper {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  width: 64px;
  height: 190px;
  z-index: 500;
}

.progress-wrapper.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.dashes-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.5px;
}

.dash {
  height: 1px;
  border-radius: 1px;
  background: var(--color-dark-green);
  flex-shrink: 0;
  width: 12px;
  transition: width 0.15s ease;
}

.dash.is-active-top {
  width: 22px;
}

.progress-label {
  position: absolute;
  display: flex;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
}

.progress-label span {
  font-family: var(--font-silka);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-dark-green);
  letter-spacing: 0.01em;
  margin-left: 2px;
  clip-path: inset(50% 0% 50% 0%);
  transition: clip-path 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.progress-label span.visible {
  clip-path: inset(0% 0% 0% 0%);
}

/* ========================================
   Template article
   ======================================== */

.article {
  position:relative;
  padding: 0 48px 48px 48px;
}

.article-hero {
  padding: 0 0 48px;
  margin: 0 auto;
  width:66%;
}

.article-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.article-cat {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(10px, 0.9vw, 13px);
  color: var(--color-grey-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-date {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(10px, 0.9vw, 13px);
  color: var(--color-grey-medium);
}
.article-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-silka);
  font-size: clamp(10px, 0.9vw, 13px);
  color: var(--color-grey-medium);
}

.article-author-pic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.article-title {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.05;
  color: var(--color-black);
  text-wrap: balance;
}

.article-img-wrapper {
  margin: 0 auto 80px;
  }

.article-img {
  width: 66%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

.article-body {
  max-width: 620px;
  margin: 0 auto 0 auto;

}

.article-body p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--color-grey-dark);
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 68px);
  line-height: 1.15;
  color: var(--color-black);
  margin: 32px 0 32px;
}

.article-body h3 {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 26px);
  line-height: 1.3;
  color: var(--color-black);
  margin: 32px 0 32px;
}
.article-body h4 {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.3;
  color: var(--color-black);
  margin: 32px 0 32px;
  }
.article-body ul,
.article-body ol {
  margin: 0 0 24px 0;
  padding-left: 20px;
}

.article-body li {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--color-grey-dark);
  margin-bottom: 8px;
}

.article-body blockquote {
  margin: 32px 0;
  padding: 24px;
  background: var(--color-dark-green);
  font-family: var(--font-silka);
  font-size: clamp(14px, 1vw, 16px);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-white);

}
.article-body blockquote p {
  color: var(--color-white);
}
.article-body img {
  display: block;
  margin: 0 auto 32px;
  max-width: 620px;
  width: 100%;
  height: auto;
}

.article-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: clamp(11px, 0.8vw, 13px);
  color: var(--color-grey-light);
}

.article-body a {
  color: var(--color-dark-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.article-body a:hover {
  opacity: 0.6;
}

.article-cta {
  font-weight: 500;
  color: var(--color-black);
  padding: 24px 0;
  border-top: 1px solid var(--color-light-grey);
  border-bottom: 1px solid var(--color-light-grey);
  margin: 40px 0;
}
.article-author-card {
  display: flex;
  max-width: 620px;
  align-items: center;
  gap: 24px;
  padding: 32px;
  margin: 64px auto;
  background: var(--color-dark-green);
  border-radius: 4px;
}

.author-card-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-card-name {
  font-family: var(--font-silka);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.author-card-role {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-grey-light);
  margin-bottom: 8px;
}

.author-card-link {
  color: var(--color-accent);
  font-size: 13px;
}

.article-credits {
  font-size: clamp(11px, 0.8vw, 13px);
  color: var(--color-grey-medium);
  margin-top: 24px;
  padding-top: 24px;
  }

.article-related {
  padding: 80px 96px ;
  margin:auto;

}

.article-related-title {
  font-family: var(--font-mohio);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--color-black);
  margin-bottom: 40px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-related-card {
  text-decoration: none;
}

.article-related-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.article-related-card h3 {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--color-black);
  line-height: 1.4;
}

.article-related-card span {
  font-family: var(--font-silka);
  font-size: clamp(10px, 0.7vw, 11px);
  color: var(--color-grey-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .article-related {
    margin-left: 0;
    max-width: 100%;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .article { padding: 0 32px; }
  .article-hero { padding-left: 30%; }
  .article-body { margin-left: 30%; }
  .article-img { width: 60%; }
}

@media (max-width: 768px) {
  .article { padding: 0 24px; }
  .article-hero { padding: 120px 0 32px 0; width:100%; }
  .article-meta {flex-wrap:wrap; gap:10px;justify-content:flex-start;}
  .article-body { margin-left: 0; max-width: 100%; }
  .article-img { width: 100%; }
  .progress-wrapper { display: none; }
  .article-related {padding : 24px 0;}

}

/* ========================================
   PAGE BLOG — Listing
   ======================================== */

.hero-blog {
  background-color: var(--color-accent);
    padding: 180px 48px 200px
}
.hero-blog h1 {max-width:90%}

.pomme {position: absolute;
  bottom: -22%;
  right: 15%;
  width: clamp(38px, 10vw, 95px);
  height: auto;
  z-index: 2;}

.tampon-grise {
  left:60%; transform:rotate(50deg)
}
.soleil {position: absolute;
  top: 160vh;
  left: 25%;
  width: clamp(38px, 10vw, 95px);
  height: auto;
  z-index: 2;}

.pointing {
  position: absolute;
  top: 342vh;
  right: 8px;
  width: clamp(38px, 10vw, 95px);
  height: auto;
  z-index: 2;
}
.blog-filtres {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin-bottom:60px;
  position: relative;
}
.tampon-chouille { top:260vh; right:25%; transform:rotate(66deg)}

.blog-filtre {
  font-family: var(--font-silka);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  color: var(--color-dark-green);
  background: transparent;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.blog-filtre.active {
  font-weight: 500;
}

.blog-filtre-underline {
  position: absolute;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--color-dark-green);
  transition: width 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
  pointer-events: none;
}

.projets-dynamique,
.blog-grille {
  align-items: start;
}
.blog-grille .projet h3 {
  color: var(--color-black);
}
.blog-grille .projet h3::after {
  background-color: var(--color-black);
}


.blog-grille .projet p {
  color: var(--color-dark-green);
  margin-top:8px
}

.blog-grille .blog-card-cat {
  font-family: var(--font-silka);
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 500;
  color: var(--color-grey-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;

}
.blog-btn-wrapper {
  text-align: center;
  padding-right: 48px;
  margin-top: 80px;
}

.charger-plus-blog {
  color: var(--color-dark-green);
  margin-top: 80px;
}

@media (max-width:767px){
    .hero-blog {padding : 140px 24px 200px;}
    .soleil {left:0;top:150vh;}
    .pointing {top:320vh;right:0;}
    .blog-filtres {flex-wrap:wrap; gap: 5px 10px;}
    .blog-filtre {padding:4px 0;}
    .blog-btn-wrapper{text-align:left;}
    .charger-plus-blog {margin-top:0;}
    .projet-l3-3 img {aspect-ratio:4/3}
}

/* ========================================
   PAGE PROJET — Template
   ======================================== */

.projet-page {
  padding: 14vh 48px 120px;
  position:relative
}

.projet-header {
  margin-bottom: 80px;
  padding: 120px 0 0;
  position: relative;
}

.projet-nom {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(48px, 4vw, 96px);
  line-height: 1;
  color: var(--color-black);
  padding-bottom: 72px;
}
.tampon-projet {
  position: absolute;
  top: 48px;
  right: 40%;
  z-index: 10;
  }
.tampon-projet-text {transform: rotate(60deg);}

.tampon-alors {
  position: absolute;
  top: 1900px;
  right: 0;
  z-index: 10;
}
.rainbow {
  position: absolute;
    top: 50%;
    right: 16.5%;
    height: 65px;
    width: 65px;
    color: var(--color-real-black);
    z-index: 2;
}
.tampon-alrs {
  position: absolute;
  top: 4350px;
  left: 20%;
  z-index: 10;
}

.projet-resume {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 0.8vw, 22px);
  line-height: 1.5;
  color: var(--color-grey-dark);
  max-width: 60%;
  padding-bottom: 10px;
}

.projet-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
}

.projet-prestas {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--color-grey-light);
}

.projet-toggle-wrap {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  flex-shrink: 0;
  height: 28px;
  width: 130px;
  text-align: right;
  padding-bottom: 4px;
}

.projet-toggle {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  transition: transform 0.4s var(--ease-smooth);
  white-space: nowrap;
}

.projet-toggle-moins {
  transform: translateX(130%);
}

.is-detail .projet-toggle-plus {
  transform: translateX(-130%);
}

.is-detail .projet-toggle-moins {
  transform: translateX(0);
}

.projet-content {
  display: flex;
  gap: 0;
  position: relative;
}

.projet-texte-galerie {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 30px);
  line-height: 1.3;
  color: var(--color-grey-dark);
  padding: 96px 0;
}

.projet-texte-right {
  text-align: right;
}

.projet-galerie {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  row-gap: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: width 0.6s var(--ease-smooth);
}

.is-detail .projet-galerie {
  width: 58%;
  grid-template-columns: repeat(8, 1fr);
  row-gap: 20px;
}

.pg {
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.pg img,
.pg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pg-1  { grid-column: 1 / 13; grid-row: 1;  aspect-ratio: 3/2; }

.pg-e1 { grid-column: 1 / 7;  grid-row: 2;  aspect-ratio: auto;}

.pg-2  { grid-column: 7 / 10; grid-row: 3;  aspect-ratio: 3/2; }
.pg-3  { grid-column: 10 / 13; grid-row: 3; aspect-ratio: 3/2; }

.pg-4  { grid-column: 1 / 4;  grid-row: 4;  aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-5  { grid-column: 7 / 10; grid-row: 5;  aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-6  { grid-column: 4 / 7;  grid-row: 7;  aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-7  { grid-column: 4 / 13; grid-row: 8;  aspect-ratio: 3/2; margin-bottom: 96px; position:relative}

.pg-8  { grid-column: 7 / 10; grid-row: 9;  aspect-ratio: 3/2; margin-bottom:20px}

.pg-9  { grid-column: 4 / 7;  grid-row: 10; aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-10 { grid-column: 4 / 7;  grid-row: 11; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-11 { grid-column: 10 / 13; grid-row: 12; aspect-ratio: 2/3; }

.pg-e2 { grid-column: 7 / 13; grid-row: 13; aspect-ratio: auto; }

.pg-12 { grid-column: 1 / 4;  grid-row: 14; aspect-ratio: 3/2; }

.pg-13 { grid-column: 10 / 13; grid-row: 15; aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-14 { grid-column: 4 / 13; grid-row: 16; aspect-ratio: 3/2;margin-bottom:96px; }

.pg-15 { grid-column: 1 / 4;  grid-row: 17; aspect-ratio: 1/1; }

.pg-16 { grid-column: 7 / 10; grid-row: 18; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-17 { grid-column: 4 / 7;  grid-row: 19; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-18 { grid-column: 1 / 13; grid-row: 20; aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-19 { grid-column: 7 / 10; grid-row: 21; aspect-ratio: 2/3; }

.pg-20 { grid-column: 4 / 7;  grid-row: 22; aspect-ratio: 1/1; margin-bottom: 96px; }

.pg-21 { grid-column: 9 / 13; grid-row: 23; aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-22 { grid-column: 1 / 10; grid-row: 24; aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-23 { grid-column: 4 / 13; grid-row: 25; aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-24 { grid-column: 1 / 4;  grid-row: 26; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-25 { grid-column: 7 / 10; grid-row: 27; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-26 { grid-column: 1 / 10; grid-row: 28; aspect-ratio: 3/2; }

.pg-27 { grid-column: 10 / 13; grid-row: 29; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-28 { grid-column: 7 / 10; grid-row: 30; aspect-ratio: 1/1; margin-bottom: 96px; }

.pg-29 { grid-column: 1 / 4;  grid-row: 31; aspect-ratio: 3/2; }

.pg-30 { grid-column: 7 / 10; grid-row: 32; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-31 { grid-column: 4 / 7;  grid-row: 33; aspect-ratio: 3/2; }

.pg-32 { grid-column: 1 / 4;  grid-row: 34; aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-33 { grid-column: 10 / 13; grid-row: 35; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-34 { grid-column: 1 / 13; grid-row: 36; aspect-ratio: 3/2; margin-bottom: 96px; }

.pg-35 { grid-column: 1 / 4;  grid-row: 37; aspect-ratio: 2/3; margin-bottom: 96px; }

.pg-36 { grid-column: 7 / 10; grid-row: 38; aspect-ratio: 1/1; }

.is-detail .pg {
  margin-bottom: 0;
  aspect-ratio: auto;
}

.is-detail .projet-galerie {
  align-items: stretch;
  grid-auto-rows: 400px;
  align-self:flex-start;
}

.is-detail .pg-e1,
.is-detail .pg-e2 {
  height: auto;
}
.is-detail .pg-1,
.is-detail .pg-14,
.is-detail .pg-23,
.is-detail .pg-26 {
  aspect-ratio: 3/2;
}

.is-detail .projet-galerie {
    grid-template-rows: var(--projet-galerie-rows, auto auto 400px 400px 400px 400px 400px auto 400px auto 400px 400px 400px 400px auto 400px auto 400px 400px 400px 400px 400px);
}

.is-detail .pg-1  { grid-column: 1 / 9; grid-row: 1; }

.is-detail .pg-e1 { grid-column: 1 / 7; grid-row: 2; }

.is-detail .pg-2  { grid-column: 1 / 5; grid-row: 3; }
.is-detail .pg-3  { grid-column: 5 / 9; grid-row: 3; }

.is-detail .pg-4  { grid-column: 1 / 4; grid-row: 4; }
.is-detail .pg-5  { grid-column: 4 / 9; grid-row: 4; }

.is-detail .pg-6  { grid-column: 1 / 4; grid-row: 5; }
.is-detail .pg-7  { grid-column: 4 / 9; grid-row: 5; }

.is-detail .pg-9  { grid-column: 1 / 5; grid-row: 6; }
.is-detail .pg-8  { grid-column: 5 / 9; grid-row: 6; }

.is-detail .pg-10 { grid-column: 1 / 5; grid-row: 7; }
.is-detail .pg-11 { grid-column: 5 / 9; grid-row: 7; }
.is-detail .pg-11 img { object-position: top center; }

.is-detail .pg-e2 { grid-column: 1 / 7; grid-row: 8; text-align: left; }

.is-detail .pg-12 { grid-column: 1 / 5; grid-row: 9; }
.is-detail .pg-13 { grid-column: 5 / 9; grid-row: 9; }

.is-detail .pg-14 { grid-column: 1 / 9; grid-row: 10; }

.is-detail .pg-15 { grid-column: 1 / 5; grid-row: 11; }
.is-detail .pg-16 { grid-column: 5 / 9; grid-row: 11; }
.is-detail .pg-16 img { object-position: top center; }

.is-detail .pg-17 { grid-column: 1 / 4; grid-row: 12; }
.is-detail .pg-18 { grid-column: 4 / 9; grid-row: 12; }

.is-detail .pg-20 { grid-column: 1 / 6; grid-row: 13; }
.is-detail .pg-19 { grid-column: 6 / 9; grid-row: 13; }
.is-detail .pg-20 img { object-position: center center; }

.is-detail .pg-21 { grid-column: 1 / 4; grid-row: 14; }
.is-detail .pg-22 { grid-column: 4 / 9; grid-row: 14; }

.is-detail .pg-23 { grid-column: 1 / 9; grid-row: 15; }

.is-detail .pg-24 { grid-column: 1 / 6; grid-row: 16; }
.is-detail .pg-25 { grid-column: 6 / 9; grid-row: 16; }
.is-detail .pg-24 img { object-position: top center; }

.is-detail .pg-26 { grid-column: 1 / 9; grid-row: 17; }

.is-detail .pg-27 { grid-column: 1 / 4; grid-row: 18; }
.is-detail .pg-28 { grid-column: 4 / 9; grid-row: 18; }
.is-detail .pg-28 img { object-position: top left; }

.is-detail .pg-29 { grid-column: 1 / 6; grid-row: 19; }
.is-detail .pg-30 { grid-column: 6 / 9; grid-row: 19; }

.is-detail .pg-31 { grid-column: 1 / 5; grid-row: 20; }
.is-detail .pg-32 { grid-column: 5 / 9; grid-row: 20; }

.is-detail .pg-33 { grid-column: 1 / 4; grid-row: 21; }
.is-detail .pg-34 { grid-column: 4 / 9; grid-row: 21; }

.is-detail .pg-35 { grid-column: 1 / 4; grid-row: 22; }
.is-detail .pg-36 { grid-column: 4 / 9; grid-row: 22; }

.is-detail .tampon-galerie {
  display: none;
}

.projet-detail {
  width: 0;
  overflow: clip;
  opacity: 0;
  transition: width 0.6s var(--ease-smooth), opacity 0.4s 0.2s ease;
  flex-shrink: 0;
}

.is-detail .projet-detail {
  width: 38%;
  opacity: 1;
  overflow: visible;
}

.projet-detail-inner {
  position: sticky;
  top: 48px;
  padding: 0 0 0 48px;
  min-width: 300px;
}

.projet-detail-block {
  margin-bottom: 48px;
}

.projet-detail-block h2 {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(20px, 1.5vw, 24px);
  color: var(--color-black);
  margin-bottom: 12px;
}

.projet-detail-block p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--color-grey-dark);
}

@media (max-width: 768px) {
  .projet-page {
    padding: 120px 24px 80px;
  }

  .projet-toggle-wrap {
    display: none;
  }

  .projet-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .projet-resume {
    max-width: 100%;
  }

  .projet-content {
    flex-direction: column;
  }

  .projet-galerie {
    width: 100% !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto !important;
    row-gap: 20px;
  }

  .projet-detail {
    width: 100% !important;
    opacity: 1 !important;
    overflow: visible;
    margin-top: 48px;
  }

  .projet-detail-inner {
    position: static;
    padding: 0;
    min-width: 0;
  }

  .pg {
    grid-column: 1 / 5 !important;
    grid-row: auto !important;
    margin-bottom: 0;
    aspect-ratio: 3/2;
  }

  .pg-e1,
  .pg-e2 {
    aspect-ratio: auto !important;
  }

  .projet-texte-galerie {
    max-width: 100%;
    padding: 16px 0;
  }

  .projet-texte-right {
    text-align: left;
  }

  .tampon-galerie {
    display: none;
  }
}
/* ========================================
   PAGE CONTACT
   ======================================== */

.section-contact-hb {
  padding-top: 18vh;
}

.contact-groupe-1 {
  position: relative;
  padding-bottom:34px
}

.contact-hotline {
  display: block;
  width: max-content;
  margin: 140px 0 0 30%;
  transform: rotate(15deg);
  text-align: left;
}

.tampon-vendredi {
  position: absolute;
  top: -35%;
  left: 26%;
}

.tampon-vendredi span {
  transform: rotate(70deg);
}

.contact-telephone-icon {
  position: absolute;
  right: 190px;
  top: -90px;
}

.contact-musique {
  position: absolute;
  left: 35%;
  bottom: 0;
  transform:rotate(-40deg);
}

.contact-txt-formulaire {
  max-width: 436px;
  margin-left: 60px;
  margin-top:-20px;
}
.music-hit {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  
  }
.music-hit .music-icon {
  width: 41px;
  height: 41px;
  top: 50%;
  left: 50%;
  margin: -20.5px 0 0 -20.5px;
    }

.section-formulaire {
  position: relative;
  padding-right: 65px;
  padding-top:100px;
}

.contact-form-container {
  max-width: 50%;
  margin-left: auto;
}

.section-formulaire form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-full-width {
  grid-column: 1 / -1;
}

.section-formulaire label {
  margin-bottom: clamp(14px, 1.25vw, 16px);
  font-family: var(--font-silka);
  font-size: 16px;
  font-weight: 400;
}

.section-formulaire input,
.section-formulaire textarea {
  padding: 16px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-family: var(--font-silka);
  font-size: 16px;
  color: #333;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.section-formulaire input::placeholder,
.section-formulaire textarea::placeholder {
  color: #b3b3b3;
  font-weight: 300;
}

.section-formulaire input:focus,
.section-formulaire textarea:focus {
  border-color: #888;
}

.section-formulaire textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  grid-column: 1 / -1;
  margin-top: 10px;
  margin-left: auto;
}

.contact-checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #333;
}

.contact-label-consentement {
  font-size: clamp(11px, 0.85vw, 13px);
  line-height: 1.5;
  color: var(--color-grey-medium);
}
.contact-label-consentement a {color:var(--color-black)}

.tampon-bonjour {
  position: absolute;
  bottom: 300px;
  right: 0;
  --sq-rot: -55deg;
  transform: rotate(var(--sq-rot));
}

.contact-submit-btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.contact-message {
  grid-column: 1 / -1;
  padding: 24px;
  margin-bottom: 16px;
  font-family: var(--font-silka);
  font-size: 16px;
}

.contact-message-success {
  border: 1px solid #052625;
  border-radius: 0;
  background: #D7F188;
}

.contact-message-error {
  color: #b00020;
  padding: 0;
}

altcha-widget {
  display: none;
}
altcha-widget:has(.altcha[data-state="error"]),
altcha-widget:has(.altcha[data-state="expired"]) {
  display: block;
}
altcha-widget {
  --altcha-border-color: #e0e0e0;
  --altcha-border-width: 1px;
  --altcha-border-radius: 2px;
  --altcha-color-base: #ffffff;
  --altcha-color-base-content: var(--color-black);
  --altcha-color-error: #b00020;
  --altcha-color-error-content: #ffffff;
  --altcha-color-primary: var(--color-dark-green);
  --altcha-color-primary-content: #ffffff;
  --altcha-color-success: var(--color-accent);
  --altcha-color-success-content: var(--color-dark-green);
  --altcha-checkbox-border-color: var(--color-grey-light);
  --altcha-max-width: 100%;
  --altcha-padding: 0.4rem;
  font-family: var(--font-silka);
  font-size: 13px;
}

.tampon-bonjour span {
  transform: rotate(45deg);
}

.contact-coordonnees {
  margin-top: 50px;
  margin-left: 12%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 20%;
}
.coord-items {
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  gap:20px
}

.contact-world {
  position: absolute;
  left: 0;
  top: 690px;
}

.section-contact-follow {
  margin-top: 20vh;
  position: relative;
  padding-bottom:250px;

}

.contact-follow {
  display: flex;
  flex-direction: column;
  align-items:flex-end;
  max-width: 60%;
  margin-left: auto;
  gap: 12px;

}

.contact-follow h2 {
  margin-bottom: 24px;
}
.social-network {
  position:relative;
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:flex-start;
  gap:60px;
  margin-top: 50px;
}

.contact-follow a {
  color: var(--color-black);
  width: fit-content;
}

.contact-pensez {
  max-width:40%
}

.tampon-conjugaison {
  position: absolute;
  top: -90px;
  left: 12%;
}

.contact-like {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .contact-hotline {
    margin: 80px auto 0 auto;
    transform: rotate(8deg);
    font-size: clamp(24px, 4vw, 70px);
  }
  .contact-telephone-icon {
      height:auto;
      width:40px;
      right:48px;
      top:-24px;}

  .contact-musique {
  left:65px;
  bottom:0;
  width:35px;
  height:auto;
  }

  .contact-txt-formulaire {
    margin-left: 24px;
    margin-top:40px;
    max-width: calc(100% - 48px);
  }

  .section-formulaire {
    padding: 0 24px;
  }

  .contact-form-container {
    max-width: 100%;
    margin-top:24px;
  }

  .section-formulaire form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-world {
      left:auto;
      right:0;
      width:65px;
      height:65px;
      top:auto;
  }

  .contact-coordonnees {
    margin-left: 24px;
    max-width: 100%;
  }

  .contact-follow {
    max-width: 100%;
    padding: 0 24px;
  }

  .section-contact-follow {
    margin-top: 120px;
    height: auto;
    padding-bottom: 120px;
  }
  .social-network {
      gap:40px;
  }
}

.legales-page {
  padding: 14vh 48px 120px;
}

.legales-page h1 {
  font-family: var(--font-mohio);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 70px);
  line-height: 1.05;
  color: var(--color-black);
  margin-bottom: 80px;
  padding-top: 120px;
  text-align: center;
}

.legales-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width:1400px;
  margin:0 auto;
}

.legales-row {
  display: flex;
  flex-direction:row;
  gap: 48px;
}

.legales-block {
  flex: 1;
}

.legales-block h2 {
  font-family: var(--font-silka);
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--color-black);
  margin-bottom: 16px;
}

.legales-block h2 + h2 {
  margin-top: 48px;
}

.legales-block p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--color-grey-dark);
  margin-bottom: 6px;
}

.legales-block a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .legales-page {
    padding: 120px 24px 80px;
  }

  .legales-row {
    flex-direction: column;
    gap: 48px;
  }
}

.legales-brief {
  background: var(--color-dark-green);
  padding: 48px;
  margin-bottom: 64px;
  max-width: 950px;
  margin: 0 auto;
}

.legales-brief p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--color-white);

}

.legales-prose {
  max-width: 950px;
  margin: 0 auto;
}

.legales-prose h2 {
  font-family: var(--font-silka);
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 24px);
  color: var(--color-black);
  margin-top: 48px;
  margin-bottom: 24px;
}

.legales-prose h3 {
  font-family: var(--font-silka);
  font-weight: 500;
  font-size: clamp(15px, 1.1vw, 16px);
  color: var(--color-black);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legales-prose p {
  font-family: var(--font-silka);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: var(--color-grey-dark);
  margin-bottom: 12px;
}

.legales-prose a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .legales-brief {
    padding: 32px 24px;
  }
}