/* =====================================================================
   PARCELLIUM — Feuille de style
   Palette : bleu nuit · or · crème  |  Serif Playfair + Sans Inter
   ===================================================================== */

:root {
  /* Couleurs */
  --navy:        #15223f;
  --navy-deep:   #0d1730;
  --navy-soft:   #1d2c4d;
  --gold:        #c0934c;
  --gold-light:  #d6b272;
  --cream:       #f4ede0;
  --cream-deep:  #ece2d1;
  --card:        #fbf8f2;
  --ink:         #1b2742;
  --ink-soft:    #5b6178;
  --mist:        #b7c0d4;
  --mist-dim:    #8a93ab;
  --line-light:  rgba(255, 255, 255, 0.14);
  --line-dark:   rgba(27, 39, 66, 0.14);

  /* Typo */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Mesure */
  --container: 1180px;
  --radius: 4px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);

  --shadow-sm: 0 1px 2px rgba(13, 23, 48, 0.06);
  --shadow-md: 0 18px 50px -28px rgba(13, 23, 48, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --------------------------- Utilitaires -------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--dark { color: var(--gold); }

/* ----------------------------- Boutons ---------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #1a1407; }
.btn--gold:hover { --btn-bg: var(--gold-light); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line-light);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255,255,255,0.4); }

.btn--dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-dark);
}
.btn--dark:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(13, 23, 48, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.7);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--cream); flex: none; }
.brand__emblem { color: var(--gold); width: 50px; flex: none; }
.brand__emblem svg { width: 100%; height: auto; }
.brand__word {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.brand__img { height: 96px; width: 132px; object-fit: cover; object-position: center; max-width: none; display: block; }
.brand-footer-logo { width: 150px; aspect-ratio: 166 / 78; background: url(../assets/logo-parcellium.svg) no-repeat 51.8% 41.2% / 202.4% auto; display: block; }
.brand-lockup__img { width: clamp(230px, 38vw, 320px); aspect-ratio: 166 / 78; background: url(../assets/logo-parcellium.svg) no-repeat 51.8% 41.2% / 202.4% auto; display: block; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mist);
  transition: color 0.2s var(--ease);
}
.nav > a:hover { color: #fff; }
.nav__cta { color: #1a1407 !important; }

.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }

/* --------------------------- Sections ----------------------------- */
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }
.section--navy { background: var(--navy); color: #fff; position: relative; overflow: hidden; }

/* texture diagonale subtile sur fond navy */
.section--navy::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url(../assets/skyline.svg),
    repeating-linear-gradient(
      118deg,
      transparent 0,
      transparent 46px,
      rgba(255, 255, 255, 0.022) 46px,
      rgba(255, 255, 255, 0.022) 47px
    );
  background-repeat: repeat-x, repeat;
  background-position: bottom, 0 0;
  background-size: auto 190px, auto;
  pointer-events: none;
}

.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section__title--light { color: #fff; }
.section__lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 60ch;
}
.section--navy .section__lead { color: var(--mist); }

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 540px at 78% -8%, rgba(192, 147, 76, 0.16), transparent 60%),
    var(--navy);
  padding-block: clamp(70px, 11vw, 138px);
}
.hero > .container { position: relative; z-index: 1; }
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.hero__lead {
  margin-top: 26px;
  color: var(--mist);
  font-size: 1.12rem;
  max-width: 56ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.feature-row {
  margin-top: clamp(48px, 7vw, 78px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 36px);
}
.feature { padding-top: 22px; border-top: 2px solid var(--gold); }
.feature__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.28rem;
  color: #fff;
  margin-bottom: 6px;
}
.feature__text { color: var(--mist-dim); font-size: 0.96rem; }

/* ----------------- Grille numérotée (Pourquoi) -------------------- */
.num-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.num-card {
  background: var(--card);
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 22px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.num-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.num-card__no {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.num-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.num-card__text { color: var(--ink-soft); font-size: 0.94rem; }

/* ----------------------- Biens recherchés ------------------------- */
.biens__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.biens__lead { margin-top: 18px; color: var(--mist); font-size: 1.06rem; max-width: 48ch; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-cloud li {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.03);
  color: #e8ecf5;
  padding: 11px 18px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.tag-cloud li:hover { border-color: var(--gold); color: #fff; background: rgba(192, 147, 76, 0.12); }

/* --------------------------- Opérations --------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: clamp(36px, 5vw, 54px);
}
.stat {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  border-left: 2px solid var(--gold);
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
}
.stat__label { display: block; margin-top: 8px; font-size: 0.85rem; color: var(--mist); }

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
}
.op-card {
  background: var(--card);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.op-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.op-card__bar { display: block; width: 46px; height: 3px; background: var(--gold); border-radius: 3px; margin-bottom: 18px; }
.op-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--ink);
  line-height: 1.2;
}
.op-card__title span { color: var(--gold); font-size: 0.9em; }
.op-card__type { margin-top: 6px; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.op-card__note { margin-top: 8px; color: var(--ink-soft); font-size: 0.9rem; }

/* ---------------------------- Process ----------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 34px); counter-reset: step; }
.step { position: relative; padding-top: 30px; border-top: 1px solid var(--line-dark); }
.step__no {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.step__title { font-family: var(--serif); font-weight: 600; font-size: 1.16rem; color: var(--ink); margin-bottom: 6px; }
.step__text { color: var(--ink-soft); font-size: 0.94rem; }

/* --------------------------- À propos ----------------------------- */
.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.about__lead { margin-top: 18px; color: var(--mist); font-size: 1.08rem; }
.about__sign { margin-top: 18px; color: var(--mist-dim); font-size: 0.98rem; }
.about__sign strong { color: #fff; }
.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pillar {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.02);
}
.pillar h3 { font-family: var(--serif); font-weight: 600; color: var(--gold-light); font-size: 1.1rem; margin-bottom: 6px; }
.pillar p { color: var(--mist); font-size: 0.9rem; }

/* ---------------------------- Contact ----------------------------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: clamp(28px, 4vw, 40px);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.contact-card__head {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}
.contact-card__name { font-weight: 600; font-size: 1.08rem; }
.contact-card__role { color: var(--mist); font-size: 0.9rem; margin-bottom: 22px; }
.contact-card__photo { width: clamp(150px, 48%, 190px); height: auto; border-radius: 10px; display: block; margin: 4px 0 20px; box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.7); }
.contact-card__list { display: grid; gap: 16px; }
.contact-card__list dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--mist-dim); margin-bottom: 3px; }
.contact-card__list dd { font-size: 1rem; }
.contact-card__list a { color: #fff; transition: color 0.2s var(--ease); }
.contact-card__list a:hover { color: var(--gold-light); }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--navy-deep); color: var(--mist); padding-top: clamp(54px, 7vw, 80px); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: 44px;
}
.brand--footer { color: var(--cream); }
.footer__tag { margin-top: 16px; max-width: 36ch; font-size: 0.92rem; color: var(--mist-dim); }
.footer__tag em { display: inline-block; color: var(--gold-light); font-style: italic; font-size: 1.06rem; margin-bottom: 4px; }
.footer__nav { display: grid; gap: 12px; }
.footer__nav a { font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: #fff; }
.footer__contact { display: grid; gap: 10px; font-size: 0.94rem; }
.footer__contact a { transition: color 0.2s var(--ease); }
.footer__contact a:hover { color: var(--gold-light); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid var(--line-light);
  font-size: 0.82rem;
  color: var(--mist-dim);
}

/* --------------------------- Révélations -------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.num-grid .reveal:nth-child(2), .ops-grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: 0.06s; }
.num-grid .reveal:nth-child(3), .ops-grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 0.12s; }
.num-grid .reveal:nth-child(4), .ops-grid .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: 0.18s; }
.num-grid .reveal:nth-child(5), .ops-grid .reveal:nth-child(5) { transition-delay: 0.24s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .num-grid .num-card:last-child { grid-column: 1 / -1; }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .biens__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__inner { gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-deep);
    padding: 12px var(--gutter) 26px;
    border-top: 1px solid var(--line-light);
    box-shadow: 0 24px 40px -20px rgba(0,0,0,0.7);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
  }
  .nav.is-open { transform: translateY(0); }
  .nav > a { padding: 15px 4px; border-bottom: 1px solid var(--line-light); font-size: 1rem; }
  .nav__cta { margin-top: 16px; border-bottom: none !important; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .feature-row { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 540px) {
  .num-grid, .ops-grid, .stats, .steps, .about__pillars { grid-template-columns: 1fr; }
  .num-grid .num-card:last-child { grid-column: auto; }
  .footer__inner { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions .btn, .contact__actions .btn { width: 100%; }
}

/* =====================================================================
   COMPOSANTS AJOUTÉS (preuve, SEO, formulaire, études de cas)
   ===================================================================== */

/* ------------------------- Chiffres clés -------------------------- */
.kpi-band { padding-block: clamp(34px, 5vw, 56px); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 36px); text-align: center; }
.kpi { display: flex; flex-direction: column; gap: 8px; }
.kpi__num { font-family: var(--serif); font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--ink); line-height: 1; }
.kpi__label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

/* --------------------- Études de cas / opérations ----------------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
.case {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: flex; align-items: center; justify-content: center;
}
.case__media::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(118deg, transparent 0, transparent 22px, rgba(255,255,255,0.03) 22px, rgba(255,255,255,0.03) 23px);
}
.case__media span {
  position: relative; z-index: 1;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist-dim); border: 1px solid var(--line-light);
  padding: 6px 13px; border-radius: 30px;
}
.case__media[data-badge]::after {
  content: attr(data-badge);
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--gold); color: #1a1407; font-weight: 700; font-size: 0.78rem;
  padding: 4px 10px; border-radius: 4px;
}
.case__body { display: flex; flex-direction: column; gap: 8px; padding: 22px 22px 24px; flex: 1; }
.case__title { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--ink); line-height: 1.2; }
.case__title span { color: var(--gold); font-size: 0.85em; }
.case__type { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.case__text { color: var(--ink-soft); font-size: 0.92rem; }
.case__facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 14px; }
.case__facts li { background: var(--cream-deep); border-radius: 30px; padding: 5px 12px; font-size: 0.8rem; color: var(--ink); }
.case__facts strong { color: var(--gold); }
.case__more { margin-top: auto; padding-top: 14px; font-size: 0.85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s var(--ease); }
.case:hover .case__more { gap: 11px; }

/* --------------------------- Témoignages -------------------------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
.quote {
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-light);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.quote::before { content: "\201C"; font-family: var(--serif); font-size: 3.2rem; line-height: 0.6; color: var(--gold); opacity: 0.55; }
.quote blockquote { color: #e8ecf5; font-size: 1.0rem; line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote__logo { flex: none; height: 46px; background: #fff; border-radius: 8px; padding: 7px 12px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 5px 16px -7px rgba(0, 0, 0, 0.55); }
.quote__logo img { height: 100%; width: auto; max-width: 140px; object-fit: contain; display: block; }
.quote__who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.quote__name { font-weight: 600; color: #fff; }
.quote__role { color: var(--mist-dim); font-size: 0.85rem; }
.testimonials__note { margin-top: 24px; font-size: 0.8rem; font-style: italic; color: var(--mist-dim); }

/* ---------------------------- Partenaires ------------------------- */
.section__head--center { max-width: 680px; margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.logo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: center; }
.logo-slot {
  display: flex; align-items: center; justify-content: center; text-align: center;
  height: 108px; padding: 18px 22px;
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius);
}
.logo-slot img { max-height: 72px; max-width: 90%; object-fit: contain; }
.logo-fallback { display: none; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.partners__note { margin-top: 22px; text-align: center; font-size: 0.82rem; font-style: italic; color: var(--ink-soft); }

/* ------------------------------- FAQ ------------------------------ */
.faq__inner { max-width: 840px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 20px 58px 20px 22px;
  font-weight: 600; font-size: 1.04rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; line-height: 1; color: var(--gold); font-weight: 400;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item__a { padding: 0 22px 20px; }
.faq-item__a p { color: var(--ink-soft); max-width: 70ch; }

/* --------------------------- Formulaire --------------------------- */
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; margin-top: 30px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192, 147, 76, 0.18);
}
.field textarea { resize: vertical; min-height: 112px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.field--check .check { flex-direction: row; align-items: flex-start; gap: 10px; }
.check { display: flex; cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--gold); }
.check span { font-size: 0.9rem; color: var(--ink-soft); }
.form-status { margin-top: 12px; font-size: 0.9rem; min-height: 1.2em; }
.form-status.is-ok { color: #1f7a4d; font-weight: 500; }
.form-status.is-err { color: #b3402f; font-weight: 500; }
.lead-form .btn { margin-top: 4px; }

.contact-card__reassure { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-light); font-size: 0.82rem; letter-spacing: 0.02em; color: var(--mist-dim); }

/* ----------------------------- Réseaux ---------------------------- */
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-light); border-radius: 50%; color: var(--mist);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.socials a:hover { color: #fff; border-color: var(--gold); background: rgba(192, 147, 76, 0.12); }

/* ----------------------- Bandeau logo (marque) ------------------- */
.brand-band { position: relative; overflow: hidden; }
.brand-lockup { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.brand-lockup__emblem { width: 132px; }
.brand-lockup__emblem svg { width: 100%; height: auto; display: block; }
.brand-lockup__word { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); line-height: 1.1; }
.brand-lockup__sub { margin-top: 4px; font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--mist); }
.brand-lockup__slogan { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--gold); margin-top: 14px; }

/* --------------------------- Pages légales ------------------------ */
.legal-main { padding: clamp(44px, 8vw, 92px) 0; background: var(--cream); }
.legal { max-width: 768px; }
.legal h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 5vw, 2.9rem); color: var(--navy); line-height: 1.12; }
.legal__updated { color: var(--navy-soft); font-size: 0.9rem; margin: 6px 0 30px; }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: 1.34rem; color: var(--navy); margin: 36px 0 12px; }
.legal p, .legal li { color: #2c3344; line-height: 1.75; margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 1.25em; }
.legal li { margin-bottom: 8px; }
.legal a { color: #9a7038; text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--navy); }
.legal-todo { background: #fff3cd; color: #8a4b00; font-weight: 600; padding: 1px 7px; border-radius: 4px; border: 1px dashed #d9a441; }

/* photos d'opérations dans les études de cas */
.case__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.case__media[data-badge]::after { z-index: 2; }

/* --------------------- Responsive (composants) -------------------- */
@media (max-width: 980px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .cases { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 620px) {
  .lead-form { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
}
