/* ═══ COVERT — Inter only · Mobile-first responsive ══════════════ */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f7f7f7;
  --gray-100: #f0f0f0;
  --border: #e2e2e2;
  --text-muted: #777;
  --font: 'Inter', sans-serif;
  --nav-h: 60px;
  --pad-x: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Header (identique à l'accueil v2) ── */
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: var(--font);
  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-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; }

main { padding-top: var(--nav-h); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid transparent;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-white  { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-dark   { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28); }

/* ── Hero (mobile) ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(0,0,0,0.95) 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.25) 100%),
    radial-gradient(ellipse at 75% 45%, #1d1410 0%, #0a0a0a 60%);
}
.hero-noise {
  position: absolute; inset: 0;
  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='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  animation: fadeUp 0.9s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(52px, 14vw, 152px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 36px;
}
.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
}

/* ── Values (mobile) ── */
.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);
}
.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 (mobile) ── */
.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);
}

/* ── CTA (mobile) ── */
.cta-banner { padding: 72px 0; border-top: 1px solid var(--border); }
.cta-inner { display: flex; flex-direction: column; gap: 32px; }
.cta-inner h2 {
  font-weight: 300;
  font-size: clamp(26px, 7vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-inner .btn { align-self: flex-start; }

/* ── Page hero (mobile) ── */
.page-hero { background: var(--black); color: var(--white); padding: 56px 0 48px; }
.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-weight: 800;
  font-size: clamp(40px, 11vw, 104px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.9;
}

/* ── Footer (mobile) ── */
footer { background: var(--black); color: var(--white); padding: 40px 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 24px; height: 24px; filter: invert(1); }
.footer-logo span { font-size: 11px; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; }
.footer-links { display: flex; gap: 28px; font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-links a { opacity: 0.35; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-copy { font-size: 10px; font-weight: 300; opacity: 0.25; }

/* ═══ À PROPOS ══════════════════════════════════════════════════ */

.eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 20px;
}

/* about-manifeste (mobile) */
.about-manifeste { padding: 64px 0; border-bottom: 1px solid var(--border); }
.about-manifeste .eyebrow { margin-bottom: 36px; }
.about-manifeste-inner { display: block; }
.manifeste-body { display: flex; flex-direction: column; gap: 18px; }
.manifeste-body p {
  font-size: clamp(16px, 4.5vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.manifeste-body p.accent { font-weight: 500; color: var(--black); }
.manifeste-deco { display: none; overflow: hidden; }
.manifeste-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.1);
}

/* about-promesse (mobile) */
.about-promesse { background: var(--black); padding: 64px 0; }
.promesse-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
}
.promesse-text {
  font-weight: 200;
  font-size: clamp(22px, 6.5vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 880px;
}
.promesse-text strong { font-weight: 500; }

/* about-stat (mobile) */
.about-stat { padding: 64px 0; border-bottom: 1px solid var(--border); }
.stat-grid { display: block; }
.stat-visual { display: none; }
.spy-photo-wrap { overflow: hidden; background: var(--white); }
.spy-photo-wrap canvas { width: 100%; height: 580px; display: block; }
.stat-content .eyebrow { margin-bottom: 28px; }
.stat-phrase {
  font-weight: 300;
  font-size: clamp(22px, 6.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 8px;
  margin-bottom: 12px;
}
.stat-phrase strong { font-weight: 500; }
.stat-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.stat-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.stat-aside {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: #999;
}
.stat-note {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ccc;
  flex-shrink: 0;
}

/* about-who (mobile) */
.about-who { padding: 64px 0; }
.about-who-grid { display: block; }
.about-who-title {
  font-weight: 300;
  font-size: clamp(22px, 6vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-top: 16px;
  margin-bottom: 36px;
}
.about-who-body { display: flex; flex-direction: column; }
.about-who-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.about-who-body p:first-child { border-top: 1px solid var(--border); }

/* ═══ CONTACT ════════════════════════════════════════════════════ */

.contact-section { padding: 64px 0; }
.contact-grid { display: block; }
.contact-info h2 {
  font-weight: 300;
  font-size: clamp(24px, 6.5vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.contact-info > p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: #666;
  margin-bottom: 12px;
}
.contact-meta {
  margin-top: 36px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
}
.contact-meta-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 13px 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: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #bbb;
  min-width: 88px;
}
.contact-meta-value { font-size: 13px; font-weight: 300; }

/* Formulaire (mobile : champs empilés) */
.contact-form { border: 1px solid var(--black); }
.form-row {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--black);
}
.form-row:first-child { border-top: none; }
.form-row .form-group + .form-group { border-top: 1px solid var(--black); }
.form-group label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #bbb;
  padding: 16px 20px 0;
}
.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
  padding: 8px 20px 16px;
  resize: none;
  transition: background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { background: var(--gray-100); }
.form-group textarea { min-height: 140px; padding-top: 10px; }
.form-actions {
  padding: 20px;
  border-top: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.form-actions .btn { width: 100%; }
.form-footnote {
  font-size: 10px;
  font-weight: 300;
  color: #bbb;
  text-align: center;
  line-height: 1.7;
}
.form-success {
  display: none;
  padding: 60px 24px;
  text-align: center;
  border: 1px solid var(--black);
}
.form-success.visible { display: block; }
.form-success h3 { font-weight: 300; font-size: 26px; letter-spacing: -0.01em; margin-bottom: 10px; }
.form-success p { font-size: 13px; font-weight: 300; color: #777; }
.form-error { display: none; padding: 20px 24px; border: 1px solid var(--black); margin-top: 16px; }
.form-error.visible { display: block; }
.form-error p { font-size: 13px; font-weight: 300; line-height: 1.7; }
.form-error a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }

/* ═══ CGV ════════════════════════════════════════════════════════ */

.cgv-section { padding: 64px 0 80px; }
.cgv-content { max-width: 700px; }
.cgv-article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  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;
  margin-bottom: 18px;
  color: var(--black);
}
.cgv-article p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--black);
  margin-bottom: 12px;
}
.cgv-article p:last-child { margin-bottom: 0; }
.cgv-article ul {
  margin: 12px 0 16px;
  padding: 0;
  list-style: none;
}
.cgv-article ul li {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  padding: 10px 0 10px 16px;
  border-left: 1px solid var(--border);
  margin-bottom: 8px;
}
.cgv-article ul li:last-child { margin-bottom: 0; }
.cgv-article a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.cgv-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.4;
}
.cgv-meta a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

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

  /* Header desktop (identique à l'accueil v2) */
  header.scrolled { border-bottom-color: var(--border); }
  /* Logo aligné exactement comme sur l'accueil (padding-left identique) */
  header .container { max-width: none; padding-left: 48px; padding-right: 28px; }
  /* Même écart entre la nav et le cadre du bouton EN qu'entre les liens */
  .header-right { gap: 32px; }
  .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;
    padding: 0;
    border: none;
    border-bottom: none;
    opacity: 0.45;
    transition: opacity 0.2s;
  }
  nav a:first-child { border: none; }
  nav a:hover, nav a.active { opacity: 1; }
  .lang-btn { padding: 4px 11px; }

  /* Boutons hover desktop */
  .btn-white:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
  .btn-dark:hover { background: transparent; color: var(--black); }
  .btn-ghost-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

  /* Hero desktop */
  .hero { padding-bottom: 72px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.42em; margin-bottom: 28px; }
  .hero h1 { font-size: clamp(64px, 10.5vw, 152px); margin-bottom: 52px; }
  .hero-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-top: 28px;
  }
  .hero-sub { font-size: 14px; max-width: 380px; }

  /* Values desktop */
  .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 desktop */
  .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; }

  /* CTA desktop */
  .cta-banner { padding: 108px 0; }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 60px; }
  .cta-inner .btn { align-self: auto; }

  /* Page hero desktop */
  .page-hero { padding: 96px 0; }
  .page-eyebrow { font-size: 10px; margin-bottom: 40px; }

  /* Footer desktop */
  footer { padding: 48px 0; }
  .footer-inner { flex-direction: row; align-items: center; gap: 0; text-align: left; justify-content: space-between; }
  .footer-logo img { width: 28px; height: 28px; }
  .footer-logo span { font-size: 12px; }
  .footer-links { gap: 36px; font-size: 10px; }
  .footer-copy { font-size: 11px; }

  /* Eyebrow desktop */
  .eyebrow { font-size: 10px; }

  /* about-manifeste desktop : 2 colonnes */
  .about-manifeste { padding: 112px 0; }
  .about-manifeste .eyebrow { margin-bottom: 44px; }
  .about-manifeste-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .manifeste-body { gap: 22px; }
  .manifeste-body p { font-size: clamp(17px, 1.8vw, 22px); }
  .manifeste-deco { display: block; }

  /* about-promesse desktop */
  .about-promesse { padding: 112px 0; }
  .promesse-label { font-size: 10px; margin-bottom: 40px; }

  /* about-stat desktop : canvas visible, 2 colonnes */
  .about-stat { padding: 100px 0; }
  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .stat-visual { display: block; }
  .stat-sub { margin-bottom: 48px; }
  .stat-footer { flex-direction: row; align-items: flex-start; gap: 60px; padding-top: 28px; }

  /* about-who desktop : 2 colonnes */
  .about-who { padding: 120px 0; }
  .about-who-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 108px;
    align-items: center;
  }
  .about-who-title { font-size: clamp(26px, 2.8vw, 40px); margin-top: 0; margin-bottom: 0; }
  .about-who-body p { font-size: 15px; padding: 26px 0; }

  /* contact desktop : 2 colonnes */
  .contact-section { padding: 100px 0; }
  .contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 108px;
    align-items: start;
  }
  .contact-info h2 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 28px; }
  .contact-info > p { font-size: 14px; margin-bottom: 16px; }
  .contact-meta { margin-top: 48px; margin-bottom: 0; }
  .contact-meta-item { padding: 15px 0; }
  .contact-meta-label { min-width: 104px; }

  /* Formulaire desktop : grille 2 colonnes */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: unset;
    border-top: none;
    border-bottom: 1px solid var(--black);
  }
  .form-row:first-child { border-top: none; }
  .form-row.single { grid-template-columns: 1fr; }
  .form-row .form-group + .form-group { border-top: none; border-left: 1px solid var(--black); }
  .form-row.single .form-group:first-child { border-right: none; border-left: none; }
  .form-group label { padding: 20px 24px 0; }
  .form-group input, .form-group textarea { font-size: 14px; padding: 8px 24px 20px; }
  .form-group textarea { min-height: 160px; padding-top: 12px; }
  .form-actions {
    border-top: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
  }
  .form-actions .btn { width: auto; }
  .form-footnote { font-size: 11px; text-align: left; }
  .form-success { padding: 80px 40px; }
  .form-success h3 { font-size: 32px; margin-bottom: 12px; }
  .form-success p { font-size: 14px; }

  /* CGV desktop */
  .cgv-section { padding: 100px 0 120px; }
  .cgv-article h2 { font-size: 10px; }
  .cgv-article p,
  .cgv-article ul li { font-size: 14px; }
  .cgv-meta { font-size: 11px; }
}

/* ═══ LARGE DESKTOP — min-width: 1100px ════════════════════════ */
@media (min-width: 1100px) {
  :root { --pad-x: 56px; }
}

/* ── Curseur inversé (effet survol — repris de la v2) ──────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .3s cubic-bezier(.16,1,.3,1), height .3s cubic-bezier(.16,1,.3,1);
  will-change: left, top;
}
.cursor.grow { width: 40px; height: 40px; }
@media (hover: none) { .cursor { display: none; } }

/* Logo aligné comme sur l'accueil sur grand écran (padding-left = 64px) */
@media (min-width: 1200px) {
  header .container { padding-left: 64px; }
}
