﻿:root {
  --cream: #d8d2c8;
  --paper: #f3efe9;
  --white: #ffffff;
  --ink: #050505;
  --acid: #9f7a38;
  --acid-soft: rgba(159, 122, 56, 0.18);
  --metal: #9f7a38;
  --metal-soft: rgba(159, 122, 56, 0.16);
  --metal-line: #9f7a38;
  --button-wash: rgba(159, 122, 56, 0.12);
  --button-wash-strong: rgba(159, 122, 56, 0.22);
  --glass-dark: rgba(5, 5, 5, 0.58);
  --greige-dark: #888174;
  --muted: #5e584f;
  --line: rgba(5, 5, 5, 0.16);
  --sans: "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  font-family: var(--sans);
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.v2-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 114px;
  display: grid;
  grid-template-columns: minmax(190px, 292px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 3.6vw, 50px);
  background: rgba(216, 210, 200, 0.93);
  border-bottom: 1px solid rgba(5, 5, 5, 0.18);
  transition: min-height 220ms ease, background 220ms ease;
}

.v2-header.is-scrolled {
  min-height: 84px;
  background: rgba(243, 239, 233, 0.88);
  backdrop-filter: blur(14px);
}

.v2-logo {
  position: relative;
  width: 246px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.v2-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter:
    brightness(0)
    saturate(100%)
    invert(54%)
    sepia(16%)
    saturate(735%)
    hue-rotate(4deg)
    brightness(91%)
    contrast(90%);
  transition: filter 260ms ease, transform 260ms ease;
}

.v2-logo::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -36%;
  z-index: 2;
  width: 30%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.68), rgba(225, 203, 144, 0.48), transparent);
  opacity: 0;
  transform: skewX(-18deg) translateX(-80%);
  pointer-events: none;
}

.v2-logo:hover img,
.v2-logo:focus-visible img {
  filter:
    brightness(0)
    saturate(100%)
    invert(69%)
    sepia(18%)
    saturate(414%)
    hue-rotate(4deg)
    brightness(99%)
    contrast(91%);
  transform: translateY(-1px);
}

.v2-logo:hover::after,
.v2-logo:focus-visible::after {
  animation: v2LogoSheen 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.v2-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
  gap: clamp(6px, 0.9vw, 12px);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.v2-nav a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 10px 11px;
  overflow: hidden;
  white-space: nowrap;
}

.v2-nav a::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  height: 6px;
  z-index: -1;
  background: var(--acid);
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.v2-nav a:hover::before,
.v2-nav a:focus-visible::before {
  opacity: 0.34;
  transform: scaleX(1);
}

.v2-nav a:hover::after,
.v2-nav a:focus-visible::after {
  transform: scaleX(1);
}

.v2-contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px !important;
  border-radius: 999px;
  border: 1px solid rgba(5, 5, 5, 0.34);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.12);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-contact-pill::before,
.v2-contact-pill::after {
  display: none;
}

.v2-contact-pill:hover,
.v2-contact-pill:focus-visible {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--button-wash);
  transform: translateY(-1px);
}

.v2-lang-link,
.v2-nav a[aria-label="English version"],
.v2-nav a[aria-label="Version francaise"] {
  min-width: 34px;
  justify-content: center;
  min-height: 34px;
  padding-inline: 9px;
  color: var(--acid);
  border: 1px solid rgba(159, 122, 56, 0.34);
  border-radius: 999px;
}

.v2-menu-button {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.v2-menu-button span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.v2-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #090807;
}

.v2-hero-film,
.v2-hero-frame,
.v2-hero-strips,
.v2-hero-shade {
  position: absolute;
  inset: 0;
}

.v2-hero-film {
  overflow: hidden;
}

.v2-hero-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.12);
  opacity: 0;
  transform: scale(1.08);
  animation: v2HeroFilm 36s cubic-bezier(0.5, 0, 0.18, 1) infinite;
}

.v2-hero-frame:nth-child(2) {
  animation-delay: 6s;
  object-position: center 42%;
}

.v2-hero-frame:nth-child(3) {
  animation-delay: 12s;
  object-position: center 58%;
}

.v2-hero-frame:nth-child(4) {
  animation-delay: 18s;
  object-position: center 44%;
}

.v2-hero-frame:nth-child(5) {
  animation-delay: 24s;
  object-position: center 50%;
}

.v2-hero-frame:nth-child(6) {
  animation-delay: 30s;
  object-position: center 46%;
}

.v2-hero-frame:nth-child(7) {
  animation-delay: 30s;
  object-position: center 54%;
}

.v2-hero-frame:nth-child(8) {
  animation-delay: 35s;
  object-position: center 48%;
}

.v2-hero-frame:nth-child(9) {
  animation-delay: 40s;
  object-position: center 42%;
}

.v2-hero-frame:nth-child(10) {
  animation-delay: 45s;
  object-position: center 52%;
}

.v2-hero-strips {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  pointer-events: none;
}

.v2-hero-strips span {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateY(-100%);
  animation: v2HeroStrip 1350ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.v2-hero-strips span:nth-child(2) {
  animation-delay: 90ms;
}

.v2-hero-strips span:nth-child(3) {
  animation-delay: 180ms;
}

.v2-hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 72% 30%, var(--acid-soft), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent 42%);
}

.v2-hero-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 170px 0 105px;
}

.v2-hero-copy p {
  margin: 0 0 24px;
  color: var(--acid);
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 800;
}

.v2-hero-copy h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3.6rem, 8.2vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  animation: v2TextUp 1000ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.v2-hero-copy h2 {
  max-width: 860px;
  margin: clamp(34px, 6vw, 78px) 0 0;
  font-size: clamp(1.14rem, 2.15vw, 1.86rem);
  line-height: 1.2;
  font-weight: 760;
  animation: v2TextUp 1100ms cubic-bezier(0.22, 1, 0.36, 1) 260ms both;
}

.v2-marquee {
  overflow: hidden;
  padding: 46px 0;
  background: var(--ink);
  color: var(--white);
}

.v2-marquee div {
  display: flex;
  gap: clamp(26px, 3.2vw, 58px);
  min-width: max-content;
  animation: v2Marquee 30s linear infinite;
}

.v2-marquee span {
  display: inline-flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.82;
  font-weight: 950;
  white-space: nowrap;
}

.v2-marquee span::after {
  content: "";
  flex: 0 0 clamp(34px, 5vw, 90px);
  height: clamp(2px, 0.36vw, 5px);
  background: currentColor;
  opacity: 0.68;
  transform: translateY(0.02em);
}

.v2-marquee span:nth-child(odd) {
  color: var(--acid);
}

.v2-carousel {
  padding: clamp(58px, 8vw, 110px) 0;
  overflow: hidden;
  background: var(--paper);
}

.v2-carousel-head {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}

.v2-carousel-head p {
  max-width: 860px;
  margin: 14px 0 0;
  color: rgba(5, 5, 5, 0.72);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 650;
  line-height: 1.45;
}

.v2-carousel-head h2 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(2.2rem, 4.7vw, 4.85rem);
  line-height: 1.01;
  font-weight: 950;
}

.v2-carousel-stage {
  position: relative;
}

.v2-carousel-controls {
  position: absolute;
  left: clamp(14px, 3.5vw, 58px);
  right: clamp(14px, 3.5vw, 58px);
  top: 50%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.v2-carousel-controls button {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: var(--glass-dark);
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(12px);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-carousel-controls button:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(159, 122, 56, 0.82);
  transform: scale(1.04);
}

.v2-carousel-controls button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.v2-carousel-controls [data-carousel-prev]::before {
  transform: translateX(4px) rotate(-45deg);
}

.v2-carousel-controls [data-carousel-next]::before {
  transform: translateX(-4px) rotate(135deg);
}

.v2-carousel-window {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.v2-carousel-window::-webkit-scrollbar {
  display: none;
}

.v2-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 clamp(20px, 4vw, 58px);
  will-change: scroll-position;
}

.v2-carousel figure {
  position: relative;
  flex: 0 0 clamp(290px, 30vw, 470px);
  aspect-ratio: 4 / 5;
  height: auto;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  scroll-snap-align: center;
}

.v2-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-carousel figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
}

.v2-carousel figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  line-height: 0.92;
  font-weight: 950;
  text-transform: uppercase;
}

.v2-carousel figure:hover img {
  transform: scale(1.055);
}

.v2-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 0, rgba(159, 122, 56, 0.12), transparent 30%),
    var(--cream);
  text-align: left;
}

.v2-proof::before {
  content: "MADAME-L";
  position: absolute;
  right: -0.06em;
  bottom: -0.26em;
  color: rgba(255, 255, 255, 0.26);
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 17rem);
  line-height: 0.8;
  pointer-events: none;
}

.v2-proof-title {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto clamp(46px, 5.4vw, 76px);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
}

.v2-proof-title p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 950;
  font-size: 1rem;
  color: var(--acid);
  text-transform: uppercase;
}

.v2-proof-title h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.2rem, 4.1vw, 4.55rem);
  line-height: 1.02;
  text-align: left;
}

.v2-stats {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(5, 5, 5, 0.18);
  background: rgba(243, 239, 233, 0.3);
  backdrop-filter: blur(8px);
}

.v2-stats article {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: clamp(260px, 24vw, 340px);
  gap: 22px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border-right: 1px solid rgba(5, 5, 5, 0.16);
  transition: background 260ms ease, color 260ms ease;
}

.v2-stats article:last-child {
  border-right: 0;
}

.v2-stats article::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(159, 122, 56, 0.55);
  border-radius: 50%;
  opacity: 0.55;
  transform: scale(0.7);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease;
}

.v2-stats article::after {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: clamp(24px, 3vw, 40px);
  height: 2px;
  background: var(--metal-line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-stats article:hover {
  background: rgba(159, 122, 56, 0.1);
}

.v2-stats article:hover::before {
  background: var(--metal-soft);
  transform: scale(1);
}

.v2-stats article:hover::after {
  transform: scaleX(1);
}

.v2-stat-kicker {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.v2-stats strong {
  display: block;
  color: var(--ink);
  align-self: end;
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  line-height: 0.78;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-stats article:hover strong {
  color: var(--acid);
  transform: translateY(-4px);
}

.v2-stat-copy {
  max-width: 260px;
  color: rgba(5, 5, 5, 0.72);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.18;
  text-transform: uppercase;
}

.v2-work,
.v2-services,
.v2-story,
.v2-ecosystem,
.v2-contact {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 58px);
  scroll-margin-top: 118px;
}

.v2-carousel,
.v2-proof {
  scroll-margin-top: 118px;
}

.v2-section-title {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  margin-bottom: clamp(42px, 6vw, 78px);
}

.v2-section-title p,
.v2-story-copy > p:first-child,
.v2-contact > div p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 950;
  font-size: 1rem;
  color: var(--acid);
  text-transform: uppercase;
}

.v2-section-title h2,
.v2-story-copy h2,
.v2-contact h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4.05vw, 4.45rem);
  line-height: 1.02;
  font-weight: 950;
}

.v2-section-copy {
  max-width: 860px;
  margin: -24px 0 clamp(34px, 4.5vw, 62px) min(300px, 22vw);
  color: rgba(5, 5, 5, 0.72);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  line-height: 1.5;
  font-weight: 680;
}

.v2-services .v2-section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.v2-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 20px;
}

.v2-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(5, 5, 5, 0.24);
}

.v2-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 740px;
}

.v2-card-wide {
  grid-column: span 2;
}

.v2-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.v2-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.03) 56%);
}

.v2-card span {
  position: absolute;
  left: clamp(14px, 2vw, 22px);
  right: auto;
  bottom: clamp(14px, 2vw, 22px);
  z-index: 1;
  max-width: min(72%, 360px);
  padding: 12px 14px 14px;
  color: var(--white);
  background: rgba(159, 122, 56, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(1.05rem, 1.7vw, 2.05rem);
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
}

.v2-card span small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.6rem, 0.72vw, 0.74rem);
  line-height: 1;
  font-family: var(--sans);
  font-weight: 950;
}

.v2-card span b {
  display: block;
  font: inherit;
}

.v2-card span::before {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.v2-card:hover img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.06);
}

.v2-work-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 42px);
  color: rgba(5, 5, 5, 0.7);
  font-weight: 850;
  text-transform: uppercase;
}

.v2-work-more p {
  margin: 0 12px 0 0;
  color: var(--acid);
  font-size: 0.82rem;
}

.v2-work-more a {
  display: inline-flex;
  padding: 11px 14px;
  border: 1px solid rgba(5, 5, 5, 0.22);
  background: rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.v2-work-more a:hover,
.v2-work-more a:focus-visible {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--button-wash);
  transform: translateY(-1px);
}

.v2-work-disclaimer {
  max-width: 760px;
  margin: clamp(18px, 2.5vw, 30px) 0 0;
  color: rgba(5, 5, 5, 0.48);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-services {
  background: var(--ink);
  color: var(--white);
}

.v2-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.v2-service-list article {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 320ms ease, color 320ms ease;
}

.v2-service-list article:hover {
  color: var(--ink);
  background: rgba(216, 210, 200, 0.92);
}

.v2-service-list span {
  color: var(--acid);
  font-family: var(--sans);
  font-weight: 950;
  font-size: 2.2rem;
}

.v2-service-list article:hover span {
  color: var(--ink);
}

.v2-service-list h3 {
  margin: 72px 0 22px;
  max-width: 100%;
  font-size: clamp(1.85rem, 2.55vw, 2.95rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.v2-service-list p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.55;
}

.v2-service-list article:hover p {
  color: rgba(5, 5, 5, 0.72);
}

.v2-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.72fr);
  gap: clamp(34px, 8vw, 116px);
  align-items: center;
}

.v2-story-image {
  overflow: hidden;
  background: var(--cream);
  outline: 1px solid rgba(5, 5, 5, 0.16);
  outline-offset: -1px;
}

.v2-story-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.74) contrast(0.96);
}

.v2-story-copy > p:last-of-type {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.v2-story-copy a {
  display: inline-flex;
  margin-top: 34px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: transparent;
  text-transform: uppercase;
  font-weight: 950;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.v2-story-copy a:hover {
  border-color: var(--acid);
  background: var(--button-wash);
}

.v2-ecosystem {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(159, 122, 56, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(216, 210, 200, 0.92)),
    var(--paper);
}

.v2-ecosystem::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--acid);
}

.v2-ecosystem .v2-section-title {
  position: relative;
  z-index: 1;
}

.v2-ecosystem .v2-section-title p {
  color: var(--acid);
}

.v2-ecosystem .v2-section-title h2 {
  max-width: 920px;
  font-size: clamp(1.9rem, 3.35vw, 3.55rem);
}

.v2-logo-wall {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(5, 5, 5, 0.13);
  background: rgba(159, 122, 56, 0.16);
  box-shadow: 0 26px 80px rgba(5, 5, 5, 0.07);
}

.v2-logo-tile {
  position: relative;
  display: grid;
  place-items: center;
  height: 118px;
  padding: 34px 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  transition: background 260ms ease;
}

.v2-logo-tile::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  background: var(--acid);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-logo-wall img {
  width: 100%;
  max-width: 178px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.64;
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
}

.v2-logo-caption {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: rgba(5, 5, 5, 0.48);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.v2-logo-wall:hover .v2-logo-tile:not(:hover) img {
  opacity: 0.36;
}

.v2-logo-tile:hover,
.v2-logo-tile:focus-within {
  background: rgba(159, 122, 56, 0.18);
}

.v2-logo-tile:hover::after,
.v2-logo-tile:focus-within::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.v2-logo-tile:hover img,
.v2-logo-tile:focus-within img {
  opacity: 1;
  filter: brightness(0);
  transform: translateY(-4px) scale(1.09);
}

.v2-ecosystem-note {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 42px 0 0 auto;
  padding: 0 0 0 clamp(22px, 3vw, 42px);
  border-left: 2px solid var(--acid);
  color: rgba(5, 5, 5, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.55rem);
  line-height: 1.46;
  font-weight: 650;
}

.v2-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(34px, 7vw, 92px);
  background: var(--paper);
}

.v2-contact form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
  padding: 34px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.v2-contact label {
  display: grid;
  gap: 12px;
}

.v2-contact label:last-of-type {
  grid-column: 1 / -1;
}

.v2-contact span {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.v2-contact input,
.v2-contact textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(9, 8, 7, 0.32);
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  resize: vertical;
}

.v2-contact input:focus,
.v2-contact textarea:focus {
  outline: 0;
  border-bottom-color: var(--ink);
}

.v2-contact button {
  min-height: 52px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
}

.v2-contact button:hover,
.v2-contact button:focus-visible {
  border-color: var(--acid);
  background: var(--button-wash);
}

.v2-contact [data-v2-status] {
  margin: 0;
  color: var(--ink);
  align-self: center;
}

.v2-ref-main {
  overflow: hidden;
  background: var(--paper);
}

.v2-ref-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  padding: 144px clamp(20px, 5vw, 72px) clamp(48px, 6vw, 86px);
}

.v2-ref-hero::before {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(24px, 4vw, 58px);
  height: 1px;
  background: rgba(5, 5, 5, 0.14);
}

.v2-ref-copy,
.v2-ref-media {
  position: relative;
  z-index: 1;
}

.v2-ref-back {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 72px);
  color: rgba(5, 5, 5, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.v2-ref-back::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-ref-back::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0;
  transform: translate(9px, -50%) rotate(45deg);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-ref-back:hover,
.v2-ref-back:focus-visible {
  color: var(--acid);
}

.v2-ref-back:hover::before,
.v2-ref-back:focus-visible::before {
  width: 48px;
  transform: translateX(-2px);
}

.v2-ref-back:hover::after,
.v2-ref-back:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%) rotate(45deg);
}

.v2-ref-kicker {
  margin: 0 0 18px;
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.v2-ref-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 6.1vw, 7.2rem);
  line-height: 0.88;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.v2-ref-summary {
  max-width: 660px;
  margin: clamp(26px, 4vw, 46px) 0 0;
  color: rgba(5, 5, 5, 0.78);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.22;
  font-weight: 760;
}

.v2-ref-disclaimer {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(5, 5, 5, 0.48);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.v2-ref-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: clamp(28px, 4vw, 54px);
}

.v2-ref-logo-row img {
  width: clamp(118px, 12vw, 156px);
  height: clamp(38px, 5vw, 62px);
  padding: 0;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.7;
  transform-origin: left center;
  transition: opacity 240ms ease, filter 240ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-ref-logo-row img:hover {
  filter: brightness(0);
  opacity: 1;
  transform: translateY(-2px) scale(1.035);
}

.v2-ref-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.18);
  background: var(--ink);
}

.v2-ref-media img {
  width: 100%;
  min-height: clamp(420px, 46vw, 640px);
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 340ms ease;
}

.v2-ref-media:hover img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.06);
}

.v2-ref-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(5, 5, 5, 0.16);
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  background: var(--cream);
}

.v2-ref-meta p {
  margin: 0;
  padding: 24px clamp(20px, 4vw, 72px);
  border-right: 1px solid rgba(5, 5, 5, 0.14);
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 850;
}

.v2-ref-meta p:last-child {
  border-right: 0;
}

.v2-ref-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.v2-ref-marquee {
  overflow: hidden;
  padding: 28px 0;
  color: var(--white);
  background: var(--ink);
}

.v2-ref-marquee div {
  display: flex;
  gap: 32px;
  min-width: max-content;
  animation: v2Marquee 34s linear infinite;
}

.v2-ref-marquee span {
  font-size: clamp(2.8rem, 7vw, 7.4rem);
  line-height: 0.86;
  font-weight: 950;
  white-space: nowrap;
  text-transform: uppercase;
}

.v2-ref-marquee span:nth-child(even) {
  color: var(--acid);
}

.v2-ref-section {
  padding: clamp(68px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.v2-ref-grid {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.24fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 108px);
  align-items: start;
}

.v2-ref-label {
  position: sticky;
  top: 112px;
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.v2-ref-stack {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.v2-ref-block {
  padding-bottom: clamp(30px, 5vw, 58px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
}

.v2-ref-block h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(1.85rem, 3.65vw, 4.45rem);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
}

.v2-ref-block p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(5, 5, 5, 0.76);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.48;
}

.v2-ref-role {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  background: rgba(5, 5, 5, 0.16);
}

.v2-ref-role li {
  list-style: none;
  min-height: 148px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.48);
  font-size: clamp(1rem, 1.38vw, 1.2rem);
  line-height: 1.32;
  font-weight: 720;
  transition: background 240ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-ref-role li:hover {
  background: rgba(159, 122, 56, 0.12);
  transform: translateY(-2px);
}

.v2-ref-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.v2-ref-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.v2-ref-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}

.v2-ref-gallery figure:hover img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.045);
}

.v2-ref-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  background: transparent;
  border-top: 1px solid rgba(5, 5, 5, 0.16);
  border-left: 1px solid rgba(5, 5, 5, 0.16);
  counter-reset: ref-result;
}

.v2-ref-results p {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 128px;
  margin: 0;
  padding: 48px 28px 26px;
  display: flex;
  align-items: flex-end;
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.02;
  font-weight: 950;
  counter-increment: ref-result;
  text-transform: uppercase;
  border-right: 1px solid rgba(5, 5, 5, 0.16);
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  transition: background 240ms ease, color 240ms ease;
}

.v2-ref-results p:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  padding-right: clamp(28px, 8vw, 96px);
}

.v2-ref-results p::before {
  content: counter(ref-result, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 22px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 950;
}

.v2-ref-results p:hover {
  color: var(--white);
  background: var(--ink);
}

.v2-ref-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(36px, 6vw, 76px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.v2-ref-next p {
  margin: 0 0 8px;
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.v2-ref-next h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 3.15vw, 4.25rem);
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

.v2-ref-next a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transition: background 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-ref-next a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(159, 122, 56, 0.84);
  transform: scale(1.05);
}

.v2-ref-next a::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.v2-scroll-top {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 45;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(5, 5, 5, 0.42);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(243, 239, 233, 0.82);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.v2-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.v2-scroll-top::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 13px;
  height: 13px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}

.v2-scroll-top:hover,
.v2-scroll-top:focus-visible {
  color: var(--white);
  border-color: var(--acid);
  background: rgba(159, 122, 56, 0.9);
  transform: translateY(-2px);
}

.v2-footer {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: clamp(44px, 5.5vw, 82px) clamp(20px, 4vw, 58px) 26px;
  color: #fff;
  background: var(--ink);
  border-top: 2px solid var(--acid);
}

.v2-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--metal-line);
  opacity: 0.9;
}

.v2-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.7fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: start;
}

.v2-footer-brand p,
.v2-footer-nav p,
.v2-footer-bottom p {
  margin: 0;
}

.v2-footer-brand strong {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.v2-footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.45;
}

.v2-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 46px);
}

.v2-footer-nav p {
  margin-bottom: 16px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.v2-footer a {
  display: table;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.25;
  transition: color 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-footer a:hover,
.v2-footer a:focus-visible {
  color: var(--acid);
  transform: translateX(4px);
}

.v2-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(42px, 5vw, 72px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  text-transform: uppercase;
}

@keyframes v2MetalSweep {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes v2HeroFilm {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scale(1.09) translate3d(2%, 0, 0);
  }
  12% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scale(1.025) translate3d(-2%, 0, 0);
  }
  16% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: scale(1.04) translate3d(-5%, 0, 0);
  }
  16.01%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: scale(1.1) translate3d(5%, 0, 0);
  }
}

@keyframes v2HeroStrip {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  18%,
  62% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes v2TextUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v2Marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes v2LogoSheen {
  0% {
    opacity: 0;
    transform: skewX(-18deg) translateX(-80%);
  }
  25% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: skewX(-18deg) translateX(520%);
  }
}

@media (min-width: 961px) and (max-width: 1380px) {
  .v2-header {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
  }

  .v2-logo {
    width: 216px;
  }

  .v2-nav {
    gap: 4px;
    font-size: 0.69rem;
  }

  .v2-nav a {
    padding-inline: 7px;
  }

  .v2-contact-pill {
    height: 31px;
    padding-inline: 9px !important;
    font-size: 0.64rem;
  }

  .v2-lang-link,
  .v2-nav a[aria-label="English version"],
  .v2-nav a[aria-label="Version francaise"] {
    min-width: 31px;
    min-height: 31px;
    padding-inline: 7px;
  }
}

@media (max-width: 960px) {
  .v2-header {
    grid-template-columns: 210px 1fr;
    min-height: 88px;
  }

  .v2-menu-button {
    display: block;
  }

  .v2-nav {
    position: fixed;
    inset: 0;
    display: none;
    align-content: center;
    justify-items: center;
    grid-auto-rows: min-content;
    gap: 26px;
    padding: 120px 24px;
    background: var(--cream);
    font-size: 2rem;
  }

  .v2-nav.is-open {
    display: grid;
  }

  .v2-ref-hero,
  .v2-ref-grid,
  .v2-ref-next {
    grid-template-columns: 1fr;
  }

  .v2-ref-hero {
    min-height: auto;
    padding-top: 128px;
  }

  .v2-ref-label {
    position: static;
  }

  .v2-ref-meta {
    grid-template-columns: 1fr;
  }

  .v2-ref-meta p {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.14);
  }

  .v2-ref-meta p:last-child {
    border-bottom: 0;
  }

  .v2-ref-next a {
    width: 68px;
    height: 68px;
  }

  .v2-ref-next h2 {
    white-space: normal;
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .v2-stats,
  .v2-section-title,
  .v2-proof-title,
  .v2-carousel-head,
  .v2-service-list,
  .v2-story,
  .v2-contact,
  .v2-footer-main {
    grid-template-columns: 1fr;
  }

  .v2-section-copy {
    margin-left: 0;
  }

  .v2-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-footer-bottom {
    display: grid;
  }

  .v2-stats article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  }

  .v2-stats article:last-child {
    border-bottom: 0;
  }

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

  .v2-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .v2-header {
    padding: 14px 18px;
  }

  .v2-logo {
    width: 188px;
  }

  .v2-hero {
    min-height: 92svh;
  }

  .v2-hero-copy {
    width: calc(100% - 32px);
    padding-bottom: 72px;
  }

  .v2-hero-copy h1 {
    font-size: clamp(3.15rem, 13.5vw, 4.2rem);
    line-height: 0.92;
  }

  .v2-hero-copy h2 {
    max-width: 340px;
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .v2-carousel {
    padding-block: 50px;
  }

  .v2-carousel-head {
    width: calc(100% - 32px);
    margin-bottom: 24px;
  }

  .v2-carousel-controls {
    left: 18px;
    right: 18px;
  }

  .v2-carousel-controls button {
    width: 50px;
    height: 50px;
  }

  .v2-carousel-track {
    gap: 12px;
    padding: 0 16px;
  }

  .v2-carousel figure {
    flex-basis: 78vw;
  }

  .v2-marquee span {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .v2-marquee span::after {
    flex-basis: clamp(28px, 11vw, 54px);
    height: 2px;
  }

  .v2-proof-title {
    margin-bottom: 34px;
    gap: 16px;
  }

  .v2-proof-title h2 {
    font-size: clamp(2rem, 8.8vw, 3.45rem);
    line-height: 1.02;
  }

  .v2-work,
  .v2-services,
  .v2-story,
  .v2-ecosystem,
  .v2-contact,
  .v2-proof {
    padding-inline: 16px;
  }

  .v2-work-grid,
  .v2-contact form {
    grid-template-columns: 1fr;
  }

  .v2-card,
  .v2-card-large,
  .v2-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .v2-ref-hero {
    padding: 112px 16px 54px;
  }

  .v2-ref-copy h1 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
    line-height: 0.9;
  }

  .v2-ref-media img {
    min-height: 380px;
  }

  .v2-ref-marquee span {
    font-size: clamp(3rem, 14vw, 5.8rem);
  }

  .v2-ref-section {
    padding: 58px 16px;
  }

  .v2-ref-role,
  .v2-ref-gallery,
  .v2-ref-results {
    grid-template-columns: 1fr;
  }

  .v2-ref-results p {
    min-height: 112px;
  }

  .v2-ref-next {
    padding: 42px 16px;
  }

  .v2-service-list article {
    min-height: 340px;
    padding: 30px 24px;
  }

  .v2-service-list h3 {
    margin-top: 64px;
    font-size: clamp(1.85rem, 8.4vw, 2.55rem);
    line-height: 1.04;
  }

  .v2-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-logo-tile {
    height: 96px;
    padding: 28px 18px;
  }

  .v2-logo-wall img {
    max-height: 48px;
  }

  .v2-footer-nav {
    grid-template-columns: 1fr;
  }

  .v2-ecosystem-note {
    margin-top: 30px;
    padding-left: 18px;
    font-size: 1.05rem;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .v2-header,
  .v2-hero,
  .v2-carousel,
  .v2-proof,
  .v2-work,
  .v2-services,
  .v2-story,
  .v2-ecosystem,
  .v2-contact,
  .v2-footer,
  .v2-ref-main,
  .v2-ref-hero,
  .v2-ref-section,
  .v2-ref-next {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .v2-ref-copy,
  .v2-ref-stack,
  .v2-story-copy,
  .v2-section-title,
  .v2-proof-title,
  .v2-carousel-head {
    min-width: 0;
  }

  .v2-header {
    grid-template-columns: minmax(150px, 1fr) 48px;
    min-height: 78px;
    padding: 12px 16px;
    background: rgba(216, 210, 200, 0.96);
  }

  .v2-header.is-scrolled {
    min-height: 70px;
  }

  .v2-logo {
    justify-self: start;
    width: 184px;
    max-width: 58vw;
  }

  .v2-menu-button {
    position: relative;
    z-index: 80;
    display: inline-grid;
    place-content: center;
    width: 44px;
    height: 44px;
    border-color: rgba(5, 5, 5, 0.72);
    background: rgba(243, 239, 233, 0.34);
    backdrop-filter: blur(10px);
  }

  .v2-menu-button span {
    margin: 4px auto;
  }

  .v2-nav {
    z-index: 70;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    padding: 96px 22px 30px;
    background:
      radial-gradient(circle at 82% 10%, rgba(159, 122, 56, 0.16), transparent 28%),
      var(--cream);
    font-size: clamp(1.08rem, 5vw, 1.38rem);
  }

  .v2-nav a {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.14);
    overflow: visible;
    white-space: normal;
  }

  .v2-nav a::before,
  .v2-nav a::after {
    display: none;
  }

  .v2-lang-link,
  .v2-nav a[aria-label="English version"],
  .v2-nav a[aria-label="Version francaise"],
  .v2-nav a[aria-label="View this page in English"],
  .v2-nav a[aria-label="Voir cette page en francais"] {
    width: auto;
    min-width: 52px;
    min-height: 38px;
    justify-self: start;
    justify-content: center;
    margin-top: 12px;
    padding: 0 16px;
    border: 1px solid rgba(159, 122, 56, 0.42);
  }

  .v2-contact-pill {
    width: 100%;
    height: 46px;
    margin-top: 14px;
    font-size: 0.76rem;
    border-color: var(--acid);
  }

  .v2-hero {
    min-height: min(720px, 88svh);
    align-items: end;
  }

  .v2-hero-frame {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .v2-hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.24) 28%, rgba(0, 0, 0, 0.82) 92%),
      radial-gradient(circle at 72% 18%, rgba(159, 122, 56, 0.2), transparent 34%);
  }

  .v2-hero-copy {
    width: calc(100% - 32px);
    padding: 118px 0 42px;
    color: var(--white);
  }

  .v2-hero-copy p {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .v2-hero-copy h1 {
    max-width: 100%;
    color: var(--white);
    font-size: clamp(2.35rem, 10vw, 2.95rem);
    line-height: 0.94;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.68);
  }

  .v2-hero-copy h2 {
    max-width: 100%;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    line-height: 1.32;
    font-weight: 720;
  }

  .v2-marquee {
    padding: 22px 0;
  }

  .v2-marquee div {
    gap: 22px;
  }

  .v2-marquee span {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .v2-marquee span::after {
    flex-basis: 34px;
  }

  .v2-carousel {
    padding: 42px 0 48px;
  }

  .v2-carousel-head {
    width: calc(100% - 32px);
    margin-bottom: 24px;
    gap: 12px;
  }

  .v2-carousel-head h2,
  .v2-section-title h2,
  .v2-story-copy h2,
  .v2-contact h2 {
    font-size: clamp(1.85rem, 8.25vw, 2.55rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .v2-carousel-head p {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .v2-carousel-track {
    gap: 12px;
    padding: 0 16px;
  }

  .v2-carousel figure {
    flex-basis: 82vw;
    aspect-ratio: 4 / 5;
  }

  .v2-carousel figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .v2-carousel-controls {
    left: 14px;
    right: 14px;
  }

  .v2-carousel-controls button {
    width: 46px;
    height: 46px;
  }

  .v2-proof,
  .v2-work,
  .v2-services,
  .v2-story,
  .v2-ecosystem,
  .v2-contact {
    padding: 52px 16px;
  }

  .v2-proof::before {
    font-size: 7rem;
    opacity: 0.16;
  }

  .v2-proof-title,
  .v2-section-title {
    gap: 10px;
    margin-bottom: 24px;
  }

  .v2-proof-title h2 {
    font-size: clamp(1.9rem, 8.2vw, 2.7rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .v2-section-title p,
  .v2-proof-title p,
  .v2-story-copy > p:first-child,
  .v2-contact > div p {
    font-size: 0.78rem;
  }

  .v2-section-copy {
    max-width: 100%;
    margin: 0 0 26px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .v2-stats article {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    gap: 8px;
    padding: 24px;
  }

  .v2-stats article::before {
    right: 18px;
    top: 18px;
    width: 34px;
    height: 34px;
  }

  .v2-stats article::after {
    left: 24px;
    right: 24px;
    bottom: 16px;
  }

  .v2-stat-kicker {
    grid-column: 1 / -1;
    font-size: 0.72rem;
  }

  .v2-stats strong {
    align-self: end;
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    line-height: 0.9;
    white-space: normal;
  }

  .v2-stat-copy {
    position: relative;
    align-self: start;
    max-width: 100%;
    padding-top: 9px;
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .v2-stat-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: min(214px, 72%);
    height: 2px;
    background: var(--metal-line);
  }

  .v2-work-grid {
    gap: 14px;
  }

  .v2-card,
  .v2-card-large,
  .v2-card-wide {
    min-height: 330px;
  }

  .v2-card-large {
    min-height: 390px;
  }

  .v2-card span {
    left: 12px;
    bottom: 12px;
    max-width: min(82%, 300px);
    padding: 10px 12px 12px;
    font-size: clamp(1rem, 5vw, 1.32rem);
    line-height: 0.98;
  }

  .v2-card span small {
    margin-bottom: 6px;
    font-size: 0.58rem;
  }

  .v2-work-more {
    gap: 10px;
    margin-top: 22px;
    font-size: 0.78rem;
  }

  .v2-work-more p {
    width: 100%;
  }

  .v2-work-more a {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
  }

  .v2-work-disclaimer {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .v2-service-list {
    border-left: 0;
  }

  .v2-service-list article {
    min-height: 0;
    padding: 24px 22px 26px;
    border-right: 0;
  }

  .v2-service-list span {
    font-size: 1.55rem;
  }

  .v2-service-list h3 {
    margin: 42px 0 16px;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.05;
  }

  .v2-service-list p {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.46;
  }

  .v2-story {
    gap: 28px;
  }

  .v2-story-image img {
    aspect-ratio: 4 / 4.8;
  }

  .v2-story-copy > p:last-of-type {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.46;
  }

  .v2-story-copy a {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
    padding: 13px 18px;
  }

  .v2-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-logo-tile {
    height: 84px;
    padding: 22px 16px;
  }

  .v2-logo-wall img {
    max-width: 126px;
    max-height: 42px;
  }

  .v2-logo-caption {
    margin-top: 18px;
    font-size: 0.66rem;
    line-height: 1.38;
  }

  .v2-ecosystem-note {
    margin-top: 22px;
    padding-left: 14px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .v2-contact {
    gap: 24px;
  }

  .v2-contact form {
    gap: 18px;
    padding: 24px 20px;
  }

  .v2-contact input,
  .v2-contact textarea {
    min-height: 48px;
    padding: 10px 0;
  }

  .v2-contact button {
    min-height: 48px;
  }

  .v2-footer {
    min-height: 0;
    padding: 38px 16px 20px;
  }

  .v2-footer-main {
    gap: 28px;
  }

  .v2-footer-brand strong {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.05;
  }

  .v2-footer-brand p {
    font-size: 0.88rem;
  }

  .v2-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .v2-footer a {
    margin-bottom: 8px;
    font-size: 0.86rem;
  }

  .v2-footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    gap: 8px;
    font-size: 0.68rem;
  }

  .v2-scroll-top {
    right: 12px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .v2-ref-hero {
    min-height: auto;
    gap: 26px;
    padding: 106px 16px 40px;
  }

  .v2-ref-back {
    margin-bottom: 28px;
    font-size: 0.68rem;
  }

  .v2-ref-copy h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8vw, 2.35rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .v2-ref-summary {
    max-width: 100%;
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .v2-ref-disclaimer {
    font-size: 0.66rem;
    line-height: 1.38;
  }

  .v2-ref-logo-row {
    gap: 18px;
    margin-top: 22px;
  }

  .v2-ref-logo-row img {
    width: clamp(96px, 30vw, 128px);
    height: 42px;
  }

  .v2-ref-media img {
    min-height: 270px;
  }

  .v2-ref-meta p {
    padding: 18px 16px;
    font-size: 0.98rem;
  }

  .v2-ref-marquee {
    padding: 18px 0;
  }

  .v2-ref-marquee span {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .v2-ref-section {
    padding: 46px 16px;
  }

  .v2-ref-label {
    margin-bottom: 26px;
  }

  .v2-ref-stack {
    gap: 28px;
  }

  .v2-ref-block {
    padding-bottom: 30px;
  }

  .v2-ref-block h2 {
    font-size: clamp(1.65rem, 7.4vw, 2.35rem);
    line-height: 1.08;
  }

  .v2-ref-block p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .v2-ref-role li {
    min-height: 0;
    padding: 20px;
    font-size: 0.95rem;
  }

  .v2-ref-gallery {
    gap: 10px;
  }

  .v2-ref-results p {
    min-height: 0;
    padding: 44px 18px 18px;
    font-size: 1.05rem;
    line-height: 1.14;
  }

  .v2-ref-next {
    gap: 18px;
    padding: 32px 16px;
  }

  .v2-ref-next h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.35rem);
    line-height: 1.04;
    white-space: normal;
  }

  .v2-ref-next a {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 390px) {
  .v2-hero-copy h1 {
    font-size: clamp(2.18rem, 9.6vw, 2.55rem);
  }

  .v2-section-title h2,
  .v2-story-copy h2,
  .v2-contact h2,
  .v2-carousel-head h2 {
    font-size: clamp(1.72rem, 7.8vw, 2.25rem);
  }

  .v2-footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


