@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format("woff2");
  unicode-range: U+0-FF,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2) format("woff2");
  unicode-range: U+0-FF,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: "Manrope Fallback";
  src: local("Arial");
  ascent-override: 102.96%;
  descent-override: 28.98%;
  line-gap-override: 0%;
  size-adjust: 103.53%;
}

:root {
  color-scheme: dark;
  --paper: #0a111e;
  --ink: #f4f3ef;
  --text-soft: #d5d6de;
  --muted: #a9abb7;
  --line: rgba(255, 255, 255, 0.16);
  --header-bg: #030915;
  --header-ink: #f8f7f3;
  --header-line: rgba(255, 255, 255, 0.14);
  --header-hover: rgba(255, 255, 255, 0.08);
  --header-shadow: 0 7px 24px rgba(0, 0, 0, 0.18);
  --case-copy: #d2d4dc;
  --case-card-shadow: 0 24px 70px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: Manrope, "Manrope Fallback", Arial, sans-serif;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

@media (min-width: 1600px) {
  .wrap {
    width: min(1280px, calc(100% - 96px));
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--header-ink);
}

header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  box-shadow: var(--header-shadow);
}

.logo {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.085em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

nav a {
  padding-block: 7px;
}

nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-cv-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255,.42);
  border-radius: 4px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-cv-link:hover {
  background: rgba(255, 255, 255,.08);
  text-decoration: none;
}

.button:focus-visible,
.logo:focus-visible,
nav a:focus-visible,
.company-link:focus-visible,
.contact-item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.cover:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--header-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  margin-inline: auto;
  background: var(--header-ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 50px 0 45px;
  text-align: center;
}

h1 {
  margin: 10px 0 8px;
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.specialty {
  max-width: 900px;
  margin: 16px auto 0;
  color: var(--text-soft);
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.video-shell > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #111;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.cover img {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.54), transparent 58%, rgba(0, 0, 0, 0.2));
}

.play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  translate: -50% -50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cover:hover .play {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.83);
  border-color: rgba(255, 255, 255, 0.83);
  color: #101010;
}

.tri {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

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

.centered-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  transform: translateZ(0) scale(1);
  transform-origin: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: #e9e8e3;
  border-color: #e9e8e3;
  color: #121316;
}

.button.secondary {
  background: transparent;
  border-color: color-mix(in srgb, var(--ink) 72%, transparent);
  color: var(--ink);
}

.button-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transform-box: fill-box;
  transform-origin: center;
}

@media (hover: hover) {
  .button.primary:hover,
  .button.secondary:hover {
    background: #fff;
    border-color: #fff;
    color: #101114;
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .contact .button.secondary:hover {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
}

#projets,
#apropos,
#contact {
  scroll-margin-top: 80px;
}

.case {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  margin: 28px 0 30px;
  padding: 30px 30px 34px;
  border: 1px solid var(--case-card-border);
  border-radius: 10px;
  background: var(--case-card-bg);
  box-shadow: var(--case-card-shadow);
  --case-accent: var(--ink);
  --case-accent-bright: var(--ink);
  --case-card-bg: rgba(15, 17, 22, 0.5);
  --case-card-border: rgba(137, 146, 168, 0.2);
  --case-kpi-bg: rgba(255, 255, 255, 0.06);
  --case-kpi-border: rgba(255, 255, 255, 0.14);
  --case-impact-bg: rgba(255, 255, 255, 0.05);
  --case-impact-border: rgba(255, 255, 255, 0.12);
}

.case-delcampe {
  --case-accent: #72a6df;
  --case-accent-bright: #4f8fe0;
  --case-card-bg: rgba(17, 23, 32, 0.5);
  --case-card-border: rgba(114, 166, 223, 0.2);
  --case-kpi-bg: rgba(49, 95, 155, 0.1);
  --case-kpi-border: rgba(104, 158, 222, 0.16);
  --case-impact-bg: rgba(49, 95, 155, 0.07);
  --case-impact-border: rgba(104, 158, 222, 0.14);
}

.case-noel {
  --case-accent: #c5a260;
  --case-accent-bright: #c5a260;
  --case-card-bg: rgba(29, 25, 21, 0.5);
  --case-card-border: rgba(197, 162, 96, 0.2);
  --case-kpi-bg: rgba(139, 105, 48, 0.1);
  --case-kpi-border: rgba(197, 162, 96, 0.16);
  --case-impact-bg: rgba(139, 105, 48, 0.07);
  --case-impact-border: rgba(197, 162, 96, 0.14);
}

.case-cyclo {
  --case-accent: #4ab88e;
  --case-accent-bright: #4ca984;
  --case-card-bg: rgba(17, 26, 26, 0.5);
  --case-card-border: rgba(74, 184, 142, 0.2);
  --case-kpi-bg: rgba(53, 130, 101, 0.1);
  --case-kpi-border: rgba(100, 184, 151, 0.16);
  --case-impact-bg: rgba(53, 130, 101, 0.07);
  --case-impact-border: rgba(100, 184, 151, 0.14);
}

/* Client-specific case-study themes. */
.case-pinwheels,
.case-flobecq {
  --case-surface-theme: var(--case-theme);
  --case-card-surface-mix: 8%;
  --case-kpi-surface-mix: 10%;
  --case-impact-surface-mix: 7%;
  --case-accent: color-mix(in srgb, var(--case-theme) 90%, #fff);
  --case-accent-bright: color-mix(in srgb, var(--case-theme) 78%, #fff);
  --case-card-bg: color-mix(in srgb, var(--case-surface-theme) var(--case-card-surface-mix), rgba(15, 17, 22, 0.5));
  --case-card-border: color-mix(in srgb, var(--case-theme) 20%, transparent);
  --case-kpi-bg: color-mix(in srgb, var(--case-surface-theme) var(--case-kpi-surface-mix), transparent);
  --case-kpi-border: color-mix(in srgb, var(--case-theme) 16%, transparent);
  --case-impact-bg: color-mix(in srgb, var(--case-surface-theme) var(--case-impact-surface-mix), transparent);
  --case-impact-border: color-mix(in srgb, var(--case-theme) 14%, transparent);
}

.case-pinwheels {
  --case-theme: #b8a974;
  --case-surface-theme: #565656;
}

.case-flobecq {
  --case-theme: #cd7835;
  --case-surface-theme: #8b4d20;
  --case-card-surface-mix: 6%;
  --case-kpi-surface-mix: 8%;
  --case-impact-surface-mix: 5%;
}

.video-col {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.case .video-shell {
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 14px 38px rgba(0, 0, 0, 0.24);
}

.case .cover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 46%, rgba(0, 0, 0, 0.18));
}

.case .play {
  width: 66px;
  height: 66px;
  background: var(--case-accent-bright);
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.case .cover:hover .play {
  transform: scale(1.06);
  background: var(--case-accent-bright);
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0;
}

.metric {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  padding: 16px 12px 15px;
  overflow: hidden;
  border: 1px solid var(--case-kpi-border);
  border-radius: 5px;
  background: var(--case-kpi-bg);
  text-align: center;
}

.metric dd {
  order: 1;
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.metric dt {
  display: block;
  margin: 9px 0 0;
  color: var(--case-accent);
  font: 500 11px/16px "DM Mono", monospace;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.case .meta {
  --case-accordion-panel-height: 80px;
  min-width: 0;
  padding-top: 2px;
}

@media (min-width: 821px) {
  .case .meta {
    margin-top: -9px;
  }
}

.client {
  margin: 0 0 11px;
  color: var(--ink);
  font-size: clamp(25px, 2.25vw, 26px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.company-link {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin: 0 0 5px;
  border-bottom: 1px solid transparent;
  color: var(--case-accent);
  font: 800 14px/1.1 Manrope, "Manrope Fallback", Arial, sans-serif;
  word-spacing: 0.25em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s ease;
}

.company-link:hover {
  border-bottom-color: var(--case-accent);
}

.sub {
  margin: 0 0 9px;
  color: #9ca0ad;
  font: 500 11px/1.55 "DM Mono", monospace;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.language-flags {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 0;
  font-size: 17px;
  line-height: 1;
  letter-spacing: normal;
  vertical-align: -2px;
  white-space: nowrap;
}

.language-flags > span {
  display: inline-block;
}

.row {
  display: block;
  margin: 0;
  padding: 15px 0 16px;
  border-top: 1.5px dotted rgba(151, 157, 173, 0.18);
  font-size: 14.5px;
  line-height: 1.6;
}

.case-accordion-item.row {
  padding: 0;
}

.case-accordion-trigger {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 2px 12px 0;
  border: 0;
  background: transparent;
  color: var(--case-accent);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.case-accordion-item.is-open .case-accordion-trigger {
  cursor: default;
}

.case-accordion-item .case-accordion-label {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--case-accent);
  font: 800 12.8px/1.15 Manrope, "Manrope Fallback", Arial, sans-serif;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: filter 0.2s ease;
}

.case-accordion-item .case-accordion-title {
  display: inline;
  min-width: 0;
  color: inherit;
}

.case-accordion-item .case-accordion-dot {
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  flex: 0 0 8px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  border: 1px solid color-mix(in srgb, var(--case-accent) 58%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--case-accent) 22%, #11141b);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--case-accent) 5%, transparent);
  opacity: 0.78;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.case-accordion-item.is-open .case-accordion-dot {
  border-color: var(--case-accent);
  background: var(--case-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--case-accent) 14%, transparent),
    0 0 14px color-mix(in srgb, var(--case-accent) 48%, transparent);
  opacity: 1;
  transform: scale(1.08);
}

.case-accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid color-mix(in srgb, var(--case-accent) 48%, transparent);
  border-radius: 50%;
  opacity: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease, transform 0.25s ease;
}

.case-accordion-icon::before,
.case-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--case-accent);
  transform: translate(-50%, -50%);
}

.case-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.case-accordion-item.is-open .case-accordion-icon {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.82);
}

.case-accordion-panel {
  height: 0;
  margin-left: 0;
  padding-left: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.case-accordion-content {
  min-height: 66px;
  width: 100%;
  overflow: visible;
  margin: 0;
  padding: 0 0 14px;
  padding-left: 0;
  text-indent: 0;
  color: var(--case-copy);
  font-size: 14px;
  line-height: 1.58;
}

.case-accordion-item.is-open .case-accordion-panel {
  height: var(--case-accordion-panel-height);
  opacity: 1;
}

@media (hover: hover) {
  .case-accordion-item:not(.is-open) .case-accordion-trigger:hover .case-accordion-label {
    filter: brightness(1.14);
  }

  .case-accordion-item:not(.is-open) .case-accordion-trigger:hover .case-accordion-dot {
    border-color: var(--case-accent);
    background: color-mix(in srgb, var(--case-accent) 38%, var(--paper));
  }

  .case-accordion-item:not(.is-open) .case-accordion-trigger:hover .case-accordion-icon {
    border-color: var(--case-accent);
    transform: scale(1.08);
  }
}

.case-accordion-trigger:focus-visible {
  outline: 2px solid var(--case-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.impact {
  margin: 17px 0 0;
  padding: 17px 19px 18px;
  border: 1px solid var(--case-impact-border);
  border-radius: 8px;
  background: var(--case-impact-bg);
  color: var(--case-copy);
  font-size: 14.5px;
  line-height: 1.62;
  min-height: calc(4 * 1.62em + 37px);
  height: auto;
}

.impact b {
  display: inline-block;
  margin-right: 2px;
  color: var(--case-accent);
  font-size: 15.2px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.note {
  margin: 12px 0 0;
  color: #9ca0ad;
  font-size: 11px;
  line-height: 1.52;
  min-height: calc(3 * 1.52em);
  height: auto;
  font-style: italic;
}

@media (max-width: 820px) {
  .impact,
  .note {
    min-height: 0;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-accordion-panel,
  .case-accordion-content,
  .case-accordion-icon,
  .case-accordion-icon::before,
  .case-accordion-icon::after {
    animation: none !important;
    transition: none !important;
  }
}





.contact {
  position: relative;
  z-index: 0;
  padding: 68px 0 100px;
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: #040a15;
}

.contact-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 35px);
  letter-spacing: -0.055em;
}

.contact > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.contact-info {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 34px auto 0;
  text-align: left;
  font-style: normal;
}

.contact-item {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  padding-block: 5px;
  color: var(--muted);
  font: 500 14px/1.2 "DM Mono", monospace;
}

a.contact-item {
  cursor: pointer;
}

.contact-item svg {
  flex-shrink: 0;
}

.contact-item .flag {
  font-size: 14px;
  line-height: 1;
}

a.contact-item:hover {
  color: var(--ink);
}

.button-icon,
.contact-item svg,
.eye-core,
.eye-lashes-top,
.eye-lashes-bottom,
.contact-item svg polyline,
.contact-item svg circle {
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes phone-ring {
  0%, 100% {
    transform: rotate(0);
  }

  20% {
    transform: rotate(-9deg);
  }

  40% {
    transform: rotate(8deg);
  }

  60% {
    transform: rotate(-5deg);
  }

  80% {
    transform: rotate(3deg);
  }
}

@keyframes pin-bounce {
  0%, 100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-2.4px);
  }

  70% {
    transform: translateY(0.6px);
  }
}

@keyframes pin-pulse {
  0%, 100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.28);
  }
}

@keyframes eye-blink {
  0%, 28%, 100% {
    transform: scaleY(1);
  }

  42%, 50% {
    transform: scaleY(0.055);
  }

  62% {
    transform: scaleY(1);
  }
}

@keyframes lashes-top-blink {
  0%, 28%, 100% {
    transform: translateY(0);
  }

  42%, 50% {
    transform: translateY(3.1px);
  }

  62% {
    transform: translateY(0);
  }
}

@keyframes lashes-bottom-blink {
  0%, 28%, 100% {
    transform: translateY(0);
  }

  42%, 50% {
    transform: translateY(-3.1px);
  }

  62% {
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .contact-item[data-type="tel"]:hover svg {
    animation: phone-ring 0.58s ease-in-out 1;
  }

  .contact-item[data-type="loc"]:hover svg {
    animation: pin-bounce 0.62s ease-in-out 1;
  }

  .contact-item[data-type="loc"]:hover svg circle {
    animation: pin-pulse 0.62s ease-in-out 1;
  }

  .button:hover .eye-core {
    animation: eye-blink 0.72s ease-in-out 1 both;
  }

  .button:hover .eye-lashes-top {
    animation: lashes-top-blink 0.72s ease-in-out 1 both;
  }

  .button:hover .eye-lashes-bottom {
    animation: lashes-bottom-blink 0.72s ease-in-out 1 both;
  }
}

@media (min-width: 821px) and (max-height: 820px) {
  header {
    padding-block: 11px;
  }

  .hero {
    padding: 34px 0 30px;
  }
}

@media (max-width: 980px) {
  .case {
    gap: 30px;
  }

  .row {
    font-size: 14px;
  }
}

@media (max-width: 820px) {
  .case {
    grid-template-columns: 1fr;
  }

  .case {
    align-content: start;
    grid-auto-rows: max-content;
    gap: 28px;
    margin: 22px 0 26px;
    padding: 24px;
  }

  .client {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  header {
    padding: 19px 0;
  }

  .logo {
    display: inline-flex;
    align-items: center;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-enhanced .nav-toggle {
    display: flex;
  }

  .nav-enhanced nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-line);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.35);
  }

  .nav-enhanced nav.open {
    display: flex;
  }

  nav a {
    padding: 14px 24px;
  }

  nav a:hover {
    background: var(--header-hover);
    text-decoration: none;
  }

  .nav-cv-link {
    margin: 5px 16px 8px;
    padding: 10px 14px;
    border-color: rgba(255, 255, 255,.28);
  }

  .hero {
    padding: 55px 0 42px;
  }

  .actions {
    justify-content: center;
    margin-top: 22px;
    text-align: center;
  }

  html:not(.nav-enhanced) header {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  html:not(.nav-enhanced) .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  html:not(.nav-enhanced) nav {
    gap: 10px;
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .case {
    padding: 17px;
  }

  .case .video-shell {
    border-radius: 4px;
  }

  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 8px;
  }

  .metric {
    min-height: 76px;
    padding: 13px 7px 12px;
  }

  .metric dd {
    font-size: 19px;
  }

  .metric dt {
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .case .play {
    width: 54px;
    height: 54px;
  }

  .client {
    margin-top: 0;
    font-size: 22px;
  }

  .row {
    padding: 13px 0 14px;
  }

  .case-accordion-label {
    font-size: 12.2px;
  }

  .case-accordion-trigger {
    min-height: 44px;
    padding: 12px 2px 11px 0;
  }

  .case-accordion-content {
    min-height: 64px;
    padding-right: 0;
    font-size: 13.5px;
  }

  .impact {
    padding: 15px 16px;
  }

  .impact b {
    font-size: 14.5px;
  }
}

@media (max-width: 430px) {
  .logo {
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .header-actions {
    gap: 6px;
  }
}

@media (max-width: 360px) {
  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link,
  .nav-toggle span,
  .play,
  .button {
    transition: none;
  }

  .button:hover,
  .cover:hover .play {
    transform: none;
  }

  .contact-item:hover svg,
  .contact-item:hover svg polyline,
  .contact-item:hover svg circle,
  .button:hover .eye-core,
  .button:hover .eye-lashes-top,
  .button:hover .eye-lashes-bottom {
    animation: none;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
iframe,
video {
  max-width: 100%;
}

@media (max-width: 850px) {
  h1, h2, h3, .client, .contact-title {
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: none;
    hyphens: none;
  }
}

@media (max-width: 560px) {
  header {
    padding-block: 10px;
  }

  .hero {
    padding: 30px 0 25px;
  }

  .hero h1 {
    max-width: 370px;
    margin-top: 8px;
    margin-inline: auto;
    font-size: clamp(28.5px, 8.15vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.058em;
    text-wrap: balance;
  }

  .specialty {
    max-width: 356px;
    margin-top: 12px;
    padding-inline: 2px;
    font-size: clamp(14px, 3.85vw, 15px);
    line-height: 1.44;
  }

  .contact-info {
    max-width: 100%;
  }

  .contact-item {
    line-height: 1.3;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {

  .case {
    gap: 18px;
    margin: 10px 0 19px;
    padding: 16px;
    border-radius: 9px;
  }

  .metrics {
    gap: 6px;
    margin-top: 8px;
  }

  .metric {
    min-height: 70px;
    padding: 10px 5px 9px;
  }

  .company-link {
    min-height: 24px;
    margin-bottom: 4px;
    font-size: 12px;
  }

  .client {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.08;
  }

  .sub {
    margin-bottom: 8px;
  }

  .row {
    padding: 10px 0 11px;
  }

  .case-accordion-trigger {
    min-height: 44px;
    padding: 9px 2px 8px 0;
  }

  .case-accordion-label {
    font-size: 11.75px;
  }

  .case-accordion-content {
    min-height: 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .impact {
    margin-top: 12px;
    padding: 13px 14px 14px;
    font-size: 13.25px;
    line-height: 1.55;
  }

  .impact b {
    font-size: 14px;
  }

  .note {
    margin-top: 9px;
    font-size: 10.5px;
    line-height: 1.45;
  }

  

  

  

  .contact {
    padding: 50px 0 27px;
  }

  .contact-title {
    max-width: 350px;
    margin: 0 auto 13px;
    font-size: clamp(28px, 7.8vw, 31px);
    line-height: 1.14;
    text-wrap: balance;
  }

  .contact > p {
    max-width: 350px;
    margin: 0 auto 19px;
    font-size: 14.25px;
    line-height: 1.46;
  }

  .contact .actions {
    width: min(100%, 320px);
    gap: 9px;
    margin-inline: auto;
  }

  .contact .button {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
  }

  .contact-info {
    margin-top: 24px;
    gap: 0;
  }

  .contact-item {
    min-height: 44px;
    padding-block: 4px;
    font-size: clamp(12px, 3.5vw, 13.5px);
  }

  footer {
    padding: 15px 0 24px;
  }
}

@media (max-width: 700px) and (scripting: enabled) {
  html:not(.nav-enhanced) header {
    flex-wrap: nowrap;
    row-gap: 0;
  }

  html:not(.nav-enhanced) .header-actions {
    width: auto;
    justify-content: flex-start;
  }

  html:not(.nav-enhanced) .nav-toggle {
    display: flex;
  }

  html:not(.nav-enhanced) nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-line);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.35);
  }

  html:not(.nav-enhanced) nav.open {
    display: flex;
  }
}

.logo {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .logo {
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .header-actions {
    gap: 6px;
  }
}

.metric dt {
  order: 2;
  font-size: 10.5px;
}

@media (max-width: 560px) {
  .sub {
    font-size: 11px;
  }
}

@media screen and (min-width: 561px) and (max-width: 1024px) {
  .site-continuation > #projets {
    padding-top: 36px;
  }
}



#projets {
  position: relative;
  z-index: 0;
  padding-top: clamp(76px,7vw,118px);
}

#projets::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
}

@media screen and (min-width:561px) and (max-width:1180px) {
  

  #projets {
    padding-top: 70px;
  }
}



@media screen and (max-width:560px) {
  

  #projets {
    padding-top: 50px;
  }
}

.case-ubisoft {
  --case-accent: #9ba7e8;
  --case-accent-bright: #7d8bd8;
  --case-card-bg: rgba(21,23,36,.52);
  --case-card-border: rgba(155,167,232,.22);
  --case-kpi-bg: rgba(93,105,177,.10);
  --case-kpi-border: rgba(155,167,232,.18);
  --case-impact-bg: rgba(93,105,177,.08);
  --case-impact-border: rgba(155,167,232,.16);
}

.case-gallery {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.case-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
  box-shadow: 0 1px 0 rgba(255, 255, 255,.06) inset,0 14px 38px rgba(0, 0, 0,.24);
}

.case-gallery-main {
  aspect-ratio: 16/9;
}

.case-gallery-main picture,
.case-gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
}

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

.case-gallery-details {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}

.case-gallery-details figure {
  aspect-ratio: 3/2;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin: 12px 0 0;
}

.case-facts>div {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px;
  border: 1px solid var(--case-kpi-border);
  border-radius: 5px;
  background: var(--case-kpi-bg);
  text-align: center;
}

.case-facts dt {
  order: 2;
  margin: 6px 0 0;
  color: var(--case-accent);
  font: 500 9.5px/1.25 "DM Mono",monospace;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.case-facts dd {
  order: 1;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.025em;
  text-wrap: balance;
}







@media (max-width: 520px) {
  .case-gallery,
  .case-gallery-details {
    gap: 7px;
  }

  .case-facts {
    gap: 7px;
    margin-top: 8px;
  }

  .case-facts>div {
    min-height: 66px;
    padding: 10px 6px;
  }

  .case-facts dd {
    font-size: 13px;
  }

  .case-facts dt {
    font-size: 8.5px;
    letter-spacing: .02em;
  }
}

@media (max-width: 360px) {
  .case-facts {
    grid-template-columns: 1fr;
  }

  .case-facts>div {
    min-height: 0;
    padding: 10px 12px;
  }

  .case-facts dt {
    margin-top: 4px;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .button {
  min-height: 50px;
  padding: 15px 19px;
}

.hero-projects-button {
  min-width: 164px;
}

.hero-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease;
}

.hero-projects-button:hover .hero-arrow {
  transform: translateY(2px);
}

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 9px;
    margin-top: 26px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 48px;
    padding: 13px 10px;
    font-size: 12px;
  }

  .hero-arrow {
    display: none;
  }
}

@media (max-width: 350px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion:reduce) {
  .hero-arrow {
    transition: none;
  }
}

.hero-editorial-split {
  display: block;
  min-height: 0;
  padding: clamp(58px,7.5vh,88px) 0 clamp(64px,8.5vh,96px);
  text-align: left;
}

.hero-editorial-grid {
  display: grid;
  align-items: start;
}

.hero-editorial-split .hero-copy {
  max-width: 540px;
  align-self: start;
}

.hero-editorial-split .specialty {
  max-width: 535px;
  margin: 14px 0 0;
  color: #f0f1f4;
  font-size: clamp(18px,1.55vw,22px);
  line-height: 1.52;
  font-weight: 700;
  letter-spacing: -.025em;
  text-wrap: pretty;
}

.hero-editorial-split .hero-actions {
  margin-top: 20px;
}

.hero-editorial-split .hero-actions .button {
  min-height: 50px;
  padding: 15px 19px;
}

.hero-editorial-split .hero-projects-button {
  min-width: 164px;
}

.hero-editorial-split .hero-intro-media {
  min-width: 0;
}

.hero-editorial-split .hero-intro-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255,.13);
  border-radius: 9px;
  background: #05070b;
  box-shadow: 0 26px 70px rgba(0, 0, 0,.32),inset 0 1px 0 rgba(255, 255, 255,.04);
}

.hero-editorial-split .hero-intro-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255,.025);
}

.hero-editorial-split .hero-video-cover {
  border-radius: inherit;
}

.hero-editorial-split .hero-video-cover::after {
  background: linear-gradient(120deg,rgba(0, 0, 0,.18),transparent 58%,rgba(0, 0, 0,.08));
}

.hero-editorial-split .hero-video-cover .play {
  width: 66px;
  height: 66px;
  background: rgba(12,17,26,.32);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

@media (max-width: 980px) {
  .hero-editorial-split {
    padding: 58px 0 70px;
  }

  .hero-editorial-split .hero-intro-media {
    width: min(780px,100%);
  }

  .hero-editorial-split .hero-copy {
    max-width: 720px;
  }

  .hero-editorial-split .specialty {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .hero-editorial-split {
    padding: 42px 0 52px;
  }

  .hero-editorial-split .hero-intro-frame {
    border-radius: 7px;
  }

  .hero-editorial-split .specialty {
    margin-top: 13px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-editorial-split .hero-actions {
    margin-top: 18px;
  }

  .hero-editorial-split .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .site-continuation > #projets {
    padding-top: 46px;
  }
}

.approach-flow {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  text-align: left;
}

.approach-flow li {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 118px;
  flex-direction: column;
  padding: 16px 18px 17px;
  border-right: 1px solid var(--line);
}

.approach-flow li:last-child {
  border-right: 0;
}

.approach-flow strong {
  color: var(--ink);
  font-size: clamp(16px,1.45vw,19px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

@media (hover: hover) {
  .approach-flow li {
    transition: background .2s ease;
  }

  .approach-flow li:hover {
    background: rgba(255, 255, 255,.025);
  }
}

@media (max-width: 700px) {
  .approach-flow {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .approach-flow li {
    display: grid;
    min-height: 0;
    grid-template-columns: 40px 92px minmax(0,1fr);
    align-items: start;
    gap: 10px;
    padding: 17px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-flow li:nth-last-child(-n/**/+2) {
    border-bottom: 1px solid var(--line);
  }

  .approach-flow li:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .approach-flow strong {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .approach-flow li {
    grid-template-columns: 32px 78px minmax(0,1fr);
    gap: 8px;
  }

  .approach-flow strong {
    font-size: 15px;
  }
}

.case-positioning {
  margin: 9px 0 17px;
  color: var(--ink);
  font: 600 11px/1.45 Manrope, "Manrope Fallback", Arial, sans-serif;
  letter-spacing: .065em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .case-positioning {
    margin-top: 8px;
  }
}

.hero-headline-role {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 820px;
  margin: 13px auto 0;
  color: #d9dbe3;
  font: 500 13px/1.5 "DM Mono",monospace;
  letter-spacing: .045em;
  text-align: center;
}

@media (max-width: 560px) {
  .hero-headline-role {
    gap: 5px;
    margin-top: 11px;
    padding-inline: 8px;
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: .025em;
  }
}







.hero-editorial-split {
  padding-top: clamp(58px,7.5vh,60px);
  container-type: inline-size;
  container-name: hero-shell;
}

.hero-editorial-grid {
  grid-template-columns: minmax(0,1.16fr) minmax(360px,.84fr);
  gap: clamp(26px,3.3vw,48px);
  padding-top: 25px;
}

@media (max-width: 980px) {
  .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 16px;
  }
}

@media (max-width: 560px) {
  .hero-editorial-grid {
    gap: 25px;
    padding-top: 8px;
  }
}

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

.case-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--case-card-border,rgba(137,146,168,.2));
  border-radius: 10px;
  background: var(--case-card-bg,rgba(15,17,22,.5));
  box-shadow: var(--case-card-shadow);
}

.case-preview-open {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.case-preview-media {
  position: relative;
  display: block;
  background: #090c12;
}

.case-preview-media img {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: center;
  will-change: transform;
  transition: transform .5s cubic-bezier(.2,.65,.25,1);
}

.case-preview-media-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.case-preview-cta {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255,.2);
  font: 600 10.5px/1 "DM Mono",monospace;
  text-transform: uppercase;
  transition: background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
}

.case-preview-cta::after {
  margin-left: 8px;
  font-family: Manrope,"Manrope Fallback",Arial,sans-serif;
  font-size: 13px;
  line-height: 1;
}

.case-preview-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px 25px 25px;
}

.case-preview-company {
  color: var(--case-accent);
  font: 650 10.5px/1.25 "DM Mono",monospace;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.case-preview-results {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
}

.case-preview-result {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  justify-content: center;
  padding: 11px 12px;
  border: 1px solid var(--case-kpi-border,rgba(255, 255, 255,.14));
  border-radius: 5px;
  background: var(--case-kpi-bg,rgba(255, 255, 255,.05));
}

.case-preview-result strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.03em;
}

.case-preview-result small {
  margin-top: 6px;
  color: var(--case-accent);
  font: 500 9.5px/1.3 "DM Mono",monospace;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.case-preview-open:focus-visible {
  outline-offset: -3px;
  border-radius: 9px;
}

@media (hover: hover) {
  .case-preview {
    transition: transform .28s ease,border-color .28s ease,box-shadow .28s ease;
  }

  .case-preview:hover {
    border-color: color-mix(in srgb,var(--case-accent) 55%,rgba(255, 255, 255,.2));
  }

  .case-preview:hover .case-preview-cta {
    border-color: var(--case-accent);
    background: var(--case-accent);
    color: #09101a;
    transform: translateY(-1px);
  }
}

html.case-dialog-open,
html.case-dialog-open body {
  overflow: hidden;
}

.case-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  margin: 0;
  border: 0;
  color: var(--ink);
}

.case-dialog::backdrop {
  background: rgba(3,5,8,.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.case-dialog-topbar {
  top: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.case-dialog-context {
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font: 600 10px/1.3 "DM Mono",monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.case-dialog-number {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}

.case-dialog-company {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-dialog-close {
  display: grid;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255,.23);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease,border-color .2s ease,transform .2s ease;
}

.case-dialog-close svg {
  width: 19px;
  height: 19px;
}

.case-dialog-close:focus-visible,
.case-dialog-switch:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (hover: hover) {
  .case-dialog-close:hover {
    background: #fff;
    border-color: #fff;
    color: #101114;
    transform: scale(1.05);
  }
}

.case-dialog-switch {
  min-height: 44px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 650 11px/1.25 "DM Mono",monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease,transform .2s ease;
}

@media (hover: hover) {
  .case-dialog-switch:hover {
    color: var(--ink);
    transform: translateY(-1px);
  }
}

@keyframes case-dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.992);
  }

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

@media (min-width: 1051px) {
  .case-preview-body {
    padding: 21px 21px 22px;
  }

  .case-preview-results {
    padding-top: 18px;
  }

  .case-preview-result {
    min-height: 66px;
    padding: 10px 10px;
  }

  .case-preview-result small {
    font-size: 11px;
  }
}

@media (max-width: 1050px) {
  .case-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(680px,100%);
    margin: 20px auto 0;
  }

  .case-preview-body {
    padding: 20px 19px 20px;
  }

  .case-preview-results {
    padding-top: 18px;
  }

  .case-preview-result {
    min-height: 66px;
    padding: 9px 10px;
  }

  .case-preview-result strong {
    font-size: 16px;
  }

  .case-dialog {
    padding: 0;
  }

  .case-dialog-panel {
    border: 0;
    border-radius: 0;
  }

  .case-dialog-topbar {
    min-height: 58px;
    padding: 7px 10px 7px 14px;
  }

  .case-dialog-content {
    width: calc(100% - 20px);
    padding-top: 14px;
  }

  .case-dialog-content .case {
    margin: 0;
  }

  .case-dialog-company {
    max-width: 60vw;
  }
}

@media (max-width: 430px) {
  .case-preview-results {
    gap: 6px;
  }

  .case-preview-result strong {
    font-size: 15px;
  }

  .case-preview-result small {
    font-size: 9.5px;
  }

  .case-dialog-context {
    gap: 8px;
    font-size: 9px;
  }

  .case-dialog-number {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .case-dialog-switch {
    font-size: 9.5px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .case-preview,
  .case-preview-media img,
  .case-preview-cta,
  .case-dialog-panel,
  .case-dialog-close,
  .case-dialog-switch {
    animation: none !important;
    transition: none !important;
  }
}

.case-dialog-content .case {
  --case-card-bg: rgba(15,17,22,.68);
}

.case-dialog-content .case-delcampe {
  --case-card-bg: rgba(17,23,32,.68);
}

.case-dialog-content .case-noel {
  --case-card-bg: rgba(29,25,21,.68);
}

.case-dialog-content .case-cyclo {
  --case-card-bg: rgba(17,26,26,.68);
}

.case-dialog-content .case-ubisoft {
  --case-card-bg: rgba(21,23,36,.70);
}

.case-dialog-content .case-pinwheels,
.case-dialog-content .case-flobecq {
  --case-card-bg: color-mix(in srgb, var(--case-surface-theme) var(--case-card-surface-mix), rgba(15, 17, 22, 0.68));
}

@media (hover: hover) and (pointer:fine) {
  .case-dialog-content .case-ubisoft .case-gallery figure {
    cursor: zoom-in;
  }

  .case-dialog-content .case-ubisoft .case-gallery figure img {
    transform-origin: var(--ubisoft-zoom-x,50%) var(--ubisoft-zoom-y,50%);
    transition: transform .50s cubic-bezier(.22,.61,.36,1),filter .30s ease;
    will-change: transform;
  }

  .case-dialog-content .case-ubisoft .case-gallery figure:hover img {
    transform: scale(2.5);
    filter: saturate(1.04) contrast(1.03);
  }
}

.case-preview-media {
  isolation: isolate;
  aspect-ratio: 16/9;
  margin-bottom: 0;
  overflow: hidden;
  transform: none;
  contain: paint;
}

.case-preview-media img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
}

@media (hover: hover) {
  .case-preview:hover {
    box-shadow: 0 28px 72px rgba(0, 0, 0,.25),0 0 0 1px color-mix(in srgb,var(--case-accent) 10%,transparent) inset;
    transform: none;
  }

  .case-preview:hover .case-preview-media img {
    transform: scale(1.035);
  }
}

.case-gallery picture {
  display: block;
  width: 100%;
  height: 100%;
}

.case-preview-result {
  align-items: center;
  text-align: center;
}

.case-preview-open:focus-visible {
  outline: none;
}

.case-preview-open:focus-visible .case-preview-cta {
  outline: 2px solid var(--case-accent);
  outline-offset: 3px;
}







@container hero-shell (max-width:900px) {
  .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 14px;
  }

  .hero-editorial-split .hero-intro-media {
    width: min(780px,100%);
  }

  .hero-editorial-split .hero-copy {
    max-width: 720px;
  }

  .hero-editorial-split .specialty {
    max-width: 680px;
  }

  

  .approach-flow {
    grid-template-columns: 1fr;
  }

  .approach-flow li {
    display: grid;
    min-height: 0;
    grid-template-columns: 40px 124px minmax(0,1fr);
    align-items: start;
    gap: 12px;
    padding: 14px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-flow li:last-child {
    border-bottom: 0;
  }

  .approach-flow strong {
    font-size: 16px;
  }
}

@container hero-shell (max-width:540px) {
  .hero-editorial-grid {
    gap: 24px;
    padding-top: 8px;
  }

  

  .approach-flow li {
    grid-template-columns: 32px 88px minmax(0,1fr);
    gap: 8px;
    padding: 13px 2px;
  }

  .approach-flow strong {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .approach-flow {
    grid-template-columns: 1fr;
  }

  .approach-flow li {
    display: grid;
    min-height: 0;
    grid-template-columns: 40px 124px minmax(0,1fr);
    align-items: start;
    gap: 12px;
    padding: 14px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-flow li:last-child {
    border-bottom: 0;
  }

  .approach-flow strong {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .site-continuation > #projets {
    padding-top: 52px;
  }
}

@container case-shell (max-width:980px) {
  .case-dialog-content .case {
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    gap: 24px;
    align-content: start;
    row-gap: 0;
  }

  .case-dialog-content .case .meta {
    margin-top: 0;
  }

  .case-dialog-content .video-col,
  .case-dialog-content .meta {
    width: 100%;
    min-width: 0;
  }

  .case-dialog-content .case-positioning {
    font-size: 10.5px;
    line-height: 1.48;
  }

  .case-dialog-content .sub {
    font-size: 10.75px;
  }
}

@container case-shell (max-width:620px) {
  .case-dialog-content .metrics,
  .case-dialog-content .case-facts {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
  }

  .case-dialog-content .metrics .metric:nth-child(3):last-child,
  .case-dialog-content .case-facts>div:nth-child(3):last-child {
    grid-column: 1 / -1;
  }

  .case-dialog-content .metric {
    min-height: 72px;
    padding: 12px 8px 11px;
  }

  .case-dialog-content .metric dd {
    font-size: 21px;
  }

  .case-dialog-content .metric dt {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.35;
  }

  .case-dialog-content .case-facts>div {
    min-height: 66px;
  }

  .case-dialog-content .case-facts dd {
    font-size: 14px;
  }

  .case-dialog-content .case-facts dt {
    font-size: 10px;
  }
}

@container case-shell (max-width:420px) {
  .case-dialog-content .case {
    gap: 18px;
  }

  .case-dialog-content .case-positioning {
    font-size: 9.75px;
  }

  .case-dialog-content .case-accordion-label {
    font-size: 12px;
  }
}

@container hero-shell (max-width:900px) {
  .hero-editorial-grid {
    width: min(760px,100%);
    margin-inline: auto;
  }

  .hero-editorial-split .hero-intro-media,
  .hero-editorial-split .hero-copy {
    width: 100%;
  }

  .hero-editorial-split .hero-copy,
  .hero-editorial-split .specialty {
    max-width: none;
  }
}

@container hero-shell (max-width:540px) {
  .hero-editorial-grid {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero-editorial-grid {
    width: min(760px,100%);
    margin-inline: auto;
  }

  .hero-editorial-split .hero-intro-media,
  .hero-editorial-split .hero-copy {
    width: 100%;
  }

  .hero-editorial-split .hero-copy,
  .hero-editorial-split .specialty {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .hero-editorial-grid {
    width: 100%;
  }
}

.case-dialog {
  max-height: none;
  --case-stage-gap: clamp(8px,1.6vh,20px);
  --case-stage-height-limit: 132dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--case-stage-gap) calc(var(--case-stage-gap) + var(--case-stage-rail));
  background: transparent;
  overflow: hidden;
  --case-stage-height: min(920px,calc(100dvh - (2 * var(--case-stage-gap))));
  --case-stage-width: min(
    1500px,
    calc(100vw - (2 * var(--case-stage-gap)) - (2 * var(--case-stage-rail))),
    var(--case-stage-height-limit)
  );
  --case-stage-rail: clamp(58px,4.6vw,72px);
}

.case-dialog-panel {
  overscroll-behavior: contain;
  position: relative;
  width: var(--case-stage-width);
  height: var(--case-stage-height);
  max-width: none;
  max-height: none;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-gutter: auto;
}

.case-dialog-topbar {
  position: absolute;
  z-index: 45;
  inset: 0;
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: none;
}

.case-dialog-context {
  display: none;
}

.case-dialog-close {
  place-items: center;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  background: rgba(12,17,26,.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.case-dialog-topnav {
  position: absolute;
  z-index: 44;
  top: 50%;
  left: calc(-1 * var(--case-stage-rail));
  right: calc(-1 * var(--case-stage-rail));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.case-dialog-topnav .case-dialog-switch {
  position: relative;
  display: grid;
  width: var(--case-stage-rail);
  height: 92px;
  min-height: 0;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(244,243,239,.8);
  font-size: 0;
  line-height: 0;
  pointer-events: auto;
  transition: color .2s ease,transform .2s ease;
}

.case-dialog-topnav .case-dialog-switch::before {
  content: "";
  width: 28px;
  height: 28px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.case-dialog-topnav .case-dialog-prev::before {
  transform: translateX(3px) rotate(-135deg);
}

.case-dialog-topnav .case-dialog-next::before {
  transform: translateX(-3px) rotate(45deg);
}

.case-dialog-content {
  container-name: case-shell;
  container-type: inline-size;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.case-dialog-content .case {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding: clamp(18px,2.15vw,34px);
  gap: clamp(20px,2.7vw,44px);
  scrollbar-width: thin;
  scrollbar-color: rgba(213,214,222,.28) transparent;
}

.case-dialog-content .case .client {
  padding-right: 54px;
}

.case-dialog[open] .case-dialog-panel {
  animation: case-dialog-stage-in .26s cubic-bezier(.2,.7,.25,1) both;
}

@keyframes case-dialog-stage-in {
  from {
    opacity: 0;
    transform: scale(.986);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (orientation:landscape) and (max-height:700px) {

  .case-dialog-content .case {
    padding: 16px;
    gap: 18px;
  }

  .case-dialog-close {
    top: 9px;
    right: 9px;
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .case-dialog-topnav .case-dialog-switch {
    height: 72px;
  }

  .case-dialog-topnav .case-dialog-switch::before {
    width: 23px;
    height: 23px;
  }
}

@media (orientation:portrait) and (max-width:1024px) {
  .case-dialog {
    display: block;
    width: 100vw;
    height: 100dvh;
    padding: 0;
    background: var(--paper);
    overflow: hidden;
  }

  .case-dialog-panel {
    width: 100%;
    height: 100dvh;
    margin: 0;
    overflow: auto;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
  }

  .case-dialog-topbar {
    position: sticky;
    z-index: 50;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
    min-height: 64px;
    align-items: center;
    gap: 10px;
    padding: 8px 12px 8px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(12,17,26,.94);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    pointer-events: auto;
  }

  .case-dialog-context {
    display: flex;
    justify-self: start;
  }

  .case-dialog-close {
    position: static;
    justify-self: end;
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    background: rgba(255, 255, 255,.035);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .case-dialog-topnav {
    display: flex;
    transform: none;
    pointer-events: auto;
  }

  .case-dialog-topnav .case-dialog-switch {
    display: grid;
    min-height: 0;
    padding: 0;
  }

  .case-dialog-topnav .case-dialog-prev::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .case-dialog-topnav .case-dialog-next::before {
    transform: translateX(-2px) rotate(45deg);
  }

  .case-dialog-content {
    width: min(880px,calc(100% - 28px));
    height: auto;
    margin: 0 auto;
    padding: 18px 0 28px;
  }

  .case-dialog-content .case {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    overflow: visible;
    padding: 30px 30px 34px;
    gap: 38px;
  }

  .case-dialog-content .case .client {
    padding-right: 0;
  }

  .case-dialog[open] .case-dialog-panel {
    animation: case-dialog-in .28s cubic-bezier(.2,.7,.25,1) both;
  }
}

@media (orientation:portrait) and (max-width:520px) {
  .case-dialog-topbar {
    min-height: 58px;
    padding: 7px 8px 7px 12px;
    gap: 6px;
  }

  .case-dialog-company {
    display: none;
  }

  .case-dialog-context {
    gap: 0;
  }

  .case-dialog-number {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .case-dialog-close {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .case-dialog-content {
    width: calc(100% - 20px);
    padding-top: 8px;
  }

  .case-dialog-content .case {
    padding: 20px 18px 24px;
    gap: 22px;
  }
}

@media (hover: hover) {
  .case-dialog-topnav .case-dialog-switch:hover {
    color: #fff;
    transform: scale(1.06);
  }
}

.case-dialog:not([open]) {
  display: none !important;
}

.case-dialog-content .case::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.case-dialog-content .case::-webkit-scrollbar-track {
  background: transparent;
}

.case-dialog-content .case::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(213,214,222,.30);
  background-clip: padding-box;
}

.case-dialog-content .case::-webkit-scrollbar-thumb:hover {
  background: rgba(244,243,239,.48);
  background-clip: padding-box;
}

@media (orientation:portrait) and (max-width:1024px) {
  .case-dialog-topnav {
    justify-self: center;
    position: static;
    gap: 0;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255,.14);
    border-radius: 999px;
    background: rgba(255, 255, 255,.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255,.025);
  }

  .case-dialog-topnav .case-dialog-switch {
    pointer-events: auto;
    place-items: center;
    width: 40px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(244,243,239,.78);
  }

  .case-dialog-topnav .case-dialog-prev {
    border-radius: 999px 8px 8px 999px;
  }

  .case-dialog-topnav .case-dialog-next {
    border-radius: 8px 999px 999px 8px;
  }

  .case-dialog-topnav .case-dialog-prev::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255,.10);
  }

  .case-dialog-topnav .case-dialog-switch::before {
    width: 9px;
    height: 9px;
    border-top-width: 1.7px;
    border-right-width: 1.7px;
  }

  .case-dialog-panel {
    scrollbar-gutter: stable;
    overscroll-behavior: contain;
    max-height: none;
    max-width: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(213,214,222,.24) transparent;
  }

  .case-dialog-panel::-webkit-scrollbar {
    width: 6px;
  }

  .case-dialog-panel::-webkit-scrollbar-track {
    background: transparent;
  }

  .case-dialog-panel::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: rgba(213,214,222,.27);
    background-clip: padding-box;
  }
}

@media (orientation:portrait) and (max-width:520px) {
  .case-dialog-topnav .case-dialog-switch {
    width: 36px;
    height: 34px;
  }
}

@media (hover: hover) {
  @media (orientation:portrait) and (max-width:1024px) {
    .case-dialog-topnav .case-dialog-switch:hover {
      background: rgba(255, 255, 255,.075);
      color: #fff;
      transform: none;
    }
  }
}

header {
  --site-header-offset: 0px;
  transform: translateY(calc(-1 * var(--site-header-offset)));
}

@media (max-width: 1399px), (max-height:799px) {
  header {
    will-change: transform;
    transition: none;
  }

  header.site-header-revealing {
    transition: transform .56s cubic-bezier(.16,1,.3,1);
  }

  header:focus-within {
    --site-header-offset: 0px;
  }
}

@media (prefers-reduced-motion:reduce) {
  header,
  header.site-header-revealing {
    transition: none !important;
  }
}

@media (min-width: 1400px) and (min-height:800px) {
  header {
    will-change: auto;
    transform: none !important;
    isolation: auto;
    background: transparent;
  }

  header::before {
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg,rgba(3,9,21,.87),rgba(3,9,21,.90));
    -webkit-backdrop-filter: blur(6px) saturate(112%) brightness(.95) contrast(1.01);
    backdrop-filter: blur(6px) saturate(112%) brightness(.95) contrast(1.01);
    border-bottom-color: rgba(255, 255, 255,.085);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255,.028),inset 0 -1px 0 rgba(255, 255, 255,.018),0 6px 20px rgba(0, 0, 0,.07);
  }

  header > * {
    position: relative;
    z-index: 1;
  }
}

@media (orientation:landscape) and (max-height:700px) {
  .case-dialog {
    --case-stage-height-limit: 118dvh;
    --case-stage-gap: 8px;
    --case-stage-rail: 56px;
  }
}


@media (hover:none), (pointer:coarse) {
  .case-preview:has(.case-preview-open:active) {
    border-color: color-mix(in srgb,var(--case-accent) 55%,rgba(255, 255, 255,.2));
    box-shadow: 0 28px 72px rgba(0, 0, 0,.25),0 0 0 1px color-mix(in srgb,var(--case-accent) 10%,transparent) inset;
  }

  .case-preview-open:active .case-preview-media img {
    transform: scale(1.035);
  }

  .case-preview-open:active .case-preview-cta {
    border-color: var(--case-accent);
    background: var(--case-accent);
    color: #09101a;
    transform: translateY(-1px);
  }

  .cover:active .play {
    transform: scale(1.08);
    background: rgba(255, 255, 255,.83);
    border-color: rgba(255, 255, 255,.83);
    color: #101010;
  }

  .case .cover:active .play {
    transform: scale(1.06);
    background: var(--case-accent-bright);
    border-color: rgba(255, 255, 255,.48);
    color: #fff;
  }
}

.case-preview-media-shade {
  background: linear-gradient(180deg,rgba(5,8,13,.02) 45%,rgba(5,8,13,.22) 100%);
}

.case-preview-problem {
  font-size: clamp(22px,2.15vw,29px);
  line-height: 1.16;
}

.case-preview-cta {
  position: static;
  right: auto;
  bottom: auto;
  width: max-content;
  max-width: 100%;
  min-height: 36px;
  margin-top: 18px;
  padding: 0 13px;
  border-color: color-mix(in srgb,var(--case-accent) 42%,rgba(255, 255, 255,.16));
  background: color-mix(in srgb,var(--case-accent) 10%,rgba(10,13,19,.92));
  color: var(--ink);
}

.case-preview-cta::after {
  content: "→";
}

.case-preview-results {
  margin-top: auto;
  padding-top: 26px;
}

@media (min-width: 1051px) {

  .case-preview-cta {
    margin-top: 17px;
  }
}

@media (max-width: 700px) {
  .case-preview-problem {
    margin-top: 12px;
    font-size: 21px;
    line-height: 1.22;
  }

  .case-preview-cta {
    margin-top: 16px;
  }
}

@media (max-width: 430px) {
  .case-preview-cta {
    position: static;
    right: auto;
    bottom: auto;
    min-height: 34px;
    padding: 0 11px;
    font-size: 10px;
  }
}

.case-dialog-content .case .client {
  line-height: 1.18;
  text-wrap: pretty;
}

@media (max-width: 560px) {
  .case-dialog-content .case .client {
    line-height: 1.18;
  }
}

@container case-shell (max-width:980px) {

  .case-dialog-content .case .meta {
    display: contents;
  }

  .case-dialog-content .case .client {
    order: -2;
    margin: 0 0 14px;
    padding-right: 0;
  }

  .case-dialog-content .video-col {
    order: -1;
    margin-bottom: 22px;
  }

  .case-dialog-content .company-link {
    margin-bottom: 5px;
  }

  .case-dialog-content .case-meta-body {
    width: 100%;
    min-width: 0;
  }
}

@container case-shell (max-width:520px) {
  .case-dialog-content .case .client {
    margin-bottom: 12px;
  }

  .case-dialog-content .video-col {
    margin-bottom: 18px;
  }
}

@media (min-width: 1181px) {
  #projets {
    padding-bottom: 63px;
  }

  
}

@media (min-width: 1051px) and (max-width: 1180px) {
  #projets {
    padding-bottom: 28px;
  }

  
}

@media (min-width: 561px) and (max-width: 1050px) {
  #projets {
    padding-bottom: 35px;
  }

  
}

@media (max-width: 560px) {
  #projets {
    padding-bottom: 23px;
  }

  
}

.logo {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}

.logo-name {
  color: #fff;
}

.hero-showcase {
  text-align: left;
}

.hero-showcase .hero-panel {
  position: relative;
}

.hero-showcase .hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255,.018), transparent 28%, transparent 72%, rgba(85,143,197,.022));
}

.hero-showcase .hero-editorial-grid {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0;
}

.hero-showcase .hero-intro-media {
  width: 100%;
}

.hero-showcase .hero-intro-frame {
  border: 1px solid rgba(255, 255, 255,.11);
  border-radius: 8px;
  background: #050910;
}

.hero-showcase .hero-video-cover::after {
  background: linear-gradient(180deg, rgba(4,9,16,.02), transparent 58%, rgba(4,9,16,.14));
}

.hero-showcase .hero-video-cover .play {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255,.32);
  background: rgba(13,19,29,.52);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0,.28), inset 0 1px 0 rgba(255, 255, 255,.12);
}

.hero-showcase .hero-copy {
  width: 100%;
}

.hero-kicker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  font-family: "DM Mono",monospace;
  text-transform: uppercase;
}

.hero-role-title {
  display: inline-flex;
  margin: 0;
  line-height: 1.2;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border: 1px solid rgba(87,215,154,.15);
  border-radius: 4px;
  background: var(--hero-accent-soft);
  color: var(--hero-accent);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .065em;
}

.hero-showcase .hero-headline-role {
  display: block;
  max-width: none;
  text-align: left;
}

.hero-showcase .hero-main-title {
  margin: 0;
  color: #f7f7f5;
  font-weight: 800;
}

.hero-showcase .specialty {
  margin: 20px 0 0;
  padding: 0;
  font-weight: 500;
  text-wrap: pretty;
}

.hero-showcase .hero-actions {
  display: flex;
  flex-wrap: wrap;
}

.hero-showcase .hero-actions .button {
  transform: none;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.hero-showcase .hero-arrow {
  flex: 0 0 16px;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: currentColor;
}

.hero-showcase .hero-projects-button:hover .hero-arrow {
  transform: translateX(3px);
}

@media (hover: hover) {
  .hero-showcase .button.primary:hover {
    border-color: rgba(111,236,179,.95);
    background: rgba(55,137,104,.18);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0,.15), inset 0 0 0 1px rgba(104,235,175,.08);
    transform: none;
  }
}









@media (max-width: 980px) {
  .hero-showcase .hero-editorial-grid {
    width: min(760px,100%);
    margin-inline: auto;
  }

  .hero-showcase .hero-copy {
    max-width: 680px;
  }

  .hero-showcase h1,
  .hero-showcase .specialty {
    max-width: 650px;
  }

  

  

  
}

@media (max-width: 700px) {
  header {
    padding-block: 12px;
  }

  .logo {
    min-height: 44px;
    justify-content: center;
  }

  .logo-name {
    font-size: 11.5px;
  }

  .logo-meta {
    font-size: 7.5px;
    letter-spacing: .09em;
  }

  .hero-showcase {
    padding-top: 25px;
  }

  .hero-showcase .hero-panel {
    border-radius: 10px;
  }
}

@media (max-width: 560px) {
  .logo-meta {
    display: none;
  }

  .hero-showcase {
    padding: 18px 0 38px;
  }

  .hero-showcase .hero-editorial-grid {
    gap: 24px;
    width: 100%;
  }

  .hero-showcase .hero-intro-frame {
    border-radius: 6px;
  }

  .hero-showcase .hero-video-cover .play {
    width: 54px;
    height: 54px;
  }

  .hero-kicker {
    gap: 8px;
    margin-bottom: 17px;
  }

  .hero-role-title {
    min-height: 20px;
    padding: 3px 7px;
    font-size: 9px;
  }

  .hero-showcase .hero-main-title {
    max-width: none;
    margin: 0;
    letter-spacing: -.05em;
    text-align: left;
  }

  .hero-showcase .specialty {
    max-width: none;
  }

  .hero-showcase .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-showcase .hero-actions .button {
    width: 100%;
  }

  
}

#projets::before {
  background: transparent;
}

.hero-showcase .hero-panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(114,154,194,.06), 0 0 110px rgba(21,55,99,.10);
}

@media (max-width: 700px) {
  .site-continuation > #projets {
    padding-top: 0;
  }
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(circle at 50% 6%, rgba(58,108,170,.42) 0, rgba(31,67,110,.26) 16%, rgba(10,17,30,0) 40%),
    radial-gradient(circle at 50% 28%, rgba(18,58,98,.16) 0, rgba(10,17,30,0) 34%),
    linear-gradient(180deg, #05101c 0%, #07111d 44%, #08111d 100%);
}

.site-continuation > #projets {
  padding-top: 2px;
}

@media (max-width: 980px) {
  .hero-showcase {
    padding-top: 8px;
  }
}

.hero-showcase .hero-intro-media {
  align-self: stretch;
  grid-template-rows: auto auto;
  gap: 12px;
  min-width: 0;
  display: block;
}

.hero-showcase .button.primary:hover {
  color: #07111a;
}





.case-grid {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .hero-showcase {
    padding-bottom: 18px;
  }

  

  
}

@media (max-width: 560px) {
  .hero-showcase .hero-panel {
    border-radius: 12px;
  }

  .hero-showcase .hero-editorial-grid {
    padding: 14px;
  }

  

  .case-grid {
    margin-top: 26px;
  }
}

.hero-showcase {
  padding: clamp(16px,2.2vw,24px) 0 clamp(22px,2.6vw,30px);
}

.hero-showcase .hero-kicker {
  display: flex;
  flex-direction: row;
  margin: 0 0 18px;
}

.hero-showcase .hero-role-title {
  flex: 0 0 auto;
  margin: 0;
  border: 1px solid rgba(73,224,167,.28);
  border-radius: 6px;
  color: var(--hero-accent-strong);
  font-weight: 700;
}

.hero-showcase .hero-headline-role {
  margin: 0;
  white-space: nowrap;
}

.hero-showcase .button.primary .hero-arrow {
  color: #07111d;
}

@media (hover: hover) {
  .hero-showcase .button.primary:hover,
  .hero-showcase .button.primary:focus-visible {
    border-color: rgba(94,236,180,.96);
    background: #57e9b1;
    color: #07111d;
    box-shadow: 0 14px 30px rgba(10,38,28,.2), inset 0 1px 0 rgba(255, 255, 255,.22);
    transform: translateY(-1px);
  }
}









@media (max-width: 980px) {

  .hero-showcase .hero-headline-role {
    white-space: normal;
  }

  

  

  

  

  
}

@media (max-width: 560px) {
  .hero-showcase .hero-actions {
    gap: 10px;
  }
}











.hero-showcase .hero-panel {
  border-color: rgba(111,151,190,.26);
}

.hero-showcase .hero-intro-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-color: rgba(255, 255, 255,.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0,.25), inset 0 1px 0 rgba(255, 255, 255,.035);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hero-showcase .hero-video-cover .play {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hero-showcase .hero-copy {
  max-width: 596px;
}

.hero-showcase .hero-kicker {
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-showcase .hero-role-title {
  min-height: 31px;
  /* Correction optique : DM Mono paraît légèrement trop haut dans le cartouche. */
  padding: 6px 12px 4px;
  border-color: rgba(73,224,167,.24);
  background: rgba(73,224,167,.11);
  font-size: 10.8px;
  line-height: 1;
  letter-spacing: .09em;
}

.hero-showcase .hero-main-title {
  max-width: 670px;
  font-size: clamp(37px,3.18vw,53px);
  line-height: .955;
  letter-spacing: -.062em;
  text-wrap: balance;
}

.hero-showcase .specialty {
  max-width: 548px;
  margin-top: 18px;
  color: #cdd4de;
  font-size: clamp(14.5px,1.08vw,15.8px);
  line-height: 1.64;
  letter-spacing: -.013em;
}

.hero-showcase .hero-actions {
  align-items: center;
  margin-top: 23px;
}

.hero-showcase .hero-actions .button {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 760;
  letter-spacing: -.012em;
}

.hero-showcase .button.primary {
  border-color: rgba(78,228,171,.82);
  background: linear-gradient(180deg, #4fe3ab 0%, #49e0a7 100%);
  color: #08121c;
  box-shadow: 0 12px 28px rgba(10,38,28,.18), inset 0 1px 0 rgba(255, 255, 255,.18);
}

.hero-showcase .button.primary:hover,
.hero-showcase .button.primary:focus-visible {
  border-color: rgba(102,238,186,.98);
  background: linear-gradient(180deg, #5aebb5 0%, #52e7b0 100%);
  color: #07111b;
  box-shadow: 0 16px 34px rgba(10,38,28,.22), inset 0 1px 0 rgba(255, 255, 255,.22), 0 0 0 3px rgba(78,228,171,.16);
}


.hero-showcase .hero-arrow {
  stroke-width: 1.7;
  height: 16px;
  width: 16px;
  transition: transform .18s ease;
}

.hero-showcase .hero-video-cover:focus-visible,
.hero-showcase .hero-actions .button:focus-visible {
  outline: none;
}

.hero-showcase .hero-video-cover:focus-visible .play {
  border-color: rgba(110,240,191,.95);
  background: rgba(11,29,44,.76);
  box-shadow: 0 0 0 4px rgba(78,228,171,.12), 0 14px 32px rgba(0, 0, 0,.26);
}

@media (hover: hover) {
  .hero-showcase .hero-intro-frame:hover {
    border-color: rgba(120,174,219,.18);
    box-shadow: 0 24px 48px rgba(0, 0, 0,.28), inset 0 1px 0 rgba(255, 255, 255,.04);
  }

  .hero-showcase .hero-video-cover:hover .play {
    border-color: rgba(255, 255, 255,.42);
    background: rgba(15,24,37,.64);
    transform: scale(1.03);
  }
}

.hero-showcase .hero-role-title,
.hero-showcase .hero-headline-role,
.hero-showcase .specialty,
.hero-showcase .hero-main-title {
  text-rendering: optimizeLegibility;
}

@media (max-width: 980px) {
  .hero-showcase .hero-kicker {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 15px;
  }

  .hero-showcase .hero-main-title {
    max-width: 680px;
    font-size: clamp(35px,6.1vw,46px);
  }

  .hero-showcase .specialty {
    max-width: 640px;
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .hero-showcase .hero-kicker {
    gap: 8px 12px;
    margin-bottom: 14px;
  }

  .hero-showcase .hero-role-title {
    min-height: 28px;
    padding: 5px 10px 3px;
    font-size: 9.8px;
  }

  .hero-showcase .hero-headline-role {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .hero-showcase .hero-main-title {
    font-size: clamp(28px,8.3vw,36px);
    line-height: .98;
  }

  .hero-showcase .specialty {
    text-align: left;
    margin-top: 16px;
    font-size: 13.8px;
    line-height: 1.58;
  }

  .hero-showcase .hero-actions {
    margin-top: 20px;
  }

  .hero-showcase .hero-actions .button {
    min-height: 46px;
    padding: 12px 16px;
    font-size: 12px;
  }
}

#projets > .case-grid {
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero-showcase + .site-continuation > #projets {
    padding-top: 30px;
  }
}

























































.hero-showcase .hero-panel {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-showcase .hero-panel::before,
.hero-showcase .hero-panel::after {
  display: none;
}

.hero-showcase .hero-editorial-grid {
  padding: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(40px, 4.2vw, 58px);
  align-items: start;
}

.hero-showcase .hero-intro-media,
.hero-showcase .hero-copy {
  min-width: 0;
}

@media (max-width: 980px) {
  .hero-showcase .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .hero-showcase .hero-copy {
    padding-top: 0;
  }

  
}

@media (max-width: 560px) {
  .hero-showcase {
    padding-bottom: 18px;
  }

  
}

.logo-name {
  font-weight: 800;
  letter-spacing: .055em;
}

.logo-meta {
  margin-top: 4px;
  color: #8e9cb3;
  font: 500 10.1px/1.2 "DM Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

header {
  padding: 18px 0 17px;
}

.hero-showcase {
  padding-top: clamp(18px, 2vw, 34px);
  padding-bottom: 0;
}

.hero-showcase .hero-copy {
  align-self: start;
  padding-top: 0;
}



















.hero-showcase + .site-continuation > #projets {
  padding-top: 26px;
}



@media (max-width: 900px) {
  .logo-name {
    font-size: 15px;
  }

  .logo-meta {
    font-size: 9px;
  }

  header {
    padding: 15px 0 14px;
  }

  .hero-showcase {
    padding-top: 20px;
  }

  

  

  

  

  

  

  

  .hero-showcase + .site-continuation > #projets {
    padding-top: 24px;
  }
}

@media (max-width: 560px) {
  .logo-name {
    font-size: 13px;
  }

  .logo-meta {
    font-size: 8px;
    letter-spacing: .1em;
  }

  header {
    padding: 12px 0;
  }

  .hero-showcase {
    padding-top: 18px;
  }

  

  

  

  

  

  

  

  

  .hero-showcase + .site-continuation > #projets {
    padding-top: 22px;
  }
}

.logo-name {
  font-size: 16px;
}













.logo-availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dce5ee;
  font-family: Manrope, "Manrope Fallback", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: .025em;
  text-transform: none;
}

.logo-availability-orb {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #4ee4ab;
  box-shadow: 0 0 0 2px rgba(78,228,171,.10), 0 0 10px rgba(78,228,171,.30);
}

.hero-showcase {
  --hero-accent-soft: rgba(87,215,154,.12);
  --hero-accent: #49e0a7;
  --hero-accent-strong: #4ee4ab;
  margin-top: 15px;
}

.hero-showcase .hero-actions {
  gap: 0;
}

.hero-showcase .hero-actions .hero-projects-button {
  width: auto;
}

@media (max-width: 1180px) {
  .hero-showcase {
    margin-top: 13px;
  }
}

@media (max-width: 900px) {
  .logo-availability {
    gap: 6px;
    font-size: 12px;
  }

  .logo-availability-orb {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
  }

  .hero-showcase {
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .logo-availability {
    font-size: 9px;
  }

  .hero-showcase {
    margin-top: 5px;
  }
}

.hero-showcase .hero-main-title .hero-title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .hero-showcase .hero-main-title .hero-title-line {
    white-space: nowrap;
  }
}

@media (min-width: 981px) {
  .hero-showcase {
    margin-top: 10px;
  }

  .hero-showcase .hero-kicker {
    margin-bottom: 7px;
  }

  .hero-showcase .hero-main-title {
    max-width: 670px;
    font-size: clamp(37px, 3.18vw, 50px);
    line-height: 1.11;
    letter-spacing: -.062em;
    text-wrap: balance;
  }

  .hero-showcase .hero-actions {
    align-items: center;
    margin-top: 19px;
  }
}

@media (min-width: 1051px) {
  #projets > .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 0;
  }
}

@media (min-width: 1400px) and (min-height: 800px) {
  header::before {
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgb(11 27 45), rgba(3, 9, 21, .90));
    -webkit-backdrop-filter: blur(6px) saturate(112%) brightness(.95) contrast(1.01);
    backdrop-filter: blur(6px) saturate(112%) brightness(.95) contrast(1.01);
    border-bottom-color: rgba(255, 255, 255,.085);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255,.028), inset 0 -1px 0 rgba(255, 255, 255,.018), 0 6px 20px rgba(0, 0, 0,.07);
  }
}

@media (hover: hover) {
  .hero-showcase .hero-intro-frame:hover {
    transform: none;
  }
}

.hero-showcase .hero-projects-button:hover .hero-arrow,
.hero-showcase .hero-projects-button:focus-visible .hero-arrow {
  transform: translateY(2px);
}

.case-preview-cta {
  border-radius: 8px;
  font-family: Manrope, "Manrope Fallback", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .055em;
}

@media (min-width: 981px) {
  

  .hero-showcase .specialty {
    max-width: 548px;
    margin-top: 12px;
    color: #cdd4de;
    font-size: clamp(14.5px, 1.08vw, 16px);
    line-height: 1.64;
    letter-spacing: -.013em;
  }
}

.hero-showcase .hero-headline-role {
  color: #dddddd;
  font-size: 11.5px;
  line-height: 1.12;
  letter-spacing: .15em;
}



.case-preview-problem {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.04em;
  text-wrap: balance;
}

@media (min-width: 1051px) {
  .case-preview-problem {
    font-size: clamp(20px, 1.65vw, 23px);
    line-height: 1.2;
  }
}

@media (orientation: landscape), (min-width: 1025px) {
  .case-dialog-close {
    top: 0;
    left: calc(100% + 15px);
    right: auto;
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    background: rgba(12,17,26,.72);
  }
}

.hero-showcase .hero-headline-role {
  font-family: Manrope, "Manrope Fallback", Arial, sans-serif;
  font-weight: 600;
}

.case-dialog-content .sub {
  font-family: Manrope, "Manrope Fallback", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .065em;
}

.case-preview-result strong,
.case-preview-result small,
.case-facts dt,
.case-facts dd,
.case-dialog-content .metric dt,
.case-dialog-content .metric dd {
  font-family: Manrope, "Manrope Fallback", Arial, sans-serif;
}

.case-preview-result small,
.case-facts dt,
.case-dialog-content .metric dt {
  font-weight: 600;
  letter-spacing: .035em;
}

@media (min-width: 1051px) {
  .case-preview-result strong {
    font-size: 18px;
    font-weight: 600;
  }
}


.case-studies-heading {
  padding: 28px 0 18px;
  border-bottom: 1px solid rgba(111,151,190,.14);
}

.case-studies-heading h2,
.about-title {
  margin: 0;
  color: #4ee4ab;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.05em;
  text-align: left;
  text-wrap: balance;
}

#projets > .case-grid {
  margin-top: 26px;
}

.about {
  padding: 42px 0;
}

.about-shell {
  padding-top: 0;
}

.about-approach {
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(111,151,190,.14);
  border-bottom: 1px solid rgba(111,151,190,.14);
}

.about-approach .approach-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
  overflow: visible;
}

.about-approach .approach-flow li {
  display: flex;
  min-width: 0;
  min-height: 138px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 20px 16px;
  border-right: 1px solid rgba(111,151,190,.06);
  border-bottom: 0;
  text-align: center;
}

.about-approach .approach-flow li:last-child {
  border-right: 0;
}

.about-approach .approach-flow-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  margin: 0 0 12px;
  border: 1px solid rgba(73,224,167,.18);
  border-radius: 999px;
  background: rgba(73,224,167,.035);
  color: var(--hero-accent-strong);
  box-shadow: none;
}

.about-approach .approach-flow-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-approach .approach-flow-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.about-approach .approach-flow strong {
  display: block;
  margin: 0;
  color: #f3f5f7;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.025em;
}

.about-approach .approach-flow-copy span {
  display: block;
  max-width: 23ch;
  margin: 3px auto 0;
  padding: 0;
  color: #aeb8c6;
  font-size: clamp(12.5px, .92vw, 14px);
  line-height: 1.45;
  text-wrap: balance;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
  margin-top: 38px;
}

.about-column {
  min-width: 0;
  padding: 0 30px;
}

.about-column:first-child {
  padding-left: 0;
}

.about-column:last-child {
  padding-right: 0;
}

.about-column + .about-column {
  border-left: 1px solid rgba(111,151,190,.14);
}

.about-column h3 {
  margin: 0 0 14px;
  color: #f3f5f7;
  font-size: clamp(24px,2vw,32px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.about-column p {
  margin: 0;
  color: #c4ccd7;
  font-size: 16px;
  line-height: 1.72;
  text-wrap: pretty;
}

@media (min-width: 1051px) {
  .about {
    padding: 33px 0 42px;
  }
}

@media (max-width: 1180px) {
  .about-approach .approach-flow li {
    min-height: 134px;
    padding-inline: 14px;
  }

  .about-approach .approach-flow-copy span {
    font-size: 12.5px;
  }
}

@media (max-width: 900px) {
  .case-studies-heading {
    padding-top: 24px;
  }

  .about {
    padding-top: 36px;
  }

  .about-approach {
    margin-top: 24px;
    padding: 14px 0 10px;
  }

  .about-approach .approach-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-approach .approach-flow li {
    min-height: 150px;
    padding: 18px 18px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(111,151,190,.06);
  }

  .about-approach .approach-flow li:nth-child(odd) {
    border-right: 1px solid rgba(111,151,190,.06);
  }

  .about-approach .approach-flow li:last-child {
    grid-column: 1 / -1;
    min-height: 132px;
    border-right: 0;
    border-bottom: 0;
  }

  .about-approach .approach-flow-copy span {
    max-width: 30ch;
    font-size: 12px;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }

  .about-column,
  .about-column:first-child,
  .about-column:last-child {
    padding: 0;
  }

  .about-column + .about-column {
    padding-top: 24px;
    border-top: 1px solid rgba(111,151,190,.14);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .case-studies-heading {
    padding: 20px 0 15px;
  }

  .case-studies-heading h2,
  .about-title {
    font-size: clamp(27px,8.4vw,36px);
  }

  #projets > .case-grid {
    margin-top: 22px;
  }

  .about {
    padding: 30px 0 24px;
  }

  .about-approach {
    margin-top: 20px;
    padding: 12px 0 8px;
  }

  .about-approach .approach-flow {
    grid-template-columns: 1fr;
  }

  .about-approach .approach-flow li,
  .about-approach .approach-flow li:nth-child(odd),
  .about-approach .approach-flow li:last-child {
    min-height: 0;
    grid-column: auto;
    padding: 17px 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(111,151,190,.06);
  }

  .about-approach .approach-flow li:last-child {
    border-bottom: 0;
  }

  .about-approach .approach-flow-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    margin-bottom: 10px;
  }

  .about-approach .approach-flow-icon svg {
    width: 23px;
    height: 23px;
  }

  .about-approach .approach-flow-copy span {
    max-width: 34ch;
    margin-top: 6px;
    font-size: 12px;
  }

  .about-columns {
    margin-top: 26px;
  }

  .about-column h3 {
    font-size: 22px;
  }

  .about-column p {
    font-size: 15px;
    line-height: 1.68;
  }
}
