:root {
  --bg: #ffffff;
  --text: #2b2b2b;
  --muted: #7b7b7b;
  --border-color: rgba(255, 255, 255, 0.2);
  --main-font: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --p-size: 16px;
  --p-color: #333333;
  --font-titles: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sub_title: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
html,
body {
  font-family: var(--font-sub_title);
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--bg);
  color: var(--text);
  overscroll-behavior-y: none;
  overflow-x: clip;
}
html.lenis,
html.lenis body {
  height: auto;
}
html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
body {
  overflow-x: clip;
}
gogasi-site-shell {
  display: contents;
}

/* Simple page transition: this page fades out on click, then the browser navigates for
   real. The arriving page fades itself in via a plain CSS animation below — no JS, no
   flags, no fetch. Identical behavior on file:// and http(s).
   Opacity only, deliberately no `filter` here: a `filter` on body (even a 0px blur left
   behind by animation-fill-mode) makes it a containing block for its position:fixed
   descendants — the fake loader, sticky header, menu overlay, modals — breaking them for
   as long as the filter lingers. */
html.page-fade-out body {
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

/* Skip entirely on the home page (permanent class, unlike is-loader-active which JS
   removes once the loader finishes — tying this to a class that gets removed mid-life
   would make the selector newly match right as the hero is revealed, restarting the fade
   from opacity:0 and flashing the just-settled page to black before fading it back in).
   The home page always has its own dedicated reveal (the loader, or the skip-flash
   guard); it doesn't need this generic entrance fade on top, at any point in its life. */
body:not(.is-home-page) {
  animation: gogasi-page-fade-in 420ms ease both;
}

@keyframes gogasi-page-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}

html.is-anchor-transitioning #header,
html.is-anchor-transitioning main,
html.is-anchor-transitioning .connect_icon {
  opacity: 0.32;
  filter: blur(8px);
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
html.cursor-hover,
html.cursor-hover body,
html.cursor-hover a,
html.cursor-hover button,
html.cursor-hover input,
html.cursor-hover textarea,
html.cursor-hover [role="button"],
html.cursor-hover * {
  cursor: none !important;
}
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  display: none;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  color: #333333;
  letter-spacing: -0.05em;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1em;
}

@media (max-width: 768px) {
  p {
    font-size: 0.82rem;
  }
  h1 {
    font-size: 2.3rem;
    letter-spacing: -0.07em;
  }
}
h1 {
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: 4.5rem;
  letter-spacing: -0.06em;
  line-height: 0.95;
}
h2 {
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.06em;
  line-height: 0.95;
}
h3 {
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.06em;
  line-height: 0.95;
}
h4 {
  font-family: var(--font-sub_title);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.9em;
  line-height: 0.95;
  text-transform: uppercase;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.2rem;
    letter-spacing: -0.07em;
  }
  h3 {
    font-size: 1.05rem;
    letter-spacing: -0.07em;
  }
  h4 {
    letter-spacing: 0.32em;
  }
}

body.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  overscroll-behavior: contain;
  background: rgba(27, 27, 27, 0.08);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    opacity 0.48s ease,
    visibility 0.48s ease,
    background-color 0.48s ease,
    backdrop-filter 0.48s ease,
    -webkit-backdrop-filter 0.48s ease;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(27, 27, 27, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal.is-closing {
  background: rgba(27, 27, 27, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.modal-inner {
  position: relative;
  min-height: 100dvh;
  height: 100dvh;
  width: min(46rem, calc(100vw - 3rem));
  max-width: 100%;
  margin-left: auto;
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #ffffff;
  color: #1b1b1b;
  box-shadow: -36px 0 80px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal.is-active .modal-inner {
  transform: translateX(0);
}
.modal.is-closing .modal-inner {
  transition-duration: 0.68s;
}
.modal-inner.is-connect {
  padding: 0;
  background: #1b1b1b;
  color: #ffffff;
}
.close-modal {
  position: absolute;
  top: clamp(1.25rem, 2.4vw, 1.75rem);
  right: clamp(1.25rem, 2.4vw, 1.75rem);
  width: 60px;
  height: 60px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition:
    opacity 0.32s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: none;
  cursor: pointer;
}
.modal.is-active .close-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.modal.is-closing .close-modal {
  transition-duration: 0.32s;
}
.close-modal span {
  position: absolute;
  width: 85px;
  height: 1px;
  background: #ffffff;
  transition: transform 0.3s ease;
}
.close-modal span:first-child {
  transform: rotate(45deg);
}
.close-modal span:last-child {
  transform: rotate(-45deg);
}
.close-modal:hover span:first-child,
.close-modal:focus-visible span:first-child {
  transform: rotate(135deg);
}
.close-modal:hover span:last-child,
.close-modal:focus-visible span:last-child {
  transform: rotate(45deg);
}
.connect-layout {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5.5rem, 8vw, 7.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
}
.login-container {
  width: 100%;
  max-width: 450px;
}
.login-form-wrapper {
  display: flex;
  flex-direction: column;
}
.login-container h1 {
  width: 100%;
  color: #ffffff;
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.06em;
  line-height: 0.95;
}
.login-note {
  margin: 1rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}
.login-input {
  width: 100%;
  padding: 1.2rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  margin-bottom: 1rem;
  outline: none;
  transition:
    border-color 0.4s ease,
    color 0.4s ease;
}
.login-input:focus {
  border-bottom-color: #ffffff;
}
.login-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.password-wrapper {
  position: relative;
  width: 100%;
}
.forgot-password {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  font-family: var(--font-sub_title);
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
  background: transparent;
  border: 0;
  padding: 0;
}
.forgot-password:hover {
  color: #ffffff;
}
.forgot-password:disabled {
  cursor: default;
  opacity: 1;
}
.login-submit {
  width: 100%;
  margin-top: 3rem;
  padding: 1.2rem;
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid #ffffff;
  font-family: var(--font-sub_title);
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  font-weight: 400;
  cursor: pointer;
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}
.login-submit:hover {
  background: transparent;
  color: #ffffff;
}
.login-input:disabled,
.login-submit:disabled {
  opacity: 1;
}
.login-submit:disabled {
  cursor: default;
}
@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal-inner,
  .close-modal {
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 768px) {
  .modal {
    background: rgba(27, 27, 27, 0.14);
  }
  .modal.is-active {
    background: rgba(27, 27, 27, 0.24);
  }
  .modal-inner {
    width: 100vw;
  }
  .connect-layout {
    align-items: flex-start;
  }
}
strong {
  font-weight: 800;
}
img,
video {
  display: block;
}
.c_main,
.c_dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100000;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
  background: #fff;
}
.c_dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
}
.c_main {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0;
  transition:
    width 0.35s ease,
    height 0.35s ease,
    opacity 0.25s ease;
}
.c_main.is-hover {
  opacity: 1;
  width: 56px;
  height: 56px;
}
body.is-loader-active .c_main,
body.is-loader-active .c_dot {
  opacity: 0 !important;
  visibility: hidden;
}
#header,
main,
.connect_icon {
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-page-root],
[data-page-chrome] {
  will-change: transform, opacity, filter;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.hero_media,
.tempo_hero_media img,
.tempo_hero_media video,
.reference_visual.is-active {
  will-change: transform, opacity, filter;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.global-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.global-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title-reveal {
  opacity: 1;
}
.section-title-reveal .title-line {
  display: block;
}
.section-title-reveal .title-word {
  display: inline-block;
  white-space: nowrap;
}
.section-title-reveal .title-char {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.28s ease,
    filter 0.36s ease;
}
.section-title-reveal .title-char.is-on {
  opacity: 1;
  filter: blur(0);
}
@media (max-width: 900px) {
  .c_main,
  .c_dot {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-page-root],
  [data-page-chrome],
  .hero_media,
  .tempo_hero_media img,
  .tempo_hero_media video,
  .reference_visual.is-active {
    transition: none !important;
    animation: none !important;
    filter: none !important;
  }
}

main {
  width: min(1700px, 100%);
  margin: 0 auto;
  padding: 15rem 0.625rem 2.5rem;
}

body[class^="page_"] {
  background: #efefec;
  color: #1b1b1b;
}

body[class^="page_"]:not(.page_expedia):not(.page_euphoria):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(
    .page_talan
  ):not(.page_tempo):not(.page_vischer):not(.page_wellzia)
  main {
  background: #efefec;
  padding: 8rem 0.625rem 2.5rem;
}

body[class^="page_"]:not(.page_expedia):not(.page_euphoria):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(
    .page_talan
  ):not(.page_tempo):not(.page_vischer):not(.page_wellzia)
  main
  section {
  background: #efefec;
}

.pages_title {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.9;
  margin-bottom: 26px;
}
body[class^="page_"] .pages_title:not(.section-title-reveal) {
  visibility: hidden;
}

body[class^="page_"]:not(.page_actus_honda):not(.page_actus_light):not(.page_actus_tempo):not(.page_expedia):not(
    .page_euphoria
  ):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(.page_talan):not(.page_tempo):not(.page_vischer):not(
    .page_wellzia
  )
  main {
  margin-top: 0;
  padding: 0 4vw 2.5rem;
  background: #ffffff;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
  overflow: visible;
}

.pages_title_subtitle {
  display: inline-block;
  margin-top: 0.18rem;
  font-family: var(--font-titles);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.pages_title.section-title-reveal .title-line--subtitle {
  display: block;
  margin-top: 0.18rem;
  font-family: var(--font-titles);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
}

@media (max-width: 980px) {
  .pages_title.section-title-reveal .title-char {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .pages_title {
    line-height: 0.98;
  }

  .pages_title_subtitle {
    font-size: 1.2rem;
    line-height: 1.08;
    letter-spacing: -0.07em;
    padding-top: 0.06em;
    padding-bottom: 0.08em;
  }

  .pages_title.section-title-reveal .title-line--subtitle {
    font-size: 1.2rem;
    line-height: 1.08;
    letter-spacing: -0.07em;
    padding-top: 0.06em;
    padding-bottom: 0.08em;
  }
}

.hero_media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

body[class^="page_"]:not(.page_actus_honda):not(.page_actus_light):not(.page_actus_tempo):not(.page_expedia):not(
    .page_euphoria
  ):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(.page_talan):not(.page_tempo):not(.page_vischer):not(
    .page_wellzia
  )
  .pages_title {
  display: block;
  position: fixed;
  left: 0;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 0 24px 0 0;
  font-size: clamp(6rem, 11vw, 11rem);
  letter-spacing: -0.065em;
  line-height: 0.8;
  color: #ffffff;
  pointer-events: none;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  bottom: clamp(7rem, 9vw, 9.5rem);
}

body[class^="page_"]:not(.page_actus_honda):not(.page_actus_light):not(.page_actus_tempo):not(.page_expedia):not(
    .page_euphoria
  ):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(.page_talan):not(.page_tempo):not(.page_vischer):not(
    .page_wellzia
  )
  .pages_title_subtitle,
body[class^="page_"]:not(.page_actus_honda):not(.page_actus_light):not(.page_actus_tempo):not(.page_expedia):not(
    .page_euphoria
  ):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(.page_talan):not(.page_tempo):not(.page_vischer):not(
    .page_wellzia
  )
  .pages_title.section-title-reveal
  .title-line--subtitle {
  color: #ffffff;
}

body[class^="page_"]:not(.page_actus_honda):not(.page_actus_light):not(.page_actus_tempo):not(.page_expedia):not(
    .page_euphoria
  ):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(.page_talan):not(.page_tempo):not(.page_vischer):not(
    .page_wellzia
  )
  .hero_media {
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  margin-top: -72px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  aspect-ratio: auto;
}

@media (max-width: 980px) {
  body[class^="page_"]:not(.page_actus_honda):not(.page_actus_light):not(.page_actus_tempo):not(.page_expedia):not(
      .page_euphoria
    ):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(.page_talan):not(.page_tempo):not(.page_vischer):not(
      .page_wellzia
    )
    main {
    padding-top: 0;
    padding-left: 0;
    padding-right: 10vw;
  }

  body[class^="page_"]:not(.page_actus_honda):not(.page_actus_light):not(.page_actus_tempo):not(.page_expedia):not(
      .page_euphoria
    ):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(.page_talan):not(.page_tempo):not(.page_vischer):not(
      .page_wellzia
    )
    .pages_title {
    width: auto;
    margin-top: 0;
    left: 0;
    padding: 0 20px 0 0;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    line-height: 0.9;
    bottom: clamp(5rem, 12vw, 7rem);
  }

  body[class^="page_"]:not(.page_actus_honda):not(.page_actus_light):not(.page_actus_tempo):not(.page_expedia):not(
      .page_euphoria
    ):not(.page_honda):not(.page_pcp):not(.page_simon_brette):not(.page_talan):not(.page_tempo):not(.page_vischer):not(
      .page_wellzia
    )
    .hero_media {
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin-top: -64px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    aspect-ratio: auto;
  }
}

body[class^="page_"] .project_details {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 5vh 0;
}

body[class^="page_"] .details_left {
  align-self: start;
}

body[class^="page_"] .details_left h2 {
  margin: 0;
}

body[class^="page_"] .details_right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body[class^="page_"] .details_right > h1,
body[class^="page_"] .details_right > h2,
body[class^="page_"] .details_right > h3,
body[class^="page_"] .details_right > p,
body[class^="page_"] .details_right > div {
  margin-top: 0;
  margin-bottom: 0;
}

body[class^="page_"] .details_right > h1 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

body[class^="page_"] .details_right > h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

body[class^="page_"] .details_right > p {
  max-width: 78ch;
}

body[class^="page_"] .details_row_content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.row_02_details_table {
  border-top: 1px solid #d8d8d8;
}
.row_02_details {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px;
  border-bottom: 1px solid #d8d8d8;
  padding: 12px 0;
  font-size: 0.95rem;
}
body[class^="page_"] .row_02_details_table .row_02_details:last-child {
  border-bottom: none;
}
.row_02_details > div,
.row_02_details > p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  color: #333333;
  letter-spacing: -0.05em;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.row_02_details h1 {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: none;
  margin: 0;
}
body[class^="page_"] .row_02 .row_02_details {
  grid-template-columns: 1fr;
  gap: 0;
}
body[class^="page_"] .row_02 .row_02_details > h4,
body[class^="page_"] .row_02 .row_02_details > p {
  grid-column: 1;
  margin: 0;
}
.hero_media {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transition:
    filter 0.45s ease,
    box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

body[class^="page_"] .intro_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42vw);
  align-items: start;
  column-gap: 24px;
  row-gap: 0;
  padding: 5vh 0;
}
body[class^="page_"] .intro_row_texts {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
body[class^="page_"] .intro_row_text_01 {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 10vh;
}
body[class^="page_"] .intro_row_text_02 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
  margin-bottom: 10vh;
}
body[class^="page_"] .intro_row > picture,
body[class^="page_"] .intro_row > img {
  width: 100%;
  display: block;
  align-self: stretch;
}
body[class^="page_"] .intro_row > picture img,
body[class^="page_"] .intro_row > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body[class^="page_"] .intro_row_texts > h2,
body[class^="page_"] .intro_row_texts > h3,
body[class^="page_"] .intro_row_texts > p,
body[class^="page_"] .intro_row_text_01 > h2,
body[class^="page_"] .intro_row_text_01 > p,
body[class^="page_"] .intro_row_text_02 > h2,
body[class^="page_"] .intro_row_text_02 > h3,
body[class^="page_"] .intro_row_text_02 > p {
  margin-top: 0;
  margin-bottom: 0;
}
body[class^="page_"] .intro_row > picture,
body[class^="page_"] .intro_row > img {
  grid-column: 2;
}
body[class^="page_"] .row_02 {
  width: min(42vw, calc(100% - 320px));
  margin-left: auto;
  padding: 5vh 0;
}
body[class^="page_"] .row_03,
body[class^="page_"] .row_05 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  padding: 5vh 0;
}
body[class^="page_"] .row_03 {
  min-height: 100vh;
}
body[class^="page_"] .row_03 picture {
  height: 100%;
}
body[class^="page_"] .row_03 picture,
body[class^="page_"] .row_05 picture,
body[class^="page_"] .row_03 img,
body[class^="page_"] .row_05 img,
body[class^="page_"] .row_04 picture,
body[class^="page_"] .row_04 img {
  width: 100%;
  display: block;
}
body[class^="page_"] .row_03 picture img,
body[class^="page_"] .row_04 picture img,
body[class^="page_"] .row_04 img {
  height: 100%;
  object-fit: cover;
  display: block;
}
body[class^="page_"] .row_05 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr);
  align-items: start;
  max-height: 100vh;
  overflow: hidden;
}
body[class^="page_"] .row_05 picture:first-child {
  max-height: 100vh;
  overflow: hidden;
}
body[class^="page_"] .row_05 picture:first-child img {
  width: 100%;
  max-height: 100vh;
  height: auto;
  object-fit: cover;
}
body[class^="page_"] .row_05 picture:last-child {
  align-self: start;
}
body[class^="page_"] .row_05 picture:last-child img {
  height: auto;
  object-fit: contain;
}
body[class^="page_"] .row_04 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 5vh 0;
}
body[class^="page_"] .row_04 h3,
body[class^="page_"] .row_04 p {
  margin: 0;
}
body[class^="page_"] .row_04 picture,
body[class^="page_"] .row_04 img {
  width: 100%;
}
body[class^="page_"] .row_04 picture img,
body[class^="page_"] .row_04 img {
  width: 100%;
  height: auto;
}

body[class^="page_"] .gallery.gallery--many {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 5vh 0;
}

body[class^="page_"] .gallery_item {
  width: 100%;
  display: block;
}

body[class^="page_"] .gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page_pcp img.pcp-image-06 {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

body.page_euphoria .client-page-result-media img.euphoria-image-05 {
  width: 50%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

body.page_simon_brette .client-page-result-media img.simon-brette-image-08 {
  width: 140%;
  height: auto;
  margin-left: -20%;
}

.client-page-main {
  margin-top: 0;
  padding: 0;
  background: #ffffff;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
  overflow: visible;
  position: relative;
}

.client-page-main > .project_hero {
  position: relative;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.client-page-main > .project_hero > .pages_title {
  display: block;
  visibility: visible !important;
  position: absolute;
  left: 2.4vw;
  top: 63%;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 0 24px 0 0;
  font-size: clamp(6rem, 11vw, 11rem);
  letter-spacing: -0.065em;
  line-height: 0.8;
  color: #ffffff;
  pointer-events: none;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  transform: translateY(-50%);
}

.client-page-main > .project_hero > .pages_title .pages_title_subtitle,
.client-page-main > .project_hero > .pages_title.section-title-reveal .title-line--subtitle {
  display: inline-block;
  position: relative;
  color: #ffffff;
  top: -4.45rem;
  left: 0;
  margin-top: 0;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

.client-page-main > .project_hero > .pages_title.section-title-reveal .title-line--subtitle .title-char {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

.client-page-main > .project_hero > .client-page-hero-media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  margin-bottom: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

.client-page-story {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(48px, 8vw, 112px) clamp(2rem, 5vw, 3.5rem);
  background: #ffffff;
  position: relative;
  z-index: 3;
}

.client-page-section {
  background: #ffffff;
}

.client-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42vw);
  align-items: start;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(27, 27, 27, 0.12);
}

.client-page-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: auto;
}

.client-page-intro-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 0;
  margin: 0;
}

.client-page-intro-media {
  width: 100%;
  display: block;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
}

.client-page-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.client-page-solution,
.client-page-gallery,
.client-page-result {
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(27, 27, 27, 0.12);
}

.client-page-main .client-page-intro,
.client-page-main .client-page-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 44vw);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  background: #ffffff;
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(27, 27, 27, 0.12);
}

.client-page-main .client-page-intro-copy,
.client-page-main .client-page-result-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.client-page-main .client-page-text-block,
.client-page-main .client-page-solution-header {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.client-page-main .client-page-solution-header {
  max-width: 56rem;
}

.client-page-main .client-page-kicker,
.client-page-main .client-page-section-label {
  margin: 0;
  font-family: var(--font-sub_title);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.72;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.client-page-main .client-page-kicker::before,
.client-page-main .client-page-section-label::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: rgba(27, 27, 27, 0.35);
  flex: 0 0 auto;
}

.client-page-main .client-page-text-block h2,
.client-page-main .client-page-solution-header h2,
.client-page-main .client-page-result-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.client-page-main .client-page-solution-header h2 {
  max-width: 18ch;
}

.client-page-main .client-page-text-block p,
.client-page-main .client-page-solution-header p,
.client-page-main .client-page-result-copy p,
.client-page-main .client-page-card p {
  margin: 0;
  max-width: 34ch;
}

.client-page-main .client-page-solution-header p {
  max-width: 56ch;
}

.client-page-main .client-page-intro-emphasis {
  font-family: var(--font-titles);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.client-page-main .client-page-intro-media-frame,
.client-page-main .client-page-result-media {
  margin: 0;
  height: 100%;
  min-height: clamp(320px, 48vw, 680px);
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.client-page-main .client-page-intro-media-frame img,
.client-page-main .client-page-result-media img,
.client-page-main .client-page-gallery-duo img,
.client-page-main .client-page-gallery-tail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(0, var(--client-page-media-y, 0px), 0);
  transition: none;
  will-change: transform;
}

.client-page-main .client-page-intro-media-frame:hover img,
.client-page-main .client-page-result-media:hover img,
.client-page-main .client-page-gallery-duo picture:hover img,
.client-page-main .client-page-gallery-tail picture:hover img {
  transform: translate3d(0, var(--client-page-media-y, 0px), 0) scale(1.05);
}

.client-page-main .client-page-solution {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  background: #ffffff;
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(27, 27, 27, 0.12);
}

.client-page-main .client-page-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.client-page-main .client-page-card {
  min-height: 168px;
  padding: 1rem;
  background: #1b1b1b;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.client-page-main .client-page-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.client-page-main .client-page-card p {
  color: #ffffff;
}

.client-page-main .client-page-gallery-duo,
.client-page-main .client-page-gallery-tail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(27, 27, 27, 0.12);
  background: #ffffff;
}

.client-page-main .client-page-gallery-tail {
  align-items: start;
}

.client-page-main .client-page-gallery-tail--three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-page-main .client-page-gallery-tail--three-up picture {
  aspect-ratio: 1 / 1;
}

.client-page-main .client-page-gallery-tail--three-up picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page_talan .client-page-gallery-tail--three-up {
  grid-template-columns: 1.5fr 1fr 1fr;
}

body.page_talan .client-page-gallery-tail--three-up picture.talan-gallery-featured {
  aspect-ratio: 1.25 / 1;
}

body.page_talan .client-page-result-copy {
  align-items: center;
  text-align: center;
  justify-self: center;
  align-self: center;
}

body.page_talan .client-page-result-copy .client-page-section-label,
body.page_talan .client-page-result-copy h2,
body.page_talan .client-page-result-copy p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.page_vischer .client-page-result {
  align-items: center;
}

body.page_vischer .client-page-result-copy {
  align-self: center;
}

body.page_vischer .client-page-gallery-tail--vischer-grid picture {
  grid-column: 2;
  aspect-ratio: 1 / 1;
}

body.page_vischer .client-page-gallery-tail--vischer-grid picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page_wellzia .client-page-result {
  align-items: end;
}

body.page_wellzia .client-page-result-copy {
  align-self: end;
}

body.page_allia .allia-fullwidth-media,
body.page_allia .allia-fullwidth-media picture,
body.page_allia .allia-fullwidth-media img {
  width: 100%;
  height: auto;
}

body.page_allia .allia-fullwidth-media {
  margin: 0;
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(27, 27, 27, 0.12);
}

body.page_allia .allia-fullwidth-media picture {
  aspect-ratio: 2500 / 1667;
}

body.page_allia .allia-fullwidth-media img {
  display: block;
  height: 100%;
  object-fit: cover;
}

body.page_interexpert .euphoria_gallery_duo picture,
body.page_interexpert .euphoria_gallery_duo picture:last-child {
  width: 100%;
  justify-self: stretch;
  align-self: stretch;
  aspect-ratio: auto;
}

body.page_interexpert .euphoria_gallery_duo picture img,
body.page_interexpert .euphoria_gallery_duo picture:last-child img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body.page_interexpert .euphoria_story {
  padding-left: 4vw;
  padding-right: 4vw;
}

body.page_interexpert .euphoria_gallery_duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.page_interexpert .euphoria_gallery_duo picture,
body.page_interexpert .euphoria_gallery_duo picture:last-child {
  aspect-ratio: 1.12 / 1;
}

body.page_interexpert .euphoria_gallery_duo picture img,
body.page_interexpert .euphoria_gallery_duo picture:last-child img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

body.page_pro_senectute .client-page-gallery-tail--pro-senectute {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page_pro_senectute .client-page-gallery-tail--pro-senectute picture {
  aspect-ratio: 1 / 1;
}

body.page_pro_senectute .client-page-gallery-tail--pro-senectute picture.pro-senectute-fullwidth {
  grid-column: 1 / -1;
  aspect-ratio: 2500 / 1667;
}

body.page_pro_senectute .client-page-gallery-tail--pro-senectute picture.pro-senectute-fullwidth img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page_small_city .client-page-gallery-tail--small-city {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page_small_city .client-page-gallery-tail--small-city picture {
  aspect-ratio: 1 / 1;
}

body.page_small_city .client-page-gallery-tail--small-city picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page_small_city picture.small-city-portrait {
  aspect-ratio: 9 / 16;
}

.client-page-main .client-page-gallery-tail--fullwidth {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-page-main .client-page-gallery-tail--fullwidth picture {
  width: 100%;
  aspect-ratio: 1600 / 1067;
}

.client-page-main .client-page-gallery-tail--fullwidth picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page_honda .client-page-gallery-tail--fullwidth picture:last-child {
  aspect-ratio: 1600 / 2400;
}

.client-page-main .client-page-gallery-duo picture,
.client-page-main .client-page-gallery-tail picture {
  display: block;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.client-page-main .client-page-gallery-duo picture {
  aspect-ratio: 1.15 / 1;
}

.client-page-main .client-page-gallery-duo {
  min-height: 0;
  align-items: center;
}

.client-page-main .client-page-gallery-duo picture:last-child {
  width: 100%;
  justify-self: stretch;
  align-self: stretch;
}

.client-page-main .client-page-gallery-duo picture:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-page-main .client-page-gallery-duo--complementary {
  align-items: start;
}

.client-page-main .client-page-gallery-duo--complementary picture:first-child {
  aspect-ratio: auto;
  align-self: start;
}

.client-page-main .client-page-gallery-duo--complementary picture:first-child img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.client-page-main .client-page-gallery-tail picture:first-child {
  aspect-ratio: 1.22 / 1;
}

.client-page-main .client-page-gallery-tail picture:last-child {
  aspect-ratio: 0.9 / 1;
}

.client-page-main .client-page-gallery-tail picture:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-page-main .client-page-result-media--extra {
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(27, 27, 27, 0.12);
}

@media (max-width: 980px) {
  .client-page-main > .project_hero > .pages_title {
    width: auto;
    margin-top: 0;
    left: 2.4vw;
    top: 63%;
    padding: 0 20px 0 0;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    line-height: 0.9;
    transform: translateY(-50%);
  }

  .client-page-main > .project_hero > .client-page-hero-media {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin-top: -64px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

@media (max-width: 768px) {
  .client-page-main {
    padding-top: 0;
    padding-left: 0;
    padding-right: 10vw;
  }

  .client-page-intro {
    grid-template-columns: 1fr;
  }

  .client-page-story {
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .client-page-main .client-page-intro,
  .client-page-main .client-page-result,
  .client-page-main .client-page-solution,
  .client-page-main .client-page-gallery-duo,
  .client-page-main .client-page-gallery-tail,
  .client-page-main .client-page-solution-grid {
    grid-template-columns: 1fr;
  }
}

body.has-image-focus {
  overflow: hidden;
}

.image_focus_overlay {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: grid;
  place-items: center;
  padding: 6vh 6vw;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: rgba(14, 14, 16, 0.16);
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  transition:
    opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.image_focus_overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image_focus_overlay__media {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.28),
    0 10px 28px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 20px, 0) scale(0.9);
  opacity: 0;
  transition:
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.image_focus_overlay.is-visible .image_focus_overlay__media {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

@media (max-width: 980px) {
  .image_focus_overlay {
    display: grid;
    padding: 5vh 4vw;
    background: rgba(14, 14, 16, 0.42);
    backdrop-filter: blur(10px) saturate(110%);
    -webkit-backdrop-filter: blur(10px) saturate(110%);
  }

  .image_focus_overlay__media {
    max-width: 92vw;
    max-height: 82vh;
  }

  main {
    padding: 96px 12px 24px;
  }
  body[class^="page_"] .project_details {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .row_02_details {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .row_02_details > div,
  .row_02_details > p {
    font-size: 0.82rem;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  p {
    font-size: 0.8rem;
    line-height: 1.25;
  }
}
@media (prefers-reduced-motion: reduce) {
  .global-reveal,
  #header,
  main,
  .connect_icon {
    transition: none;
  }
}

body.page_euphoria {
  background: #ffffff;
  color: #141414;
}

body.page_tempo main {
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: #ffffff;
  display: block;
  overflow: visible;
  position: relative;
}

body.page_tempo .project_hero--tempo {
  position: relative;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

body.page_tempo .project_hero--tempo > .pages_title {
  display: block;
  visibility: visible !important;
  position: absolute;
  left: 2.4vw;
  top: 63%;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 0 24px 0 0;
  font-size: clamp(6rem, 11vw, 11rem);
  letter-spacing: -0.065em;
  line-height: 0.8;
  color: #ffffff;
  pointer-events: none;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  transform: translateY(-50%);
}

body.page_tempo .project_hero--tempo > .pages_title .pages_title_subtitle,
body.page_tempo .project_hero--tempo > .pages_title.section-title-reveal .title-line--subtitle {
  display: inline-block;
  position: relative;
  color: #ffffff;
  top: -4.45rem;
  left: 0;
  margin-top: 0;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

body.page_tempo .project_hero--tempo > .pages_title.section-title-reveal .title-line--subtitle .title-char {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

body.page_tempo .project_hero--tempo .hero_media {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  margin-bottom: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

body.page_vischer main {
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: #ffffff;
  display: block;
  overflow: visible;
  position: relative;
}

body.page_vischer .project_hero {
  position: relative;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

body.page_vischer .project_hero > .pages_title {
  display: block;
  visibility: visible !important;
  position: absolute;
  left: 2.4vw;
  top: 63%;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 0 24px 0 0;
  font-size: clamp(6rem, 11vw, 11rem);
  letter-spacing: -0.065em;
  line-height: 0.8;
  color: #ffffff;
  pointer-events: none;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  transform: translateY(-50%);
}

body.page_vischer .project_hero > .pages_title .pages_title_subtitle,
body.page_vischer .project_hero > .pages_title.section-title-reveal .title-line--subtitle {
  display: inline-block;
  position: relative;
  color: #ffffff;
  top: -4.45rem;
  left: 0;
  margin-top: 0;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

body.page_vischer .project_hero > .pages_title.section-title-reveal .title-line--subtitle .title-char {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

body.page_vischer .project_hero .hero_media {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  margin-bottom: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

body.page_wellzia main {
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: #ffffff;
  display: block;
  overflow: visible;
  position: relative;
}

body.page_wellzia .project_hero {
  position: relative;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

body.page_wellzia .project_hero > .pages_title {
  display: block;
  visibility: visible !important;
  position: absolute;
  left: 2.4vw;
  top: 63%;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 0 24px 0 0;
  font-size: clamp(6rem, 11vw, 11rem);
  letter-spacing: -0.065em;
  line-height: 0.8;
  color: #ffffff;
  pointer-events: none;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  transform: translateY(-50%);
}

body.page_wellzia .project_hero > .pages_title .pages_title_subtitle,
body.page_wellzia .project_hero > .pages_title.section-title-reveal .title-line--subtitle {
  display: inline-block;
  position: relative;
  color: #ffffff;
  top: -4.45rem;
  left: 0;
  margin-top: 0;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

body.page_wellzia .project_hero > .pages_title.section-title-reveal .title-line--subtitle .title-char {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

body.page_wellzia .project_hero .hero_media {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  margin-bottom: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

body.page_euphoria main {
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: #ffffff;
  display: block;
  overflow: visible;
  position: relative;
}

body.page_euphoria .project_hero--euphoria {
  position: relative;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

body.page_euphoria .euphoria_story {
  padding-left: 4vw;
  padding-right: 4vw;
}

body.page_euphoria .project_hero--euphoria > .pages_title:not(.section-title-reveal),
body.page_euphoria .project_hero--euphoria > .pages_title {
  display: block;
  visibility: visible !important;
  position: absolute;
  left: 2.4vw;
  top: 63%;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 0 24px 0 0;
  font-size: clamp(6rem, 11vw, 11rem);
  letter-spacing: -0.065em;
  line-height: 0.8;
  color: #ffffff;
  pointer-events: none;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  transform: translateY(-50%);
}

body.page_euphoria .pages_title_subtitle,
body.page_euphoria .pages_title.section-title-reveal .title-line--subtitle {
  display: inline-block;
  position: relative;
  color: #ffffff;
  top: -4.45rem;
  left: 0;
  margin-top: 0;
}

body.page_euphoria .project_hero--euphoria .hero_media {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  margin-bottom: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

body.page_euphoria .euphoria_story {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(48px, 8vw, 112px) clamp(2rem, 5vw, 3.5rem);
  background: #ffffff;
  position: relative;
  z-index: 3;
}

body.page_euphoria .euphoria_intro,
body.page_euphoria .euphoria_result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 44vw);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

body.page_euphoria .euphoria_intro,
body.page_euphoria .euphoria_result,
body.page_euphoria .euphoria_solution,
body.page_euphoria .euphoria_gallery_duo,
body.page_euphoria .euphoria_gallery_tail {
  background: #ffffff;
}

body.page_euphoria .euphoria_intro,
body.page_euphoria .euphoria_result,
body.page_euphoria .euphoria_solution,
body.page_euphoria .euphoria_gallery_duo,
body.page_euphoria .euphoria_gallery_tail {
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(27, 27, 27, 0.12);
}

body.page_euphoria .client-page-intro-copy,
body.page_euphoria .client-page-result-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

body.page_euphoria .client-page-intro-media-frame,
body.page_euphoria .client-page-result-media {
  margin: 0;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  border: 0;
}

body.page_euphoria .client-page-intro-media-frame img,
body.page_euphoria .client-page-result-media img,
body.page_euphoria .euphoria_gallery_duo img,
body.page_euphoria .euphoria_gallery_tail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(0, var(--client-page-media-y, 0px), 0);
  transition: none;
  will-change: transform;
}

body.page_euphoria .client-page-intro-media-frame:hover img,
body.page_euphoria .client-page-result-media:hover img,
body.page_euphoria .euphoria_gallery_duo picture:hover img,
body.page_euphoria .euphoria_gallery_tail picture:hover img {
  transform: translate3d(0, var(--client-page-media-y, 0px), 0) scale(1.05);
}

body.page_euphoria .client-page-intro-media-frame:hover,
body.page_euphoria .client-page-result-media:hover,
body.page_euphoria .euphoria_gallery_duo picture:hover,
body.page_euphoria .euphoria_gallery_tail picture:hover {
  z-index: 5;
}

body.page_euphoria .client-page-intro-media-frame picture {
  display: block;
  height: 100%;
}

body.page_euphoria .euphoria_solution {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

body.page_euphoria .client-page-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page_euphoria .client-page-card {
  min-height: 168px;
  padding: 1rem;
  background: #1b1b1b;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

body.page_euphoria .client-page-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body.page_euphoria .client-page-card p {
  color: #ffffff;
}

body.page_euphoria .euphoria_gallery_duo,
body.page_euphoria .euphoria_gallery_tail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page_euphoria .euphoria_gallery_duo picture,
body.page_euphoria .euphoria_gallery_tail picture {
  display: block;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  border: 0;
}

body.page_euphoria .euphoria_gallery_duo {
  min-height: 0;
  align-items: center;
}

body.page_euphoria .euphoria_gallery_duo picture:last-child {
  width: 72%;
  justify-self: end;
  align-self: center;
}

body.page_euphoria .euphoria_gallery_duo picture:last-child img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body.page_fes_geneve.page_euphoria .euphoria_gallery_duo picture:last-child {
  width: 100%;
  justify-self: stretch;
}

body.page_euphoria .euphoria_gallery_tail picture:first-child {
  aspect-ratio: 1.22 / 1;
}

body.page_euphoria .euphoria_gallery_tail picture:last-child {
  aspect-ratio: 0.9 / 1;
}

body.page_euphoria .euphoria_gallery_tail picture:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page_euphoria .client-page-text-block,
body.page_euphoria .client-page-solution-header {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

body.page_euphoria .euphoria_solution .client-page-solution-header {
  max-width: 56rem;
}

body.page_euphoria .client-page-kicker,
body.page_euphoria .client-page-section-label {
  margin: 0;
  font-family: var(--font-sub_title);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.72;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

body.page_euphoria .client-page-kicker::before,
body.page_euphoria .client-page-section-label::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: rgba(27, 27, 27, 0.35);
  flex: 0 0 auto;
}

body.page_euphoria .client-page-text-block h2,
body.page_euphoria .client-page-solution-header h2,
body.page_euphoria .client-page-result-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

body.page_euphoria .euphoria_solution .client-page-solution-header h2 {
  max-width: 18ch;
}

body.page_euphoria .client-page-text-block p,
body.page_euphoria .client-page-solution-header p,
body.page_euphoria .client-page-result-copy p,
body.page_euphoria .client-page-card p {
  margin: 0;
  max-width: 34ch;
}

body.page_euphoria .euphoria_solution .client-page-solution-header p {
  max-width: 56ch;
}

body.page_euphoria .client-page-intro-emphasis {
  font-family: var(--font-titles);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

@media (max-width: 980px) {
  body.page_tempo .project_hero--tempo > .pages_title {
    width: auto;
    margin-top: 0;
    left: 2.4vw;
    top: 63%;
    padding: 0 20px 0 0;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    line-height: 0.9;
    transform: translateY(-50%);
  }

  body.page_tempo .project_hero--tempo .hero_media {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin-top: -64px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  body.page_vischer .project_hero > .pages_title {
    width: auto;
    margin-top: 0;
    left: 2.4vw;
    top: 63%;
    padding: 0 20px 0 0;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    line-height: 0.9;
    transform: translateY(-50%);
  }

  body.page_vischer .project_hero .hero_media {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin-top: -64px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  body.page_wellzia .project_hero > .pages_title {
    width: auto;
    margin-top: 0;
    left: 2.4vw;
    top: 63%;
    padding: 0 20px 0 0;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    line-height: 0.9;
    transform: translateY(-50%);
  }

  body.page_wellzia .project_hero .hero_media {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin-top: -64px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  body.page_euphoria main {
    padding-top: 0;
  }

  body.page_euphoria .project_hero--euphoria > .pages_title:not(.section-title-reveal),
  body.page_euphoria .project_hero--euphoria > .pages_title {
    width: auto;
    margin-top: 0;
    left: 2.4vw;
    top: 63%;
    padding: 0 20px 0 0;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    line-height: 0.9;
    transform: translateY(-50%);
  }

  body.page_euphoria .project_hero--euphoria .hero_media {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin-top: -64px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

@media (max-width: 760px) {
  body.page_euphoria main {
    min-height: auto;
    display: block;
    padding-top: 0;
    padding-left: 0;
    padding-right: 10vw;
  }

  body.page_euphoria .euphoria_intro,
  body.page_euphoria .euphoria_result,
  body.page_euphoria .euphoria_solution,
  body.page_euphoria .euphoria_gallery_duo,
  body.page_euphoria .euphoria_gallery_tail,
  body.page_euphoria .client-page-solution-grid {
    grid-template-columns: 1fr;
  }

  body.page_euphoria .euphoria_story {
    gap: 1.5rem;
    padding-bottom: 3rem;
  }
}

body.page_interexpert.page_euphoria .euphoria_gallery_duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.page_interexpert.page_euphoria .euphoria_gallery_duo picture,
body.page_interexpert.page_euphoria .euphoria_gallery_duo picture:last-child {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  justify-self: stretch;
  align-self: stretch;
}

body.page_interexpert.page_euphoria .euphoria_gallery_duo picture img,
body.page_interexpert.page_euphoria .euphoria_gallery_duo picture:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-------------------------------homepage base-----------------------------*/
html {
  background: #ffffff;
  scrollbar-gutter: stable;
}
body {
  background-color: #ffffff;
  color: #292929;
  transition:
    background-color 1s ease,
    color 0.8s ease;
}
body.color-nocturne {
  background-color: #18181b;
  color: #f5f5f0;
}
main {
  width: 100%;
  margin: 0;
  padding: 0;
}
body.is-loader-active main,
body.is-loader-active #header,
body.is-loader-active .connect_icon {
  opacity: 0;
  filter: none;
  pointer-events: none;
}
body main,
body #header,
body .connect_icon {
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
body.is-home-intro-ready main,
body.is-home-intro-ready #header,
body.is-home-intro-ready .connect_icon {
  filter: none;
}

.fake_loader {
  --loader-progress: 0;
  position: fixed;
  inset: 0;
  z-index: 20000;
  overflow: hidden;
  transform: translateX(0);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 33%),
    radial-gradient(circle at 50% 62%, rgba(12, 46, 94, 0.15) 0%, rgba(4, 8, 16, 0) 34%), #020202;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.is-loader-active .fake_loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
html.skip-home-loader-flash .fake_loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.fake_loader::before,
.fake_loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fake_loader::before {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0) 12%,
      rgba(255, 255, 255, 0.02) 48%,
      rgba(255, 255, 255, 0) 100%
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 6px
    );
  mix-blend-mode: screen;
  opacity: 0.22;
}
.fake_loader::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 52%),
    radial-gradient(circle at 50% 50%, rgba(0, 119, 255, 0.08), rgba(0, 0, 0, 0) 58%);
  opacity: 0.9;
}
.fake_loader.is-finalizing::after {
  opacity: 1;
}
.fake_loader.is-exit {
  visibility: visible;
  animation: fakeLoaderExit 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fake_loader__noise {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.04), transparent 24%),
    radial-gradient(circle at 74% 35%, rgba(255, 255, 255, 0.03), transparent 20%),
    radial-gradient(circle at 45% 68%, rgba(48, 111, 190, 0.07), transparent 26%);
  opacity: 0.45;
  animation: fakeLoaderNoise 2.8s steps(2, end) infinite;
}
.fake_loader__scan {
  position: absolute;
  left: 50%;
  width: min(56vw, 640px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-50%);
  opacity: 0.18;
}
.fake_loader__scan--one {
  top: 28%;
  animation: fakeLoaderScan 4.2s ease-in-out infinite;
}
.fake_loader__scan--two {
  bottom: 24%;
  width: min(42vw, 460px);
  opacity: 0.1;
  animation: fakeLoaderScan 4.8s ease-in-out infinite reverse;
}
.fake_loader__center {
  --loader-center-size: 220px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--loader-center-size);
  height: var(--loader-center-size);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.fake_loader.is-exit .fake_loader__center {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
}
.fake_loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  animation: fakeLoaderRingSpin 8.5s linear infinite;
}
.fake_loader__ring::before,
.fake_loader__ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 10px;
}
.fake_loader__ring::before {
  border: 1px solid rgba(255, 255, 255, 0.045);
}
.fake_loader__ring::after {
  inset: -1px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transform: rotate(calc(var(--loader-progress) * 120deg));
}
.fake_loader__ring.is-jitter {
  animation-duration: 4.2s;
  transform: translate3d(1.2px, -0.9px, 0) rotate(0.45deg);
}
.fake_loader__ring-core {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.035);
}
.fake_loader__percent {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  z-index: 2;
  font-family: "Segoe UI", SegoeUI, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.68rem, 3.5vw, 4.06rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: none;
  opacity: 0.82;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    opacity 0.2s linear;
}
.fake_loader__percent.is-updating {
  transform: translate(-50%, calc(-50% - 2px));
}
.fake_loader__percent::before,
.fake_loader__percent::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.fake_loader__percent::before {
  clip-path: inset(0 0 54% 0);
}
.fake_loader__percent::after {
  clip-path: inset(58% 0 0 0);
}
.fake_loader__percent.is-glitch {
  transform: translate(-50%, -50%) translate3d(-2px, 0.6px, 0) skewX(-7deg);
  opacity: 0.95;
  text-shadow:
    -2px 0 rgba(255, 34, 118, 0.18),
    2px 0 rgba(0, 174, 255, 0.16),
    0 0 18px rgba(190, 190, 190, 0.08);
}
.fake_loader__percent.is-slice::before,
.fake_loader__percent.is-slice::after {
  opacity: 0.95;
}
.fake_loader__percent.is-slice::before {
  color: rgba(255, 46, 122, 0.9);
  transform: translate3d(-8px, -1px, 0);
  animation: fakeLoaderSliceTop 0.11s steps(2, end) 1;
}
.fake_loader__percent.is-slice::after {
  color: rgba(0, 176, 255, 0.92);
  transform: translate3d(9px, 1px, 0);
  animation: fakeLoaderSliceBottom 0.13s steps(2, end) 1;
}
.fake_loader__status {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sub_title);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}
.fake_loader__hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fake_loader__fragment {
  position: absolute;
  font-family: var(--font-sub_title);
  font-size: 0.48rem;
  letter-spacing: 1.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.26);
  opacity: 0.05;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    filter 0.16s ease;
}
.fake_loader__fragment.is-live {
  opacity: 0.9;
  filter: blur(0.35px);
  text-shadow:
    -1px 0 rgba(255, 34, 118, 0.2),
    1px 0 rgba(0, 174, 255, 0.18);
}
.fake_loader__fragment--a {
  top: 12%;
  left: 10%;
}
.fake_loader__fragment--b {
  top: 18%;
  right: 13%;
}
.fake_loader__fragment--c {
  top: 68%;
  left: 14%;
}
.fake_loader__fragment--d {
  right: 11%;
  bottom: 22%;
}
.fake_loader__fragment--e {
  left: 23%;
  bottom: 12%;
}
.fake_loader__fragment--f {
  top: 46%;
  right: 20%;
}
.fake_loader__flash {
  position: absolute;
  width: min(16vw, 180px);
  aspect-ratio: 0.86;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.38) blur(0.45px);
  transform: scale(0.96);
  transition:
    opacity 0.08s linear,
    transform 0.12s steps(2, end),
    filter 0.12s steps(2, end);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.05);
}
.fake_loader__flash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.55));
}
.fake_loader__flash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11) 0,
      rgba(255, 255, 255, 0.11) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(90deg, rgba(255, 0, 94, 0.2), transparent 18%, transparent 82%, rgba(0, 157, 255, 0.18));
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.08s linear;
}
.fake_loader__flash::after {
  box-shadow:
    inset -6px 0 0 rgba(255, 28, 98, 0.08),
    inset 7px 0 0 rgba(0, 162, 255, 0.07);
}
.fake_loader__flash-slice {
  position: absolute;
  left: 0;
  right: 0;
  height: 22%;
  background-image: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  filter: grayscale(1) contrast(1.6) brightness(0.95);
}
.fake_loader__flash-slice--top {
  top: 11%;
}
.fake_loader__flash-slice--mid {
  top: 42%;
}
.fake_loader__flash-slice--bottom {
  bottom: 10%;
}
.fake_loader__flash.is-live {
  opacity: 0.58;
  filter: grayscale(1) contrast(1.46) brightness(0.9) saturate(0.9);
  transform: scale(1.024);
}
.fake_loader__flash.is-live::before {
  opacity: 0.9;
}
.fake_loader__flash.is-glitch {
  filter: grayscale(1) contrast(1.75) brightness(1.08) saturate(0.95) blur(0.2px);
  transform: scale(1.05) skewX(-2deg);
}
.fake_loader__flash.is-glitch::before {
  opacity: 1;
}
.fake_loader__flash.is-slice .fake_loader__flash-slice {
  opacity: 0.92;
}
.fake_loader__flash.is-slice .fake_loader__flash-slice--top {
  transform: translate3d(-14px, -3px, 0);
}
.fake_loader__flash.is-slice .fake_loader__flash-slice--mid {
  transform: translate3d(16px, 1px, 0);
}
.fake_loader__flash.is-slice .fake_loader__flash-slice--bottom {
  transform: translate3d(-10px, 2px, 0);
}
.fake_loader__flash--one {
  top: 12%;
  left: 14%;
}
.fake_loader__flash--two {
  top: 8%;
  right: 14%;
}
.fake_loader__flash--three {
  bottom: 10%;
  left: 50%;
  margin-left: -90px;
}
.fake_loader.is-finalizing .fake_loader__flash.is-live {
  opacity: 0.62;
  filter: grayscale(1) contrast(1.4) brightness(0.96);
}
@keyframes fakeLoaderRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fakeLoaderNoise {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.32;
  }
  25% {
    transform: translate3d(0.4%, -0.6%, 0);
    opacity: 0.42;
  }
  50% {
    transform: translate3d(-0.3%, 0.5%, 0);
    opacity: 0.36;
  }
  75% {
    transform: translate3d(0.5%, 0.2%, 0);
    opacity: 0.46;
  }
}
@keyframes fakeLoaderScan {
  0%,
  100% {
    opacity: 0.08;
    transform: translateX(-50%) scaleX(0.88);
  }
  50% {
    opacity: 0.24;
    transform: translateX(-50%) scaleX(1.06);
  }
}
@keyframes fakeLoaderSliceTop {
  0% {
    transform: translate3d(-12px, -2px, 0);
  }
  50% {
    transform: translate3d(5px, 1px, 0);
  }
  100% {
    transform: translate3d(-8px, -1px, 0);
  }
}
@keyframes fakeLoaderSliceBottom {
  0% {
    transform: translate3d(12px, 2px, 0);
  }
  50% {
    transform: translate3d(-4px, -1px, 0);
  }
  100% {
    transform: translate3d(9px, 1px, 0);
  }
}
@keyframes fakeLoaderExit {
  0% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(24px);
    transform: scale(1.06);
  }
}
.loader-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: #ffffff;
  transform-origin: left;
}
/*----------------------------scroll indicator------------------------*/
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 100;
  text-decoration: none;
  pointer-events: none;
  opacity: 0;
  animation: scrollLifeCycle 15s ease-in-out forwards;
}
.home_scroll_indicator {
  bottom: clamp(20px, 3vw, 36px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  animation: none;
  gap: 14px;
}
.home_scroll_indicator .scroll-text {
  font-size: 1rem;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.82);
}
.home_scroll_indicator .scroll-arrows span {
  width: 14px;
  height: 14px;
  border-bottom-color: rgba(255, 255, 255, 0.82);
  border-right-color: rgba(255, 255, 255, 0.82);
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #1b1b1b;
  font-weight: 300;
}
.scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-arrows span {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #1b1b1b;
  border-right: 1px solid #1b1b1b;
  transform: rotate(45deg);
  margin: -2px;
  animation: arrowWave 2.5s infinite;
}
.scroll-arrows span:nth-child(2) {
  animation-delay: 0.2s;
}
@keyframes arrowWave {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}
@keyframes scrollLifeCycle {
  0%,
  40% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  95%,
  100% {
    opacity: 0;
  }
}
/*-------------------------------header + logo--------------------------*/
header {
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
  z-index: 1105;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-family: var(--font-sub_title);
  transition:
    padding 0.5s ease,
    mix-blend-mode 0.3s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
  mix-blend-mode: difference;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
header.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header.menu-open {
  mix-blend-mode: normal;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .nav-toggle span {
    opacity: 1;
  }
  header .logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }
  header.is-visible .logo,
  header.menu-open .logo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
header .logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: invert(1);
}
.logo a {
  display: flex;
  align-items: center;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: invert(1);
}
header .logo {
  display: flex;
  align-items: center;
  min-height: 60px;
  position: relative;
  top: 0;
}
@media (max-width: 768px) {
  header {
    top: 0;
  }

  header .logo img,
  .logo img {
    height: 34px;
  }

  .nav-toggle.is-open span:first-child,
  header.menu-open .nav-toggle span:first-child,
  .nav-toggle.is-open span:last-child,
  header.menu-open .nav-toggle span:last-child {
    width: 57px;
    margin-left: -28.5px;
  }
}
.connect_icon {
  --connect-hover-x: 0px;
  --connect-hover-y: 0px;
  position: fixed;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.connect_icon:hover,
.connect_icon:focus-visible {
  opacity: 1;
}
.connect_link {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.connect_icon:hover .connect_link,
.connect_icon:focus-visible .connect_link {
  transform: scale(1.2);
}
.connect_hover_card {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.9rem);
  width: 190px;
  min-height: 190px;
  padding: 1rem 1.05rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  backdrop-filter: blur(var(--contact-scroll-blur)) saturate(1.08);
  -webkit-backdrop-filter: blur(var(--contact-scroll-blur)) saturate(1.08);
  color: #1b1b1b;
  font-family: var(--font-titles);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--connect-hover-x)), calc(14px + var(--connect-hover-y)), 0) scale(0.92);
  transform-origin: top center;
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}
.connect_icon:hover .connect_hover_card,
.connect_icon:focus-visible .connect_hover_card,
.connect_icon.is-hover-card-visible .connect_hover_card {
  opacity: 1;
  visibility: visible;
  transform: translate3d(calc(-50% + var(--connect-hover-x)), var(--connect-hover-y), 0) scale(1);
}
body.modal-open .connect_icon {
  opacity: 0;
  pointer-events: none;
}
header.menu-open .connect_link {
  filter: brightness(0) invert(1);
}
@media (max-width: 900px) {
  .connect_icon {
    top: 1rem;
  }
  .connect_link {
    height: 15px;
  }
}
/*-------------------------------navigation-----------------------------*/
nav {
  position: relative;
  background: transparent !important;
  background-color: transparent !important;
}
.nav-toggle {
  display: block;
  position: fixed;
  top: 0.5rem;
  right: clamp(1.25rem, 2.4vw, 1.75rem);
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  z-index: 1102;
  box-shadow: none;
  isolation: isolate;
  mix-blend-mode: difference;
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 52px;
  height: 2px;
  background: #ffffff;
  opacity: 1;
  border-radius: 999px;
  display: block;
  transition:
    transform 0.3s ease,
    top 0.4s ease,
    width 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  margin-left: -26px;
}
.nav-toggle span:first-child {
  top: 21px;
  width: 38px;
}
.nav-toggle span:last-child {
  top: 31px;
  width: 52px;
}
.nav-toggle:hover span,
.nav-toggle:focus-visible span {
  background: #efefec;
}
/* Positioned fixed (not in normal header flow), offset up and further left from
   .nav-toggle (also fixed — a sibling in normal flow wouldn't sit next to it since the
   toggle is taken out of flow). Visibility otherwise follows the header (opacity cascades
   to fixed descendants same as it does for .nav-toggle), only menu-open needs an explicit
   override since that state flips the header back to fully visible. */
.lang-switch {
  position: fixed;
  top: 1.75rem;
  right: calc(clamp(1.25rem, 2.4vw, 1.75rem) + 60px + 30px);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1102;
  mix-blend-mode: difference;
  font-family: var(--font-sub_title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang-switch__item {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}
.lang-switch__item:hover,
.lang-switch__item:focus-visible {
  opacity: 1;
}
.lang-switch__item.is-current {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
header.menu-open .lang-switch {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 480px) {
  .lang-switch {
    gap: 7px;
    font-size: 0.64rem;
    right: calc(clamp(1.25rem, 2.4vw, 1.75rem) + 60px + 18px);
  }
}
.nav-toggle.is-open {
  background: transparent;
  box-shadow: none;
}
header.menu-open .nav-toggle,
.nav-toggle.is-open {
  top: clamp(1.25rem, 2.4vw, 1.75rem);
  mix-blend-mode: normal;
}
.nav-toggle.is-open span,
header.menu-open .nav-toggle span,
header.menu-open .nav-toggle:hover span,
header.menu-open .nav-toggle:focus-visible span {
  background: #ffffff;
}
.nav-toggle.is-open span:first-child {
  top: 30px;
  width: 85px;
  height: 1px;
  margin-left: -42.5px;
  transform: rotate(45deg);
}
.nav-toggle.is-open span:last-child {
  top: 30px;
  width: 85px;
  height: 1px;
  margin-left: -42.5px;
  transform: rotate(-45deg);
}
.nav-toggle.is-open:hover span:first-child,
.nav-toggle.is-open:focus-visible span:first-child {
  transform: rotate(135deg);
}
.nav-toggle.is-open:hover span:last-child,
.nav-toggle.is-open:focus-visible span:last-child {
  transform: rotate(45deg);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  background: rgba(27, 27, 27, 0.08);
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    opacity 0.48s ease,
    visibility 0.48s ease,
    background-color 0.48s ease,
    backdrop-filter 0.48s ease,
    -webkit-backdrop-filter 0.48s ease;
  z-index: 1100;
  padding: 0;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(27, 27, 27, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-links .gogasi_menu {
  height: 0.78em;
  width: auto;
  display: block;
  margin: 0;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.nav-links li.logo {
  line-height: 1;
}
.nav-links li.menu-logo a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-links li.logo {
}
.logo a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-links {
  --menu-size: clamp(2.25rem, 4.2vw, 2.5rem);
  position: relative;
  font-size: var(--menu-size);
  font-family: var(--font-titles);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  width: min(46rem, calc(100vw - 3rem));
  max-width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1.05rem;
  list-style: none;
  padding: clamp(5.5rem, 8vw, 7.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  margin: 0 0 0 auto;
  text-align: right;
  background: #1b1b1b;
  color: #ffffff;
  box-shadow: -36px 0 80px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-overlay.is-open .nav-links {
  transform: translateX(0);
}
.nav-links a {
  text-decoration: none;
  color: inherit;
  transition:
    color 0.3s ease,
    opacity 0.3s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links h2 {
  font-size: 1em;
  line-height: 0.95;
  margin: 0;
}
.nav-links li {
  width: min(100%, 450px);
  display: flex;
  justify-content: flex-end;
}
.nav-links li:hover,
.nav-links li:focus-within {
  color: rgba(255, 255, 255, 0.34);
}
.nav-links li.menu-logo:hover .gogasi_menu,
.nav-links li.menu-logo:focus-within .gogasi_menu {
  opacity: 0.34;
}
.nav-links a:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  nav {
    display: block;
  }

  .nav-overlay {
    background: rgba(27, 27, 27, 0.14);
  }

  .nav-overlay.is-open {
    background: rgba(27, 27, 27, 0.24);
  }

  .nav-links {
    --menu-size: clamp(2rem, 9vw, 2.5rem);
    width: 100vw;
    padding: 5.5rem 1.5rem 2rem;
  }

  .nav-links h2 {
    font-size: 1em;
  }
}
/*---------------------------blend-------------------------*/
.c_main,
.c_dot,
.connect_icon,
.nav-toggle {
  mix-blend-mode: difference;
}
.logo picture,
.connect_icon picture,
.nav-links picture,
.home picture,
.solutions_card picture,
.news_item picture,
.team_thumb picture,
.address picture {
  display: block;
}
/*---------------------------home-------------------------*/
.home_video {
  position: relative;
  isolation: isolate;
  padding-bottom: 0;
  background: #ffffff;
}
.home_video.is-ready {
  transform: none;
  opacity: 1;
  transition: none;
}
.video_background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: none;
  will-change: auto;
}
.home_video_section.is-video-fallback .video_background {
  opacity: 0;
}
@media (max-width: 768px) {
  .fake_loader__center {
    --loader-center-size: 180px;
    top: 50%;
    width: var(--loader-center-size);
    height: var(--loader-center-size);
  }
  .fake_loader__percent {
    font-size: clamp(1.4rem, 8.4vw, 2.66rem);
  }
  .fake_loader__status {
    bottom: 34px;
    font-size: 0.5rem;
  }
  .fake_loader__flash {
    width: min(24vw, 110px);
    opacity: 0;
  }
  .fake_loader__flash--three {
    margin-left: -55px;
  }
  .fake_loader__fragment--b,
  .fake_loader__fragment--e,
  .fake_loader__fragment--f,
  .fake_loader__scan--two {
    display: none;
  }
  .fake_loader__noise {
    opacity: 0.26;
  }
}
/*---------------------------company-------------------------*/
.home_video {
  position: relative;
  isolation: isolate;
}
.home_video_section {
  --company-fade-progress: 1;
  --home-hero-fade-progress: 1;
  --home-title-shift: 0px;
  --home-video-scale: 1.06;
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100svh;
  height: 100vh;
  height: 100dvh;
  background: #0f0f0f;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  overflow: clip;
  z-index: 1;
  transform: scale(1.08);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}
.home_video > .home_video_section {
  position: sticky;
  top: 0;
}
.home_video_section.is-ready {
  transform: scale(1);
  opacity: calc(0.04 + var(--company-fade-progress) * 0.96);
}
html.skip-home-loader-flash .home_video_section {
  transform: scale(1);
  opacity: 1;
  --home-video-scale: 1;
}
.home_hero_media,
.home_hero_overlay {
  position: absolute;
  inset: 0;
}
.home_hero_media {
  z-index: 0;
  background-image: image-set(
    url("../assets/videos/home_video.avif") type("image/avif"),
    url("../assets/videos/home_video.webp") type("image/webp")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home_hero_overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}
.home_hero_inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  min-height: 100%;
  padding: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(24px, 5vw, 56px);
  pointer-events: none;
}
.home_hero_media .video_background {
  transform: scale(var(--home-video-scale));
  transform-origin: center center;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.home_video_section.is-ready {
  --home-video-scale: 1;
}
.home_hero_logo {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  top: 50%;
  margin: 0;
  display: block;
  width: clamp(240px, 42vw, 720px);
  max-width: min(78vw, 720px);
  opacity: 0;
  transform: translate3d(0, calc(-50% + 48px + var(--home-title-shift)), 0);
  transition:
    opacity 0.95s 120ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s 120ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  pointer-events: none;
}
.home_hero_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.home_hero_inner > h2 {
  position: absolute;
  left: clamp(26px, 4vw, 56px);
  top: calc(50% + clamp(52px, 7vw, 98px));
  margin: 0;
  color: #ffffff;
  font-family: var(--font-titles);
  font-size: clamp(1.12rem, 2.64vw, 2rem);
  font-weight: 100;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translate3d(0, calc(-50% + 48px + var(--home-title-shift)), 0);
  transition:
    opacity 0.95s 120ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s 120ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  pointer-events: none;
}
.home_video_section.is-ready .home_hero_logo {
  opacity: var(--home-hero-fade-progress);
  transform: translate3d(0, calc(-50% + var(--home-title-shift)), 0);
}
.home_video_section.is-ready .home_hero_inner > h2 {
  opacity: var(--home-hero-fade-progress);
  transform: translate3d(0, calc(-50% + var(--home-title-shift)), 0);
}
html.skip-home-loader-flash .home_hero_logo,
html.skip-home-loader-flash .home_hero_inner > h2 {
  opacity: 0;
  visibility: hidden;
}
.gogasi_infos {
  position: relative;
  z-index: 4;
  --company-textes-reveal-progress: 1;
  --company-infos-fade-progress: 1;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  opacity: 1;
  transition: none;
}
.gogasi_infos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(245, 245, 245, 0.92) 46%,
    rgba(27, 27, 27, 0.18) 100%
  );
  opacity: var(--company-textes-reveal-progress);
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.gogasi_infos > * {
  position: relative;
  z-index: 1;
}
.gogasi_infos .section-title-reveal {
  margin: 0;
  text-align: left;
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.gogasi_infos .section-title-reveal .title-line {
  padding-top: 0;
  padding-bottom: 0;
}
.gogasi_infos .section-title-reveal br {
  display: none;
}
.team .section-title-reveal {
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: 4.5rem;
  letter-spacing: -0.06em;
  line-height: 0.95;
}
.team .section-title-reveal .title-line + .title-line {
  margin-top: -0.08em;
}
.team br + .section-title-reveal {
  margin-top: -2.6vh;
}
.gogasi_infos br + .section-title-reveal {
  margin-top: -2.6vh;
}
.gogasi_infos__content > h1,
.gogasi_infos__content > p,
.gogasi_infos__content > h2 {
  margin: 0;
  color: inherit;
  text-wrap: balance;
  text-align: left;
  max-width: 100%;
}
.gogasi_infos__content > h1 {
  font-size: clamp(2.1rem, 3.05vw, 4.2rem);
  line-height: 0.96;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}
.gogasi_infos__content > p {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.8;
}
.gogasi_infos__content > h2 {
  font-size: clamp(1.6rem, 1.98vw, 2.24rem);
  line-height: 1;
}
.gogasi_infos__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  align-items: stretch;
  min-height: 100%;
  min-height: 100vh;
  width: 100%;
}
.gogasi_infos__left,
.gogasi_infos__right {
  min-height: 100vh;
  padding: clamp(40px, 8vw, 120px);
}
.gogasi_infos__left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: #ffffff;
  padding-left: clamp(24px, 6vw, 120px);
  padding-right: clamp(24px, 4vw, 56px);
  opacity: calc(0.08 + var(--company-textes-reveal-progress) * 0.92);
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.gogasi_infos__headline {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, 42rem);
  margin: auto 0;
  opacity: calc(0.08 + var(--company-textes-reveal-progress) * 0.92);
  transform: translate3d(0, calc((1 - var(--company-textes-reveal-progress)) * 42px), 0);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gogasi_infos__left h1 {
  margin: 0;
  max-width: 7ch;
  font-size: clamp(4.5rem, 8.4vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
  font-weight: 800;
  opacity: 1;
  color: #1b1b1b;
  text-wrap: balance;
}
.gogasi_infos__headline h1:last-child {
  color: #8f8f8f;
}
.gogasi_infos__right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b1b1b;
  color: #ffffff;
  min-width: 0;
  container-type: inline-size;
  opacity: calc(0.08 + var(--company-infos-fade-progress) * 0.92);
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.gogasi_infos__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: min(100%, 34rem);
  max-width: 34rem;
  min-width: 0;
  margin: 0 auto;
  opacity: calc(0.08 + var(--company-infos-fade-progress) * 0.92);
  transform: translate3d(0, calc((1 - var(--company-infos-fade-progress)) * 28px), 0);
  transition:
    opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.gogasi_infos__content .gogasi_text {
  display: inline-block;
  width: min(3.2em, 100%);
  height: auto;
  margin: 0 0.2em;
  vertical-align: baseline;
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .home_video {
    padding-bottom: 0;
  }
  .home_video .home_video_section {
    top: 0;
  }
  .home_video_section {
    min-height: 100svh;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100svh;
    height: 100vh;
    height: 100dvh;
  }
  .home_hero_inner {
    padding: 16px;
    padding-bottom: 20px;
  }
  .home_hero_logo {
    left: 16px;
    top: 50%;
    width: min(76vw, 360px);
    max-width: 76vw;
  }
  .home_hero_inner > h2 {
    left: 20px;
    top: calc(50% + 56px);
    font-size: clamp(0.88rem, 4vw, 1.2rem);
  }
  .home_scroll_indicator {
    left: 50%;
    right: auto;
    bottom: 20px;
    transform: translateX(-50%);
    display: none;
    pointer-events: none;
  }
  .gogasi_infos {
    margin-top: 0;
    padding: 0;
    height: auto;
    min-height: 100svh;
    min-height: 100vh;
  }
  .gogasi_infos__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 100svh;
    min-height: 100vh;
  }
  .gogasi_infos__left,
  .gogasi_infos__right {
    min-height: auto;
    padding: 24px;
  }
  .gogasi_infos__left {
    align-items: flex-start;
  }
  .gogasi_infos__headline {
    width: min(100%, 24rem);
    margin: 0;
    gap: 20px;
  }
  .gogasi_infos__left h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 12vw, 5rem);
    line-height: 0.85;
  }
  .gogasi_infos__right {
    align-items: flex-end;
    justify-content: flex-start;
  }
  .gogasi_infos__content > h1,
  .gogasi_infos__content > p,
  .gogasi_infos__content > h2 {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .gogasi_infos__content > h1 {
    font-size: clamp(1.54rem, 6.3vw, 2.66rem);
    line-height: 0.98;
  }
  .gogasi_infos .section-title-reveal {
    width: 100%;
  }
}
@media (max-width: 1180px) {
  .gogasi_infos__grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.92fr);
  }
  .gogasi_infos__content > h1 {
    font-size: clamp(0.95rem, 1.3vw, 1.55rem);
  }
  .gogasi_infos__left {
    padding-left: clamp(20px, 4vw, 56px);
    padding-right: 20px;
  }
  .gogasi_infos__left h1 {
    max-width: 7ch;
    font-size: clamp(3.9rem, 7.6vw, 7rem);
    line-height: 0.82;
  }
}
@media (min-width: 769px) {
  .gogasi_infos__right {
    min-height: clamp(28rem, 62vh, 42rem);
  }
}

@media (max-width: 980px) {
  .gogasi_infos__content > h1 {
    font-size: clamp(0.9rem, 1.15vw, 1.25rem);
  }
}
/*---------------------------solutions-------------------------*/
.solutions {
  position: relative;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  padding: 30vh 6vw 0;
}
.solutions > .section-title-reveal {
  position: relative;
  z-index: 3;
  width: fit-content;
  padding-bottom: 3vh;
  color: #1b1b1b;
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: clamp(3.4rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}
.solutions > .section-title-reveal br {
  display: none;
}
.solutions > .section-title-reveal .title-line {
  display: inline;
}

.solutions > .section-title-reveal .title-line:not(:last-of-type) {
  margin-right: 0.13em;
}
.solutions h3 {
  padding-bottom: 0.5vh;
}
.solutions_item {
  width: 100%;
}
.solutions_media_container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  width: 100%;
  padding: 0;
}
.solutions_card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  min-width: 0;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --solutions-media-y: 0px;
  --solutions-media-scale: 1.08;
  --solutions-hover-scale: 1;
  --solutions-text-y: 0px;
}
.solutions_card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  padding-bottom: 0;
  transform: translate3d(0, var(--solutions-media-y), 0)
    scale(calc(var(--solutions-media-scale) * var(--solutions-hover-scale)));
  will-change: transform;
  transition: transform 0.5s ease;
}
.solutions_card:hover img {
  --solutions-hover-scale: 1.02;
}
.solutions_card h3 {
  position: relative;
  z-index: 3;
  margin: 5.4rem 0 0;
  padding: 0.85rem 0.9rem 0.35rem;
  background: rgba(255, 255, 255, 0.86);
  transform: translate3d(0, var(--solutions-text-y), 0);
}
.solutions_card h3,
.solutions_card p {
  will-change: transform;
  transition: transform 0.45s ease;
}
.solutions_card p {
  position: relative;
  z-index: 2;
  margin: 0 0 1.7rem;
  padding: 0.1rem 0.9rem 0.85rem;
  background: rgba(255, 255, 255, 0.86);
  transform: translate3d(0, var(--solutions-text-y), 0);
}
@media (max-width: 768px) {
  .solutions {
    padding: 18vh 5vw 0;
  }
  .solutions > .section-title-reveal {
    font-size: clamp(3.4rem, 6vw, 6rem);
    letter-spacing: -0.06em;
    line-height: 0.78;
    padding-bottom: 2vh;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: manual;
  }
  .solutions > .section-title-reveal br {
    display: none;
  }
  .solutions > .section-title-reveal .title-line {
    display: block;
    white-space: nowrap;
    line-height: 0.82;
    margin-right: 0;
  }
  .solutions > .section-title-reveal .title-line + .title-line {
    margin-top: -0.08em;
  }
  .solutions_media_container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 28px;
  }
  .solutions_card {
    --solutions-media-scale: 1.04;
    --solutions-media-y: 0px;
    --solutions-text-y: 0px;
    overflow: visible;
  }
  .solutions_card img {
    aspect-ratio: 1 / 1;
    transform: scale(var(--solutions-media-scale));
  }
  .solutions_card h3 {
    margin-top: 0.9rem;
    padding: 0;
    background: transparent;
    transform: none;
  }
  .solutions_card p {
    margin: 0.15rem 0 0;
    padding: 0;
    background: transparent;
    transform: none;
  }
}
/*---------------------------clients-------------------------*/
.clients {
  position: relative;
  width: 100%;
  background: #ffffff;
  margin-top: calc(var(--index-section-spacing, clamp(88px, 11vh, 144px)) * 2);
}

.clients .clients_spacer:first-of-type {
  height: 0;
}

.clients_spacer {
  display: none;
}

.client_showcase {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(24px, 4vh, 48px) clamp(18px, 4vw, 64px);
  background: transparent;
  scroll-margin-top: 18vh;
  view-timeline-name: --client-showcase;
  view-timeline-axis: block;
}

.client_showcase + .client_showcase {
  margin-top: 0;
}

.client_showcase__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.client_showcase__link {
  position: relative;
  display: block;
  width: min(100%, 1320px);
  color: inherit;
  text-decoration: none;
}

.client_showcase__title {
  position: absolute;
  left: 0;
  bottom: clamp(20px, 4.5vw, 64px);
  z-index: 2;
  width: 100%;
  padding: 0 clamp(16px, 3.2vw, 48px);
  transform: none;
  text-align: left;
  pointer-events: none;
  will-change: opacity, transform;
}

.client_showcase__title h1 {
  margin: 0;
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 12rem);
  letter-spacing: -0.075em;
  line-height: 0.8;
  color: #ffffff;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
  opacity: 1;
}

.client_showcase__media {
  position: relative;
  width: 100%;
  margin: 0 auto;
  transform: none;
}

.client_showcase__hotspot {
  position: absolute;
  inset: 0;
  z-index: 3;
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.client_showcase__hotspot span {
  display: none;
}

.client_showcase__media picture,
.client_showcase__media img {
  display: block;
  width: 100%;
}

.client_showcase__media picture {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d8d8d8;
  opacity: 1;
  transform: none;
  transform-origin: center;
  will-change: opacity, transform;
}

.client_showcase__media img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  transform: none;
  transform-origin: center center;
  opacity: 1;
}

@supports (animation-timeline: view()) {
  .client_showcase__title {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    animation: client-title-presence linear both;
    animation-timeline: --client-showcase;
    animation-range: entry 0% exit 100%;
  }

  .client_showcase__media picture {
    opacity: 0;
    transform: scale(0.5);
    animation: client-media-presence linear both;
    animation-timeline: --client-showcase;
    animation-range: entry 0% exit 100%;
  }
}

@keyframes client-media-presence {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  40%,
  60% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes client-title-presence {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  40%,
  60% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -28px, 0);
  }
}

@media (max-width: 768px) {
  .clients {
    margin-top: calc(var(--index-section-spacing-mobile, clamp(72px, 10vh, 112px)) * 2);
  }

  .clients .clients_spacer:first-of-type {
    height: 0;
  }

  .client_showcase {
    min-height: clamp(520px, 68vh, 660px);
    padding: clamp(18px, 3vh, 28px) 5vw;
  }

  .client_showcase + .client_showcase {
    margin-top: 0;
  }

  .client_showcase__sticky {
    position: sticky;
    top: clamp(64px, 8vh, 88px);
    min-height: auto;
    display: block;
  }

  .client_showcase__title {
    width: min(100%, 1640px);
    padding: 0 clamp(12px, 4vw, 28px);
  }

  .client_showcase__title h1 {
    font-size: clamp(3rem, 15vw, 5.5rem);
  }

  .client_showcase__media img {
    aspect-ratio: 4 / 5;
  }

  .client_showcase__media picture {
    aspect-ratio: 4 / 5;
  }

  .client_showcase__hotspot {
    inset: 0;
    height: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client_showcase__title,
  .client_showcase__media picture {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/*---------------------------company cleanup-------------------------*/
#gogasi_infos .gogasi_infos__left br {
  display: block;
}

#gogasi_infos .gogasi_infos__right .gogasi_infos__content > h1 {
  font-size: clamp(1.96rem, 10.92cqi, 3.89rem);
  line-height: 0.96;
  max-width: 100%;
}

@media (max-width: 1180px) {
  #gogasi_infos .gogasi_infos__right .gogasi_infos__content > h1 {
    font-size: clamp(1.68rem, 10.36cqi, 3.15rem);
  }
}

@media (max-width: 980px) {
  #gogasi_infos .gogasi_infos__right .gogasi_infos__content > h1 {
    font-size: clamp(1.4rem, 9.66cqi, 2.52rem);
  }
}

@media (max-width: 768px) {
  #gogasi_infos .gogasi_infos__right .gogasi_infos__content > h1 {
    font-size: clamp(1.34rem, 5.6vw, 2.1rem);
    line-height: 0.98;
  }

  #gogasi_infos.gogasi_infos {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    margin-top: 0;
    overflow: hidden;
  }

  #gogasi_infos .gogasi_infos__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  #gogasi_infos .gogasi_infos__left,
  #gogasi_infos .gogasi_infos__right {
    min-height: 0;
    padding: 24px;
  }

  #gogasi_infos .gogasi_infos__left {
    align-items: flex-start;
    justify-content: flex-start;
    background: #ffffff;
  }

  #gogasi_infos .gogasi_infos__headline {
    width: 100%;
    margin: 0;
    gap: 16px;
  }

  #gogasi_infos .gogasi_infos__left h1 {
    max-width: 8ch;
    font-size: clamp(2.55rem, 10.8vw, 3.7rem);
    line-height: 0.84;
  }

  #gogasi_infos .gogasi_infos__right {
    align-items: center;
    justify-content: center;
    background: #1b1b1b;
  }

  #gogasi_infos .gogasi_infos__content {
    width: 100%;
    max-width: none;
    gap: 0.72rem;
    margin: 0 auto;
    text-align: center;
  }

  #gogasi_infos .gogasi_infos__content > h1,
  #gogasi_infos .gogasi_infos__content > p,
  #gogasi_infos .gogasi_infos__content > h2 {
    text-align: center;
  }

  #gogasi_infos .gogasi_infos__content > p {
    font-size: clamp(0.78rem, 3.45vw, 0.96rem);
    line-height: 1.28;
  }

  #gogasi_infos .gogasi_infos__content > h2 {
    font-size: clamp(1.08rem, 4.95vw, 1.46rem);
    line-height: 1.03;
  }
}
/*---------------------------all_projects-------------------------*/
.all_projects {
  --all-projects-fade-progress: 0;
  --all-projects-visibility-progress: 1;
  --all-projects-gap: 14px;
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: -38vh;
  padding: 1.5vh 7vw 18vh;
  background: #ffffff;
  overflow: visible;
  opacity: 1;
  transition: opacity 0.22s linear;
}

.all_projects_title {
  position: relative;
  top: auto;
  z-index: 6;
  width: fit-content;
  margin: 0 0 4vh;
  color: #1b1b1b;
  background: transparent;
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: clamp(3.4rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: 1;
  transition: opacity 0.22s linear;
}

.all_projects_row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--all-projects-gap);
  width: min(100%, 1180px);
  margin: 0 auto var(--all-projects-gap);
  align-items: flex-start;
  overflow: visible;
  opacity: 1;
  transform: none;
  transition: none;
}

.all_projects_grid_row {
  display: contents;
  opacity: 1;
  transform: none;
  transition: none;
}

.all_projects_row_item {
  width: 100%;
  max-width: none;
  min-width: 0;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.all_projects_row_item--blank {
  display: none;
}

.all_projects_row_item a,
.all_projects_row_item picture,
.photos_item a,
.photos_item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.all_projects_row_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  background: transparent;
  transform: translate3d(0, var(--all-projects-media-y, 0px), 0) scale(1.08);
  transition: none;
  will-change: transform;
}

.all_projects_row_item:hover img,
.all_projects_row_item:focus-within img {
  filter: none;
  transform: translate3d(0, var(--all-projects-media-y, 0px), 0) scale(1.12);
}

.all_projects_row_item:hover .photos_caption,
.all_projects_row_item:focus-within .photos_caption {
  opacity: 1;
  transform: translate3d(-50%, calc(-50% + 24px), 0);
}

.all_projects_grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--all-projects-gap);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.photos_item {
  grid-column: span 3;
  width: 100%;
  max-width: none;
  min-width: 0;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: transparent;
  position: relative;
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.photos_item--blank {
  display: none;
}

.all_projects_grid_row:nth-child(2) .photos_item:nth-child(2),
.all_projects_grid_row:nth-child(2) .photos_item:nth-child(4),
.all_projects_grid_row:nth-child(3) .photos_item:nth-child(1) {
  grid-column: span 4;
}

.all_projects_grid_row:nth-child(4) .photos_item:nth-child(4) {
  grid-column: 3 / span 4;
}

.all_projects_grid_row:nth-child(5) .photos_item:nth-child(1) {
  grid-column: 7 / span 4;
}

.photos_item--up {
  margin-top: 0;
}

.photos_item--right {
  margin-left: 0;
}

.photos_item--far-right {
  margin-right: 0;
}

.photos_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  background: transparent;
  transform: translate3d(0, var(--all-projects-media-y, 0px), 0) scale(1.08);
  transition: none;
  will-change: transform;
}

.photos_item:hover img,
.photos_item:focus-within img {
  filter: none;
  transform: translate3d(0, var(--all-projects-media-y, 0px), 0) scale(1.12);
}

.photos_caption {
  position: absolute;
  left: 50%;
  top: 70%;
  margin: 0;
  width: calc(100% - 28px);
  max-width: calc(100% - 28px);
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-titles);
  font-size: clamp(1.25rem, 2.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translate3d(-50%, calc(-50% + 28px), 0);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  pointer-events: none;
}

.photos_item:hover .photos_caption,
.photos_item:focus-within .photos_caption {
  opacity: 1;
  transform: translate3d(-50%, calc(-50% + 24px), 0);
}

.photos_caption--single {
  white-space: nowrap;
}

.photos_caption--tech {
  white-space: nowrap;
}

.photos_caption__mobile {
  display: none;
}

@media (max-width: 980px) {
  .all_projects {
    --all-projects-gap: 10px;
  }
  .all_projects_row {
    width: min(100%, 760px);
  }

  .all_projects_row_item {
    width: 100%;
    max-width: none;
  }

  .all_projects_row_item--offset {
    margin-left: 0;
  }

  .photos_item {
    width: 100%;
    max-width: none;
  }

  .all_projects_grid {
    width: min(100%, 760px);
  }
}

@media (max-width: 768px) {
  .all_projects {
    --all-projects-gap: 8px;
    margin-top: -18vh;
    padding: 42px 6vw 56px;
  }

  .all_projects_title {
    top: 0;
    margin-bottom: 24px;
  }

  .all_projects_row,
  .all_projects_grid {
    display: grid;
    gap: var(--all-projects-gap);
    width: min(100%, 92vw);
    margin-left: auto;
    margin-right: auto;
  }

  .all_projects_row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: var(--all-projects-gap);
  }

  .all_projects_grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .all_projects_grid_row {
    display: contents;
  }

  .all_projects_row_item,
  .photos_item {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .photos_item {
    grid-column: span 3;
  }

  .all_projects_row_item--blank,
  .photos_item--blank {
    display: none;
  }

  .photos_item img {
    height: 100%;
  }

  .photos_caption {
    left: clamp(6px, 2vw, 10px);
    right: clamp(10px, 3vw, 16px);
    top: 50%;
    width: auto;
    max-width: none;
    font-size: clamp(0.95rem, 4.4vw, 1.55rem);
    text-align: left;
    text-wrap: pretty;
    z-index: 2;
    transform: translate3d(0, calc(-50% + 28px), 0);
  }

  .all_projects_row_item:hover .photos_caption,
  .all_projects_row_item:focus-within .photos_caption,
  .photos_item:hover .photos_caption,
  .photos_item:focus-within .photos_caption {
    transform: translate3d(0, -50%, 0);
  }

  .photos_caption--single,
  .photos_caption--tech {
    white-space: normal;
  }

  .photos_caption--interxpert {
    white-space: nowrap;
  }

  .photos_caption--interxpert .photos_caption__desktop {
    display: none;
  }

  .photos_caption--interxpert .photos_caption__mobile {
    display: inline;
  }
}
/*---------------------------reference-------------------------*/
.news {
  --news-section-reveal: 0;
  z-index: 5;
  position: relative;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 10vh 6vw 26vh;
  background: #ffffff;
  opacity: 1;
  transform: translate3d(0, calc((1 - var(--news-section-reveal)) * 42px), 0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.news > .section-title-reveal {
  position: relative;
  z-index: 3;
  display: block;
  width: fit-content;
  margin: 0 0 4vh;
  color: #1b1b1b;
  background: transparent;
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: clamp(3.4rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  opacity: 1;
  visibility: visible;
}
.news h1,
.news h2 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
}
.news > .news_section_title {
  position: sticky;
  top: 0;
  z-index: 6;
  width: fit-content;
  margin: 0 0 4vh;
  color: #ffffff;
  background: transparent;
  font-family: var(--font-titles);
  font-weight: 800;
  font-size: clamp(3.4rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 1;
  transition: opacity 0.22s linear;
}
.news_item {
  min-height: 26rem;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  padding: 0;
  transition:
    background-color 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}
.news_item.is-active {
  background-color: #1b1b1b;
  border-color: rgba(255, 255, 255, 0.14);
}
.news_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  max-width: 42rem;
  position: relative;
  z-index: 1;
  transition: color 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}
.link_pages {
  width: 100%;
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 2.8rem 4vw;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.news_title,
.news h2,
.news_content p {
  transition: color 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}
.news_content p {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.42;
}
.news_item.is-active .news_title,
.news_item.is-active .news_content p,
.news_item.is-active .news_content,
.news_item.is-active .link_pages {
  color: #ffffff;
}
.news_item picture {
  width: 520px;
  min-width: 520px;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #d9d9d4;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
.news_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.08) brightness(0.95) saturate(0);
  transform: translate3d(0, var(--editorial-media-y, 0px), 0);
  transition:
    filter 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.2s linear;
  margin-left: 0;
}
.news_item.is-active .news_img {
  filter: grayscale(0) contrast(1) brightness(1) saturate(1);
  transform: translate3d(0, var(--editorial-media-y, 0px), 0) scale(1.04);
}
@media (max-width: 768px) {
  .news {
    margin-top: 0;
    padding: 6vh 5vw 24vh;
  }
  .news h1,
  .news h2 {
    font-size: 1.8rem;
    letter-spacing: -0.07em;
  }
  .news_item {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-left: 0.5px solid rgba(0, 0, 0, 0.2);
    border-right: 0.5px solid rgba(0, 0, 0, 0.2);
  }
  .link_pages {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 3vh 3vw;
  }
  .news_content {
    width: 100%;
  }
  .news_item picture {
    width: min(100%, 100%);
    min-width: 0;
  }
  .news_img {
    align-self: flex-start;
    min-height: 220px;
  }
  .news_item:hover .news_img,
  .news_item.is-active .news_img {
    transform: scale(1.05);
  }
}
/*---------------------------team-------------------------*/
.team_contact_stack {
  position: relative;
  isolation: isolate;
}
.team {
  position: relative;
  width: 100%;
  min-height: 72svh;
  min-height: 72vh;
  min-height: 72dvh;
  background: transparent !important;
  background-color: transparent !important;
  padding: 5vh clamp(56px, 8vw, 140px) clamp(160px, 20vw, 320px);
  overflow: visible;
  opacity: 1;
  z-index: 1;
}
.team_contact_stack > .team {
  position: sticky;
  top: 0;
}
.team_layout {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: clamp(72px, 9vw, 140px) auto 0;
  padding-top: 0;
  background: transparent !important;
  background-color: transparent !important;
}
.team h1,
.team h2 {
  margin: 0;
  font-family: var(--font-titles);
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 800;
  width: 100%;
  max-width: 100%;
  color: inherit;
}
.team_grid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
  width: 100%;
  min-height: auto;
  background: transparent !important;
  background-color: transparent !important;
}
.team_member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  width: 210px;
  flex: 0 0 210px;
  padding-top: 132px;
}
.team_thumb {
  position: relative;
  width: 100%;
  margin: 0 auto 24px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  border-radius: 4px;
}
.team_thumb picture {
  overflow: hidden;
}
.team_thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}
.team_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) saturate(0.2);
  transform: translate3d(0, var(--editorial-media-y, 0px), 0);
  transition:
    filter 0.5s ease,
    transform 0.2s linear;
}
.team_member:hover .team_thumb img,
.team_member:focus-within .team_thumb img {
  filter: grayscale(0) saturate(1);
}
.team_info {
  width: 100%;
  text-align: left;
}
.team_name {
  margin: 0;
  font-family: var(--font-titles);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: inherit;
}
.team_info p {
  color: inherit;
  margin: 0.25rem 0 0;
  opacity: 1;
  text-align: left;
}
.team_role {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  opacity: 0.6;
}
@media (max-width: 1280px) {
  .team h1,
  .team h2 {
    font-size: clamp(2rem, 4.4vw, 4.8rem);
    max-width: 100%;
  }
  .team_member {
    width: 190px;
    flex-basis: 190px;
    padding-top: 112px;
  }
  .team_grid {
    gap: 56px;
  }
}
@media (max-width: 980px) {
  .team h1,
  .team h2 {
    font-size: clamp(1.85rem, 4vw, 3.6rem);
    max-width: 100%;
  }
  .team_member {
    width: 168px;
    flex-basis: 168px;
    padding-top: 78px;
  }
  .team_grid {
    gap: 40px;
  }
}
@media (min-width: 769px) and (max-height: 820px) {
  body.is-home-page .team {
    padding-top: clamp(42px, 6vh, 72px);
    padding-bottom: clamp(42px, 6vh, 72px);
  }
  .team_layout {
    margin-top: clamp(28px, 4vh, 48px);
  }
  .team h1,
  .team h2 {
    font-size: clamp(3rem, 5.2vw, 5rem);
  }
  .team_grid {
    gap: clamp(40px, 5vw, 64px);
  }
  .team_member {
    width: clamp(170px, 16vw, 200px);
    flex-basis: clamp(170px, 16vw, 200px);
    padding-top: clamp(52px, 8vh, 84px);
  }
  .team_thumb {
    margin-bottom: 16px;
  }
  .team_name {
    font-size: 1.35rem;
  }
  .team_info p {
    font-size: 0.95rem;
  }
}
@media (min-width: 769px) and (max-height: 700px) {
  .team_layout {
    margin-top: 24px;
  }
  .team h1,
  .team h2 {
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  }
  .team_member {
    width: clamp(150px, 14vw, 178px);
    flex-basis: clamp(150px, 14vw, 178px);
    padding-top: 36px;
  }
  .team_grid {
    gap: clamp(32px, 4vw, 52px);
  }
}
@media (max-width: 768px) {
  .team_contact_stack > .team {
    position: relative;
    top: auto;
  }
  .team {
    min-height: auto;
    padding: 24px 16px 0;
  }
  .team_layout {
    margin-top: 40px;
  }
  .team h1,
  .team h2 {
    font-size: clamp(3rem, 12vw, 4.8rem);
    width: 100%;
    max-width: 100%;
  }
  .team .section-title-reveal {
    font-size: clamp(3rem, 12vw, 4.8rem);
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: manual;
  }
  .team .section-title-reveal .title-line {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: manual;
  }
  .team_grid {
    min-height: auto;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .team_member {
    position: relative;
    flex: 0 0 calc(50% - 9px);
    width: calc(50% - 9px);
    max-width: calc(50% - 9px);
    margin-top: 0;
    margin-left: 0;
    align-items: center;
    text-align: center;
    padding-top: 84px;
  }
  .team_member:nth-child(n + 2) {
    padding-top: 24px;
  }
  .team_member:last-child {
    flex: 0 0 100%;
    width: 100%;
    max-width: 240px;
  }
  .team_info {
    text-align: center;
  }
  .team_info p {
    text-align: center;
  }
  .team_thumb {
    width: 100%;
    max-width: 134px;
  }
}
/*---------------------------contact-------------------------*/
.contact {
  --contact-scroll-blur: 18px;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  color: #f5f5f0;
  padding: clamp(24px, 5vw, 72px);
  position: relative;
  margin-top: 34vh;
  overflow: clip;
  z-index: 4;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(var(--contact-scroll-blur)) saturate(1.08);
  -webkit-backdrop-filter: blur(var(--contact-scroll-blur)) saturate(1.08);
}
.contact_page__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  min-height: calc(100vh - clamp(48px, 8vw, 144px));
  min-height: calc(100svh - clamp(48px, 8vw, 144px));
  min-height: calc(100dvh - clamp(48px, 8vw, 144px));
  gap: clamp(24px, 4vw, 64px);
  position: relative;
}
.contact_page__statement,
.contact_page__info {
  opacity: 1;
  transform: none;
}
.contact_page__info {
  transform: none;
}
.contact_page__statement {
  position: absolute;
  left: 0;
  top: clamp(220px, 34svh, 360px);
  right: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  text-align: left;
  pointer-events: none;
  z-index: 2;
  transform: none;
}
.contact_page__statement h1 {
  margin: 0;
  font-family: var(--font-titles);
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 800;
  max-width: 12ch;
  white-space: normal;
  color: #f5f5f0;
  text-wrap: balance;
}

.contact_page__statement .section-title-reveal .title-line {
  white-space: nowrap;
  word-break: keep-all;
}
.contact_page__statement .section-title-reveal br {
  display: none;
}
.contact_page__statement .section-title-reveal .title-line + .title-line {
  margin-top: 0;
}
.contact_page__info {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  gap: clamp(12px, 2vw, 20px);
  padding-bottom: clamp(8px, 2vw, 20px);
}
.contact_page__meta {
  box-sizing: border-box;
  position: relative;
  z-index: 40;
  isolation: isolate;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(32px, 6vh, 72px);
  width: 100%;
  font-family: var(--font-titles);
}
.contact_page__meta .sign_link {
  position: relative;
  z-index: 42;
  justify-self: start;
  min-width: max-content;
  white-space: nowrap;
  font-family: inherit;
}
.contact_page__meta .contact_back_to_top {
  position: relative;
  z-index: 44;
  justify-self: center;
  font-family: inherit;
}
.contact_page__meta .legal_footer_link {
  position: relative;
  z-index: 42;
  justify-self: end;
  padding: 0;
  width: auto;
  font-family: inherit;
  color: inherit;
  mix-blend-mode: inherit;
}
.contact_page__meta .contact_sign_link,
.contact_page__meta .legal_footer_link {
  font-family: inherit;
  font-size: 0.858rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0;
}
body[class^="page_"] .contact_page__meta .contact_sign_link,
body[class^="page_"] .contact_page__meta .contact_back_to_top,
body[class^="page_"] .contact_page__meta .legal_footer_link {
  color: #1b1b1b;
  mix-blend-mode: normal;
}
body[class^="page_"] .contact_page__meta .sign_hover_card {
  mix-blend-mode: normal;
}
/* One footer geometry for every page. Pages may only override its colours. */
main > .contact_page__meta {
  box-sizing: border-box;
  width: 100%;
  margin: clamp(72px, 12vh, 144px) 0 clamp(24px, 5vw, 72px);
  padding: 0 clamp(48px, 8vw, 112px);
}
.contact_page__info a {
  color: inherit;
}
.contact_page__info > picture {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
  width: 100%;
  padding-bottom: clamp(12px, 1.8vw, 18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}
.contact .contact_sign_link:hover,
.contact .contact_sign_link:focus-visible {
  color: #ffffff;
}
.contact .contact_sign_link {
  min-height: 24px;
  color: #ffffff;
  font-size: 0.858rem;
  line-height: 1;
  text-decoration: none;
  margin: 0;
}
.gogasi_contact {
  position: static;
  align-self: flex-end;
  width: clamp(130px, 16vw, 210px);
  max-width: 100%;
  height: auto;
  opacity: 1;
  transform: translateY(6px);
  z-index: 10;
  margin: 0;
}
.contact_addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(14rem, 17rem));
  justify-content: end;
  align-items: start;
  column-gap: clamp(18px, 3.4vw, 52px);
  row-gap: clamp(16px, 2vw, 24px);
}
.contact_address_group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  width: 100%;
}
.contact_address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  max-width: none;
}
.contact_address h2 {
  margin: 0;
  font-family: var(--font-titles);
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #8f8f8f;
}
.contact_address__title {
  color: #ffffff !important;
  margin-bottom: 0.35rem !important;
  white-space: nowrap;
}
.contact_address--france h2 {
  white-space: nowrap;
}
.contact_address a {
  white-space: nowrap;
}
.contact_address a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact_address a:hover {
  color: #ffffff;
}
.contact_actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  margin-top: 0;
}
.contact_link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1;
  color: #8f8f8f;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}
.contact_link h2 {
  margin: 0;
  font-family: var(--font-titles);
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #8f8f8f;
  transition: color 0.3s ease;
}
.contact_link:hover h2 {
  color: #ffffff;
}
.contact_link:hover {
  color: #ffffff;
  transform: translateX(4px);
  opacity: 1;
}
.post {
  width: 34px;
  height: auto;
  vertical-align: middle;
  opacity: 0.56;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease;
}
.whatsapp {
  width: 28px;
  height: auto;
  vertical-align: middle;
  opacity: 0.56;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease;
}
.contact_link:hover .post,
.contact_link:hover .whatsapp {
  opacity: 1;
  filter: brightness(1.2);
}
.contact_back_to_top {
  position: relative;
  transform: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #f5f5f0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.contact_back_to_top:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.contact_back_top_hover,
.sign_hover_card {
  width: 190px;
  min-height: 190px;
  padding: 1rem 1.05rem;
  box-sizing: border-box;
  display: flex;
  background: #ffffff;
  backdrop-filter: blur(var(--contact-scroll-blur)) saturate(1.08);
  -webkit-backdrop-filter: blur(var(--contact-scroll-blur)) saturate(1.08);
  color: #1b1b1b;
  font-family: var(--font-titles);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.is-home-page) .contact_back_top_hover,
body:not(.is-home-page) .sign_hover_card,
body:not(.is-home-page) .legal_footer_card {
  background: #efefec;
}

body.page_actus_honda .contact_back_top_hover,
body.page_actus_honda .sign_hover_card,
body.page_actus_honda .legal_footer_card,
body.page_actus_light .contact_back_top_hover,
body.page_actus_light .sign_hover_card,
body.page_actus_light .legal_footer_card,
body.page_actus_tempo .contact_back_top_hover,
body.page_actus_tempo .sign_hover_card,
body.page_actus_tempo .legal_footer_card {
  background: #d8d8d4;
}

body.is-home-page .contact_back_top_hover,
body.is-home-page .sign_hover_card,
body.is-home-page .legal_footer_card {
  background: rgba(255, 255, 255, 0.7);
}
.contact_back_top_hover {
  --top-hover-x: 0px;
  --top-hover-y: 0px;
  position: absolute;
  z-index: 60;
  left: 50%;
  bottom: calc(100% + 0.9rem);
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-transform: uppercase;
  transform: translate3d(calc(-50% + var(--top-hover-x)), calc(14px + var(--top-hover-y)), 0) scale(0.92);
  transform-origin: bottom center;
}
.contact_back_to_top:hover .contact_back_top_hover,
.contact_back_to_top:focus-visible .contact_back_top_hover,
.contact_back_to_top.is-hover-card-visible .contact_back_top_hover {
  opacity: 1;
  visibility: visible;
  transform: translate3d(calc(-50% + var(--top-hover-x)), var(--top-hover-y), 0) scale(1);
}
@media (max-width: 768px) {
  .contact_back_top_hover,
  .sign_hover_card {
    width: 150px;
    min-height: 150px;
    padding: 0.8rem;
    font-size: 0.62rem;
  }
}
@media (max-width: 900px) {
  .contact {
    margin-top: 0;
    min-height: 100svh;
  }
  .contact_page__inner {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 48px);
    gap: 32px;
  }
  .contact_page__statement {
    position: relative;
    align-items: flex-start;
    justify-content: flex-start;
    top: auto;
    left: auto;
    transform: translateY(clamp(96px, 13vh, 132px));
    margin-top: 36px;
  }
  .contact_page__statement h1 {
    font-size: clamp(3rem, 12vw, 5rem);
    max-width: 11ch;
    white-space: normal;
  }
  .contact_page__info {
    grid-column: 1;
    align-items: flex-start;
    text-align: left;
    margin-top: clamp(72px, 16vh, 150px);
    padding-bottom: 0;
  }
  .gogasi_contact {
    align-self: flex-end;
  }
  .contact_page__info > picture {
    justify-content: flex-end;
  }
  .contact_addresses {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
    column-gap: 18px;
  }
  .contact_address_group {
    align-items: flex-start;
    gap: 3px;
  }
  .contact_actions {
    align-items: flex-start;
  }
  .contact_back_to_top {
    margin-top: 12px;
  }
}
@media (max-width: 520px) {
  .contact_page__statement h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
    letter-spacing: -0.06em;
  }
  .contact_page__inner {
    gap: 24px;
  }
  .contact_page__info {
    margin-top: clamp(96px, 18vh, 180px);
  }
  .gogasi_contact {
    width: clamp(108px, 34vw, 148px);
  }
  .contact_address h2,
  .contact_link h2 {
    font-size: clamp(0.9rem, 3.7vw, 1.08rem);
  }
  .post,
  .whatsapp {
    width: 24px;
  }
}
/*---------------------------sign-------------------------*/
.sign_link {
  position: relative;
  padding: 0;
  z-index: 11;
  display: inline-flex;
  text-decoration: none;
}
.sign_mark {
  display: inline-block;
  font-size: 1em;
  font-weight: 100;
  line-height: 1;
  vertical-align: baseline;
  margin: 0;
  white-space: nowrap;
}
.sign_hover_card {
  --sign-hover-x: 0px;
  --sign-hover-y: 0px;
  position: absolute;
  left: 0;
  bottom: calc(100% + 1rem);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  mix-blend-mode: difference;
  transform: translate3d(var(--sign-hover-x), calc(14px + var(--sign-hover-y)), 0) scale(0.92);
  transform-origin: bottom left;
}
.sign_link:hover .sign_hover_card,
.sign_link:focus-visible .sign_hover_card,
.sign_link.is-hover-card-visible .sign_hover_card {
  opacity: 1;
  visibility: visible;
  transform: translate3d(var(--sign-hover-x), var(--sign-hover-y), 0) scale(1);
}
@media (max-width: 768px) {
  .sign_hover_card {
    width: 150px;
    min-height: 150px;
    padding: 0.8rem;
    font-size: 0.62rem;
  }
}

body.page_actus_honda,
body.page_actus_light,
body.page_actus_tempo {
  background: #050505;
  color: #141414;
}

body.page_actus_honda main,
body.page_actus_light main,
body.page_actus_tempo main {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  padding: 6.5rem 0 4rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

body.page_actus_honda .actus-sheet,
body.page_actus_light .actus-sheet,
body.page_actus_tempo .actus-sheet {
  width: min(92vw, 1180px);
  margin: 0 auto;
  background: #efefec;
}

body.page_actus_honda .actus-sheet__inner,
body.page_actus_light .actus-sheet__inner,
body.page_actus_tempo .actus-sheet__inner {
  padding: 18px 18px 28px;
}

body.page_actus_honda .actus-top,
body.page_actus_honda .actus-headline,
body.page_actus_honda .actus-bottom,
body.page_actus_light .actus-top,
body.page_actus_light .actus-headline,
body.page_actus_light .actus-bottom,
body.page_actus_tempo .actus-top,
body.page_actus_tempo .actus-headline,
body.page_actus_tempo .actus-bottom {
  display: grid;
  grid-template-columns: 1.22fr 92px 1.48fr;
  column-gap: 1.75rem;
  align-content: center;
}

body.page_actus_honda .actus-meta-top,
body.page_actus_light .actus-meta-top,
body.page_actus_tempo .actus-meta-top {
  grid-column: 1;
  grid-row: 1;
  padding-top: 0.35rem;
}

body.page_actus_honda .actus-meta-top::before,
body.page_actus_light .actus-meta-top::before,
body.page_actus_tempo .actus-meta-top::before {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid rgba(20, 20, 20, 0.22);
  margin-bottom: 0.7rem;
}

body.page_actus_honda .actus-meta-top p,
body.page_actus_honda .actus-meta-year,
body.page_actus_honda .actus-section-label,
body.page_actus_honda .actus-section-year,
body.page_actus_honda .actus-hero-caption,
body.page_actus_light .actus-meta-top p,
body.page_actus_light .actus-meta-year,
body.page_actus_light .actus-section-label,
body.page_actus_light .actus-section-year,
body.page_actus_light .actus-hero-caption,
body.page_actus_tempo .actus-meta-top p,
body.page_actus_tempo .actus-meta-year,
body.page_actus_tempo .actus-section-label,
body.page_actus_tempo .actus-section-year,
body.page_actus_tempo .actus-hero-caption {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.15;
  color: #6c6c68;
  letter-spacing: -0.01em;
  font-family: var(--font-sub_title);
}

body.page_actus_honda .actus-kicker,
body.page_actus_light .actus-kicker,
body.page_actus_tempo .actus-kicker {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-family: var(--font-sub_title);
}

body.page_actus_honda .actus-strap,
body.page_actus_light .actus-strap,
body.page_actus_tempo .actus-strap {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.55rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.07em;
  max-width: 10ch;
  font-family: var(--font-titles);
}

body.page_actus_honda .actus-headline-main p,
body.page_actus_honda .actus-body-main p,
body.page_actus_honda .actus-body-secondary p,
body.page_actus_honda .actus-body-final p,
body.page_actus_honda .actus-body-list li,
body.page_actus_light .actus-headline-main p,
body.page_actus_light .actus-body-main p,
body.page_actus_light .actus-body-secondary p,
body.page_actus_light .actus-body-final p,
body.page_actus_light .actus-body-list li,
body.page_actus_tempo .actus-headline-main p,
body.page_actus_tempo .actus-body-main p,
body.page_actus_tempo .actus-body-secondary p,
body.page_actus_tempo .actus-body-final p,
body.page_actus_tempo .actus-body-list li {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #222;
  font-family: var(--font-sub_title);
}

body.page_actus_honda .actus-divider,
body.page_actus_light .actus-divider,
body.page_actus_tempo .actus-divider {
  border: 0;
  border-top: 1px solid rgba(20, 20, 20, 0.22);
  margin: 1.8rem 0 1.9rem;
}

body.page_actus_honda .actus-body-main h2,
body.page_actus_honda .actus-body-secondary h3,
body.page_actus_honda .actus-body-final h3,
body.page_actus_light .actus-body-main h2,
body.page_actus_light .actus-body-secondary h3,
body.page_actus_light .actus-body-final h3,
body.page_actus_tempo .actus-body-main h2,
body.page_actus_tempo .actus-body-secondary h3,
body.page_actus_tempo .actus-body-final h3 {
  margin: 0 0 0.8rem;
  font-size: 1.18rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-family: var(--font-titles);
}

body.page_actus_honda .actus-body-list,
body.page_actus_light .actus-body-list,
body.page_actus_tempo .actus-body-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

body.page_actus_honda .actus-body-list strong,
body.page_actus_light .actus-body-list strong,
body.page_actus_tempo .actus-body-list strong {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 0.15rem;
  font-family: var(--font-titles);
}

body.page_actus_honda .actus-cta,
body.page_actus_light .actus-cta,
body.page_actus_tempo .actus-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.15rem;
  padding: 0.78rem 1rem 0.82rem;
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-family: var(--font-sub_title);
}

body.page_actus_honda .actus-top {
  grid-template-rows: auto 1fr auto;
  row-gap: 1.75rem;
  min-height: 34.5rem;
  align-items: start;
}

body.page_actus_honda .actus-hero-copy {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  max-width: 24rem;
  padding-bottom: 0.75rem;
}

body.page_actus_honda .actus-vertical-mark {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(20, 20, 20, 0.78);
  transform: translateY(0.6rem);
  font-family: var(--font-titles);
}

body.page_actus_honda .actus-hero-image {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: stretch;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: #efefec;
}

body.page_actus_honda .actus-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: grayscale(1) contrast(1.02);
}

body.page_actus_honda .actus-meta-year {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

body.page_actus_honda .actus-hero-caption {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
  align-self: end;
  max-width: 16rem;
}

body.page_actus_honda .actus-headline {
  min-height: 18rem;
  padding-top: 1.6rem;
}

body.page_actus_honda .actus-headline-main {
  grid-column: 3;
  max-width: 21rem;
  align-self: center;
}

body.page_actus_honda .actus-headline-main h1 {
  margin: 0 0 1rem;
  font-size: clamp(3.3rem, 6.6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  font-family: var(--font-titles);
}

body.page_actus_honda .actus-bottom {
  row-gap: 1.5rem;
  min-height: 22rem;
}

body.page_actus_honda .actus-section-label {
  grid-column: 1;
  grid-row: 1;
  font-weight: 600;
  color: #141414;
}

body.page_actus_honda .actus-quote-card {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 18rem;
  padding-top: 0.25rem;
}

body.page_actus_honda .actus-quote-card blockquote {
  margin: 0;
  font-family: var(--font-titles);
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 700;
  color: #1b1b1b;
}

body.page_actus_honda .actus-quote-card p {
  margin: 0.9rem 0 0;
  font-size: 0.76rem;
  line-height: 1.2;
  color: #6c6c68;
  font-family: var(--font-sub_title);
}

body.page_actus_honda .actus-body-main {
  grid-column: 3;
  grid-row: 1;
  max-width: 25rem;
}

body.page_actus_honda .actus-body-secondary {
  grid-column: 3;
  grid-row: 2;
  max-width: 19rem;
  padding-top: 0.55rem;
}

body.page_actus_honda .actus-body-final {
  grid-column: 3;
  grid-row: 3;
  max-width: 26rem;
  padding-top: 0.2rem;
}

body.page_actus_honda .actus-section-year {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
  align-self: end;
}

body.page_actus_honda .actus-cta,
body.page_actus_light .actus-cta,
body.page_actus_tempo .actus-cta {
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #ffffff;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

body.page_actus_honda .actus-cta:hover,
body.page_actus_honda .actus-cta:focus-visible,
body.page_actus_light .actus-cta:hover,
body.page_actus_light .actus-cta:focus-visible,
body.page_actus_tempo .actus-cta:hover,
body.page_actus_tempo .actus-cta:focus-visible {
  background: #050505;
  color: #ffffff;
  border-color: #050505;
}

body.page_actus_light .actus-top {
  grid-template-rows: auto auto auto;
  row-gap: 1.75rem;
  min-height: 28rem;
  align-items: start;
}

body.page_actus_light .actus-hero-copy {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 28rem;
  padding-top: 0;
}

body.page_actus_light .actus-vertical-mark {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(20, 20, 20, 0.78);
  transform: translateY(0.6rem);
  font-family: var(--font-titles);
}

body.page_actus_light .actus-hero-image {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: stretch;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #dcdcd8;
}

body.page_actus_light .actus-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: grayscale(1) contrast(1.02);
}

body.page_actus_light .actus-meta-year {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

body.page_actus_light .actus-hero-caption {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
  align-self: end;
  max-width: 20rem;
  padding-left: 0.15rem;
}

body.page_actus_light .actus-headline {
  min-height: 11rem;
  padding-top: 1.25rem;
}

body.page_actus_light .actus-headline-main {
  grid-column: 1 / span 2;
  max-width: 24rem;
  align-self: center;
}

body.page_actus_light .actus-headline-main h1 {
  margin: 0 0 1rem;
  font-size: clamp(3.3rem, 6.6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  font-family: var(--font-titles);
}

body.page_actus_light .actus-bottom {
  row-gap: 1.5rem;
  min-height: 22rem;
  grid-template-columns: 1.08fr 92px 1.38fr;
}

body.page_actus_light .actus-section-label {
  grid-column: 1;
  grid-row: 1;
  font-weight: 600;
  color: #141414;
}

body.page_actus_light .actus-body-main {
  grid-column: 1 / span 2;
  grid-row: 1;
  max-width: 34rem;
  padding-top: 2.25rem;
}

body.page_actus_light .actus-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.15rem 0 0;
}

body.page_actus_light .actus-point-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: rgba(20, 20, 20, 0.035);
}

body.page_actus_light .actus-point-card span {
  display: block;
  margin-bottom: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c6c68;
  font-family: var(--font-sub_title);
}

body.page_actus_light .actus-point-card__content {
  min-width: 0;
}

body.page_actus_light .actus-point-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-family: var(--font-titles);
}

body.page_actus_light .actus-point-card p {
  margin: 0;
}

body.page_actus_light .actus-body-secondary,
body.page_actus_light .actus-body-final {
  max-width: 32rem;
}

body.page_actus_light .actus-body-secondary {
  grid-column: 3;
  grid-row: 1;
  max-width: 18rem;
  padding-top: 0;
  align-self: center;
}

body.page_actus_light .actus-body-final {
  grid-column: 1 / span 3;
  grid-row: 2;
  max-width: 42rem;
  padding-top: 0.55rem;
}

body.page_actus_light .actus-section-year {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}

body.page_actus_tempo .actus-top {
  grid-template-rows: auto auto auto;
  row-gap: 1.75rem;
  min-height: 40rem;
  align-items: start;
}

body.page_actus_tempo .actus-hero-copy {
  grid-column: 1;
  grid-row: 3;
  align-self: center;
  max-width: 22rem;
}

body.page_actus_tempo .actus-vertical-mark {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(20, 20, 20, 0.78);
  font-family: var(--font-titles);
}

body.page_actus_tempo .actus-hero-image {
  grid-column: 1 / span 3;
  grid-row: 2;
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: stretch;
  aspect-ratio: 2.25 / 1;
  overflow: hidden;
  background: #dcdcd8;
}

body.page_actus_tempo .actus-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: filter 0.35s ease;
}

body.page_actus_tempo .actus-hero-image:hover img,
body.page_actus_tempo .actus-hero-image:focus-within img {
  filter: grayscale(0) contrast(1);
}

body.page_actus_tempo .actus-hero-linkedin {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background: #efefec;
}

body.page_actus_tempo .actus-hero-linkedin picture,
body.page_actus_tempo .actus-hero-linkedin img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

body.page_actus_tempo .actus-hero-linkedin img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: none;
  transform: none !important;
  transition: none !important;
}

body.page_actus_tempo .actus-hero-linkedin:hover img,
body.page_actus_tempo .actus-hero-linkedin:focus-visible img {
  transform: none !important;
}

body.page_actus_tempo .actus-meta-year {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: center;
}

body.page_actus_tempo .actus-hero-caption {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  max-width: 18rem;
  text-align: right;
}

body.page_actus_tempo .actus-headline {
  min-height: 14rem;
  padding-top: 2rem;
  grid-template-columns: 1.15fr 92px 1.2fr;
}

body.page_actus_tempo .actus-headline-main {
  grid-column: 1 / span 3;
  display: grid;
  grid-template-columns: 1.15fr 92px 1.2fr;
  column-gap: 1.75rem;
  max-width: none;
  align-self: center;
}

body.page_actus_tempo .actus-headline-main h1 {
  margin: 0 0 1rem;
  font-size: clamp(3.3rem, 6.6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  font-family: var(--font-titles);
  grid-column: 1;
}

body.page_actus_tempo .actus-headline-main p {
  grid-column: 3;
  max-width: 24rem;
}

body.page_actus_tempo .actus-headline-main p + p {
  margin-top: -0.2rem;
}

body.page_actus_tempo .actus-bottom {
  row-gap: 1.5rem;
  min-height: 22rem;
}

body.page_actus_tempo .actus-section-label {
  grid-column: 1;
  grid-row: 1;
  font-weight: 600;
  color: #141414;
}

body.page_actus_tempo .actus-body-main {
  grid-column: 3;
  grid-row: 1;
  max-width: 25rem;
}

body.page_actus_tempo .actus-point-card {
  padding: 0.95rem 0.95rem 1rem;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: rgba(20, 20, 20, 0.035);
}

body.page_actus_tempo .actus-point-card span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c6c68;
  font-family: var(--font-sub_title);
}

body.page_actus_tempo .actus-point-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-family: var(--font-titles);
}

body.page_actus_tempo .actus-point-card p {
  margin: 0;
}

body.page_actus_tempo .actus-body-secondary {
  grid-column: 3;
  grid-row: 2;
  max-width: 19rem;
  padding-top: 0;
}

body.page_actus_tempo .actus-body-final {
  grid-column: 3;
  grid-row: 3;
  max-width: 26rem;
  padding-top: 0.2rem;
}

body.page_actus_tempo .actus-section-year {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
  align-self: end;
}

@media (max-width: 980px) {
  body.page_actus_honda .actus-sheet,
  body.page_actus_light .actus-sheet,
  body.page_actus_tempo .actus-sheet {
    width: min(96vw, 980px);
    margin-left: 2vw;
  }

  body.page_actus_honda .actus-top,
  body.page_actus_honda .actus-headline,
  body.page_actus_honda .actus-bottom,
  body.page_actus_light .actus-top,
  body.page_actus_light .actus-headline,
  body.page_actus_light .actus-bottom,
  body.page_actus_tempo .actus-top,
  body.page_actus_tempo .actus-headline,
  body.page_actus_tempo .actus-bottom {
    grid-template-columns: 1fr 70px 1.2fr;
    column-gap: 1rem;
  }
}

@media (max-width: 760px) {
  body.page_actus_honda,
  body.page_actus_light,
  body.page_actus_tempo {
    background: #efefec;
  }

  body.page_actus_honda main,
  body.page_actus_light main,
  body.page_actus_tempo main {
    min-height: auto;
    display: block;
    padding-top: 5.5rem;
  }

  body.page_actus_honda .actus-sheet,
  body.page_actus_light .actus-sheet,
  body.page_actus_tempo .actus-sheet {
    width: 100%;
    min-height: 100vh;
    margin-left: 0;
  }

  body.page_actus_honda .actus-sheet__inner,
  body.page_actus_light .actus-sheet__inner,
  body.page_actus_tempo .actus-sheet__inner {
    padding: 18px 16px 28px;
  }

  body.page_actus_honda .actus-top,
  body.page_actus_honda .actus-headline,
  body.page_actus_honda .actus-bottom,
  body.page_actus_light .actus-top,
  body.page_actus_light .actus-headline,
  body.page_actus_light .actus-bottom,
  body.page_actus_tempo .actus-top,
  body.page_actus_tempo .actus-headline,
  body.page_actus_tempo .actus-bottom {
    grid-template-columns: 1fr;
    min-height: auto;
    row-gap: 1.25rem;
  }

  body.page_actus_honda .actus-meta-top,
  body.page_actus_honda .actus-hero-copy,
  body.page_actus_honda .actus-vertical-mark,
  body.page_actus_honda .actus-hero-image,
  body.page_actus_honda .actus-meta-year,
  body.page_actus_honda .actus-hero-caption,
  body.page_actus_honda .actus-headline-main,
  body.page_actus_honda .actus-section-label,
  body.page_actus_honda .actus-quote-card,
  body.page_actus_honda .actus-body-main,
  body.page_actus_honda .actus-body-secondary,
  body.page_actus_honda .actus-body-final,
  body.page_actus_honda .actus-section-year,
  body.page_actus_light .actus-meta-top,
  body.page_actus_light .actus-hero-copy,
  body.page_actus_light .actus-vertical-mark,
  body.page_actus_light .actus-hero-image,
  body.page_actus_light .actus-meta-year,
  body.page_actus_light .actus-hero-caption,
  body.page_actus_light .actus-headline-main,
  body.page_actus_light .actus-section-label,
  body.page_actus_light .actus-body-main,
  body.page_actus_light .actus-body-secondary,
  body.page_actus_light .actus-body-final,
  body.page_actus_light .actus-section-year,
  body.page_actus_tempo .actus-meta-top,
  body.page_actus_tempo .actus-hero-copy,
  body.page_actus_tempo .actus-vertical-mark,
  body.page_actus_tempo .actus-hero-image,
  body.page_actus_tempo .actus-meta-year,
  body.page_actus_tempo .actus-hero-caption,
  body.page_actus_tempo .actus-headline-main,
  body.page_actus_tempo .actus-section-label,
  body.page_actus_tempo .actus-body-main,
  body.page_actus_tempo .actus-body-secondary,
  body.page_actus_tempo .actus-body-final,
  body.page_actus_tempo .actus-section-year {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
    justify-self: stretch;
  }

  body.page_actus_honda .actus-vertical-mark,
  body.page_actus_light .actus-vertical-mark,
  body.page_actus_tempo .actus-vertical-mark {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    transform: none;
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #6c6c68;
  }

  body.page_actus_honda .actus-hero-image,
  body.page_actus_light .actus-hero-image,
  body.page_actus_tempo .actus-hero-image {
    aspect-ratio: 1.24 / 1;
  }

  body.page_actus_honda .actus-headline,
  body.page_actus_light .actus-headline,
  body.page_actus_tempo .actus-headline {
    padding-top: 0.4rem;
  }

  body.page_actus_honda .actus-section-year,
  body.page_actus_light .actus-section-year,
  body.page_actus_tempo .actus-section-year {
    justify-self: start;
    margin-top: 0.35rem;
  }

  body.page_actus_light .actus-point-card {
    grid-template-columns: 1fr;
  }

  body.page_actus_tempo .actus-headline-main {
    display: block;
  }

  body.page_actus_tempo .actus-hero-linkedin {
    left: 0.8rem;
    bottom: 0.8rem;
    width: 64px;
    height: 64px;
  }

  body.page_actus_tempo .actus-points-grid {
    grid-template-columns: 1fr;
  }
}
/*---------------------------actus layout harmonisation-------------------------*/
body.page_actus_honda .actus-top,
body.page_actus_tempo .actus-top {
  grid-template-rows: auto auto auto;
  row-gap: 1.75rem;
  min-height: 28rem;
  align-items: start;
}

body.page_actus_honda .actus-hero-copy,
body.page_actus_tempo .actus-hero-copy {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 28rem;
  padding-top: 0;
  padding-bottom: 0;
}

body.page_actus_honda .actus-vertical-mark,
body.page_actus_tempo .actus-vertical-mark {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
}

body.page_actus_honda .actus-hero-image,
body.page_actus_tempo .actus-hero-image {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: stretch;
  aspect-ratio: 1 / 1;
}

body.page_actus_honda .actus-meta-year,
body.page_actus_tempo .actus-meta-year {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  justify-self: start;
}

body.page_actus_honda .actus-hero-caption,
body.page_actus_tempo .actus-hero-caption {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
  align-self: end;
  max-width: 20rem;
  padding-left: 0.15rem;
  text-align: left;
}

body.page_actus_honda .actus-headline,
body.page_actus_tempo .actus-headline {
  min-height: 11rem;
  padding-top: 1.25rem;
}

body.page_actus_honda .actus-headline-main,
body.page_actus_tempo .actus-headline-main {
  grid-column: 1 / span 2;
  display: block;
  max-width: 24rem;
  align-self: center;
}

body.page_actus_honda .actus-bottom,
body.page_actus_tempo .actus-bottom {
  row-gap: 1.5rem;
  min-height: 22rem;
  grid-template-columns: 1.08fr 92px 1.38fr;
}

body.page_actus_honda .actus-body-main,
body.page_actus_tempo .actus-body-main {
  grid-column: 1 / span 2;
  grid-row: 1;
  max-width: 34rem;
  padding-top: 2.25rem;
}

body.page_actus_honda .actus-body-secondary,
body.page_actus_tempo .actus-body-secondary {
  grid-column: 3;
  grid-row: 1;
  max-width: 18rem;
  padding-top: 0;
  align-self: center;
}

body.page_actus_honda .actus-body-final,
body.page_actus_tempo .actus-body-final {
  grid-column: 1 / span 3;
  grid-row: 2;
  max-width: 42rem;
  padding-top: 0.55rem;
}

body.page_actus_honda .actus-section-year,
body.page_actus_tempo .actus-section-year {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}

body.page_actus_honda .actus-quote-card,
body.page_actus_tempo .actus-hero-linkedin {
  display: none;
}

body.page_actus_tempo .actus-points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0 0;
}

body.page_actus_tempo .actus-point-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem 1rem 1.05rem;
}

body.page_actus_tempo .actus-point-card span {
  margin-bottom: 0;
}

body.page_actus_tempo .actus-point-card__content {
  min-width: 0;
}

body.page_actus_tempo .actus-point-card h3,
body.page_actus_tempo .actus-point-card p {
  max-width: none;
}

body.page_actus_honda .actus-hero-image img,
body.page_actus_light .actus-hero-image img,
body.page_actus_tempo .actus-hero-image img {
  filter: grayscale(1) contrast(1.02);
  transform: scale(1);
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}

body.page_actus_honda .actus-hero-image:hover img,
body.page_actus_honda .actus-hero-image:focus-within img,
body.page_actus_light .actus-hero-image:hover img,
body.page_actus_light .actus-hero-image:focus-within img,
body.page_actus_tempo .actus-hero-image:hover img,
body.page_actus_tempo .actus-hero-image:focus-within img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.05);
}

@media (max-width: 760px) {
  body.page_actus_honda main,
  body.page_actus_light main,
  body.page_actus_tempo main {
    padding-top: 1.35rem;
  }

  body.page_actus_honda .actus-top,
  body.page_actus_light .actus-top,
  body.page_actus_tempo .actus-top {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 1.25rem;
    min-height: auto;
  }

  body.page_actus_honda .actus-meta-top,
  body.page_actus_honda .actus-hero-copy,
  body.page_actus_honda .actus-vertical-mark,
  body.page_actus_honda .actus-hero-image,
  body.page_actus_honda .actus-meta-year,
  body.page_actus_honda .actus-hero-caption,
  body.page_actus_light .actus-meta-top,
  body.page_actus_light .actus-hero-copy,
  body.page_actus_light .actus-vertical-mark,
  body.page_actus_light .actus-hero-image,
  body.page_actus_light .actus-meta-year,
  body.page_actus_light .actus-hero-caption,
  body.page_actus_tempo .actus-meta-top,
  body.page_actus_tempo .actus-hero-copy,
  body.page_actus_tempo .actus-vertical-mark,
  body.page_actus_tempo .actus-hero-image,
  body.page_actus_tempo .actus-meta-year,
  body.page_actus_tempo .actus-hero-caption {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
    justify-self: stretch;
    max-width: none;
  }

  body.page_actus_honda .actus-headline,
  body.page_actus_honda .actus-bottom,
  body.page_actus_light .actus-headline,
  body.page_actus_light .actus-bottom,
  body.page_actus_tempo .actus-headline,
  body.page_actus_tempo .actus-bottom {
    grid-template-columns: 1fr;
    row-gap: 1.35rem;
    min-height: auto;
  }

  body.page_actus_honda .actus-headline-main,
  body.page_actus_light .actus-headline-main,
  body.page_actus_tempo .actus-headline-main {
    display: block;
    grid-column: 1;
    max-width: none;
  }

  body.page_actus_honda .actus-body-main,
  body.page_actus_honda .actus-body-secondary,
  body.page_actus_honda .actus-body-final,
  body.page_actus_light .actus-body-main,
  body.page_actus_light .actus-body-secondary,
  body.page_actus_light .actus-body-final,
  body.page_actus_tempo .actus-body-main,
  body.page_actus_tempo .actus-body-secondary,
  body.page_actus_tempo .actus-body-final {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
    padding-top: 0;
  }

  body.page_actus_light .actus-points-grid,
  body.page_actus_tempo .actus-points-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 1rem;
  }

  body.page_actus_light .actus-point-card,
  body.page_actus_tempo .actus-point-card {
    display: block;
    padding: 0.9rem 0;
    border: 0;
    border-top: 1px solid rgba(20, 20, 20, 0.18);
    background: transparent;
  }

  body.page_actus_light .actus-point-card:last-child,
  body.page_actus_tempo .actus-point-card:last-child {
    border-bottom: 1px solid rgba(20, 20, 20, 0.18);
  }

  body.page_actus_light .actus-point-card span,
  body.page_actus_tempo .actus-point-card span {
    margin-bottom: 0.45rem;
  }
}

/*---------------------------unified image hover-------------------------*/
.solutions_card img,
.client_showcase__media img,
.all_projects_row_item img,
.photos_item img,
.team_thumb img,
.client-page-main img[src*="assets/clients"],
.client-page-main .client-page-intro-media-frame img,
.client-page-main .client-page-result-media img,
.client-page-main .client-page-gallery-duo img,
.client-page-main .client-page-gallery-tail img,
body.page_actus_honda .actus-hero-image img,
body.page_actus_light .actus-hero-image img,
body.page_actus_tempo .actus-hero-image img {
  filter: grayscale(1) contrast(1.08) brightness(0.95) saturate(0);
  transition:
    filter 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.2s linear;
}

.solutions_card:hover img,
.solutions_card:focus-within img,
.solutions_card img:hover,
.client_showcase__link:hover .client_showcase__media img,
.client_showcase__link:focus-within .client_showcase__media img,
.client_showcase__media img:hover,
.all_projects_row_item:hover img,
.all_projects_row_item:focus-within img,
.all_projects_row_item img:hover,
.photos_item:hover img,
.photos_item:focus-within img,
.photos_item img:hover,
.team_member:hover .team_thumb img,
.team_member:focus-within .team_thumb img,
.team_thumb img:hover,
.client-page-main img[src*="assets/clients"]:hover,
.client-page-main picture:hover img[src*="assets/clients"],
.client-page-main figure:hover img[src*="assets/clients"],
.client-page-main picture:focus-within img[src*="assets/clients"],
.client-page-main figure:focus-within img[src*="assets/clients"],
.client-page-main .client-page-intro-media-frame:hover img,
.client-page-main .client-page-intro-media-frame:focus-within img,
.client-page-main .client-page-intro-media-frame img:hover,
.client-page-main .client-page-result-media:hover img,
.client-page-main .client-page-result-media:focus-within img,
.client-page-main .client-page-result-media img:hover,
.client-page-main .client-page-gallery-duo picture:hover img,
.client-page-main .client-page-gallery-duo picture:focus-within img,
.client-page-main .client-page-gallery-duo img:hover,
.client-page-main .client-page-gallery-tail picture:hover img,
.client-page-main .client-page-gallery-tail picture:focus-within img,
.client-page-main .client-page-gallery-tail img:hover,
body.page_euphoria .client-page-intro-media-frame:hover img,
body.page_euphoria .client-page-intro-media-frame:focus-within img,
body.page_euphoria .client-page-intro-media-frame img:hover,
body.page_euphoria .client-page-result-media:hover img,
body.page_euphoria .client-page-result-media:focus-within img,
body.page_euphoria .client-page-result-media img:hover,
body.page_euphoria .euphoria_gallery_duo picture:hover img,
body.page_euphoria .euphoria_gallery_duo picture:focus-within img,
body.page_euphoria .euphoria_gallery_duo img:hover,
body.page_euphoria .euphoria_gallery_tail picture:hover img,
body.page_euphoria .euphoria_gallery_tail picture:focus-within img,
body.page_euphoria .euphoria_gallery_tail img:hover,
body.page_actus_honda .actus-hero-image:hover img,
body.page_actus_honda .actus-hero-image:focus-within img,
body.page_actus_honda .actus-hero-image img:hover,
body.page_actus_light .actus-hero-image:hover img,
body.page_actus_light .actus-hero-image:focus-within img,
body.page_actus_light .actus-hero-image img:hover,
body.page_actus_tempo .actus-hero-image:hover img,
body.page_actus_tempo .actus-hero-image:focus-within img,
body.page_actus_tempo .actus-hero-image img:hover {
  filter: grayscale(0) contrast(1) brightness(1) saturate(1);
}

@media (max-width: 768px) {
  .all_projects_row_item:hover img,
  .all_projects_row_item:focus-within img,
  .all_projects_row_item img:hover,
  .photos_item:hover img,
  .photos_item:focus-within img,
  .photos_item img:hover {
    filter: grayscale(0) contrast(1) brightness(0.62) saturate(1);
  }
}

.team_member:hover .team_thumb img,
.team_member:focus-within .team_thumb img,
.team_thumb img:hover {
  transform: translate3d(0, var(--editorial-media-y, 0px), 0) scale(1.04);
}

.client-page-main img[src*="assets/clients"]:hover,
.client-page-main picture:hover img[src*="assets/clients"],
.client-page-main figure:hover img[src*="assets/clients"],
.client-page-main picture:focus-within img[src*="assets/clients"],
.client-page-main figure:focus-within img[src*="assets/clients"],
.client-page-main .client-page-intro-media-frame:hover img,
.client-page-main .client-page-intro-media-frame:focus-within img,
.client-page-main .client-page-intro-media-frame img:hover,
.client-page-main .client-page-result-media:hover img,
.client-page-main .client-page-result-media:focus-within img,
.client-page-main .client-page-result-media img:hover,
.client-page-main .client-page-gallery-duo picture:hover img,
.client-page-main .client-page-gallery-duo picture:focus-within img,
.client-page-main .client-page-gallery-duo img:hover,
.client-page-main .client-page-gallery-tail picture:hover img,
.client-page-main .client-page-gallery-tail picture:focus-within img,
.client-page-main .client-page-gallery-tail img:hover,
body.page_euphoria .client-page-intro-media-frame:hover img,
body.page_euphoria .client-page-intro-media-frame:focus-within img,
body.page_euphoria .client-page-intro-media-frame img:hover,
body.page_euphoria .client-page-result-media:hover img,
body.page_euphoria .client-page-result-media:focus-within img,
body.page_euphoria .client-page-result-media img:hover,
body.page_euphoria .euphoria_gallery_duo picture:hover img,
body.page_euphoria .euphoria_gallery_duo picture:focus-within img,
body.page_euphoria .euphoria_gallery_duo img:hover,
body.page_euphoria .euphoria_gallery_tail picture:hover img,
body.page_euphoria .euphoria_gallery_tail picture:focus-within img,
body.page_euphoria .euphoria_gallery_tail img:hover {
  transform: translate3d(0, var(--client-page-media-y, 0px), 0) scale(1.04);
}

body.page_actus_honda .actus-hero-image:hover img,
body.page_actus_honda .actus-hero-image:focus-within img,
body.page_actus_honda .actus-hero-image img:hover,
body.page_actus_light .actus-hero-image:hover img,
body.page_actus_light .actus-hero-image:focus-within img,
body.page_actus_light .actus-hero-image img:hover,
body.page_actus_tempo .actus-hero-image:hover img,
body.page_actus_tempo .actus-hero-image:focus-within img,
body.page_actus_tempo .actus-hero-image img:hover {
  transform: scale(1.04);
}

body[class*="page_"] .client-page-main img[src*="assets/clients"] {
  filter: grayscale(1) contrast(1.08) brightness(0.95) saturate(0);
  transition:
    filter 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.2s linear;
}

body[class*="page_"] .client-page-main img[src*="assets/clients"]:hover,
body[class*="page_"] .client-page-main picture:hover img[src*="assets/clients"],
body[class*="page_"] .client-page-main figure:hover img[src*="assets/clients"],
body[class*="page_"] .client-page-main picture:focus-within img[src*="assets/clients"],
body[class*="page_"] .client-page-main figure:focus-within img[src*="assets/clients"] {
  filter: grayscale(0) contrast(1) brightness(1) saturate(1);
  transform: translate3d(0, var(--client-page-media-y, 0px), 0) scale(1.04);
}

body.is-performance-lite .news_img,
body.is-performance-lite .photos_item img,
body.is-performance-lite .team_thumb img,
body.is-performance-lite .solutions_card img,
body.is-performance-lite .all_projects_row_item img,
body.is-performance-lite .client-page-main .client-page-intro-media-frame img,
body.is-performance-lite .client-page-main .client-page-result-media img,
body.is-performance-lite .client-page-main .client-page-gallery-duo img,
body.is-performance-lite .client-page-main .client-page-gallery-tail img,
body.is-performance-lite .client-page-main img[src*="assets/clients"],
body.is-performance-lite.page_actus_honda .actus-hero-image img,
body.is-performance-lite.page_actus_light .actus-hero-image img,
body.is-performance-lite.page_actus_tempo .actus-hero-image img {
  filter: none;
  transform: none;
  transition: none;
  will-change: auto;
}

body.is-performance-lite .client_showcase__media img {
  filter: none;
  transition: opacity 0.2s linear;
  will-change: auto;
}

@media (max-width: 768px) {
  .all_projects_row_item::after,
  .photos_item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  .all_projects_row_item:hover::after,
  .all_projects_row_item:focus-within::after,
  .photos_item:hover::after,
  .photos_item:focus-within::after {
    opacity: 1;
  }
}

body.is-performance-lite .solutions_card h3,
body.is-performance-lite .solutions_card p {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.is-performance-lite .home_video_section,
body.is-performance-lite .home_hero_media .video_background,
body.is-performance-lite .home_hero_logo,
body.is-performance-lite .home_hero_inner > h2,
body.is-performance-lite .gogasi_infos__headline,
body.is-performance-lite .gogasi_infos__content,
body.is-performance-lite .news,
body.is-performance-lite .photos_item {
  transition: none;
  will-change: auto;
}
/*---------------------------legal footer link-------------------------*/
.legal_footer_link {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  width: auto;
  padding: 0 clamp(24px, 5vw, 72px) clamp(18px, 2.2vw, 32px);
  text-align: right;
  font-family: var(--font-sub_title, Arial, sans-serif);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #ffffff;
  mix-blend-mode: difference;
}

.contact .legal_footer_link {
  padding: 0;
  position: relative;
  right: auto;
  bottom: auto;
  mix-blend-mode: normal;
}

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

.legal_footer_anchor {
  --legal-hover-x: 0px;
  --legal-hover-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 12;
}

.legal_footer_card {
  position: absolute;
  right: 0;
  bottom: calc(100% + 1rem);
  width: 190px;
  min-height: 190px;
  padding: 1rem 1.05rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  mix-blend-mode: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  isolation: isolate;
  color: #1b1b1b;
  font-family: var(--font-titles);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  z-index: 20;
  transform: translate3d(var(--legal-hover-x), calc(14px + var(--legal-hover-y)), 0) scale(0.92);
  transform-origin: bottom right;
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal_footer_anchor:hover .legal_footer_card,
.legal_footer_anchor:focus-visible .legal_footer_card,
.legal_footer_anchor.is-hover-card-visible .legal_footer_card {
  opacity: 1;
  visibility: visible;
  transform: translate3d(var(--legal-hover-x), var(--legal-hover-y), 0) scale(1);
}

.legal_footer_link a:hover,
.legal_footer_link a:focus-visible {
  text-decoration: none;
}

/*---------------------------index section rhythm overrides-------------------------*/
body.is-home-page {
  --index-section-spacing: clamp(56px, 7vh, 96px);
  --index-section-spacing-mobile: clamp(44px, 7vh, 72px);
}

body.is-home-page .solutions {
  padding-top: calc(var(--index-section-spacing) * 2);
}

body.is-home-page .clients {
  margin-top: var(--index-section-spacing);
}

body.is-home-page .all_projects {
  margin-top: clamp(24px, 4vh, 56px);
  padding-top: clamp(24px, 4vh, 56px);
  padding-bottom: var(--index-section-spacing);
}

body.is-home-page .news {
  margin-top: var(--index-section-spacing);
  padding-top: var(--index-section-spacing);
  padding-bottom: var(--index-section-spacing);
}

body.is-home-page .team_contact_stack {
  margin-top: calc(var(--index-section-spacing) * 1.5);
}

body.is-home-page .home_hero_inner > h2 {
  left: clamp(72px, 6.8vw, 120px);
  letter-spacing: 0.88em;
}

@media (max-width: 768px) {
  body.is-home-page .solutions {
    padding-top: calc(var(--index-section-spacing-mobile) * 2);
  }

  body.is-home-page .clients {
    margin-top: var(--index-section-spacing-mobile);
  }

  body.is-home-page .all_projects {
    margin-top: clamp(20px, 4vh, 40px);
    padding-top: clamp(20px, 4vh, 40px);
    padding-bottom: var(--index-section-spacing-mobile);
  }

  body.is-home-page .news {
    margin-top: var(--index-section-spacing-mobile);
    padding-top: var(--index-section-spacing-mobile);
    padding-bottom: var(--index-section-spacing-mobile);
  }

  body.is-home-page .team_contact_stack {
    margin-top: var(--index-section-spacing-mobile);
  }

  body.is-home-page .home_hero_inner > h2 {
    left: clamp(36px, 8vw, 64px);
    letter-spacing: 0.44em;
  }
}

@media (max-width: 768px) {
  body.is-home-page .all_projects {
    margin-top: 0;
    padding-top: var(--index-section-spacing-mobile);
  }

  body.is-home-page .news {
    margin-top: var(--index-section-spacing-mobile);
    padding-top: var(--index-section-spacing-mobile);
  }
}

@media (max-width: 760px) {
  body.page_actus_honda .actus-sheet__inner,
  body.page_actus_light .actus-sheet__inner,
  body.page_actus_tempo .actus-sheet__inner {
    padding: 18px 20px 28px;
  }

  body.page_actus_honda .actus-top,
  body.page_actus_honda .actus-headline,
  body.page_actus_honda .actus-bottom,
  body.page_actus_light .actus-top,
  body.page_actus_light .actus-headline,
  body.page_actus_light .actus-bottom,
  body.page_actus_tempo .actus-top,
  body.page_actus_tempo .actus-headline,
  body.page_actus_tempo .actus-bottom {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
  }

  body.page_actus_honda .actus-meta-top,
  body.page_actus_honda .actus-hero-copy,
  body.page_actus_honda .actus-vertical-mark,
  body.page_actus_honda .actus-hero-image,
  body.page_actus_honda .actus-meta-year,
  body.page_actus_honda .actus-hero-caption,
  body.page_actus_honda .actus-headline-main,
  body.page_actus_honda .actus-section-label,
  body.page_actus_honda .actus-quote-card,
  body.page_actus_honda .actus-body-main,
  body.page_actus_honda .actus-body-secondary,
  body.page_actus_honda .actus-body-final,
  body.page_actus_honda .actus-section-year,
  body.page_actus_light .actus-meta-top,
  body.page_actus_light .actus-hero-copy,
  body.page_actus_light .actus-vertical-mark,
  body.page_actus_light .actus-hero-image,
  body.page_actus_light .actus-meta-year,
  body.page_actus_light .actus-hero-caption,
  body.page_actus_light .actus-headline-main,
  body.page_actus_light .actus-section-label,
  body.page_actus_light .actus-body-main,
  body.page_actus_light .actus-body-secondary,
  body.page_actus_light .actus-body-final,
  body.page_actus_light .actus-section-year,
  body.page_actus_tempo .actus-meta-top,
  body.page_actus_tempo .actus-hero-copy,
  body.page_actus_tempo .actus-vertical-mark,
  body.page_actus_tempo .actus-hero-image,
  body.page_actus_tempo .actus-meta-year,
  body.page_actus_tempo .actus-hero-caption,
  body.page_actus_tempo .actus-headline-main,
  body.page_actus_tempo .actus-section-label,
  body.page_actus_tempo .actus-body-main,
  body.page_actus_tempo .actus-body-secondary,
  body.page_actus_tempo .actus-body-final,
  body.page_actus_tempo .actus-section-year {
    display: block;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  body.page_actus_honda .actus-bottom > *,
  body.page_actus_light .actus-bottom > *,
  body.page_actus_tempo .actus-bottom > * {
    margin-top: 1.35rem;
  }

  body.page_actus_honda .actus-bottom > *:first-child,
  body.page_actus_light .actus-bottom > *:first-child,
  body.page_actus_tempo .actus-bottom > *:first-child {
    margin-top: 0;
  }

  body.page_actus_honda .actus-headline-main p,
  body.page_actus_honda .actus-body-main p,
  body.page_actus_honda .actus-body-secondary p,
  body.page_actus_honda .actus-body-final p,
  body.page_actus_light .actus-headline-main p,
  body.page_actus_light .actus-body-main p,
  body.page_actus_light .actus-body-secondary p,
  body.page_actus_light .actus-body-final p,
  body.page_actus_tempo .actus-headline-main p,
  body.page_actus_tempo .actus-body-main p,
  body.page_actus_tempo .actus-body-secondary p,
  body.page_actus_tempo .actus-body-final p {
    width: 100%;
    max-width: none;
  }

  body.page_actus_light .actus-points-grid,
  body.page_actus_tempo .actus-points-grid {
    display: block;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .legal_footer_link {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    text-align: right;
  }

  .legal_footer_card {
    width: 150px;
    min-height: 150px;
    padding: 0.8rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 760px) {
  body.page_actus_honda main,
  body.page_actus_light main,
  body.page_actus_tempo main {
    padding-top: 2.6rem !important;
  }

  body.page_actus_honda .actus-sheet__inner,
  body.page_actus_light .actus-sheet__inner,
  body.page_actus_tempo .actus-sheet__inner {
    padding-top: 6px !important;
  }
}

@media (max-width: 768px) {
  .client-page-main {
    padding-right: 0 !important;
  }

  main > .contact_page__meta {
    padding-right: clamp(16px, 5vw, 28px);
    padding-left: clamp(16px, 5vw, 28px);
  }

  .client-page-main > .project_hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .client-page-main > .project_hero > .client-page-hero-media,
  body.page_tempo .project_hero--tempo .hero_media,
  body.page_vischer .project_hero .hero_media,
  body.page_wellzia .project_hero .hero_media,
  body.page_euphoria .project_hero--euphoria .hero_media {
    width: 100vw !important;
    height: 100vh !important;
    height: 100svh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
    margin-top: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    object-fit: cover;
    object-position: center;
  }

  .client-page-main > .project_hero > .pages_title,
  body.page_tempo .project_hero--tempo > .pages_title,
  body.page_vischer .project_hero > .pages_title,
  body.page_wellzia .project_hero > .pages_title,
  body.page_euphoria .project_hero--euphoria > .pages_title {
    left: 16px !important;
    right: 16px;
    top: auto !important;
    bottom: clamp(68px, 12svh, 112px);
    width: auto !important;
    padding: 0 !important;
    font-size: clamp(2.6rem, 13vw, 4rem) !important;
    line-height: 0.84 !important;
    transform: none !important;
  }

  .client-page-main > .project_hero > .pages_title .pages_title_subtitle,
  .client-page-main > .project_hero > .pages_title.section-title-reveal .title-line--subtitle,
  body.page_tempo .project_hero--tempo > .pages_title .pages_title_subtitle,
  body.page_vischer .project_hero > .pages_title .pages_title_subtitle,
  body.page_wellzia .project_hero > .pages_title .pages_title_subtitle,
  body.page_euphoria .project_hero--euphoria > .pages_title .pages_title_subtitle {
    display: block;
    top: 0 !important;
    left: 0 !important;
    margin-top: 0.55rem !important;
    max-width: min(90vw, 24rem);
    font-size: clamp(0.9rem, 4.3vw, 1.2rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }
}

@media (max-width: 900px) {
  .contact_page__meta {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas: "sign top legal";
    align-items: center;
    justify-items: stretch;
    column-gap: 12px;
    row-gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-right: clamp(16px, 5vw, 28px);
    padding-left: clamp(16px, 5vw, 28px);
  }

  .contact_page__meta .contact_sign_link,
  .contact_page__meta .legal_footer_link {
    font-size: 50%;
  }

  .contact_page__meta .contact_sign_link {
    grid-area: sign;
    justify-self: start;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .contact_page__meta .contact_back_to_top {
    grid-area: top;
    justify-self: center;
    margin-top: 0;
  }

  .contact_page__meta .legal_footer_link {
    grid-area: legal;
    justify-self: end;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    text-align: right;
  }

  body.is-home-page .contact_page__meta .contact_sign_link {
    min-height: auto;
  }

  body.is-home-page .contact_page__info {
    transform: translateY(clamp(120px, 18vh, 190px));
  }
}
