/* =============================================================
   CUSTOLIA — Design system
   Charte : bleu #0C447C · sauge #5F8B6F · Poppins
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --bleu: #0C447C;
  --bleu-fonce: #08294C;
  --bleu-pale: #F5F8FB;
  --bleu-pale2: #E9EFF6;
  --sauge: #5F8B6F;
  --sauge-pale: #EEF4F0;
  --encre: #16202E;
  --gris: #5C6675;
  --gris-clair: #E4E8ED;
  --blanc: #fff;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;

  --ombre-1: 0 2px 8px rgba(12,68,124,.05);
  --ombre-2: 0 12px 30px rgba(12,68,124,.10);
  --ombre-3: 0 26px 64px rgba(12,68,124,.10);

  --max: 1240px;
  --pad: 44px;
  --pad-mob: 22px;

  --t: .18s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--encre);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: var(--bleu); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* Accessibilité */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--bleu); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--bleu);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 var(--pad); }

main { display: block; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 { font-weight: 600; color: var(--bleu); letter-spacing: -.02em; line-height: 1.2; }

h1 { font-size: clamp(30px, 4vw, 50px); }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: clamp(19px, 2vw, 23px); }
h4 { font-size: 16px; letter-spacing: -.01em; }

p { line-height: 1.7; }

.eyebrow {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--sauge); margin-bottom: 12px;
}

.chapo { font-size: 16px; color: var(--gris); line-height: 1.65; max-width: 640px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 9px;
  font-size: 14px; font-weight: 600; line-height: 1;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-bleu { background: var(--bleu); color: #fff; }
.btn-bleu:hover { background: #093761; }

.btn-blanc { background: #fff; color: var(--bleu); }
.btn-blanc:hover { background: #EFF4F9; }

.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.42); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-ligne { background: transparent; color: var(--bleu); border: 1.5px solid var(--gris-clair); }
.btn-ligne:hover { border-color: var(--bleu); }

.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ---------- En-tête ---------- */
.hd {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--gris-clair);
}
.hd-inner {
  max-width: var(--max); margin: 0 auto; padding: 16px var(--pad);
  display: flex; align-items: center; gap: 32px;
}

.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.logo svg, .logo img { width: 30px; height: 30px; }
.logo-mot { font-size: 21px; font-weight: 600; color: var(--bleu); letter-spacing: -.035em; line-height: 1; }

.hd-nav { display: flex; gap: 22px; margin-left: auto; }
.hd-nav a {
  font-size: 13px; font-weight: 500; color: var(--encre);
  text-decoration: none; opacity: .82; white-space: nowrap; transition: opacity var(--t);
}
.hd-nav a:hover, .hd-nav a[aria-current="page"] { color: var(--bleu); opacity: 1; }
.hd-nav a[aria-current="page"] { font-weight: 600; }

.hd-droite { display: flex; align-items: center; gap: 18px; }
.hd-tel {
  font-size: 13px; font-weight: 600; color: var(--bleu);
  text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.hd-tel:hover { text-decoration: none; color: var(--bleu-fonce); }
.hd-tel svg { width: 15px; height: 15px; }

.hd-burger { display: none; padding: 8px; }
.hd-burger span {
  display: block; width: 22px; height: 2px; background: var(--bleu);
  border-radius: 2px; transition: var(--t);
}
.hd-burger span + span { margin-top: 5px; }
.hd-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hd-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--bleu); color: #fff;
  padding: 82px var(--pad);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 64px; align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero p { font-size: 16.5px; opacity: .84; max-width: 430px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }

.visuel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.42);
  letter-spacing: .07em; text-transform: uppercase;
  aspect-ratio: 5/4; text-align: center; padding: 20px;
}
.visuel-clair {
  background: var(--bleu-pale); border-color: var(--bleu-pale2);
  color: #96A5B5; border-radius: var(--r-md);
}

/* ---------- Bandeau réassurance ---------- */
.reass {
  background: var(--sauge-pale); padding: 30px var(--pad);
}
.reass-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.reass-item {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13.5px; font-weight: 500; color: #3B4C42; line-height: 1.45;
}
.reass-item::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sauge); flex-shrink: 0; margin-top: 7px;
}

/* ---------- Sections ---------- */
.sec { padding: 78px 0; }
.sec-pale { background: var(--bleu-pale); }
.sec-sauge { background: var(--sauge-pale); }
.sec-titre { margin-bottom: 13px; }
.sec h2 { margin-bottom: 14px; }
.sec-chapo { margin-bottom: 44px; }

/* ---------- Cartes famille ---------- */
.g5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 17px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.fam {
  border: 1px solid var(--gris-clair); border-radius: var(--r-md);
  overflow: hidden; background: #fff;
  text-decoration: none; color: inherit; display: block;
  transition: var(--t);
}
.fam:hover {
  text-decoration: none; border-color: var(--bleu);
  box-shadow: var(--ombre-2); transform: translateY(-3px);
}
.fam-img {
  aspect-ratio: 4/3; background: var(--bleu-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #A2AEBD;
  letter-spacing: .06em; text-transform: uppercase;
}
.fam-img img { width: 100%; height: 100%; object-fit: cover; }
.fam-img .icone { width: 46%; height: 46%; object-fit: contain; }
.fam-corps { padding: 17px 17px 20px; }
.fam-nom { font-size: 14.5px; font-weight: 600; color: var(--bleu); line-height: 1.3; margin-bottom: 12px; min-height: 38px; }
.fam-prix { font-size: 11.5px; color: var(--gris); letter-spacing: .02em; }
.fam-prix b { display: block; font-size: 17px; font-weight: 600; color: var(--encre); margin-top: 3px; letter-spacing: -.01em; }
.fam-lien { font-size: 12.5px; font-weight: 600; color: var(--bleu); margin-top: 14px; display: inline-block; }

/* ---------- Cartes pack ---------- */
.pack {
  border: 1px solid var(--gris-clair); border-radius: var(--r-md);
  overflow: hidden; background: #fff; display: flex; flex-direction: column;
  text-decoration: none; color: inherit; transition: var(--t);
}
.pack:hover { text-decoration: none; border-color: var(--bleu); box-shadow: var(--ombre-2); }
.pack-etq {
  background: var(--sauge); color: #fff;
  font-size: 10.5px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  padding: 5px 13px; align-self: flex-start; border-radius: 0 0 9px 0;
}
.pack-img {
  aspect-ratio: 16/10; background: var(--bleu-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #A2AEBD;
  letter-spacing: .06em; text-transform: uppercase;
}
.pack-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.pack-img .icone { width: 34%; height: 34%; object-fit: contain; }
.pack-corps { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pack-nom { font-size: 16px; font-weight: 600; color: var(--bleu); margin-bottom: 5px; }
.pack-sous { font-size: 12.5px; color: var(--gris); margin-bottom: 16px; line-height: 1.5; flex: 1; }
.pack-prix { font-size: 11.5px; color: var(--gris); margin-bottom: 16px; }
.pack-prix b { display: block; font-size: 19px; font-weight: 600; color: var(--encre); letter-spacing: -.015em; margin-top: 2px; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.etape { position: relative; }
.etape-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bleu); color: #fff;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.etape h4 { color: var(--bleu); margin-bottom: 6px; }
.etape p { font-size: 13px; color: var(--gris); line-height: 1.55; }

/* ---------- Comparatif ---------- */
.comp { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp th, .comp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--gris-clair); }
.comp th {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--gris);
}
.comp th:nth-child(2), .comp th:nth-child(3),
.comp td:nth-child(2), .comp td:nth-child(3) { text-align: center; width: 180px; }
.comp td:first-child { font-weight: 500; }
.comp .oui { color: var(--sauge); font-size: 17px; }
.comp .non { color: #C3CAD4; font-size: 17px; }
.comp .col-cus { background: var(--bleu-pale); }
.comp th.col-cus { color: var(--bleu); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--gris-clair); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  width: 100%; text-align: left;
  padding: 22px 0; font-size: 15.5px; font-weight: 500; color: var(--encre);
  cursor: pointer; background: none; border: none;
}
.faq-q::after { content: "+"; font-size: 20px; font-weight: 400; color: var(--bleu); line-height: 1; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-r {
  font-size: 14px; color: var(--gris); line-height: 1.7;
  padding: 0 40px 24px 0; display: none;
}
.faq-item.open .faq-r { display: block; }

/* ---------- Formulaires ---------- */
.form-bl {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.form-bl h2 { margin-bottom: 14px; }
.form-intro { font-size: 14.5px; color: var(--gris); line-height: 1.7; margin-bottom: 28px; }

.champ { margin-bottom: 16px; }
.champ label { display: block; font-size: 12.5px; font-weight: 500; margin-bottom: 7px; }
.champ input, .champ select, .champ textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gris-clair); border-radius: 9px;
  font-size: 14px; color: var(--encre); background: #fff;
  transition: border-color var(--t);
}
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none; border-color: var(--bleu);
}
.champ textarea { resize: vertical; min-height: 96px; }
.champ-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.champ-error input, .champ-error select, .champ-error textarea { border-color: #C0392B; }
.champ-error-msg { font-size: 11.5px; color: #C0392B; margin-top: 5px; display: none; }
.champ-error .champ-error-msg { display: block; }

.rgpd {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: var(--gris); line-height: 1.55;
  margin: 6px 0 20px;
}
.rgpd input { margin-top: 2px; flex-shrink: 0; accent-color: var(--bleu); }

.form-success {
  background: var(--sauge-pale); border-left: 4px solid var(--sauge);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 24px; font-size: 14.5px; color: var(--encre);
  margin-bottom: 20px; display: none;
}
.form-success.on { display: block; }

/* ---------- Coordonnées ---------- */
.coord { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.coord-item { display: flex; gap: 11px; align-items: flex-start; }
.coord-item svg { width: 16px; height: 16px; color: var(--sauge); flex-shrink: 0; margin-top: 4px; }
.coord-item a { color: var(--bleu); font-weight: 600; text-decoration: none; }
.coord-item a:hover { text-decoration: underline; }

/* ---------- Fil d'Ariane ---------- */
.fil {
  font-size: 12.5px; color: var(--gris);
  padding: 18px 0; border-bottom: 1px solid var(--gris-clair);
}
.fil a { color: var(--gris); text-decoration: none; }
.fil a:hover { color: var(--bleu); text-decoration: underline; }
.fil span { color: var(--encre); font-weight: 500; }

/* ---------- Fiche produit : bloc achat ---------- */
.achat {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; padding: 52px 0 70px;
}
.galerie-princ {
  aspect-ratio: 4/3; background: var(--bleu-pale);
  border: 1px solid var(--gris-clair); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #A2AEBD;
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 14px; overflow: hidden; position: relative;
}
.galerie-princ img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.galerie-princ .icone { width: 30%; height: 30%; object-fit: contain; }
.galerie-princ .ref-note { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; font-size: 10.5px; color: #A2AEBD; letter-spacing: .04em; }
.galerie-vign { display: grid; grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); gap: 10px; }
.vign {
  aspect-ratio: 1; background: var(--bleu-pale);
  border: 1px solid var(--gris-clair); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: #B4BECA; cursor: pointer; overflow: hidden;
}
.vign.on { border-color: var(--bleu); border-width: 2px; }

.achat-info .etq {
  font-size: 11px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--sauge); margin-bottom: 12px;
}
.achat-info h1 { margin-bottom: 10px; }
.achat-info .baseline {
  font-size: 16px; color: var(--gris); line-height: 1.55;
  margin-bottom: 24px; font-style: italic;
}
.achat-info .desc { font-size: 14.5px; color: var(--gris); line-height: 1.72; margin-bottom: 26px; }

.pts { list-style: none; margin-bottom: 30px; }
.pts li {
  display: flex; gap: 11px; font-size: 13.5px;
  line-height: 1.55; margin-bottom: 12px;
}
.pts li::before { content: "✓"; color: var(--sauge); font-weight: 700; flex-shrink: 0; }

.bloc-prix {
  background: var(--bleu-pale); border: 1px solid var(--bleu-pale2);
  border-radius: 11px; padding: 18px 20px; margin-bottom: 14px;
}
.bloc-prix .lbl {
  font-size: 11px; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: var(--gris);
}
.bloc-prix .val {
  font-size: 19px; font-weight: 600; color: var(--bleu);
  margin-top: 5px; letter-spacing: -.015em;
}
.bloc-prix .sub { font-size: 12.5px; color: var(--gris); margin-top: 3px; }

.achat-cta { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }

.reass-mini { display: flex; flex-direction: column; gap: 9px; font-size: 12.5px; color: var(--gris); }
.reass-mini div { display: flex; gap: 9px; align-items: center; }
.reass-mini div::before { content: "◆"; color: var(--sauge); font-size: 9px; }

/* ---------- Tableau composition ---------- */
.comp-tab {
  width: 100%; border-collapse: collapse; font-size: 14px;
  border: 1px solid var(--gris-clair); border-radius: var(--r-md); overflow: hidden;
}
.comp-tab th {
  background: var(--bleu-pale);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--bleu);
  padding: 15px 20px; text-align: left;
}
.comp-tab td { padding: 16px 20px; border-top: 1px solid var(--gris-clair); vertical-align: top; }
.comp-tab td:first-child { font-weight: 500; }
.comp-tab td:last-child {
  color: var(--gris); font-size: 13px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ---------- Bloc idéal pour ---------- */
.ideal {
  background: var(--sauge-pale); border-left: 4px solid var(--sauge);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 26px 30px;
}
.ideal h4 {
  font-size: 12px; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: var(--sauge); margin-bottom: 10px;
}
.ideal p { font-size: 15.5px; line-height: 1.6; }

/* ---------- En-tête page famille ---------- */
.famille-hero { padding: 60px 0 40px; }
.famille-hero h1 { margin-bottom: 18px; }
.famille-hero .chapo { font-size: 17px; }
.famille-prix-appel {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: var(--bleu-pale); border-radius: var(--r-md);
  padding: 16px 22px; margin-top: 26px;
}
.famille-prix-appel .lbl { font-size: 12px; color: var(--gris); letter-spacing: .04em; }
.famille-prix-appel .val {
  font-size: 24px; font-weight: 600; color: var(--bleu); letter-spacing: -.02em;
}

/* ---------- Carte de visite ---------- */
.cv {
  min-height: 100vh;
  background: var(--bleu); color: #fff;
  padding: 60px 22px 100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.cv-carte {
  max-width: 480px; width: 100%;
}
.cv-logo { width: 64px; height: 64px; margin: 0 auto 22px; color: #fff; }
.cv-nom { font-size: 34px; font-weight: 600; letter-spacing: -.03em; line-height: 1; margin-bottom: 10px; }
.cv-acc { font-size: 14.5px; opacity: .72; margin-bottom: 34px; }

.cv-qr {
  background: #fff; border-radius: 18px;
  padding: 22px; margin: 0 auto 18px;
  width: fit-content;
}
.cv-qr svg, .cv-qr img { width: 240px; height: 240px; display: block; }
.cv-hint { font-size: 12.5px; opacity: .68; margin-bottom: 30px; line-height: 1.55; }

.cv-actions { display: flex; flex-direction: column; gap: 11px; max-width: 320px; margin: 0 auto; }
.cv-actions .btn { width: 100%; }

.cv-coord {
  margin-top: 42px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
}
.cv-coord a { color: #fff; text-decoration: none; opacity: .88; display: flex; align-items: center; gap: 10px; justify-content: center; }
.cv-coord a:hover { opacity: 1; text-decoration: underline; }
.cv-coord svg { width: 16px; height: 16px; opacity: .7; }

/* ---------- Mentions légales ---------- */
.legal h2 { margin-top: 44px; margin-bottom: 16px; font-size: 22px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 14.5px; color: var(--gris); line-height: 1.75; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal dl { margin: 16px 0; }
.legal dt { font-size: 12.5px; font-weight: 600; color: var(--encre); margin-top: 12px; }
.legal dd { font-size: 14px; color: var(--gris); margin-bottom: 8px; }
.legal .placeholder {
  display: inline-block; background: #FFF4E5; color: #8A5A00;
  border: 1px dashed #E0A54A; border-radius: 4px;
  padding: 1px 7px; font-size: 13px; font-family: ui-monospace, monospace;
}

/* ---------- Footer ---------- */
.ft { background: var(--bleu-fonce); color: #fff; padding: 56px 0 26px; }
.ft-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.ft-g { display: grid; grid-template-columns: 1.5fr 1fr 1.25fr 1fr; gap: 44px; margin-bottom: 44px; }
.ft h5 {
  font-size: 11.5px; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px;
}
.ft ul { list-style: none; }
.ft li { margin-bottom: 10px; }
.ft a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 13.5px; }
.ft a:hover { color: #fff; text-decoration: underline; }
.ft-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.ft-logo svg, .ft-logo img { width: 26px; height: 26px; }
.ft-logo span { font-size: 19px; font-weight: 600; letter-spacing: -.03em; }
.ft-acc { font-size: 13.5px; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 16px; max-width: 250px; }
.ft-ess { font-size: 11.5px; color: var(--sauge); letter-spacing: .03em; font-weight: 500; }
.ft-addr { font-size: 13.5px; color: rgba(255,255,255,.7); line-height: 1.75; }
.ft-addr a { color: #fff; font-weight: 600; }
.ft-bas {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px; display: flex; justify-content: space-between;
  gap: 20px; font-size: 12px; color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}

/* ---------- Barre CTA mobile ---------- */
.mob-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--gris-clair);
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.mob-cta.on { transform: translateY(0); }
.mob-cta .btn { flex: 1; padding: 13px 12px; font-size: 13.5px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1080px) {
  :root { --pad: 32px; }
  .hd-nav { gap: 16px; }
  .hd-nav a { font-size: 12.5px; }
  .hero-inner { gap: 40px; }
  .g5 { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .ft-g { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  :root { --pad: 24px; }

  .hd-inner { padding: 14px var(--pad); gap: 16px; }
  .hd-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0;
    background: #fff; border-bottom: 1px solid var(--gris-clair);
    padding: 12px 0; box-shadow: var(--ombre-2);
  }
  .hd-nav.on { display: flex; }
  .hd-nav a { padding: 13px var(--pad); font-size: 14px; opacity: 1; }
  .hd-droite .btn { display: none; }
  .hd-tel span { display: none; }
  .hd-burger { display: block; margin-left: auto; }

  .hero { padding: 60px var(--pad); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); }
  .hero p { font-size: 15.5px; }

  .reass-inner { grid-template-columns: 1fr; gap: 14px; }
  .reass { padding: 26px var(--pad); }

  .sec { padding: 56px 0; }
  .sec-chapo { margin-bottom: 32px; }

  .g5, .g4, .g3, .g2 { grid-template-columns: 1fr; gap: 16px; }

  .process { grid-template-columns: 1fr; gap: 22px; }

  .comp { font-size: 13px; }
  .comp th, .comp td { padding: 12px 10px; }
  .comp th:nth-child(2), .comp th:nth-child(3),
  .comp td:nth-child(2), .comp td:nth-child(3) { width: 90px; }

  .form-bl { grid-template-columns: 1fr; gap: 40px; }
  .champ-2 { grid-template-columns: 1fr; gap: 0; }

  .achat { grid-template-columns: 1fr; gap: 36px; padding: 32px 0 50px; }
  .achat-info h1 { font-size: 30px; }
  .galerie-vign { grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); }

  .comp-tab { font-size: 13px; }
  .comp-tab th, .comp-tab td { padding: 12px 14px; }
  .comp-tab td:last-child { font-size: 11.5px; word-break: break-all; }

  .ideal { padding: 22px 22px; }
  .ideal p { font-size: 14.5px; }

  .famille-hero { padding: 40px 0 30px; }
  .famille-prix-appel { padding: 14px 18px; }
  .famille-prix-appel .val { font-size: 20px; }

  .ft-g { grid-template-columns: 1fr; gap: 32px; }
  .ft { padding: 44px 0 22px; }

  .mob-cta { display: flex; }
  body { padding-bottom: 0; }

  .cv { padding: 40px 18px 80px; }
  .cv-nom { font-size: 28px; }
  .cv-qr svg, .cv-qr img { width: 210px; height: 210px; }
}

@media (max-width: 480px) {
  .g5, .g4 { grid-template-columns: 1fr; }
  .galerie-vign { gap: 7px; }
}

/* ---------- Impression ---------- */
@media print {
  .hd, .ft, .mob-cta, .hero-cta, .achat-cta, form, .faq-q::after { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { background: #fff; color: #000; padding: 20px 0; }
  .hero h1, .hero p { color: #000; }
  a { color: #000; text-decoration: underline; }
  .sec, .achat { padding: 20px 0; }
  .bloc-prix, .ideal { border: 1px solid #ccc; background: #fff; }
}
