/* ═══ COVERT V2 — Modern redesign · Inter only · Mobile-first ═══════ */

:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --off:    #f5f5f5;
  --border: rgba(10,10,10,0.10);
  --nav-h:  64px;
  --pad-x:  20px;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }

/* ── Custom cursor (desktop only) ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
  will-change: left, top;
}
.cursor.grow { width: 40px; height: 40px; }
@media (hover: none) { .cursor { display: none; } }

/* ── Container ── */
.container {
  width: 100%;
  padding: 0 var(--pad-x);
  max-width: 1440px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s;
  position: relative;
}
.btn-dark  { background: var(--black); color: var(--white); }
.btn-dark:hover  { background: transparent; color: var(--black); }
.btn-light { background: transparent;  color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--black); }
.btn-outline { background: transparent; color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ══ HEADER ══════════════════════════════════════════════════════════ */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, color 0.4s, border-color 0.4s;
}
header.scrolled {
  background: transparent;
  color: var(--black);
  border-bottom-color: var(--border);
}
/* Fond + flou déportés sur ::before pour ne PAS créer de bloc conteneur
   qui piégerait le menu mobile (position: fixed) dans le header. */
header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 22px; height: 22px; filter: invert(1); transition: filter 0.4s; }
header.scrolled .logo img { filter: invert(0); }
.logo-text { font-size: 11px; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; }
.header-right { display: flex; align-items: center; gap: 14px; }
.lang-btn {
  background: none;
  border: 1px solid currentColor;
  font-family: inherit;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  cursor: pointer;
  color: inherit;
  padding: 4px 9px;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.lang-btn:hover { opacity: 1; }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: inherit;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

/* Nav drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-overlay.visible { opacity: 1; pointer-events: auto; }
nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  z-index: 99;
}
nav.open { transform: translateX(0); }
nav a {
  display: block;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 200;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0.5;
  transition: opacity 0.2s;
}
nav a:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
nav a:hover, nav a.active { opacity: 1; }

/* ══ HERO — VIDEO ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Désaturation : la vidéo épouse l'identité noir & blanc premium de Covert */
  filter: grayscale(1) contrast(1.08) brightness(0.92);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.45) 40%,
    rgba(10,10,10,0.80) 100%
  );
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 20px) var(--pad-x) 0;
}
.hero-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.2s var(--ease) forwards;
}
.hero-title {
  font-size: clamp(40px, 12vw, 120px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin-bottom: 36px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  /* Place pour les jambages (le « y » de « what you ») sans rogner */
  padding-bottom: 0.14em;
}
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: slideUp 1s var(--ease) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.42s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.54s; }
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s 0.7s var(--ease) forwards;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 1s 0.9s var(--ease) forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.2s var(--ease) forwards;
}
.scroll-bar {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollAnim 2s 1.5s ease-in-out infinite;
}
@keyframes slideUp  { to { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp   { to { opacity: 1; } }
@keyframes scrollAnim { 0%,100% { top:-100%; } 50% { top:100%; } }

/* ══ MARQUEE STRIP ═══════════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  /* le défilement ne s'arrête jamais, même au survol */
}
.marquee-item {
  flex-shrink: 0;
  padding: 0 28px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.marquee-item.hi { color: rgba(255,255,255,0.8); }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ══ SERVICES ════════════════════════════════════════════════════════ */
.services { padding: 80px 0; }
.section-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.30);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.section-tag::after { content:''; flex:1; max-width:48px; height:1px; background:var(--border); }
.services-title {
  font-size: clamp(32px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 64px;
}
.service-list { border-top: 1px solid var(--border); }
.service-item {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  cursor: default;
  transition: padding 0.3s var(--ease);
}
.service-item:hover { padding: 40px 0; }
.service-num {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(10,10,10,0.25);
}
.service-item h3 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.service-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(10,10,10,0.55);
}
.service-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 5px 12px;
  color: rgba(10,10,10,0.35);
  align-self: start;
}

/* ══ MANIFESTO ═══════════════════════════════════════════════════════ */
.manifesto-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}
.manifesto-quote {
  font-size: clamp(22px, 5.5vw, 56px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 40px;
}
.manifesto-quote em { font-style: normal; color: rgba(255,255,255,0.28); }
.manifesto-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin-bottom: 40px;
}

/* ══ STATS ═══════════════════════════════════════════════════════════ */
.stats-section { padding: 80px 0; }
.stats-row {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.stat-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.stat-big {
  font-size: clamp(64px, 16vw, 136px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.stat-big .suffix {
  font-size: 0.38em;
  font-weight: 300;
  vertical-align: super;
  letter-spacing: 0;
}
.stat-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(10,10,10,0.5);
  line-height: 1.7;
  max-width: 300px;
}

/* ══ CTA BAND ════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}
.cta-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 28px;
}
.cta-heading {
  font-size: clamp(36px, 9vw, 100px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 48px;
}

/* ══ FOOTER ══════════════════════════════════════════════════════════ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 22px; height: 22px; filter: invert(1); }
.footer-logo span { font-size: 11px; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-links a { opacity: 0.3; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-copy { font-size: 10px; font-weight: 300; opacity: 0.2; }
.footer-tagline { font-size: 8px; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; opacity: 0.15; }

/* ══ PAGE HERO ═══════════════════════════════════════════════════════ */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 128px 0 60px;
}
.page-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 28px;
}
.page-hero h1 {
  font-size: clamp(44px, 12vw, 128px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
}

/* ══ REVEAL ANIMATIONS ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ══ ABOUT ═══════════════════════════════════════════════════════════ */
.about-constat  { padding: 80px 0; }
.about-constat-title {
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 36px;
}
.about-constat p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(10,10,10,0.6);
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.about-constat p:last-child { border-bottom: 1px solid var(--border); }
.conviction-band {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}
.conviction-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 32px;
}
.conviction-text {
  font-size: clamp(22px, 5vw, 46px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.conviction-text strong { font-weight: 700; }
.stat-about { padding: 80px 0; border-bottom: 1px solid var(--border); }
.stat-about-grid { display: block; }
.canvas-wrap { width: 100%; max-width: 340px; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 48px; }
.canvas-wrap canvas { width: 100%; height: 100%; }
.about-stat-phrase {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.about-stat-sub { font-size: 14px; font-weight: 300; color: rgba(10,10,10,0.45); line-height: 1.7; margin-bottom: 32px; }
.about-stat-aside { font-size: 13px; font-weight: 300; color: rgba(10,10,10,0.45); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 24px; margin-bottom: 12px; }
.about-stat-source { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(10,10,10,0.25); }
.who-section { padding: 80px 0; }
.who-title {
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 48px;
}
.who-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(10,10,10,0.6);
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.who-body p:last-child { border-bottom: 1px solid var(--border); }

/* ══ CONTACT ═════════════════════════════════════════════════════════ */
.contact-section  { padding: 80px 0; }
.contact-info h2 {
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.contact-info > p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(10,10,10,0.55);
  margin-bottom: 12px;
}
.contact-meta { margin: 36px 0 48px; }
.contact-meta-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.contact-meta-item:last-child { border-bottom: 1px solid var(--border); }
.contact-meta-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.3);
  min-width: 88px;
}
.contact-meta-value { font-size: 13px; font-weight: 300; }
.contact-form-wrap { margin-top: 48px; }
.field {
  border-bottom: 1px solid var(--black);
}
.field:first-of-type { border-top: 1px solid var(--black); }
.field label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.3);
  padding: 14px 0 4px;
}
.field input,
.field textarea {
  display: block;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  padding: 4px 0 14px;
}
.field textarea { resize: none; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(10,10,10,0.22); }
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  align-items: flex-start;
}
.form-footnote { font-size: 10px; font-weight: 300; color: rgba(10,10,10,0.38); line-height: 1.65; }
.form-success {
  display: none;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.form-success.visible { display: block; }
.form-success h3 { font-size: clamp(26px, 5vw, 40px); font-weight: 300; letter-spacing: -0.01em; margin-bottom: 12px; }
.form-success p { font-size: 13px; font-weight: 300; color: rgba(10,10,10,0.45); }
.form-error { display: none; margin-top: 16px; padding: 16px 0; border-top: 1px solid var(--black); }
.form-error.visible { display: block; }
.form-error p { font-size: 13px; font-weight: 300; line-height: 1.7; }
.form-error a { text-decoration: underline; text-underline-offset: 3px; }

/* ══ CGV ═════════════════════════════════════════════════════════════ */
.cgv-section { padding: 80px 0; }
.cgv-content { max-width: 720px; }
.cgv-article { padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid var(--border); }
.cgv-article:last-of-type { border-bottom: none; margin-bottom: 0; }
.cgv-article h2 {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.38);
  margin-bottom: 20px;
}
.cgv-article p { font-size: 14px; font-weight: 300; line-height: 1.85; margin-bottom: 14px; }
.cgv-article p:last-child { margin-bottom: 0; }
.cgv-article ul { margin: 12px 0 16px; }
.cgv-article ul li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  padding: 10px 0 10px 16px;
  border-left: 1px solid var(--border);
  margin-bottom: 8px;
}
.cgv-article a { text-decoration: underline; text-underline-offset: 3px; }
.cgv-meta { margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--border); font-size: 10px; font-weight: 300; line-height: 1.9; opacity: 0.38; }
.cgv-meta a { text-decoration: underline; }

/* ══ DESKTOP — 900px ═════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --nav-h: 72px; --pad-x: 48px; }

  /* Header pleine largeur : le bouton EN va jusqu'au vrai bord droit */
  header .container { max-width: none; padding-right: 28px; }
  /* Même écart entre la nav et le cadre du bouton EN qu'entre les liens */
  .header-right { gap: 32px; }

  /* Nav inline */
  .nav-toggle, .nav-overlay { display: none; }
  nav {
    position: static;
    transform: none;
    background: none;
    color: inherit;
    flex-direction: row;
    padding: 0;
    gap: 32px;
    width: auto;
  }
  nav a {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 9px;
    padding: 0;
    border: none;
    opacity: 0.45;
    transition: opacity 0.2s;
  }
  nav a:first-child { border: none; }
  nav a:hover, nav a.active { opacity: 1; }

  /* Hero */
  .hero-title { font-size: clamp(80px, 12vw, 160px); }

  /* Services */
  .services { padding: 120px 0; }
  .services-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 0;
  }
  .service-item {
    grid-template-columns: 52px 1fr 2fr auto;
    align-items: center;
    gap: 48px;
    padding: 40px 0;
  }
  .service-item:hover { padding: 52px 0; }

  /* Manifesto */
  .manifesto-section { padding: 120px 0; }
  .manifesto-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  /* Stats */
  .stats-section { padding: 120px 0; }
  .stats-row { flex-direction: row; }
  .stat-block {
    flex: 1;
    padding: 60px 48px;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .stat-block:first-child { padding-left: 0; }
  .stat-block:last-child { border-right: none; }

  /* CTA */
  .cta-band { padding: 120px 0; }
  .cta-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }

  /* Footer */
  .footer-top { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  /* Page hero */
  .page-hero { padding: 172px 0 80px; }
  .page-eyebrow { font-size: 10px; }

  /* About */
  .about-constat { padding: 120px 0; }
  .about-constat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .conviction-band { padding: 120px 0; }
  .stat-about { padding: 120px 0; }
  .stat-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .canvas-wrap { margin-bottom: 0; max-width: 100%; }
  .who-section { padding: 120px 0; }
  .who-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
  }

  /* Contact */
  .contact-section { padding: 120px 0; }
  .contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
  }
  .contact-form-wrap { margin-top: 0; }
  .form-actions { flex-direction: row; justify-content: space-between; align-items: center; }

  /* CGV */
  .cgv-section { padding: 120px 0 140px; }
  .cgv-article h2 { font-size: 10px; }
}

@media (min-width: 1200px) {
  :root { --pad-x: 64px; }
}

/* ══ Sections « Values » & « Manifeste » (reprises de la v1 responsive) ══ */
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28); }

.values { padding: 72px 0; }
.values-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.values-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.values-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.values-title {
  font-weight: 300;
  font-size: clamp(26px, 7vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.values-cta-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--black);
  display: inline-block;
  transition: opacity 0.2s;
}
.values-cta-link:hover { opacity: 0.4; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--black);
}
.value-card {
  padding: 36px 24px;
  border-bottom: 1px solid var(--black);
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.value-card:last-child { border-bottom: none; }
.value-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #d8d8d8;
  margin-bottom: 20px;
  transition: color 0.22s;
}
.value-card h3 {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.value-card-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: #666;
  transition: color 0.22s;
}

.manifeste { background: var(--black); padding: 72px 0; }
.manifeste-quote {
  font-weight: 700;
  font-size: clamp(20px, 6vw, 48px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 40px;
}
.manifeste-quote em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
}
.manifeste-bottom {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.manifeste-detail {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 900px) {
  .btn-ghost-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

  .values { padding: 120px 0; }
  .values-label { font-size: 10px; margin-bottom: 52px; gap: 24px; }
  .values-intro { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .value-card { padding: 52px 44px; border-right: 1px solid var(--black); border-bottom: none; }
  .value-card:last-child { border-right: none; }
  .value-card:hover { background: var(--black); color: var(--white); }
  .value-card:hover .value-num { color: rgba(255,255,255,0.12); }
  .value-card:hover .value-card-body { color: rgba(255,255,255,0.5); }
  .value-num { font-size: 11px; margin-bottom: 28px; }
  .value-card h3 { font-size: 18px; margin-bottom: 14px; }
  .value-card-body { font-size: 14px; }

  .manifeste { padding: 120px 0; }
  .manifeste-quote { max-width: 960px; margin-bottom: 64px; }
  .manifeste-bottom { flex-direction: row; align-items: center; justify-content: space-between; gap: 60px; padding-top: 40px; }
  .manifeste-detail { font-size: 14px; max-width: 500px; }
}

/* ══ Accessibilité — mouvement réduit ════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-eyebrow, .hero-sub, .hero-cta, .hero-scroll { opacity: 1 !important; }
  .hero-title .line span { transform: none !important; opacity: 1 !important; }
  .marquee-inner { animation: none !important; }
}
