/* ============================================================
   BMV MIROITERIE — Tokens
   ============================================================ */
:root {
  --cream: #f5f1e8;
  --cream-2: #ece5d4;
  --night: #0e1e3a;
  --night-deep: #0a1729;
  --night-soft: #142848;
  --gold: #c9a961;
  --gold-deep: #a88a3f;
  --ink: #1a1a1a;
  --slate: #5a5a5a;
  --line-light: rgba(14,30,58,.18);
  --line-gold-soft: rgba(201,169,97,.30);
  --line-gold-strong: rgba(201,169,97,.55);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

.serif { font-family: var(--serif); }
.up { text-transform: uppercase; letter-spacing: .18em; }
.gold { color: var(--gold); }
.cream { color: var(--cream); }

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: .02em; }
h2.section-title {
  font-size: clamp(36px, 5.6vw, 76px);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--night);
}
.section-title.on-night { color: var(--cream); }
.eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: .28em; color: var(--gold);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--night);
  border-bottom: 1px solid var(--line-gold-soft);
  box-shadow: 0 2px 30px rgba(0,0,0,.18);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.brand { display: flex; align-items: baseline; gap: 8px; color: var(--cream); }
.brand .b-mark {
  font-family: var(--serif); font-weight: 700; font-size: 30px; letter-spacing: .06em;
  line-height: 1;
}
.brand .b-sub {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 13px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--cream);
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-tel {
  display: inline-flex; align-items: center; gap: 8px; color: var(--cream);
  font-size: 14px; letter-spacing: .04em;
}
.nav-tel:hover { color: var(--gold); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .18em;
  padding: 14px 22px; border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-gold { background: var(--gold); color: var(--night); }
.btn-gold:hover { background: var(--gold-deep); color: var(--night); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--night); }
.btn-outline-night { background: transparent; color: var(--night); border-color: var(--night); }
.btn-outline-night:hover { background: var(--night); color: var(--cream); }

.nav-burger { display: none; color: var(--cream); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-tel span { display: none; }
  .nav-burger { display: inline-flex; }

  /* ← AJOUTER CES LIGNES */
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; /* hauteur de la navbar */
    left: 0; right: 0;
    background: var(--night);
    border-top: 1px solid var(--line-gold-soft);
    padding: 24px var(--pad);
    gap: 20px;
    z-index: 49;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  margin-top: 78px;
  background: var(--night);
  color: var(--cream);
  overflow: hidden;
  min-height: 760px;
  display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1900&q=80");
  background-size: cover; background-position: center;
  filter: saturate(.85) brightness(.85);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,30,58,.55) 0%, rgba(14,30,58,.65) 60%, rgba(10,23,41,.95) 100%);
}
.hero-body {
  position: relative; z-index: 1;
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 80px var(--pad) 60px;
}
.cartouche {
  background: rgba(14,30,58,.92);
  border: 1px solid var(--line-gold-strong);
  border-radius: 8px;
  padding: clamp(36px,5vw,72px) clamp(28px,5vw,80px);
  text-align: center;
  max-width: 720px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  position: relative;
}
.cartouche::before, .cartouche::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--gold);
}
.cartouche::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.cartouche::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.h-bmv {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(80px, 12vw, 148px);
  line-height: .9; letter-spacing: .06em; color: var(--cream);
  margin: 0;
}
.h-sub {
  display: block;
  font-family: var(--serif); font-weight: 500; font-style: italic;
  color: var(--gold); font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: .42em; text-transform: uppercase;
  margin-top: -10px; margin-bottom: 18px;
}
.h-rule { width: 80px; height: 1px; background: var(--gold); margin: 18px auto 22px; }
.h-tag {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--cream);
  line-height: 1.25; letter-spacing: .02em;
}
.h-tag em { font-style: italic; color: var(--gold); }
.h-since {
  margin-top: 14px;
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold);
}
.h-cta {
  display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap;
  margin-top: 32px;
}
.h-cta .btn-gold { padding: 16px 28px; }
.h-tel-inline {
  color: var(--cream); font-size: 14px; letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 8px;
}
.h-tel-inline:hover { color: var(--gold); }

.hero-strip {
  position: relative; z-index: 1;
  background: var(--night-deep);
  border-top: 1px solid var(--line-gold-soft);
}
/* Marquee hero strip
   Vitesse : ajuster --marquee-hero-duration (plus élevé = plus lent)
   Couleurs : background hérité de .hero-strip (--night-deep), texte var(--cream), séparateurs var(--gold) */
.marquee-hero {
  overflow: hidden;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-hero__track {
  display: flex;
  width: max-content;
  animation: marquee-hero-scroll 32s linear infinite;
  will-change: transform;
}

.marquee-hero:hover .marquee-hero__track {
  animation-play-state: paused;
}

.marquee-hero__content {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  flex-shrink: 0;
}

.marquee-hero__item {
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
}

.marquee-hero__sep {
  color: var(--gold);
  font-size: 9px;
  opacity: .8;
  letter-spacing: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-hero__track { animation: none; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(70px, 9vw, 140px) 0; }
.section.on-night { background: var(--night); color: var(--cream); }
.section.on-night-deep { background: var(--night-deep); color: var(--cream); }

/* ============================================================
   DOMAINES
   ============================================================ */
.domaines-head { text-align: center; margin-bottom: 60px; }
.domaines-head .section-title { margin-bottom: 14px; }
.domaines-head p { color: var(--slate); max-width: 580px; margin: 0 auto; font-style: italic; font-family: var(--serif); font-size: 19px; }

.domaines-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.domaines-bloc {
  background: var(--cream);
  border: 1px solid var(--line-gold-soft);
  padding: 32px 28px 28px;
}

.domaines-bloc-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 17px);
  color: var(--night);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-gold-soft);
  line-height: 1.25;
}

.domaines-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dom-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-gold-soft);
  background: var(--cream-2);
  cursor: pointer;
  user-select: none;
  transition: border-color .2s ease;
}

.dom-card:hover { border-color: var(--gold); }

.dom-card:focus { outline: none; border-color: var(--gold); }

.dom-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.dom-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 12px;
}

.dom-card .dom-label {
  flex: 1;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.dom-chevron {
  flex-shrink: 0;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  transition: transform .32s ease;
}

.dom-card[aria-expanded="true"] .dom-chevron {
  transform: rotate(180deg);
}

.dom-body {
  overflow: hidden;
  max-height: 0;
  padding: 0 16px;
  transition: max-height .35s ease, padding .35s ease;
}

.dom-body p {
  margin: 0;
  padding: 10px 0 14px;
  border-top: 1px solid var(--line-gold-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

.dom-card[aria-expanded="true"] .dom-body {
  max-height: 400px;
}

.icon-square {
  width: 56px; height: 56px; background: var(--night);
  display: inline-flex; align-items: center; justify-content: center; color: var(--cream);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}
.icon-square::after {
  content: ""; position: absolute; inset: 3px; border: 1px solid rgba(245,241,232,.12); border-radius: 2px;
  pointer-events: none;
}

@media (max-width: 880px) {
  .domaines-two { grid-template-columns: 1fr; }
}

/* ============================================================
   HISTOIRE
   ============================================================ */
.histoire-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
@media (max-width: 920px) { .histoire-grid { grid-template-columns: 1fr; } }

.histoire-title {
  font-size: clamp(38px, 5.4vw, 72px);
  text-transform: uppercase;
  color: var(--night);
  letter-spacing: .02em;
  line-height: .98;
  margin-bottom: 28px;
}
.histoire-title em { font-style: italic; color: var(--gold-deep); }
.histoire-lede { font-size: 17px; color: var(--ink); max-width: 540px; }
.histoire-lede p { margin: 0 0 18px; }
.histoire-lede strong { color: var(--night); font-weight: 600; }
.histoire-eyebrow { margin-bottom: 16px; color: var(--gold-deep); }

.stats-stage {
  position: relative;
  min-height: 480px;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(14,30,58,.04) 100%);
  border: 1px solid var(--line-gold-soft);
  padding: 36px;
  overflow: hidden;
}
.stats-stage::before, .stats-stage::after {
  content: ""; position: absolute; pointer-events: none;
}
.stats-stage::before {
  top: -30px; right: -30px; width: 200px; height: 200px;
  background: var(--gold);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: .18;
}
.stats-stage::after {
  bottom: -40px; left: -40px; width: 260px; height: 200px;
  background: var(--night);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  opacity: .12;
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.stat { padding: 14px 4px; min-width: 0; }
.stat .num {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1; color: var(--night);
  letter-spacing: -.02em;
  white-space: nowrap;
  overflow: visible;
}
.stat-4 .num, .stat-5 .num { font-size: clamp(30px, 3.8vw, 52px); }
.stat.acc .num { color: var(--gold-deep); }
.stat .lbl { margin-top: 6px; font-size: 13px; letter-spacing: .04em; color: var(--slate); line-height: 1.3; }
.stat-1 { grid-column: 1/3; align-self: end; }
.stat-2 { grid-column: 3/5; }
.stat-3 { grid-column: 5/7; align-self: end; }
.stat-4 { grid-column: 1/4; margin-top: 10px; }
.stat-5 { grid-column: 4/7; margin-top: 10px; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-1, .stat-2, .stat-3, .stat-4, .stat-5 { grid-column: auto; align-self: auto; margin-top: 0; }
}

.pillars {
  margin-top: clamp(60px, 9vw, 110px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
}
@media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar { text-align: center; padding: 18px 8px; border-top: 1px solid var(--line-gold-soft); }
.pillar-icon { width: 56px; height: 56px; margin: 6px auto 22px; color: var(--night); }
.pillar h3 {
  font-family: var(--serif); font-weight: 700; font-size: 24px; color: var(--night);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px;
}
.pillar ul li {
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 17px;
  color: var(--slate); line-height: 1.5; padding: 3px 0;
}

.cert {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--night); font-weight: 600;
}
.cert-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.cert-logo--wide {
  height: 32px;
}

.histoire-certs {
  margin-top: 60px;
  display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap;
  gap: 18px 28px;
  padding: 22px 26px;
  border-top: 1px solid var(--line-gold-soft);
  border-bottom: 1px solid var(--line-gold-soft);
  background: rgba(245,241,232,.5);
}
.histoire-certs .hc-label {
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-deep); margin-right: auto;
}
.histoire-certs .hc-list { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.histoire-certs .hc-since {
  font-family: var(--serif); font-style: italic; color: var(--gold-deep);
  font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
}
@media (max-width: 640px) {
  .histoire-certs { justify-content: flex-start; }
  .histoire-certs .hc-label { margin-right: 0; }
}

/* ============================================================
   TECHNAL
   ============================================================ */
.tech {
  position: relative;
  background: var(--night-deep);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) 0;
}
.tech-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1900&q=80");
  background-size: cover; background-position: center;
  opacity: .20;
  filter: saturate(.6);
}
.tech-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,23,41,.85), rgba(10,23,41,.95));
}
.tech-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.tech-eyebrow {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px); color: var(--cream); margin-bottom: 8px;
}
.tech-eyebrow em { color: var(--gold); font-style: italic; }
.tech-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px); text-transform: uppercase; letter-spacing: .04em;
  color: var(--cream); margin-bottom: 46px; line-height: 1.1;
}
.tech-title em { color: var(--gold); font-style: normal; }
.tech-list {
  display: flex; flex-direction: column;
  font-family: var(--serif); font-size: clamp(18px, 2vw, 22px); font-weight: 400;
  color: var(--cream);
}

.tech-acc-item {
  padding: 6px 0;
  cursor: pointer;
  user-select: none;
}

.tech-acc-item + .tech-acc-item {
  border-top: 1px solid var(--line-gold-soft);
  padding-top: 18px;
}

.tech-acc-item:focus { outline: none; }
.tech-acc-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }

.tech-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tech-acc-title { flex: 1; }

.tech-acc-chevron {
  flex-shrink: 0;
  color: var(--gold);
  opacity: .7;
  display: flex;
  align-items: center;
  transition: transform .32s ease;
}

.tech-acc-item[aria-expanded="true"] .tech-acc-chevron {
  transform: rotate(180deg);
}

.tech-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.tech-acc-body p {
  margin: 0;
  padding: 14px 0 8px;
  border-top: 1px solid var(--line-gold-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: rgba(245, 241, 232, .72);
  line-height: 1.65;
}

.tech-acc-item[aria-expanded="true"] .tech-acc-body {
  max-height: 300px;
}
.tech-stamp {
  margin-top: 48px; display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid var(--line-gold-strong);
  padding: 14px 24px;
  font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   REALISATIONS
   ============================================================ */
.real-head { text-align: center; margin-bottom: 54px; }
.real-head h2 { margin-bottom: 12px; }
.real-head p { color: var(--slate); font-family: var(--serif); font-style: italic; font-size: 19px; margin: 0; }

.real-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .real-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .real-grid { grid-template-columns: 1fr; } }

.real-tile {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid var(--line-gold-soft);
  cursor: pointer;
}
.real-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.real-tile:hover img { transform: scale(1.05); }
.real-overlay {
  position: absolute; inset: 0; background: rgba(14,30,58,.78);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  opacity: 0; transition: opacity .35s ease;
  border: 1px solid var(--gold);
}
.real-tile:hover .real-overlay { opacity: 1; }
.real-overlay .cat {
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.real-overlay h3 {
  font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--cream);
  letter-spacing: .02em;
}
.real-cta { display: flex; justify-content: center; margin-top: 54px; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients { position: relative; background: var(--night); color: var(--cream); overflow: hidden; }
.clients-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1900&q=80");
  background-size: cover; background-position: center; opacity: .08;
}
.clients-inner { position: relative; z-index: 1; }
.clients-head { text-align: center; margin-bottom: 60px; }
.clients-head h2 { color: var(--cream); }
.clients-head .eyebrow { margin-bottom: 18px; display: block; }

/* Logo slider */
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos-slider-wrap {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-logos 32s linear infinite;
}

.logos-slider-track:hover { animation-play-state: paused; }

.logo-card {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.clients-quote {
  margin-top: 60px; text-align: center;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px); color: var(--cream);
  max-width: 780px; margin-left: auto; margin-right: auto; line-height: 1.4;
}
.clients-quote::before, .clients-quote::after {
  content: ""; display: block; width: 48px; height: 1px; background: var(--gold); margin: 18px auto;
}

/* ============================================================
   PARTENAIRES
   ============================================================ */
.partners { background: var(--night-deep); color: var(--cream); padding: 60px 0; }
.partners-eyebrow { text-align: center; display: block; margin-bottom: 28px; }
.partners-list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px 26px;
  max-width: 1000px; margin: 0 auto;
  font-family: var(--sans); font-size: 14px; color: var(--cream); font-weight: 400;
  letter-spacing: .04em;
}
.partners-list span { white-space: nowrap; }
.partners-list span + span::before { content: "·"; color: var(--gold); margin-right: 26px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-head { text-align: center; margin-bottom: 54px; }
.contact-head p { color: var(--slate); font-family: var(--serif); font-style: italic; font-size: 19px; margin: 14px 0 0; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.coords-card {
  background: var(--night); color: var(--cream);
  padding: 44px 38px;
  border: 1px solid var(--line-gold-strong);
  display: flex; flex-direction: column; gap: 26px;
  position: relative;
}
.coords-card::before, .coords-card::after {
  content: ""; position: absolute; width: 18px; height: 18px; border: 1px solid var(--gold);
}
.coords-card::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.coords-card::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.coords-card h3 {
  font-family: var(--serif); text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold); font-size: 18px; font-weight: 600;
  border-bottom: 1px solid var(--line-gold-soft); padding-bottom: 14px;
}
.coords-row { display: flex; gap: 14px; align-items: flex-start; }
.coords-row .ic {
  flex: 0 0 auto; width: 36px; height: 36px; border: 1px solid var(--line-gold-soft);
  display: inline-flex; align-items: center; justify-content: center; color: var(--gold);
  border-radius: 2px;
}
.coords-row .lbl { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.coords-row .val { display: block; color: var(--cream); font-size: 17px; line-height: 1.4; margin-top: 2px; }
.coords-row .val.tel { font-family: var(--serif); font-size: 26px; letter-spacing: .04em; }
.coords-note { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold); border-top: 1px solid var(--line-gold-soft); padding-top: 18px; }

.form-card { background: #fff; border: 1px solid var(--line-light); padding: 44px 38px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  border: 1px solid var(--line-light); background: #fff;
  padding: 14px; border-radius: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 18px; letter-spacing: .22em; font-size: 13px; margin-top: 6px; }
.form-rgpd { font-size: 11px; color: var(--slate); margin-top: 14px; line-height: 1.5; }
.form-success {
  display: none; padding: 16px; background: rgba(201,169,97,.12);
  border: 1px solid var(--gold); color: var(--night);
  font-family: var(--serif); font-style: italic; font-size: 17px;
  margin-top: 18px; text-align: center;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--night-deep); color: var(--cream); padding: 80px 0 30px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-gold-soft);
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand { display: flex; flex-direction: column; gap: 14px; }
.foot-brand .b-mark { font-family: var(--serif); font-weight: 700; font-size: 36px; letter-spacing: .06em; color: var(--cream); }
.foot-brand .b-sub { font-family: var(--serif); font-style: italic; font-size: 13px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.foot-tag {
  font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 16px;
  border-left: 1px solid var(--line-gold-soft); padding-left: 14px; margin-top: 8px; line-height: 1.5;
}
.foot-col h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.foot-col ul li { padding: 6px 0; font-size: 14px; color: var(--cream); }
.foot-col ul li a:hover { color: var(--gold); }
.foot-col address { font-style: normal; font-size: 14px; line-height: 1.7; color: var(--cream); }
.foot-col address a { color: var(--gold); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
  font-size: 12px; color: rgba(245,241,232,.6);
}
.foot-bottom-mid { display: flex; gap: 18px; }
.foot-bottom-mid a:hover { color: var(--gold); }
.foot-certs { display: flex; gap: 14px; align-items: center; }
.foot-certs .cert { font-size: 10px; color: rgba(245,241,232,.6); }
.foot-certs .cert-mark { border-color: var(--gold); color: var(--gold); font-size: 10px; width: 24px; height: 24px; }

.center { text-align: center; }

/* ============================================================
   ZOOM PARALLAX — RÉALISATIONS
   ============================================================ */
.zoom-parallax-container {
  position: relative;
  height: 300vh;
}
.zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--night-deep);
}
.zoom-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.zoom-layer > div {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
/* Layer 0 — centre */
.zoom-layer-0 > div { width: 25vw; height: 25vh; }
/* Layer 1 — haut droite */
.zoom-layer-1 > div { width: 35vw; height: 30vh; top: -30vh; left: 5vw; }
/* Layer 2 — haut gauche */
.zoom-layer-2 > div { width: 20vw; height: 45vh; top: -10vh; left: -25vw; }
/* Layer 3 — droite */
.zoom-layer-3 > div { width: 25vw; height: 25vh; left: 27.5vw; }
/* Layer 4 — bas droite */
.zoom-layer-4 > div { width: 20vw; height: 25vh; top: 27.5vh; left: 5vw; }
/* Layer 5 — bas gauche */
.zoom-layer-5 > div { width: 30vw; height: 25vh; top: 27.5vh; left: -22.5vw; }
/* Layer 6 — bas droite extrême */
.zoom-layer-6 > div { width: 15vw; height: 15vh; top: 22.5vh; left: 25vw; }

.zoom-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}
/* ===== FIX MOBILE — Section contact + slider ===== */

/* 1. Forcer la grille à respecter son conteneur */
.contact-grid {
  width: 100%;
  min-width: 0;
}

/* 2. Empêcher les flex-children (coords-row) de pousser leur parent */
.coords-card,
.form-card {
  min-width: 0;
}

.coords-row {
  min-width: 0;
}
.coords-row > div {
  min-width: 0;
  flex: 1;
}

/* 3. Sur petit écran, réduire le téléphone qui force la largeur */
@media (max-width: 600px) {
  .coords-row .val.tel {
    font-size: 22px;
    letter-spacing: .02em;
    word-break: break-word;
  }
}

/* 4. Verrouiller le slider de logos pour qu'il n'élargisse pas le document */
.clients,
.logos-slider-wrap {
  max-width: 100vw;
}

/* ===== ACCORDÉONS — lisibilité desktop ===== */
@media (min-width: 769px) {
  /* Domaines d'intervention : fond clair (--cream-2) */
  .dom-body p {
    font-size: 17px;
    color: var(--ink);
    line-height: 1.78;
  }

  /* Le + Technal : fond sombre (--night-deep) */
  .tech-acc-body p {
    font-size: clamp(16px, 1.6vw, 20px);
    color: rgba(245, 241, 232, .90);
    line-height: 1.78;
  }
}