/* ═══════════════════════════════════════════════════════════
   DES PROJETS, UN CRÉDIT
   Belle Époque Bruxelloise
   Marcellus + Fraunces + Outfit
   Ivoire · Bleu Nuit · Or Royal
   ─────────────────────────────────────────────────────────
   Art Nouveau de Bruxelles. Avenue Louise.
   Lumineux, symétrique, doré. L'opposé du minimalisme sombre.
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400;1,9..144,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Palette Belle Époque ── */
  --ivoire:     #f8f5ee;
  --ivoire-2:   #f1ece1;
  --ivoire-3:   #e8e1d2;
  --creme:      #fdfbf6;
  --blanc:      #ffffff;
  --nuit:       #1a2456;
  --nuit-2:     #232f6b;
  --nuit-3:     #141b40;
  --nuit-clair: #2e3a78;
  --ardoise:    #4a5278;
  --encre:      #21253a;
  --gris:       #6e6f78;
  --gris-clair: #a8a6a0;

  /* Or royal */
  --or:         #c9a24b;
  --or-clair:   #ddbd6e;
  --or-fonce:   #a07f2e;
  --or-pale:    rgba(201,162,75,.1);
  --or-bord:    rgba(201,162,75,.3);

  /* Drapeau belge (micro-accents) */
  --be-noir:    #1a1a1a;
  --be-jaune:   #f4c025;
  --be-rouge:   #d4202a;

  /* ── Typographie ── */
  --ff-titre:  'Marcellus', 'Trajan Pro', Georgia, serif;
  --ff-italic: 'Fraunces', Georgia, serif;
  --ff-corps:  'Outfit', system-ui, sans-serif;

  /* ── Géométrie ── */
  --r:   2px;
  --r2:  4px;
  --max: 1160px;
  --max-sm: 800px;

  --ombre:    0 4px 30px rgba(26,36,86,.08);
  --ombre-md: 0 12px 48px rgba(26,36,86,.12);
  --ombre-lg: 0 24px 72px rgba(26,36,86,.16);

  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-corps);
  color: var(--encre);
  background: var(--ivoire);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
ul { list-style: none; }

.wrap    { max-width: var(--max);    margin: 0 auto; padding: 0 40px; }
.wrap-sm { max-width: var(--max-sm); margin: 0 auto; padding: 0 40px; }

/* ═══════════════════════════════════════════════════════════
   ORNEMENT ART NOUVEAU — séparateur doré
═══════════════════════════════════════════════════════════ */
.ornement {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 0 auto;
}
.ornement::before, .ornement::after {
  content: ''; height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--or));
}
.ornement::after { background: linear-gradient(90deg, var(--or), transparent); }
.ornement-losange { width: 6px; height: 6px; background: var(--or); transform: rotate(45deg); }

/* ═══════════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--nuit);
  color: rgba(255,255,255,.55);
  font-family: var(--ff-corps); font-size: .73rem; font-weight: 400;
  letter-spacing: .04em; padding: .55rem 0;
}
.tb-in { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.topbar a { color: rgba(255,255,255,.65); }
.topbar a:hover { color: var(--or-clair); }
.tb-gauche { display: flex; align-items: center; gap: .5rem; }
.tb-droite { display: flex; gap: 1.75rem; align-items: center; }
.tb-droite span { display: flex; align-items: center; gap: .35rem; }
.be-flag { display: inline-flex; gap: 1.5px; }
.be-flag i { width: 4px; height: 11px; border-radius: 1px; display: inline-block; }

/* ═══════════════════════════════════════════════════════════
   HEADER — centré, élégant
═══════════════════════════════════════════════════════════ */
.header {
  background: var(--creme);
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid var(--or-bord);
  box-shadow: 0 1px 0 rgba(201,162,75,.1);
}
.hd-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; gap: 2rem;
}
.logo img { height: 68px; width: auto; }

/* Nav */
.nav { display: flex; align-items: center; }
.nav a {
  font-family: var(--ff-corps); font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ardoise);
  padding: .5rem 1rem; transition: color .25s; position: relative; white-space: nowrap;
}
.nav a:hover, .nav a.actif { color: var(--nuit); }
.nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--or); transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.actif::after { width: calc(100% - 2rem); }
.nav-dd { position: relative; }
.nav-dd > a span { font-size: .55rem; opacity: .6; }
.dd {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--creme); border: 1px solid var(--or-bord); border-radius: var(--r2);
  min-width: 230px; padding: .75rem 0; box-shadow: var(--ombre-lg);
  opacity: 0; pointer-events: none; transition: all .25s var(--ease); z-index: 200;
}
.dd::before {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px; background: var(--creme); border-left: 1px solid var(--or-bord); border-top: 1px solid var(--or-bord);
}
.nav-dd:hover .dd { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dd a {
  display: block; padding: .6rem 1.4rem; text-align: center;
  font-size: .76rem; font-weight: 500; letter-spacing: .04em; color: var(--ardoise);
  text-transform: none;
}
.dd a:hover { color: var(--or-fonce); background: var(--or-pale); }
.dd a::after { display: none; }
.hd-cta { display: flex; align-items: center; gap: 1rem; }

/* ═══════════════════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-corps); font-size: .76rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all .28s var(--ease); white-space: nowrap;
}
.btn-nuit { background: var(--nuit); color: var(--ivoire); padding: .8rem 1.8rem; border-radius: var(--r); }
.btn-nuit:hover { background: var(--nuit-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,36,86,.25); }
.btn-or {
  background: var(--or); color: var(--nuit); padding: .8rem 1.8rem; border-radius: var(--r);
  position: relative; overflow: hidden;
}
.btn-or:hover { background: var(--or-clair); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,75,.35); }
.btn-ol { background: transparent; border: 1px solid var(--nuit); color: var(--nuit); padding: .78rem 1.75rem; border-radius: var(--r); }
.btn-ol:hover { background: var(--nuit); color: var(--ivoire); }
.btn-ol-or { background: transparent; border: 1px solid var(--or); color: var(--or-fonce); padding: .78rem 1.75rem; border-radius: var(--r); }
.btn-ol-or:hover { background: var(--or); color: var(--nuit); }
.btn-ol-lt { background: transparent; border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85); padding: .78rem 1.75rem; border-radius: var(--r); }
.btn-ol-lt:hover { border-color: var(--or-clair); color: var(--or-clair); }
.btn-lg { padding: .95rem 2.4rem; font-size: .82rem; }
.btn-sm { padding: .45rem 1rem; font-size: .7rem; }
.btn-bloc { width: 100%; justify-content: center; }

/* Mobile */
.mob-b { display: none; background: none; border: none; cursor: pointer; color: var(--nuit); font-size: 1.4rem; padding: .3rem; }
.mob-m {
  display: none; position: fixed; inset: 88px 0 0 0; z-index: 850;
  background: var(--creme); flex-direction: column; border-top: 2px solid var(--or);
  overflow-y: auto;
}
.mob-m.actif { display: flex; }
.mob-m > a {
  display: block; padding: 1rem 1.5rem; text-align: center;
  font-family: var(--ff-corps); font-size: .8rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ardoise);
  border-bottom: 1px solid var(--ivoire-3);
}
.mob-m > a:hover { color: var(--nuit); background: var(--or-pale); }
.mob-contact { background: var(--nuit); padding: 1.5rem; margin-top: auto; text-align: center; }
.mob-contact-l { font-family: var(--ff-titre); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--or-clair); margin-bottom: .75rem; }
.mob-contact a { display: block; color: rgba(255,255,255,.65)!important; font-size: .85rem; padding: .45rem 0!important; }
.mob-contact a:hover { color: var(--or-clair)!important; }

/* ═══════════════════════════════════════════════════════════
   BANDEAU CONFORMITÉ
═══════════════════════════════════════════════════════════ */
.conf-bar {
  background: var(--ivoire-2);
  border-top: 1px solid var(--or-bord);
  border-bottom: 1px solid var(--or-bord);
  padding: .85rem 0;
}
.conf-in { display: flex; align-items: flex-start; gap: .85rem; }
.conf-sceau {
  font-family: var(--ff-titre); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--nuit); color: var(--or-clair); padding: .25rem .6rem; border-radius: 2px;
  flex-shrink: 0; margin-top: 1px;
}
.conf-bar p { font-size: .73rem; color: var(--gris); line-height: 1.6; }
.conf-bar strong { color: var(--nuit); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   HERO — symétrique, centré, lumineux
═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--creme);
  position: relative; overflow: hidden;
  padding: 88px 0 0;
}
/* Filigrane couronne */
.hero-couronne {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  font-size: 30rem; color: var(--or); opacity: .03; pointer-events: none; z-index: 0;
  font-family: var(--ff-titre); line-height: 1;
}
/* Cadre Art Nouveau */
.hero-cadre {
  position: relative; z-index: 1;
  text-align: center;
  padding: 80px 0 90px;
  max-width: 860px; margin: 0 auto;
}
.hero-surtitre {
  display: inline-flex; align-items: center; gap: .85rem;
  font-family: var(--ff-corps); font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--or-fonce);
  margin-bottom: 2rem;
}
.hero-surtitre::before, .hero-surtitre::after {
  content: ''; width: 36px; height: 1px; background: var(--or);
}
.hero h1 {
  font-family: var(--ff-titre); font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  color: var(--nuit); line-height: 1.1; letter-spacing: .01em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-family: var(--ff-italic); font-style: italic; font-weight: 300;
  color: var(--or-fonce);
}
.hero-devise {
  font-family: var(--ff-italic); font-style: italic; font-weight: 300;
  font-size: 1.25rem; color: var(--ardoise); margin-bottom: 1.5rem;
}
.hero-texte {
  font-family: var(--ff-corps); font-size: 1.02rem; font-weight: 300;
  color: var(--gris); line-height: 1.85; max-width: 560px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
/* Bande de stats sous le hero */
.hero-stats {
  display: flex; justify-content: center; gap: 0;
  border-top: 1px solid var(--or-bord);
  max-width: 720px; margin: 0 auto;
}
.hs-item { padding: 2rem 2.5rem; text-align: center; border-right: 1px solid var(--or-bord); }
.hs-item:last-child { border-right: none; }
.hs-num { font-family: var(--ff-titre); font-size: 2.2rem; color: var(--nuit); line-height: 1; }
.hs-num em { font-family: var(--ff-italic); font-style: italic; color: var(--or-fonce); }
.hs-lib { font-family: var(--ff-corps); font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gris-clair); margin-top: .5rem; }

/* Bandeau §exemple sous hero */
.hero-legal {
  background: var(--nuit); color: rgba(255,255,255,.5);
  padding: .9rem 0;
}
.hero-legal p { font-size: .72rem; line-height: 1.55; text-align: center; }
.hero-legal strong { color: var(--or-clair); }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.s-ivoire { background: var(--ivoire); }
.s-creme  { background: var(--creme); }
.s-nuit   { background: var(--nuit); }
.s-blanc  { background: var(--blanc); }

/* En-tête de section centré */
.sec-tete { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.sec-sur {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--ff-corps); font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--or-fonce);
  margin-bottom: 1rem;
}
.sec-sur::before, .sec-sur::after { content: ''; width: 24px; height: 1px; background: var(--or); }
h2.sec-titre {
  font-family: var(--ff-titre); font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  color: var(--nuit); line-height: 1.15; letter-spacing: .01em;
}
.s-nuit h2.sec-titre { color: var(--ivoire); }
h2.sec-titre em { font-family: var(--ff-italic); font-style: italic; color: var(--or-fonce); }
.s-nuit h2.sec-titre em { color: var(--or-clair); }
.sec-desc { font-family: var(--ff-corps); font-size: .97rem; font-weight: 300; color: var(--gris); line-height: 1.85; margin-top: 1rem; }
.s-nuit .sec-desc { color: rgba(248,245,238,.55); }

/* ═══════════════════════════════════════════════════════════
   SERVICES — cartes blasonnées
═══════════════════════════════════════════════════════════ */
.serv-grille { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.serv-carte {
  background: var(--creme); border: 1px solid var(--ivoire-3);
  border-radius: var(--r2); padding: 2.25rem 2rem;
  text-align: center; transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.serv-carte::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0); transition: transform .35s var(--ease);
}
.serv-carte:hover { border-color: var(--or-bord); box-shadow: var(--ombre-md); transform: translateY(-4px); }
.serv-carte:hover::before { transform: scaleX(1); }
.serv-num {
  font-family: var(--ff-italic); font-style: italic; font-weight: 300;
  font-size: 1.1rem; color: var(--or); margin-bottom: 1rem;
}
.serv-titre { font-family: var(--ff-titre); font-size: 1.25rem; color: var(--nuit); margin-bottom: .75rem; letter-spacing: .01em; }
.serv-desc { font-family: var(--ff-corps); font-size: .86rem; font-weight: 300; color: var(--gris); line-height: 1.75; margin-bottom: 1.25rem; }
.serv-lien {
  font-family: var(--ff-corps); font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--or-fonce);
  display: inline-flex; align-items: center; gap: 6px; transition: gap .25s;
}
.serv-carte:hover .serv-lien { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   PROCESSUS — frise centrée
═══════════════════════════════════════════════════════════ */
.proc-frise { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.proc-frise::before {
  content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(90deg, var(--or-bord), var(--or), var(--or-bord));
}
.proc-et { text-align: center; position: relative; z-index: 1; }
.proc-cercle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--creme); border: 1px solid var(--or);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-titre); font-size: 1.3rem; color: var(--nuit);
  box-shadow: 0 0 0 6px var(--ivoire);
  transition: all .3s var(--ease);
}
.proc-et:hover .proc-cercle { background: var(--nuit); color: var(--or-clair); border-color: var(--nuit); }
.proc-titre { font-family: var(--ff-titre); font-size: 1.05rem; color: var(--nuit); margin-bottom: .5rem; }
.proc-txt { font-family: var(--ff-corps); font-size: .84rem; font-weight: 300; color: var(--gris); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   EXEMPLE REPRÉSENTATIF — parchemin doré
═══════════════════════════════════════════════════════════ */
.ex-cadre {
  background: var(--creme);
  border: 1px solid var(--or-bord);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--ombre);
}
.ex-tete {
  background: var(--nuit); padding: 1.4rem 2rem; text-align: center;
  position: relative;
}
.ex-tete::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 2px; background: var(--or);
}
.ex-tete-titre { font-family: var(--ff-titre); font-size: 1.15rem; color: var(--ivoire); letter-spacing: .03em; }
.ex-tete-ref { font-family: var(--ff-corps); font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--or-clair); margin-top: .3rem; }
.ex-grille { display: grid; grid-template-columns: repeat(3,1fr); }
.ex-case {
  padding: 1.5rem; text-align: center;
  border-right: 1px solid var(--ivoire-3); border-bottom: 1px solid var(--ivoire-3);
}
.ex-case:nth-child(3n) { border-right: none; }
.ex-case:nth-last-child(-n+3) { border-bottom: none; }
.ex-case-lib { font-family: var(--ff-corps); font-size: .64rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--gris-clair); margin-bottom: .5rem; }
.ex-case-val { font-family: var(--ff-titre); font-size: 1.4rem; color: var(--nuit); line-height: 1; }
.ex-case.phare { background: var(--or-pale); }
.ex-case.phare .ex-case-val { color: var(--or-fonce); font-size: 1.7rem; }
.ex-pied {
  background: var(--ivoire-2); padding: 1rem 2rem; text-align: center;
  font-family: var(--ff-corps); font-size: .72rem; font-weight: 300; color: var(--gris); line-height: 1.7; font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   CALCULATEUR
═══════════════════════════════════════════════════════════ */
.calc-cadre {
  background: var(--creme); border: 1px solid var(--or-bord);
  border-radius: var(--r2); padding: 2.5rem; box-shadow: var(--ombre-md);
}
.calc-tete {
  font-family: var(--ff-titre); font-size: 1.3rem; color: var(--nuit);
  text-align: center; margin-bottom: 2rem; letter-spacing: .02em;
}
.calc-champ { margin-bottom: 1.5rem; }
.calc-champ label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--ff-corps); font-size: .72rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ardoise); margin-bottom: .6rem;
}
.calc-v { font-family: var(--ff-titre); font-size: 1.1rem; color: var(--nuit); text-transform: none; letter-spacing: 0; }
input[type=range] { width: 100%; accent-color: var(--or); height: 3px; cursor: pointer; }
.calc-res {
  background: var(--nuit); border-radius: var(--r2);
  padding: 1.5rem; margin-top: 1.5rem;
}
.calc-r {
  display: flex; justify-content: space-between; align-items: center;
  padding: .45rem 0; font-family: var(--ff-corps); font-size: .82rem; font-weight: 300;
  color: rgba(255,255,255,.55); border-bottom: 1px solid rgba(255,255,255,.07);
}
.calc-r:last-child { border-bottom: none; }
.calc-r .cl { letter-spacing: .03em; }
.calc-r .cv { font-family: var(--ff-titre); color: var(--ivoire); font-size: 1rem; }
.calc-r.total { border-top: 1px solid rgba(255,255,255,.12); margin-top: .5rem; padding-top: .85rem; }
.calc-r.total .cv { color: var(--or-clair); font-size: 1.25rem; }

/* ═══════════════════════════════════════════════════════════
   STATISTIQUES
═══════════════════════════════════════════════════════════ */
.stat-rangee {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--nuit); border-radius: var(--r2); overflow: hidden;
}
.stat-c { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat-c:last-child { border-right: none; }
.stat-n { font-family: var(--ff-titre); font-size: clamp(2rem,3.5vw,2.8rem); color: var(--ivoire); line-height: 1; }
.stat-n em { font-family: var(--ff-italic); font-style: italic; color: var(--or-clair); }
.stat-l { font-family: var(--ff-corps); font-size: .66rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(248,245,238,.4); margin-top: .6rem; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-l { border-bottom: 1px solid var(--ivoire-3); }
.faq-l:first-child { border-top: 1px solid var(--ivoire-3); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer; user-select: none; transition: color .25s;
}
.faq-q:hover { color: var(--or-fonce); }
.faq-q-t { font-family: var(--ff-titre); font-size: 1.05rem; color: var(--nuit); line-height: 1.3; letter-spacing: .01em; }
.faq-q:hover .faq-q-t { color: var(--or-fonce); }
.faq-ic {
  width: 28px; height: 28px; border: 1px solid var(--or-bord); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: 1.5rem;
  font-family: var(--ff-titre); font-size: .9rem; color: var(--or-fonce); transition: all .3s var(--ease);
}
.faq-l.ouvert .faq-ic { background: var(--or); color: var(--nuit); border-color: var(--or); transform: rotate(135deg); }
.faq-a { display: none; padding: 0 0 1.4rem; font-family: var(--ff-corps); font-size: .9rem; font-weight: 300; color: var(--gris); line-height: 1.85; max-width: 720px; }
.faq-a a { color: var(--or-fonce); text-decoration: underline; }
.faq-l.ouvert .faq-a { display: block; }

/* ═══════════════════════════════════════════════════════════
   FORMULAIRES
═══════════════════════════════════════════════════════════ */
.form-cadre {
  background: var(--creme); border: 1px solid var(--or-bord);
  border-radius: var(--r2); overflow: hidden; box-shadow: var(--ombre-md);
}
.form-tete {
  background: var(--nuit); padding: 1.5rem 2rem; text-align: center;
  position: relative;
}
.form-tete::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px; background: var(--or);
}
.form-tete h3 { font-family: var(--ff-titre); font-size: 1.3rem; color: var(--ivoire); letter-spacing: .02em; }
.form-corps { padding: 2.25rem; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.ff { display: flex; flex-direction: column; gap: .4rem; }
.ff.plein { grid-column: 1 / -1; }
.ff label {
  font-family: var(--ff-corps); font-size: .65rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ardoise);
}
.ff input, .ff select, .ff textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1px solid var(--ivoire-3); border-radius: var(--r);
  font-family: var(--ff-corps); font-size: .92rem; font-weight: 300; color: var(--encre);
  background: var(--blanc); transition: border-color .25s;
}
.ff input:focus, .ff select:focus, .ff textarea:focus {
  outline: none; border-color: var(--or); box-shadow: 0 0 0 3px var(--or-pale);
}
.ff textarea { resize: vertical; min-height: 110px; }
.f-sep {
  font-family: var(--ff-titre); font-size: .9rem; color: var(--nuit);
  letter-spacing: .03em; padding-bottom: .6rem; margin-bottom: .3rem;
  border-bottom: 1px solid var(--or-bord); display: flex; align-items: center; gap: .6rem;
}
.f-sep::before { content: ''; width: 16px; height: 1px; background: var(--or); }
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--ff-corps); font-size: .82rem; font-weight: 300; color: var(--gris); line-height: 1.65;
}
.consent input[type=checkbox] { margin-top: 3px; width: 15px; height: 15px; accent-color: var(--or); flex-shrink: 0; }
.consent a { color: var(--or-fonce); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════════════════════ */
.p-hero {
  background: var(--nuit); padding: 92px 0 64px; text-align: center;
  position: relative; overflow: hidden;
}
.p-hero-couronne {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-titre); font-size: 18rem; color: rgba(201,162,75,.04); line-height: 1; pointer-events: none;
}
.p-hero .wrap { position: relative; z-index: 1; }
.fil { display: flex; gap: .5rem; align-items: center; justify-content: center; font-family: var(--ff-corps); font-size: .68rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; flex-wrap: wrap; }
.fil a { color: rgba(255,255,255,.5); }
.fil a:hover { color: var(--or-clair); }
.fil .s { color: rgba(255,255,255,.25); }
.p-hero h1 {
  font-family: var(--ff-titre); font-size: clamp(2.2rem,5vw,3.6rem);
  color: var(--ivoire); line-height: 1.1; letter-spacing: .02em;
}
.p-hero h1 em { font-family: var(--ff-italic); font-style: italic; color: var(--or-clair); }
.p-hero .sst { font-family: var(--ff-corps); font-weight: 300; color: rgba(248,245,238,.55); font-size: .97rem; margin-top: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Loan badges */
.l-pills { display: inline-flex; margin-top: 2rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); overflow: hidden; }
.l-pill { padding: .75rem 1.5rem; border-right: 1px solid rgba(255,255,255,.12); font-family: var(--ff-corps); font-size: .7rem; font-weight: 300; color: rgba(255,255,255,.5); }
.l-pill:last-child { border-right: none; }
.l-pill strong { display: block; font-family: var(--ff-titre); font-size: 1.15rem; font-weight: 400; color: var(--or-clair); margin-bottom: .15rem; }

/* ═══════════════════════════════════════════════════════════
   BOÎTES
═══════════════════════════════════════════════════════════ */
.boite-or { background: var(--or-pale); border-left: 2px solid var(--or); padding: 1.1rem 1.4rem; font-family: var(--ff-corps); font-size: .84rem; font-weight: 300; color: var(--encre); line-height: 1.75; }
.boite-or strong { color: var(--or-fonce); font-weight: 500; }
.boite-avert { background: #fdf6e8; border-left: 2px solid var(--or); padding: 1rem 1.25rem; font-family: var(--ff-corps); font-size: .83rem; font-weight: 300; color: #7a5a10; line-height: 1.75; }
.boite-nuit { background: var(--nuit); border-left: 2px solid var(--or); padding: 1.1rem 1.4rem; font-family: var(--ff-corps); font-size: .84rem; font-weight: 300; color: rgba(248,245,238,.6); line-height: 1.75; }
.boite-nuit strong { color: var(--ivoire); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-l { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--ivoire-3); }
.contact-l:first-child { border-top: 1px solid var(--ivoire-3); }
.contact-ic {
  width: 48px; height: 48px; border: 1px solid var(--or-bord); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0;
  color: var(--or-fonce);
}
.contact-lib { font-family: var(--ff-corps); font-size: .64rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gris-clair); margin-bottom: .3rem; }
.contact-val { font-family: var(--ff-titre); font-size: 1.1rem; color: var(--nuit); }
.contact-val a { color: var(--or-fonce); }
.contact-val a:hover { color: var(--or); }
.contact-note { font-family: var(--ff-corps); font-size: .8rem; font-weight: 300; color: var(--gris); margin-top: .2rem; }

/* ═══════════════════════════════════════════════════════════
   COOKIE
═══════════════════════════════════════════════════════════ */
.cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--nuit); border-top: 2px solid var(--or); padding: 1.2rem 1.5rem; display: none; }
.cookie.actif { display: block; }
.cookie-in { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-t { flex: 1; font-family: var(--ff-corps); font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.65; min-width: 200px; }
.cookie-t a { color: var(--or-clair); text-decoration: underline; }
.cookie-bt { display: flex; gap: .75rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   PIED DE PAGE
═══════════════════════════════════════════════════════════ */
.pied { background: var(--nuit); color: rgba(248,245,238,.5); }
.pied-haut {
  padding: 72px 0 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pied-logo img { height: 64px; width: auto; margin-bottom: 1rem; opacity: .92; border-radius: 3px; }
.pied-devise { font-family: var(--ff-italic); font-style: italic; font-weight: 300; font-size: .95rem; color: var(--or-clair); margin-bottom: 1.25rem; }
.pied-coord { display: flex; flex-direction: column; gap: .5rem; }
.pied-coord span { font-family: var(--ff-corps); font-size: .82rem; font-weight: 300; color: rgba(248,245,238,.45); display: flex; align-items: center; gap: .5rem; }
.pied-coord a { color: rgba(248,245,238,.55); }
.pied-coord a:hover { color: var(--or-clair); }
.pied-col-t { font-family: var(--ff-titre); font-size: .8rem; letter-spacing: .08em; color: var(--or-clair); margin-bottom: 1.2rem; }
.pied-liens { display: flex; flex-direction: column; gap: .5rem; }
.pied-liens a { font-family: var(--ff-corps); font-size: .83rem; font-weight: 300; color: rgba(248,245,238,.45); transition: all .25s; }
.pied-liens a:hover { color: var(--or-clair); padding-left: 4px; }
.pied-legal { font-family: var(--ff-corps); font-size: .7rem; font-weight: 300; line-height: 1.85; color: rgba(248,245,238,.3); }
.pied-legal strong { color: rgba(248,245,238,.5); font-weight: 500; }
.pied-bas {
  padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-corps); font-size: .72rem; font-weight: 300; color: rgba(248,245,238,.3);
  flex-wrap: wrap; gap: .5rem;
}
.pied-bas a { color: rgba(248,245,238,.38); }
.pied-bas a:hover { color: var(--or-clair); }
.pied-flag { display: flex; gap: 3px; }
.pied-flag span { width: 8px; height: 8px; border-radius: 1px; }

/* ═══════════════════════════════════════════════════════════
   UTILITAIRES
═══════════════════════════════════════════════════════════ */
.tc { text-align: center; }
.mt1{margin-top:.5rem}.mt2{margin-top:1rem}.mt3{margin-top:1.5rem}.mt4{margin-top:2rem}.mt5{margin-top:2.5rem}
.mb2{margin-bottom:1rem}.mb3{margin-bottom:1.5rem}
.orn-mini { display: inline-block; color: var(--or); font-size: 1rem; margin: 1rem 0; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes monte { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes paraitre { from { opacity: 0; } to { opacity: 1; } }
.an1 { animation: monte .8s var(--ease) both; }
.an2 { animation: monte .8s .15s var(--ease) both; }
.an3 { animation: monte .8s .3s var(--ease) both; }
.anF { animation: paraitre 1.2s ease both; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT — PAGE DEMANDE (form + sidebar)
═══════════════════════════════════════════════════════════ */
.layout-dem {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.layout-dem > :last-child { position: sticky; top: 104px; }

.layout-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media(max-width:1024px) {
  .pied-haut { grid-template-columns: 1fr 1fr; }
  .serv-grille { grid-template-columns: repeat(2,1fr); }
  .proc-frise { grid-template-columns: repeat(2,1fr); gap: 2.5rem 2rem; }
  .proc-frise::before { display: none; }
  .ex-grille { grid-template-columns: repeat(2,1fr); }
  .stat-rangee { grid-template-columns: repeat(2,1fr); }
  .stat-c:nth-child(2) { border-right: none; }
  .stat-c:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
  .layout-dem { grid-template-columns: 1fr 300px; gap: 2rem; }
  .layout-2col { gap: 2.5rem; }
}
@media(max-width:768px) {
  .wrap, .wrap-sm { padding: 0 18px; }
  .nav, .hd-cta .btn-nuit { display: none; }
  .mob-b { display: flex; }
  .hero h1 { font-size: 2.3rem; }
  .hero-cadre { padding: 50px 0 60px; }
  h2.sec-titre { font-size: 1.9rem; }
  .p-hero { padding: 72px 0 48px; }
  .p-hero h1 { font-size: 2rem; }
  .p-hero .sst { font-size: .88rem; }
  .pied-haut { grid-template-columns: 1fr; gap: 2rem; }
  .tb-droite { display: none; }
  .serv-grille { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr; }
  .ex-grille { grid-template-columns: 1fr; }
  .ex-case { border-right: none; }
  .stat-rangee { grid-template-columns: 1fr 1fr; }
  .proc-frise { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hs-item { border-right: none; border-bottom: 1px solid var(--or-bord); }
  .hs-item:last-child { border-bottom: none; }
  .l-pills { flex-direction: column; }
  .l-pill { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .layout-dem { grid-template-columns: 1fr; }
  .layout-dem > :last-child { position: static; }
  .layout-2col { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .conf-bar p { font-size: .68rem; }
  .boite-avert { font-size: .78rem; }
}
@media(max-width:480px) {
  .wrap, .wrap-sm { padding: 0 14px; }
  .hero h1 { font-size: 2rem; }
  .hd-in { height: 72px; gap: 1rem; }
  .logo img { height: 52px; }
  .mob-m { inset: 72px 0 0 0; }
  .form-corps { padding: 1.25rem; }
  .form-tete { padding: 1.1rem 1.25rem; }
  .form-tete h3 { font-size: 1.1rem; }
  .calc-cadre { padding: 1.25rem; }
  .stat-rangee { grid-template-columns: 1fr; }
  .stat-c { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .section { padding: 48px 0; }
  .ex-cadre, .boite-nuit { font-size: .8rem; }
  .btn-lg { padding: .85rem 1.5rem; font-size: .78rem; }
  .pied-haut { padding: 48px 0 32px; }
  .pied-coord span { font-size: .78rem; }
  .conf-in { gap: .5rem; flex-wrap: wrap; }
  .conf-sceau { font-size: .58rem; }
}
