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

@font-face {
  font-family: Organetto;
  src: url("fonts/Organetto-BoldUltraCnd.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --blanc: #ffffff;
  --blanc-casse: #ecece9;
  --ink: #111111;
  --rose: #eac2d8;
  --orange: #ff6b20;
  --violet: #5946c3;
  --citron: #dbfc59;
  --on-dark: #ffffff;
  --font-display: Organetto, "Saira Extra Condensed", "Barlow Condensed", Impact, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--blanc-casse);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.is-loading,
body.is-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

.about, .work, .clients, .contact, .club {
  scroll-margin-top: 28px;
}

@media (max-width: 767px) {
  .about, .work, .clients, .contact, .club {
    scroll-margin-top: 86px;
  }
}

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

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

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

/* Loader : le logo se remplit en couleurs charte */
.loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blanc-casse);
  transition: transform 0.9s cubic-bezier(.76, 0, .24, 1), opacity 0.5s ease;
}

.loader.is-out {
  transform: translate3d(0, -108%, 0);
  pointer-events: none;
}

.loader-mark {
  position: relative;
  width: min(86vw, 720px);
}

.loader-ghost,
.loader-fill {
  width: 100%;
  height: auto;
  display: block;
}

.loader-ghost { opacity: 0.14; }

.loader-fill {
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
}

.loader-fill-a {
  animation: logoFill 1.15s cubic-bezier(.16, 1, .3, 1) 0.12s forwards;
}
.loader-fill-b {
  animation: logoFlash 0.32s ease 1.28s forwards;
}
.loader-fill-c {
  animation: logoFlash 0.32s ease 1.58s forwards;
}

@keyframes logoFill {
  from { clip-path: inset(100% 0 0 0); -webkit-clip-path: inset(100% 0 0 0); }
  to { clip-path: inset(0); -webkit-clip-path: inset(0); }
}

@keyframes logoFlash {
  0% { clip-path: inset(100% 0 0 0); opacity: 0; }
  35% { clip-path: inset(0); opacity: 1; }
  100% { clip-path: inset(0); opacity: 0; }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .grain {
    opacity: 0.025;
    background-image: none;
  }
}

.nav {
  position: fixed;
  z-index: 76;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  pointer-events: none;
}
.nav a, .nav img, .nav-logo, .nav-menu { pointer-events: auto; }

.nav-logo {
  position: relative;
  display: block;
  height: 58px;
  width: 176px;
}

.nav-logo img {
  position: absolute;
  left: 0;
  top: 0;
  height: 58px;
  width: auto;
  max-width: none;
  opacity: 0;
  animation: navTint 7.8s infinite;
}

.nav-logo img:nth-child(1) { animation-delay: 0s; }
.nav-logo img:nth-child(2) { animation-delay: 2.6s; }
.nav-logo img:nth-child(3) { animation-delay: 5.2s; }

@keyframes navTint {
  0%, 28% { opacity: 1; }
  33%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-logo img,
  .footer-logo img { animation: none; opacity: 0; }
  .nav-logo img:first-child,
  .footer-logo img:first-child { opacity: 1; }
}

.nav-menu {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--citron);
  -webkit-text-stroke: 1px var(--ink);
  paint-order: stroke fill;
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1), color 0.25s ease;
}

.nav-menu:hover {
  transform: rotate(-6deg) scale(1.06);
}

body.is-menu-open .nav-menu {
  color: var(--blanc);
  -webkit-text-stroke: 0;
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14vh 8vw 8vh;
  background: var(--ink);
  color: var(--blanc);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 8%, 0);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(.16, 1, .3, 1), visibility 0.45s;
}

body.is-menu-open .menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}

.menu-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 8.4vw, 112px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--blanc);
  width: max-content;
  max-width: 100%;
}

.menu-link span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), color 0.25s ease;
}

.menu-link:hover span {
  color: var(--citron);
  transform: translateX(12px) rotate(-1.5deg);
}

.menu-link:nth-child(2):hover span { color: var(--orange); }
.menu-link:nth-child(3):hover span { color: var(--rose); }
.menu-link:nth-child(4):hover span { color: var(--violet); }

.menu-mail {
  margin-top: 7vh;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--citron);
}

/* Hero : plein écran, immersif */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  display: block;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: #111111;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}

.hero-frame {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

/* Bandeau tampon : citron, perforation ticket, ombre DA */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0 22px;
  background: var(--blanc-casse);
}

.marquee-shadow {
  width: 108%;
  margin-left: -4%;
  transform: rotate(-1.05deg);
  filter:
    drop-shadow(0 1.5px 0 var(--ink))
    drop-shadow(0 -1.5px 0 var(--ink))
    drop-shadow(1.5px 0 0 var(--ink))
    drop-shadow(-1.5px 0 0 var(--ink))
    drop-shadow(6px 7px 0 var(--ink));
}

.marquee-tape {
  --tape-h: 92px;
  --bite: 36px;
  height: var(--tape-h);
  display: flex;
  align-items: center;
  background: var(--citron);
  color: var(--ink);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='92' viewBox='0 0 36 92'%3E%3Cmask id='m'%3E%3Crect width='36' height='92' fill='white'/%3E%3Ccircle cx='18' cy='0' r='10' fill='black'/%3E%3Ccircle cx='0' cy='92' r='10' fill='black'/%3E%3Ccircle cx='36' cy='92' r='10' fill='black'/%3E%3C/mask%3E%3Crect width='36' height='92' fill='white' mask='url(%23m)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='92' viewBox='0 0 36 92'%3E%3Cmask id='m'%3E%3Crect width='36' height='92' fill='white'/%3E%3Ccircle cx='18' cy='0' r='10' fill='black'/%3E%3Ccircle cx='0' cy='92' r='10' fill='black'/%3E%3Ccircle cx='36' cy='92' r='10' fill='black'/%3E%3C/mask%3E%3Crect width='36' height='92' fill='white' mask='url(%23m)'/%3E%3C/svg%3E");
  -webkit-mask-size: var(--bite) var(--tape-h);
  mask-size: var(--bite) var(--tape-h);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  mask-mode: alpha;
  -webkit-mask-source-type: alpha;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-line {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: var(--tape-h);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 12px;
}

.mq-item {
  display: inline-block;
}

.mq-star {
  width: 0.92em;
  height: 0.92em;
  margin: 0 1.15em 0.04em;
  flex-shrink: 0;
  display: block;
  fill: var(--ink);
  overflow: visible;
}

.mq-star-violet { fill: var(--violet); }
.mq-star-orange { fill: var(--orange); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .work-track { animation: none; }
  .about-fold-panel { transition: none; }
}

/* Titres bétons */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(74px, 13.6vw, 192px);
  line-height: 0.8;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: left;
  width: min(92vw, 1480px);
  margin: 0 0 5vh;
  padding: 0;
}

.type-cursor {
  display: inline;
  font-weight: 800;
  color: var(--violet);
  margin-left: 0.02em;
  animation: typeBlink 0.7s step-end infinite;
}

.type-cursor.is-out {
  animation: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

@keyframes typeBlink {
  50% { opacity: 0; }
}

.display-on-dark { color: var(--on-dark); }

.call-sticky {
  position: fixed;
  top: auto;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  left: auto;
  z-index: 74;
  padding: 20px 36px 19px;
  border-radius: 999px;
  background: var(--violet);
  color: var(--citron);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.85vw, 24px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(.16, 1, .3, 1);
}

.call-sticky.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.call-sticky:hover {
  transform: scale(1.05);
}

body.is-menu-open .call-sticky {
  opacity: 0;
  pointer-events: none;
}

/* Qui sommes-nous : composition déconstruite, calée au centre */
.about {
  width: min(92vw, 1480px);
  margin: 0 auto;
  padding: 10vh 0 12vh;
  overflow-x: clip;
  overflow-y: visible;
}

.about .display {
  position: relative;
  z-index: 3;
  margin: 0 0 6vh;
  width: 100%;
}

.about-stage {
  display: grid;
  grid-template-columns: minmax(200px, 0.78fr) 1fr minmax(140px, 0.52fr) 1fr;
  gap: 20px 22px;
  align-items: center;
}

.about-stamp,
.about-menu {
  margin: 0;
  opacity: 0;
}

.about-stamp {
  justify-self: end;
  padding: 22px 20px 18px;
  max-width: 16ch;
  background: var(--citron);
  box-shadow: 6px 8px 0 var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.08;
  text-transform: uppercase;
  transform: rotate(-3.2deg) translate3d(-18px, 16px, 0);
  transition: opacity 0.7s ease, transform 0.45s cubic-bezier(.16, 1, .3, 1), box-shadow 0.35s ease;
}

.about-stamp.is-in {
  opacity: 1;
  transform: rotate(-3.2deg);
}

.about-stamp.is-in:hover {
  transform: rotate(1.8deg) scale(1.03);
  box-shadow: 2px 3px 0 var(--ink);
}

.about-menu {
  justify-self: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(13px, 1.15vw, 18px);
  line-height: 1.18;
  text-transform: uppercase;
  transform: rotate(2.4deg) translate3d(16px, 14px, 0);
  transition: opacity 0.7s ease, transform 0.55s cubic-bezier(.16, 1, .3, 1);
}

.about-menu.is-in {
  opacity: 1;
  transform: rotate(2.4deg);
}

.reveal {
  overflow: hidden;
  clip-path: inset(110% 0 0 0);
  -webkit-clip-path: inset(110% 0 0 0);
  transition: clip-path 1.15s cubic-bezier(.16, 1, .3, 1), -webkit-clip-path 1.15s cubic-bezier(.16, 1, .3, 1);
}

.reveal.is-in {
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.reveal img {
  width: 100%;
  height: 64vh;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.16);
  transition: transform 1.35s cubic-bezier(.16, 1, .3, 1), filter 0.45s ease;
  will-change: transform;
}

.reveal.is-in img { transform: scale(1); }

.reveal-a,
.reveal-b { margin-top: 0; }

.reveal-b { margin-top: 48px; }

.reveal-color img { filter: none; }
.reveal-color:hover img { filter: grayscale(1) contrast(1.1); }

.reveal-bw img { filter: grayscale(1) contrast(1.08); }
.reveal-bw:hover img { filter: grayscale(0) contrast(1); }

.about-fold {
  margin-top: 56px;
}

.about-fold-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 18px 0;
  border: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: left;
}

.about-fold-plus {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.about-fold-plus::before,
.about-fold-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.about-fold-plus::before {
  width: 28px;
  height: 3px;
}

.about-fold-plus::after {
  width: 3px;
  height: 28px;
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1), opacity 0.25s ease;
}

.about-fold.is-open .about-fold-plus::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.about-fold-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(.16, 1, .3, 1);
}

.about-fold.is-open .about-fold-panel {
  grid-template-rows: 1fr;
}

.about-fold-inner {
  overflow: hidden;
}

.about-fold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 64px;
  padding: 36px 16px 28px 8px;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.about-fold-grid p { margin: 0 0 14px; }
.about-fold-grid p:last-child { margin: 0; }

.about-lede {
  font-weight: 600;
}

.about-fold-stamp {
  justify-self: start;
  width: max-content;
  max-width: 22ch;
  margin: 12px 0 8px;
}

.about-fold-stamp .about-fold-label {
  margin: 0 0 12px;
}

.about-fold-stamp ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-fold-stamp li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 6px;
}

.about-fold-stamp li:last-child {
  margin: 0;
}

.about-fold-arrow {
  flex: 0 0 auto;
  width: 0.72em;
  height: 0.72em;
  margin-top: 0.18em;
  fill: var(--violet);
}

/* Work */
.work {
  overflow-x: clip;
  padding: 4vh 0 56px;
}

.work .display {
  width: min(92vw, 1480px);
  margin: 0 auto 28px 4vw;
  padding: 0;
}

.work-rail {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-x pan-y;
  user-select: none;
}

.work-rail.is-dragging {
  cursor: grabbing;
}

.work-rail.is-dragging .work-card {
  pointer-events: none;
}

.work-track {
  display: flex;
  width: max-content;
  animation: workMarquee 140s linear infinite;
  will-change: transform;
}

.work-track.is-manual {
  animation: none;
}

.work-line {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.work-card {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 340px);
  margin: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.work-shot {
  display: block;
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.work-card .work-cap {
  display: block;
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  line-height: 1;
}

.work-card:hover img {
  transform: scale(1.06);
}

.work-rail:hover .work-track {
  animation-play-state: paused;
}

@keyframes workMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Clients */
.clients {
  background: var(--ink);
  padding: 56px 5vw 96px;
  overflow: visible;
}

.clients .display {
  width: min(92vw, 1480px);
  margin: 0 0 40px;
  padding-bottom: 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 40px;
  align-items: center;
  justify-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.client {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 168px;
  cursor: pointer;
  isolation: isolate;
  --blob-rot: -8deg;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.client-blob {
  position: absolute;
  width: 210px;
  height: 210px;
  background: var(--citron);
  opacity: 0;
  transform: scale(0.42) rotate(var(--blob-rot));
  pointer-events: none;
  z-index: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transition: opacity 0.28s ease, transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

.client img {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 112px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s cubic-bezier(.16, 1, .3, 1);
}

.clients-grid.is-hot .client {
  opacity: 0.14;
  filter: grayscale(1);
}

.clients-grid.is-hot .client.is-hot {
  opacity: 1;
  filter: none;
}

.client.is-hot .client-blob {
  opacity: 1;
  transform: scale(1) rotate(var(--blob-rot));
}

.client.is-hot img {
  transform: scale(1.14);
}

.client-cta {
  position: absolute;
  bottom: 4px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--citron);
  transform: rotate(-8deg) translateY(8px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.28s ease, transform 0.4s cubic-bezier(.16, 1, .3, 1);
}

.client.is-hot .client-cta {
  opacity: 1;
  transform: rotate(-8deg) translateY(0);
}

.client-follow {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translate3d(-50%, -58%, 0) scale(0.7);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(.16, 1, .3, 1);
}

.client-follow.is-on {
  opacity: 1;
  transform: translate3d(-50%, -58%, 0) scale(1);
}

.client-peek-shot {
  width: 260px;
  height: 260px;
  overflow: hidden;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.client-peek-shot img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.peek-cta {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--citron);
  transform: rotate(-7deg);
  text-shadow: 3px 4px 0 var(--ink);
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .client-cta { display: none; }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .client-blob,
  .client-follow,
  .client-cta { display: none; }
  .clients-grid.is-hot .client {
    opacity: 1;
    filter: none;
  }
}

/* Contact */
.contact {
  width: min(88vw, 1320px);
  margin: 0 auto;
  padding: 10vh 0 12vh;
}

.contact .display {
  margin: 0 0 6vh;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 72px;
  align-items: stretch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 10px 8px 0 6px;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.contact-form.is-in {
  opacity: 1;
  transform: none;
}

.contact-kicker {
  display: inline-block;
  align-self: start;
  margin: 0 0 10px;
  padding: 22px 24px 18px;
  width: max-content;
  max-width: 100%;
  background: var(--citron);
  color: var(--ink);
  box-shadow: 6px 8px 0 var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-3.2deg);
  transition: transform 0.45s cubic-bezier(.16, 1, .3, 1), box-shadow 0.35s ease;
}

.contact-form.is-in .contact-kicker:hover {
  transform: rotate(1.8deg) scale(1.03);
  box-shadow: 2px 3px 0 var(--ink);
}

.contact-form textarea,
.contact-form input {
  border: 1px solid #d8d8d8;
  background: var(--blanc);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  appearance: none;
}

.contact-form textarea {
  width: 100%;
  min-height: 148px;
  padding: 16px 18px;
  border-radius: 16px;
  resize: vertical;
}

.contact-form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
  color: #b4b4b4;
}

.contact-form textarea:focus,
.contact-form input:focus {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
  border-color: var(--violet);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-go {
  flex-shrink: 0;
  height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--violet);
  color: var(--citron);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1), box-shadow 0.35s ease;
}

.contact-go:hover {
  transform: scale(1.04);
  box-shadow: 3px 4px 0 var(--ink);
}

.contact-go:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 320px;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.contact-aside.is-in {
  opacity: 1;
  transform: none;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 28px 24px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--on-dark);
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1);
}

.contact-card:hover {
  transform: translateY(-3px) rotate(-1.5deg);
}

.contact-card-kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--citron);
}

.contact-card-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Club : bloc sombre DA, photo arrondie + pastilles */
.club {
  position: relative;
  overflow: visible;
  padding: 8vh 4vw 10vh;
  background: var(--ink);
  color: var(--on-dark);
}

.club .display {
  width: 100%;
  margin: 0 0 48px;
  padding: 0;
}

.club-board {
  width: min(92vw, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 48px 64px;
  align-items: center;
}

.club-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.02em;
  max-width: 42ch;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.club-copy.is-in {
  opacity: 1;
  transform: none;
}

.club-copy p { margin: 0 0 16px; }
.club-copy p:last-of-type { margin-bottom: 28px; }

.club-pills {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: auto;
  top: auto;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
}

.club-pills span {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--blanc);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.club-pills span:first-child {
  background: #d8f5c8;
  transform: rotate(-3deg);
}

.club-pills span:last-child {
  transform: rotate(2.5deg);
  margin-left: 22px;
}

.club-shot {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(100%, 520px);
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.club-shot.is-in {
  opacity: 1;
  transform: none;
}

.club-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 36px;
}

.club-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px 19px;
  border-radius: 999px;
  background: var(--violet);
  color: var(--citron);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1);
}

.club-cta:hover {
  transform: scale(1.05) rotate(-2deg);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 36px 40px 88px;
  background: var(--ink);
  color: var(--on-dark);
}

.footer-logo {
  position: relative;
  display: block;
  justify-self: center;
  height: 72px;
  width: 220px;
  flex-shrink: 0;
}

.footer-logo img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 72px;
  width: auto;
  max-width: none;
  opacity: 0;
  animation: navTint 7.8s infinite;
}

.footer-logo img:nth-child(1) { animation-delay: 0s; }
.footer-logo img:nth-child(2) { animation-delay: 2.6s; }
.footer-logo img:nth-child(3) { animation-delay: 5.2s; }

.footer-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.footer-legal {
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--on-dark);
  opacity: 0.5;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.footer-social {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--on-dark);
  border-radius: 50%;
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1), background 0.25s ease;
}

.footer-social svg {
  width: 26px;
  height: 26px;
  display: block;
  overflow: visible;
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px) rotate(-8deg);
}

.footer-mail {
  justify-self: end;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: right;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .nav {
    padding: max(12px, env(safe-area-inset-top)) 16px 12px;
  }
  .nav-logo { height: 36px; width: 110px; }
  .nav-logo img { height: 36px; }
  .nav-menu { font-size: 24px; -webkit-text-stroke: 0.8px var(--ink); }
  .menu { padding: 18vh 20px 8vh; }

  .display {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.84;
    letter-spacing: -0.035em;
    width: auto;
    max-width: calc(100% - 84px);
    margin: 0 0 28px;
    padding: 0;
  }

  .hero {
    height: 100svh;
    min-height: 0;
    padding: 0;
  }

  .hero-frame {
    width: 100%;
  }

  .call-sticky {
    right: 16px;
    bottom: max(18px, env(safe-area-inset-bottom));
    padding: 16px 26px 15px;
    font-size: 16px;
  }

  .marquee { padding: 12px 0 18px; }
  .marquee-tape { --tape-h: 76px; --bite: 30px; }

  .about { width: auto; padding: 86px 20px 8vh; }
  .about .display { text-align: left; margin-bottom: 24px; }
  .about-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-stamp,
  .about-menu {
    justify-self: start;
    max-width: none;
    transform: none;
  }
  .about-stamp.is-in,
  .about-menu.is-in { transform: none; }
  .about-fold-stamp {
    max-width: 22ch;
    transform: rotate(-3.2deg);
  }
  .about-fold-stamp:hover {
    transform: rotate(1.8deg) scale(1.03);
  }
  .about-fold-grid { grid-template-columns: 1fr; gap: 8px; }
  .about-fold-btn { font-size: 32px; padding: 14px 0; }
  .reveal-a, .reveal-b { margin-top: 0; }
  .reveal img, .reveal-a img, .reveal-b img {
    height: 52vh;
    min-height: 0;
  }

  .work { padding: 86px 0 48px; }
  .work .display {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .contact { width: auto; padding: 86px 20px 8vh; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-aside { min-height: 0; }
  .contact-card-val { font-size: 26px; }
  .contact-row {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-go { width: 100%; }

  .club { padding: 86px 20px 8vh; }
  .club .display {
    width: auto;
    max-width: calc(100% - 72px);
    margin: 0 0 28px;
  }
  .club-board {
    width: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .club-shot {
    width: 100%;
    justify-self: stretch;
  }

  .club-shot img {
    border-radius: 28px;
  }

  .club-pills {
    left: 12px;
    right: auto;
    top: auto;
    bottom: 14px;
    align-items: flex-start;
  }

  .club-pills span {
    padding: 12px 20px;
    font-size: 16px;
  }

  .club-pills span:last-child {
    margin-left: 14px;
    margin-right: 0;
  }

  .work-card { width: 72vw; }

  .clients {
    padding: 86px 20px 72px;
  }

  .clients .display {
    max-width: 7.4ch;
    font-size: clamp(60px, 18vw, 88px);
    margin: 0 0 32px;
  }

  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    width: 100%;
  }

  .client {
    height: 112px;
    min-height: 112px;
    padding: 0;
  }

  .client img {
    width: min(118px, 38vw);
    height: 72px;
  }


  .footer {
    padding: 28px 18px 96px;
    gap: 16px;
  }
  .footer-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }
  .footer-logo { height: 52px; width: 160px; }
  .footer-logo img { height: 52px; }
  .footer-socials { justify-content: center; }
  .footer-mail {
    justify-self: center;
    text-align: center;
    font-size: 13px;
  }
}
