/* ======================================================================
   FULLCODE — HOME
   Styles spécifiques à la page d'accueil.
   Dépend de /assets/css/general.css pour les tokens de marque,
   la typographie, le header, le footer et les composants globaux.
   Les styles internes des SVG animés vivent dans les fichiers SVG.
   ====================================================================== */

.hero {
  position: relative;
  min-height: calc(70vh + 300px);
  padding: 180px clamp(24px, 8vw, 150px) 100px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-snake {
  position: absolute;
  z-index: 2;
  inset: 72px 0 0;
  width: 90vw;
  height: 70vh;
  max-height: 100vw;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.project-kicker {
  margin: 0 0 14px;
  color: var(--plum, #8a2476);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.project-intro h2,
.section-heading h2,
.moose-copy h2,
.process-detail h2 {
  margin: 0;
  color: var(--purple, #522a6f);
  font-size: clamp(3.9rem, 9vw, 8.8rem);
  line-height: 0.85;
  letter-spacing: -0.045em;
  font-family: var(--font-display, "Climate Crisis", Impact, sans-serif);
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  letter-spacing: 0.035em;
}

.hero-copy .hero-title {
  overflow: hidden;
}

.hero-copy .hero-title h1 {
  transform: translateY(110%);
  animation: reveal-title 0.9s cubic-bezier(.77, 0, .18, 1) forwards;
  animation-delay: 1.5s;
  text-shadow:
    0 0 4px white;
}

@keyframes reveal-title {
  to {
    transform: translateY(0);
  }
}

.hero-tagline {
  margin: 20px 0 0;
  color: var(--plum, #8a2476);
  font-size: clamp(1.3rem, 2.4vw, 2.2rem);
  font-weight: 600;
}

.hero-intro {
  max-width: 500px;
  margin: 26px 0;
  color: var(--muted);
}

.pill-link,
.small-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 24px rgba(37, 23, 53, 0.13);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  color: var(--purple, #522a6f);
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pill-link:hover,
.small-pill:hover,
.pill-link:focus-visible,
.small-pill:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 23, 53, 0.18);
}

.pill-dot {
  width: 26px;
  height: 14px;
  border-radius: 999px;
  background: var(--plum, #8a2476);
  box-shadow: inset 8px 0 0 #b15ba3;
}

.hero-copy a {
  transform: translateY(-110%);
  animation: reveal-title 0.9s cubic-bezier(.77, 0, .18, 1) forwards;
  animation-delay: 1.5s;
}

@media (prefers-reduced-motion: reduce) {

  .hero-copy .hero-title h1 {
    animation: none !important;
    opacity: 1;
    stroke-dashoffset: 0;
    transform: none;
  }
}

.forwards {
  position: relative;
  z-index: 3;
  padding: 110px clamp(24px, 7vw, 130px) 150px;
  overflow: hidden;
  background: #fff;
}

.formats-fineline {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -1px;
  display: block;
  width: calc(100% + 2px);
  max-width: none;
  height: auto;
  opacity: 1;
  filter: saturate(1.18) contrast(1.12);
  pointer-events: none;
}

.forwards .section-heading,
.forwards .forward-grid,
.forwards .format-switch {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 70vw;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.section-heading>p:last-child {
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.forward-grids {
  display: grid;
}

.forward-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
  grid-area: 1 / 1;
  transition:
    opacity 0.5s cubic-bezier(.22, 1, .36, 1),
    transform 0.5s cubic-bezier(.22, 1, .36, 1);
}

.forwards[data-phase="launch"] [data-cards="launch"],
.forwards[data-phase="growth"] [data-cards="growth"] {
  opacity: 1;
  animation: cardsBoomerangIn 0.5s cubic-bezier(.22, 1, .36, 1);
  pointer-events: auto;
}

.forwards[data-phase="launch"] [data-cards="growth"],
.forwards[data-phase="growth"] [data-cards="launch"] {
  opacity: 0;
  animation: cardsBoomerangOut 0.5s cubic-bezier(.22, 1, .36, 1);
}

@keyframes cardsBoomerangIn {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  45% {
    opacity: 0.7;
    transform: translateX(14px) rotate(-0.45deg) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
  }
}

@keyframes cardsBoomerangOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  45% {
    opacity: 0.3;
    transform: translateX(14px) rotate(-0.45deg) scale(1.01);
  }

  100% {
    opacity: 0;
    transform: translateX(0) rotate(0) scale(0.98);
  }
}

.forward-grid li {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.36), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.055));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(84, 36, 111, 0.05),
    0 18px 45px rgba(52, 29, 63, 0.12);
  -webkit-backdrop-filter: blur(2.5px) saturate(150%) contrast(1.04);
  backdrop-filter: blur(2.5px) saturate(150%) contrast(1.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.35s ease;
}

.forwards[data-phase="growth"] .forward-grid li {
  background-color: rgba(138, 36, 118, 0.05);
}

.forward-grid li::before,
.forward-grid li::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.forward-grid li::before {
  z-index: 0;
  inset: -5%;
  border-radius: inherit;
  background: linear-gradient(112deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.05) 24%,
      transparent 43%,
      rgba(255, 255, 255, 0.1) 58%,
      transparent 76%);
  -webkit-backdrop-filter: blur(1px) saturate(165%);
  backdrop-filter: blur(1px) saturate(165%);
  transform: translateX(1.5px) skewX(-0.45deg);
}

.forward-grid li::after {
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 1.5px 0 0 rgba(87, 211, 255, 0.34),
    inset -1.5px 0 0 rgba(255, 74, 199, 0.28),
    inset 0 1.5px 0 rgba(255, 220, 91, 0.25),
    inset 0 -1px 0 rgba(118, 83, 255, 0.2);
  mix-blend-mode: screen;
}

.forward-grid li>* {
  position: relative;
  z-index: 2;
}

.format-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: inherit;
  outline: none;
}

.forward-grid li:hover,
.forward-grid li:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 #fff,
    0 26px 55px rgba(52, 29, 63, 0.17);
}

.format-card-link:focus-visible {
  border-radius: 22px;
  box-shadow: 0 0 0 3px rgba(82, 42, 111, 0.24);
}

.step-number {
  display: block;
  margin-bottom: 68px;
  color: rgba(84, 36, 111, 0.3);
  font-size: 0.82rem;
  font-weight: 800;
}

.forward-grid h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.forward-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.format-switch {
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #2d2930;
  font-size: 0.82rem;
}

.phase-choice {
  margin: 0;
  padding: 5px 2px;
  border: 0;
  background: transparent;
  color: #5f5963;
  font: inherit;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.phase-choice:hover {
  color: var(--purple, #522a6f);
}

.phase-choice:focus-visible,
.toggle-mark:focus-visible {
  outline: 3px solid rgba(129, 39, 136, 0.28);
  outline-offset: 4px;
}

.phase-choice[aria-pressed="true"] {
  color: var(--purple, #522a6f);
  font-weight: 600;
  transform: translateY(-1px);
}

.toggle-mark {
  position: relative;
  width: 70px;
  height: 27px;
  margin: 0;
  padding: 5px;
  border: 0;
  border-radius: 999px;
  background: var(--plum, #8a2476);
  box-shadow: inset 0 1px 2px rgba(57, 17, 76, 0.2), 0 5px 14px rgba(97, 29, 106, 0.18);
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.toggle-mark:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 2px rgba(57, 17, 76, 0.2), 0 8px 18px rgba(97, 29, 106, 0.24);
}

.toggle-mark:active {
  transform: translateY(0) scale(0.97);
}

.toggle-mark i {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(48, 16, 59, 0.28);
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.toggle-mark[aria-checked="true"] i {
  transform: translateX(43px);
}

.water-transition {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(#f7f7f7 0%, #eff7ff 50%, #d5eaff 100%);
}

.water-transition h2 {
  position: relative;
  z-index: 1000;
  margin: 0;
  text-align: center;
  color: var(--purple, #522a6f);
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  letter-spacing: 0.025em;
  line-height: 0.95;
  font-family: var(--font-display, "Climate Crisis", Impact, sans-serif);
  font-weight: 400;
}

.water-transition-intro {
  background: linear-gradient(var(--paper), #C5DCF3);
  width: 100%;
  aspect-ratio: 1520 / 1940;
}

.water-transition-content {
  position: relative;
  z-index: 2;
  overflow: visible;
  margin-top: -134vw;
  margin-bottom: -53vw;
  width: 100%;
}

.water-shape {
  position: relative;
  width: 100%;
  aspect-ratio: 410 / 247;

  background: linear-gradient(to bottom,
      #4c91d0 0%,
      #396bb4 35%,
      #304a94 65%,
      #29256d 100%);
}

html.is-serpent-locked,
body.is-serpent-locked {
  overflow: hidden;
}

.dieco-project {
  --dieco-blue: #2f5fa6;

  position: relative;
  margin-top: -1px;
  padding: 170px clamp(24px, 6vw, 108px) 150px;
  overflow: hidden;
  background: linear-gradient(110deg, #fff 0 62%, #315b9c 62% 78%, #211866 78%);
}

.dieco-project::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 20px;
  left: 12px;
  border-left: 2px dashed #2f5fa6;
}

.project-intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.project-intro h2 {
  font-size: clamp(4.5rem, 9vw, 9.6rem);
}

.dieco-intro h2,
.dieco-intro .project-kicker {
  color: var(--dieco-blue);
}

.dieco-intro h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.project-intro>p:last-child {
  max-width: 640px;
  color: #4e5159;
  font-size: 1.03rem;
}

#dieco-marque {
  position: relative;
  padding-left: 10vw;
}

#dieco-marque::after {
  content: "";
  position: absolute;

  left: -200px;
  right: 80vw;
  top: 30px;

  border-bottom: 2px dashed #2f5fa6;
}

#dieco-marque h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--dieco-blue);
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.dieco-brand {
  position: relative;
  z-index: 2;
  margin: 70px 0 120px;
  display: grid;
  grid-template-columns: 252px minmax(0, 760px);
  gap: 30px;
  align-items: stretch;
}

.dieco-logo {
  align-self: start;
}

.dieco-brand-content {
  min-width: 0;
  display: grid;
  gap: 24px;
  justify-items: start;
}

.dieco-colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dieco-colors span {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 120px;
  padding: 20px;

  background: var(--swatch);
  color: var(--swatch-ink, white);

  border-radius: 0;
}

.dieco-colors span:first-child {
  grid-column: 1 / -1;
  border-top-right-radius: 60px;
}

.dieco-colors span:last-child {
  border-bottom-right-radius: 60px;
}

.dieco-colors b {
  font-weight: 500;
  opacity: 0.8;
}

@media (max-width: 700px) {
  .dieco-brand-content {
    justify-items: center;
  }

  .dieco-logo {
    justify-self: center;
    width: 50%;
    height: auto;
  }

  .dieco-colors {
    grid-template-columns: 1fr;
  }

  .dieco-colors span:first-child {
    grid-column: auto;
  }

  .dieco-colors span {
    width: 50vw;
  }
}

.project-cta {
  position: relative;
  z-index: 4;
}

.catalogue-action {
  margin: 32px auto 0;
}

.sensi-web-action-row {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-top: 32px;
  translate: -50% 0;
  display: flex;
  justify-content: center;
}

.sensi-web-action {
  display: flex;
  margin: 0;
}

.catalogue-section {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  max-width: 1220px;
  padding: 0;
}

.catalogue-section::after {
  content: "";
  position: absolute;

  left: -100px;
  right: 88vw;
  top: 50px;

  border-bottom: 2px dashed #2f5fa6;
}

.catalogue-heading {
  width: 100%;
  margin-bottom: 32px;
  text-align: left;
}

.catalogue-heading>div {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* ======================================================================
   HOME — CATALOGUE DIECO
   HTML générique avec data-catalogue-*
   ====================================================================== */


/* =========================================================
   TITRE
   ========================================================= */

.catalogue-heading .project-kicker {
  color: var(--dieco-blue);
}


.catalogue-heading h3 {
  margin: 0;
  padding: 0;

  text-align: left;

  color: var(--dieco-blue);

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:
    clamp(2rem, 4vw, 4rem);

  font-weight: 400;

  line-height: 1;
}


.catalogue-instructions {
  display: block;

  width: 100%;

  margin:
    14px 0 0;

  padding: 0;

  text-align: left;

  color: var(--muted);

  font-size: 0.9rem;
}


/* =========================================================
   CATALOGUE
   ========================================================= */

.catalogue {
  --catalogue-accent:
    var(--dieco-blue);

  --catalogue-accent-dark:
    var(--dieco-blue-dark);

  --catalogue-control-bg:
    var(--catalogue-accent);

  --catalogue-control-color:
    #fff;

  --catalogue-indicator-color:
    var(--catalogue-accent-dark);

  /*
    Sur desktop :
    cette largeur correspond toujours
    au livre OUVERT = 2 pages.
  */

  width:
    min(94%, 900px);

  margin-inline: auto;

  padding: 0;

  outline: none;


  /*
    Ligne 1 : livre
    Ligne 2 : previous / compteur / next
  */

  display: grid;

  grid-template-columns:
    46px minmax(0, 1fr) 46px;

  align-items: center;

  column-gap: 22px;
}


/* =========================================================
   FOCUS GLOBAL
   ========================================================= */

.catalogue:focus-visible {
  outline:
    3px solid rgba(67, 135, 204, 0.45);

  outline-offset: 8px;

  border-radius: 18px;
}


/* =========================================================
   LIVRE
   ========================================================= */

.catalogue-stage {
  position: relative;

  grid-column:
    1 / -1;

  justify-self: center;


  /*
    Livre ouvert :
    100% = deux pages.
  */

  width: 100%;


  display: flex;

  align-items: stretch;
  justify-content: center;


  perspective:
    2200px;


  filter:
    drop-shadow(0 28px 32px rgba(25, 35, 87, 0.26));
}


/* =========================================================
   PAGES
   ========================================================= */

.catalogue-stage [data-catalogue-left],

.catalogue-stage [data-catalogue-right] {
  position: relative;

  width: 50%;

  margin: 0;

  aspect-ratio: 1;

  overflow: hidden;

  background: #fff;


  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;


  transform-style:
    preserve-3d;


  will-change:
    transform;
}


/* =========================================================
   PAGE GAUCHE
   ========================================================= */

.catalogue-stage [data-catalogue-left] {
  border-radius:
    10px 0 0 10px;

  transform-origin:
    right center;
}


/* =========================================================
   PAGE DROITE
   ========================================================= */

.catalogue-stage [data-catalogue-right] {
  border-radius:
    0 10px 10px 0;

  transform-origin:
    left center;
}


/* =========================================================
   IMAGES
   ========================================================= */

.catalogue-stage img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;


  user-select: none;

  -webkit-user-drag: none;


  /*
    Limite les flashes/repaints
    pendant rotateY.
  */

  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;

  transform:
    translateZ(0);
}


/* =========================================================
   PLI CENTRAL
   ========================================================= */

.catalogue-stage::after {
  content: "";

  position: absolute;

  z-index: 5;

  top: 0;
  bottom: 0;

  left: 50%;

  width: 3px;


  pointer-events: none;


  background:
    linear-gradient(90deg,

      rgba(0,
        0,
        0,
        0.22),

      rgba(255,
        255,
        255,
        0.6),

      rgba(0,
        0,
        0,
        0.16));


  box-shadow:
    0 0 16px rgba(0,
      0,
      0,
      0.18);


  transform:
    translateX(-50%);
}


/* =========================================================
   COUVERTURE / DERNIÈRE PAGE
   ========================================================= */

/*
  Très important :

  .catalogue garde toujours sa largeur de 900px max.

  Seul le stage passe à 50%.

  Les boutons restent donc exactement
  à la même position qu'avec deux pages.
*/

.catalogue.is-single-page .catalogue-stage {
  width: 50%;
}


/*
  La page gauche disparaît.
*/

.catalogue.is-single-page [data-catalogue-left] {
  display: none;
}


/*
  La page restante occupe les 50%
  transformés en nouveau stage.
*/

.catalogue.is-single-page [data-catalogue-right] {
  width: 100%;

  border-radius: 10px;
}


/*
  Aucun pli central en page seule.
*/

.catalogue.is-single-page .catalogue-stage::after {
  display: none;
}


/* =========================================================
   ANIMATION NEXT
   ========================================================= */

.catalogue-stage.is-turning-next [data-catalogue-right] {
  animation:
    catalogue-home-turn-next 0.48s ease-in-out;
}


@keyframes catalogue-home-turn-next {

  0% {
    transform:
      rotateY(0deg);

    filter:
      brightness(1);
  }


  50% {
    /*
      Quasiment de profil au moment
      où le JS remplace l'image.
    */

    transform:
      rotateY(-78deg);

    filter:
      brightness(0.76);
  }


  100% {
    transform:
      rotateY(0deg);

    filter:
      brightness(1);
  }

}


/* =========================================================
   ANIMATION PREVIOUS
   ========================================================= */

.catalogue-stage.is-turning-prev [data-catalogue-left] {
  animation:
    catalogue-home-turn-previous 0.48s ease-in-out;
}


@keyframes catalogue-home-turn-previous {

  0% {
    transform:
      rotateY(0deg);

    filter:
      brightness(1);
  }


  50% {
    transform:
      rotateY(78deg);

    filter:
      brightness(0.76);
  }


  100% {
    transform:
      rotateY(0deg);

    filter:
      brightness(1);
  }

}


/* =========================================================
   CONTRÔLES
   ========================================================= */

.catalogue [data-catalogue-prev],

.catalogue [data-catalogue-next],

.catalogue [data-catalogue-counter] {
  grid-row: 2;

  margin-top: 22px;
}


/* =========================================================
   PREVIOUS / NEXT
   ========================================================= */

.catalogue [data-catalogue-prev],

.catalogue [data-catalogue-next] {
  width: 46px;
  height: 46px;

  padding: 0;


  display: grid;

  place-items: center;


  border: 0;

  border-radius: 50%;


  color:
    var(--catalogue-control-color);


  background:
    var(--catalogue-control-bg);


  box-shadow:
    0 8px 18px rgba(32, 26, 98, 0.23);


  cursor: pointer;


  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}


.catalogue [data-catalogue-prev] {
  grid-column: 1;

  justify-self: start;
}


.catalogue [data-catalogue-next] {
  grid-column: 3;

  justify-self: end;
}


/* =========================================================
   COMPTEUR
   ========================================================= */

.catalogue [data-catalogue-counter] {
  grid-column: 2;

  justify-self: center;

  align-self: center;


  min-width: 170px;


  margin-bottom: 0;


  text-align: center;


  color:
    var(--catalogue-indicator-color);


  font-size: 0.82rem;

  font-weight: 700;
}


/* =========================================================
   HOVER / FOCUS
   ========================================================= */

.catalogue [data-catalogue-prev]:hover:not(:disabled),

.catalogue [data-catalogue-prev]:focus-visible:not(:disabled),

.catalogue [data-catalogue-next]:hover:not(:disabled),

.catalogue [data-catalogue-next]:focus-visible:not(:disabled) {
  transform:
    scale(1.08);


  box-shadow:
    0 12px 24px rgba(32, 26, 98, 0.3);
}


.catalogue [data-catalogue-prev]:focus-visible,

.catalogue [data-catalogue-next]:focus-visible {
  outline:
    3px solid rgba(67, 135, 204, 0.4);

  outline-offset: 3px;
}


/* =========================================================
   DISABLED
   ========================================================= */

.catalogue [data-catalogue-prev]:disabled,

.catalogue [data-catalogue-next]:disabled {
  opacity: 0.28;

  cursor: not-allowed;

  transform: none;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  /*
    Sur mobile le conteneur entier
    correspond maintenant à UNE page.

    Les boutons prennent donc naturellement
    cette largeur.
  */

  .hero-snake {
    height: 35vh;
  }

  .catalogue {
    width:
      min(92%, 470px);

    grid-template-columns:
      46px minmax(0, 1fr) 46px;

    column-gap: 10px;
  }


  /*
    Une seule page dans tous les états.
  */

  .catalogue-stage,
  .catalogue.is-single-page .catalogue-stage {
    width: 100%;
  }


  .catalogue-stage [data-catalogue-left] {
    display: none;
  }


  .catalogue-stage [data-catalogue-right] {
    width: 100%;

    border-radius: 8px;
  }


  .catalogue-stage::after {
    display: none;
  }


  .catalogue [data-catalogue-counter] {
    min-width: 0;

    width: 100%;
  }

}


/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media (max-width: 430px) {

  .catalogue {
    grid-template-columns:
      42px minmax(0, 1fr) 42px;
  }


  .catalogue [data-catalogue-prev],

  .catalogue [data-catalogue-next] {
    width: 42px;
    height: 42px;
  }


  .catalogue [data-catalogue-counter] {
    font-size: 0.76rem;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .catalogue-stage [data-catalogue-left],

  .catalogue-stage [data-catalogue-right] {
    animation:
      none !important;
  }


  .catalogue [data-catalogue-prev],

  .catalogue [data-catalogue-next] {
    transition:
      none !important;
  }

}

.sensipark-project {
  --sensi-green: #489900;

  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg,
      #ffffff 0 400px,
      #244487 400px,
      #ffffff calc(25% + 300px),
      #ffffff 100%);
  font-family: "Poppins", Arial, sans-serif;
}

.sensipark-content {
  position: relative;
  padding: clamp(24px, 3vw, 52px) clamp(24px, 6vw, 110px) 150px;
  overflow: hidden;
  background: transparent;
}

.sensi-intro {
  text-align: center;
  margin: 0 auto 100px;
}

.sensi-intro .project-kicker {
  color: var(--sensi-green);
}

.sensi-logo {
  width: min(830px, 100%);
  height: auto;
  margin: 0 auto 26px;
}

.sensi-intro>p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.sensi-grid {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.brand-card,
.web-card {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.web-card {
  min-width: 0;
  margin-top: clamp(100px, 11vw, 165px);
}

.sensi-section-heading {
  position: relative;
  margin: 0 0 clamp(52px, 6vw, 80px);
  isolation: isolate;
}

.sensi-section-heading span {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -18px;
  color: #e7e8e5;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.055em;
  white-space: nowrap;
  transform: translateY(-50%);
  user-select: none;
}

.brand-card .sensi-section-heading h3,
.web-card .sensi-section-heading h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #111;
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.sensi-color-tabs {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.sensi-color-picker {
  position: relative;
  min-height: 430px;
}

.sensi-color-picker::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 48%;
  border-radius: 28px 0 0 28px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(28, 42, 29, 0.16);
  pointer-events: none;
}

.sensi-color-tablist {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: 42%;
  right: 0;
  display: grid;
  gap: 18px;
}

.sensi-color-tab {
  width: 68%;
  height: 82px;
  padding: 0;
  border: 0;
  border-radius: 0 20px 20px 0;
  background: var(--tab-color);
  box-shadow: 0 5px 6px rgba(24, 35, 26, 0.2);
  cursor: pointer;
  transition: width 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.sensi-color-tab:hover,
.sensi-color-tab:focus-visible {
  width: 76%;
}

.sensi-color-tab:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}

.sensi-color-tab[aria-selected="true"] {
  width: 100%;
  box-shadow: 0 8px 10px rgba(24, 35, 26, 0.24);
}

.sensi-color-panels {
  min-width: 0;
}

.sensi-color-panel {
  animation: sensi-panel-in 260ms ease both;
}

.sensi-color-panel[hidden] {
  display: none;
}

.sensi-color-panel h4 {
  margin: 0 0 12px;
  color: var(--tone);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 600;
}

.color-subtitle {
  margin: 0 0 18px;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.015em;
}

.color-description {
  max-width: 640px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.sensi-shades {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  gap: 18px;
}

.sensi-shades figure {
  margin: 0;
  padding: 14px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 3px 8px 8px rgba(28, 42, 29, 0.18);
}

.sensi-shades i {
  display: block;
  aspect-ratio: 1.28;
  border-radius: 18px;
  background: var(--shade);
}

.sensi-shades figcaption {
  padding: 11px 2px 1px;
  display: grid;
  gap: 2px;
  color: #343c34;
  font-size: 0.7rem;
  line-height: 1.2;
}

.sensi-shades figcaption b {
  font-size: 0.64rem;
  font-weight: 500;
  opacity: 0.7;
}

@keyframes sensi-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sensi-web-copy {
  max-width: 980px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 7vw, 96px);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sensi-web-copy p {
  margin: 0;
}

.sensi-web-copy strong {
  font-weight: 700;
}

.sensi-web-showcase {
  position: relative;
  min-height: clamp(620px, 58vw, 760px);
  margin-top: 20px;
}

.sensi-web-showcase img {
  position: absolute;
  height: auto;
}

.sensi-screen-device {
  z-index: 3;
  left: -4%;
  bottom: 0;
  width: 67%;
}

.sensi-screen-page {
  width: 25.5%;
  border: 1px solid #e4e6e2;
  background: #fff;
  box-shadow: 0 18px 38px rgba(39, 65, 40, 0.13);
}

.sensi-screen-page-one {
  z-index: 2;
  top: 18px;
  left: 48%;
}

.sensi-screen-page-two {
  z-index: 1;
  top: 88px;
  right: 0;
}

.barrio-project {
  --barrio-terracotta: #b9481c;
  --barrio-cream: #fff4df;
  --barrio-navy: #173b8c;

  position: relative;
  min-height: 1400px;
  padding: 0 clamp(24px, 7vw, 125px) 150px;
  overflow: hidden;
  background: linear-gradient(#f7f7f5, var(--barrio-cream) 42%, #fff8ed);
}

.barrio-intro {
  position: relative;
  z-index: 4;
  max-width: 780px;
  margin: 0 auto 75px;
  text-align: center;
}

.barrio-intro>p {
  max-width: 550px;
  margin: 25px auto 0;
  color: #6f4636;
}

.barrio-logo {
  width: min(650px, 100%);
  height: auto;
  margin: 0 auto;
  display: block;
}

.tabs {
  position: relative;
  z-index: 4;
  max-width: 1120px;
  margin: 0 auto;
}

.tab-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 35px rgba(116, 65, 39, 0.11);
}

.tab-list button {
  min-width: 150px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  color: #794631;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.tab-list button[aria-selected="true"] {
  color: white;
  background: var(--barrio-terracotta);
  box-shadow: 0 8px 18px rgba(185, 72, 28, 0.22);
}

.tab-panel {
  min-height: 470px;
  padding: clamp(25px, 5vw, 62px);
  border: 1px solid rgba(185, 72, 28, 0.15);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(105, 57, 28, 0.14);
}

.identity-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.identity-stamp {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--barrio-terracotta);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.3);
  transform: rotate(-6deg);
}

.identity-stamp i {
  position: absolute;
  inset: 18%;
  border: 6px solid white;
  border-radius: 65% 38% 65% 38%;
  opacity: 0.35;
}

.identity-stamp span {
  position: relative;
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 0.9;
}

.identity-panel h3 {
  margin: 0 0 18px;
  color: var(--barrio-terracotta);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.identity-panel p:last-child {
  color: #6f544a;
}

.barrio-palette {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.barrio-palette article {
  min-height: 175px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 25px;
  color: var(--swatch-ink);
  background: var(--swatch);
  box-shadow: 0 10px 24px rgba(100, 65, 42, 0.12);
}

.barrio-palette span {
  font-weight: 800;
}

.barrio-palette strong {
  margin-top: 3px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.type-panel {
  display: grid;
  gap: 18px;
}

.type-panel>div {
  min-height: 175px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
}

.type-panel span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.serif-sample {
  color: var(--barrio-cream);
  background: var(--barrio-terracotta);
}

.serif-sample strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.9;
  font-weight: 500;
}

.sans-sample {
  color: white;
  background: var(--barrio-navy);
}

.sans-sample strong {
  font-size: clamp(1.5rem, 3vw, 3rem);
  letter-spacing: 0.02em;
}

.moose-section {
  position: relative;
  min-height: 930px;
  padding: 120px clamp(24px, 7vw, 130px);
  overflow: hidden;
  background: #f8f8f7;
}

.moose-heart {
  position: relative;
  z-index: 2;
  width: clamp(210px, 33vw, 430px);
  height: auto;
  margin: 0 auto 36px;
}

.small-pill {
  display: flex;
  margin: 0 auto 80px;
}

.moose-section .small-pill {
  position: relative;
  z-index: 2;
  left: 50%;
  margin-right: 0;
  margin-left: 0;
  translate: -50% 0;
}

.moose-copy {
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.moose-copy h2 {
  font-size: clamp(2.25rem, 3.8vw, 4rem);
}

.moose-copy>p:not(.project-kicker) {
  max-width: 920px;
  color: var(--muted);
}

.moose-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.ghost-button {
  position: relative;
  isolation: isolate;
  width: fit-content;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.07));
  color: #111;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 10px 26px rgba(37, 23, 53, 0.11);
  -webkit-backdrop-filter: blur(2px) saturate(155%) contrast(1.04);
  backdrop-filter: blur(2px) saturate(155%) contrast(1.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ghost-button::before,
.ghost-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ghost-button::before {
  z-index: 0;
  inset: -20%;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.35), transparent 38%, rgba(255, 255, 255, 0.08) 58%, transparent 75%);
  -webkit-backdrop-filter: blur(1px) saturate(170%);
  backdrop-filter: blur(1px) saturate(170%);
  transform: translateX(1px) skewX(-0.6deg);
}

.ghost-button::after {
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 1px 0 rgba(87, 211, 255, 0.36),
    inset -1px 0 rgba(255, 74, 199, 0.3),
    inset 0 1px rgba(255, 220, 91, 0.28),
    inset 0 -1px rgba(118, 83, 255, 0.2);
  mix-blend-mode: screen;
}

.button-label,
.pill-link .pill-dot {
  position: relative;
  z-index: 5;
  filter: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.small-pill:hover,
.ghost-button:hover,
.small-pill:focus-visible,
.ghost-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 #fff, 0 16px 34px rgba(37, 23, 53, 0.16);
}

.plus-shapes {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.plus-shape {
  position: absolute;
  height: auto;
  display: block;
}

.plus-shape-small {
  width: clamp(105px, 10vw, 163px);
  top: 95px;
  right: 18%;
  opacity: 1;
}

.plus-shape-large {
  width: clamp(240px, 25vw, 357px);
  right: -55px;
  bottom: 55px;
  opacity: 1;
}

.process-detail {
  padding: 72px clamp(24px, 7vw, 130px) 150px;
  background: #f5f5f5;
}

.process-detail h2 {
  max-width: none;
  font-size: clamp(2rem, 3vw, 3.5rem);
}

.section-heading h2,
.moose-copy h2,
.process-detail h2 {
  letter-spacing: 0.035em;
  line-height: 0.95;
}

.process-detail ol {
  list-style: none;
  margin: 112px 0 0;
  padding: 0;
  display: grid;
  gap: 106px;
}

.process-detail li {
  padding: 0;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.process-number {
  display: block;
  width: 100%;
  height: auto;
  justify-self: center;
}

.process-detail h3 {
  margin: 0 0 20px;
  color: #17141a;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.process-detail li p {
  margin: 0;
  max-width: none;
  color: #17141a;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .forward-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dieco-project {
    background: linear-gradient(110deg, #fff 0 78%, #315b9c 78%);
  }

  .dieco-brand {
    grid-template-columns: 1fr;
  }

  .book-stage {
    min-height: 430px;
  }

  .identity-panel {
    gap: 35px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 410px 22px 75px;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .forwards,
  .sensipark-project,
  .process-detail,
  .moose-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .forwards {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .formats-fineline {
    left: -28px;
    width: 760px;
  }

  .forward-grid {
    grid-template-columns: 1fr;
  }

  .step-number {
    margin-bottom: 42px;
  }

  .dieco-project {
    padding: 125px 16px 90px;
    background: linear-gradient(100deg, #fff 0 93%, #315b9c 93%);
  }

  .project-intro,
  .dieco-brand {
    padding-left: 8px;
    padding-right: 8px;
  }

  .dieco-brand {
    margin: 50px 0 80px;
    gap: 22px;
  }

  .catalogue-section {
    padding: 0 8px;
  }

  .catalogue-heading {
    padding: 0;
  }

  .book-stage {
    min-height: min(86vw, 520px);
  }

  .book {
    width: min(92%, 470px);
  }

  .book-page,
  .book.is-cover .book-left {
    width: 100%;
    border-radius: 8px;
  }

  .book-right,
  .book-spine {
    display: none !important;
  }

  .catalogue-controls {
    gap: 10px;
  }

  .catalogue-controls p {
    min-width: 140px;
  }

  .sensipark-content {
    padding-top: 12px;
    padding-bottom: 100px;
  }

  .sensi-intro {
    margin-bottom: 60px;
  }

  .web-card {
    margin-top: 84px;
  }

  .sensi-section-heading {
    margin-bottom: 42px;
  }

  .sensi-section-heading span {
    left: -6px;
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .brand-card .sensi-section-heading h3,
  .web-card .sensi-section-heading h3 {
    font-size: 1.65rem;
  }

  .sensi-color-tabs {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sensi-color-picker {
    min-height: auto;
  }

  .sensi-color-picker::after {
    display: none;
  }

  .sensi-color-tablist {
    position: static;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .sensi-color-tab,
  .sensi-color-tab:hover,
  .sensi-color-tab:focus-visible,
  .sensi-color-tab[aria-selected="true"] {
    width: 100%;
    height: 66px;
    border-radius: 17px;
  }

  .sensi-color-tab[aria-selected="true"] {
    transform: translateY(-6px);
    box-shadow: 0 10px 16px rgba(24, 35, 26, 0.25);
  }

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

  .sensi-web-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    font-size: 0.84rem;
  }

  .sensi-web-showcase {
    min-height: auto;
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
  }

  .sensi-web-showcase img {
    position: static;
    width: 100%;
  }

  .sensi-screen-device {
    grid-column: 1 / -1;
  }

  .sensi-screen-page {
    box-shadow: 0 12px 24px rgba(39, 65, 40, 0.12);
  }

  .barrio-project {
    min-height: 1280px;
  }

  .barrio-logo {
    width: min(510px, 94%);
  }

  .tab-list {
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 20px;
  }

  .tab-list button {
    min-width: 120px;
    padding: 11px 17px;
  }

  .tab-panel {
    min-height: 560px;
    padding: 28px 20px;
  }

  .identity-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .identity-stamp {
    width: min(290px, 82vw);
    margin: 0 auto;
  }

  .barrio-palette {
    grid-template-columns: 1fr 1fr;
  }

  .barrio-palette article {
    min-height: 130px;
  }

  .moose-actions {
    flex-wrap: wrap;
  }

  .plus-shape-small {
    width: 92px;
    top: 72px;
    right: 18px;
  }

  .plus-shape-large {
    width: 230px;
    right: -88px;
    bottom: 38px;
  }

  .process-detail li {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .process-detail {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .process-detail ol {
    margin-top: 68px;
    gap: 72px;
  }

  .process-detail h3 {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .process-detail li p {
    font-size: 0.78rem;
    line-height: 1.48;
  }
}

.reference-art-layout {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #f5f5f5;
}

.reference-art-layout>section {
  position: relative;
  z-index: 1;
  background: #f5f5f5 !important;
}

.reference-art-layout>.dieco-project {
  z-index: 1;
  background: #ffffff !important;
}

.dieco-sensipark-transition {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.dieco-sensipark-transition img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.reference-art-layout>.water-transition {
  position: relative;
  z-index: 4;
  isolation: isolate;
  width: 100%;
  height: clamp(740px, 86.52vw, 1495px);
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: linear-gradient(180deg, #e1ebf4 0%, #ffffff 100%) !important;
}

.reference-art-layout>.sensipark-project {
  padding: 0 !important;
  background: linear-gradient(180deg,
      #ffffff 0 400px,
      #244487 400px,
      #ffffff calc(25% + 300px),
      #ffffff 100%) !important;
}

.reference-art-layout .sensipark-content {
  background: transparent !important;
}

.reference-art-layout>.barrio-project {
  background: linear-gradient(180deg,
      #ffffff 0%,
      #ffebd1 25%,
      #ffebd1 75%,
      #f5f5f5 100%) !important;
}

.sensipark-project .sensi-intro>p:last-child {
  color: #202020;
}

.formats-plunge-gradient {
  position: relative;
  z-index: auto;
  background: linear-gradient(180deg, #f5f5f5 0%, #e1ebf4 100%);
}

.formats-plunge-gradient>section {
  background: transparent !important;
}

.reference-art-layout .dieco-wave,
.reference-art-layout .sensi-ribbon,
.reference-art-layout .sensi-speckles {
  display: none !important;
}

.reference-art-layout .transition-field {
  display: none;
}

/* ----------------------------------------------------------------------
   Hôtes des SVG injectés
   ---------------------------------------------------------------------- */
[data-svg-host="water-intro"],
[data-svg-host="plunge"],
[data-svg-host="water-wave"],
[data-svg-host="sensipark-scene"] {
  position: relative;
}

[data-svg-host="water-intro"] {
  overflow: hidden;
}

[data-svg-host="plunge"] {
  min-height: 150px;
}

[data-svg-host="sensipark-scene"] {
  aspect-ratio: 1728 / 3023;
}