/* =========================================================================
   MARTORANO Architecture — Design system
   Nicolam Studio · style « Architecte »
   Palette prélevée sur le logo : carmin #A30001 / crème #FAF7F4
   Titres Bodoni Moda 700 · tout le reste Inter
   ========================================================================= */

/* ----------------------------- Tokens -------------------------------- */
:root{
  /* Palette de marque */
  --cream:        #FAF7F4;   /* fond, jamais blanc pur */
  --accent:       #A30001;   /* carmin, tous les CTA */
  --contrast:     #6E0000;   /* rouge assombri, sections de contraste */
  --ink:          #1A1512;   /* quasi-noir chaud */
  --muted:        #756C64;   /* gris chaud (assombri pour contraste AA 4.5:1 sur crème) */
  --muted-line:   #8A817B;   /* teinte DA d'origine, réservée aux filets décoratifs */

  /* Échelles dérivées (jamais une seule valeur figée par couleur) */
  --cream-2:      #F3EDE7;   /* crème alternée, plus chaude */
  --cream-3:      #ECE3DB;   /* crème profonde */
  --rose:         #F6ECEA;   /* teinte carmin très pâle, fonds de cartes */
  --rose-2:       #EFDFDC;
  --line:         #E5DBD2;   /* filets sur crème */
  --line-2:       #D8CCC1;
  --ink-80:       #40382F;
  --ink-60:       rgba(26,21,18,.74);   /* assombri pour contraste AA sur petit texte */
  --on-dark:      #F6ECE8;   /* texte clair sur rouge/foncé */
  --on-dark-soft: rgba(246,236,232,.72);

  /* Fonds : crème + rouge (accent faible opacité), dégradés linéaires verticaux via flow() en build */
  --bg-cream:     #FAF7F4;
  --bg-rose:      #F2E1DF;   /* rouge accent ~9% sur crème */
  /* Dégradé signature accent (composants uniquement : icônes, avatars, tuiles) */
  --grad:         linear-gradient(160deg, #A30001 0%, #6E0000 100%);
  --grad-soft:    linear-gradient(135deg, rgba(163,0,1,.06), rgba(110,0,0,.03));
  /* Grain très subtil pour les fonds (composants restent lisses) */
  --noise:        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --noise-op:     .035;

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

  /* Rythme */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 128px);

  /* Échelle d'espacement unique (rythme vertical intra-section) */
  --sp-1: .6rem;    /* micro : label -> valeur */
  --sp-2: 1.1rem;   /* titre -> texte / chapô */
  --sp-3: 1.75rem;  /* texte -> CTA / bloc suivant */
  --sp-4: 2.4rem;   /* grande respiration (stats, groupes) */
  --radius: 4px;         /* coins peu arrondis, esprit architectural */
  --radius-lg: 8px;
  --radius-logo: 14px;   /* radius demandé sur le bloc logo */

  --shadow-sm: 0 1px 2px rgba(26,21,18,.04), 0 2px 8px rgba(26,21,18,.05);
  --shadow-md: 0 10px 30px -12px rgba(26,21,18,.18);
  --shadow-lg: 0 30px 60px -24px rgba(26,21,18,.28);

  --ease: cubic-bezier(.2,.6,.2,1);
  --header-h: 84px;
}

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

/* --------------------------- Typographie ----------------------------- */
h1,h2,h3{ font-family:var(--serif); font-weight:700; color:var(--ink);
  line-height:1.08; margin:0; text-wrap:balance; letter-spacing:-.01em; }
h1{ font-size:clamp(2.4rem, 5.4vw, 4.4rem); }
h2{ font-size:clamp(1.9rem, 3.6vw, 3rem); line-height:1.12; }
h3{ font-size:clamp(1.15rem, 1.7vw, 1.5rem); line-height:1.2; }
h4{ font-family:var(--sans); font-weight:500; font-size:.94rem; margin:0; }
p{ margin:0 0 1rem; max-width:68ch; }
p:last-child{ margin-bottom:0; }
strong{ font-weight:600; }
.num{ font-family:var(--sans); font-weight:500; font-variant-numeric:tabular-nums; }

/* Sur-titre avec ornement tiret (::before, letter-spacing:0) */
.overline{
  font-family:var(--sans); font-weight:600; font-size:.78rem;
  letter-spacing:.18em; text-transform:uppercase; color:var(--accent);
  display:inline-flex; align-items:center; margin:0 0 1rem;
}
.overline::before{
  content:"–"; margin-right:.6em; letter-spacing:0; font-weight:400;
  color:var(--accent); transform:translateY(-.04em);
}
.overline.on-dark{ color:var(--on-dark); }
.overline.on-dark::before{ color:var(--on-dark); }
.lead{ font-size:clamp(1.05rem,1.5vw,1.28rem); line-height:1.55; color:var(--ink-80); max-width:60ch; }

/* ----------------------------- Layout -------------------------------- */
.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:var(--gutter); }
.container-narrow{ max-width:820px; }
.section{ padding-block:var(--section-y); }
.section-sm{ padding-block:clamp(48px,6vw,80px); }
/* grain très subtil sur les fonds de section ; le contenu (cartes, etc.) reste au-dessus, lisse */
.section, .section-sm{ position:relative; }
.section::before, .section-sm::before{ content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:var(--noise); background-size:160px 160px; opacity:var(--noise-op); mix-blend-mode:multiply; }
.section > *, .section-sm > *{ position:relative; z-index:1; }
.bg-cream-2{ background:var(--cream-2); }
.bg-cream-3{ background:var(--cream-3); }
.bg-rose{ background:var(--rose); }
.bg-dark{ background:var(--contrast); color:var(--on-dark); }
.bg-grad{ background:var(--grad); color:var(--on-dark); }
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-grad h1,.bg-grad h2,.bg-grad h3{ color:var(--on-dark); }
.bg-dark p,.bg-grad p{ color:var(--on-dark-soft); }
.hairline{ height:1px; background:var(--line); border:0; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
/* utilitaires d'espacement (échelle unique) */
.mt-1{ margin-top:var(--sp-1); } .mt-2{ margin-top:var(--sp-2); }
.mt-3{ margin-top:var(--sp-3); } .mt-4{ margin-top:var(--sp-4); }

.section-head{ max-width:640px; margin-bottom:clamp(32px,4vw,56px); }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head p{ margin-top:1rem; color:var(--ink-80); }

/* grille utilitaire */
.grid{ display:grid; gap:clamp(18px,2.4vw,32px); }
.g-2{ grid-template-columns:repeat(2,1fr); }
.g-3{ grid-template-columns:repeat(3,1fr); }
.g-4{ grid-template-columns:repeat(4,1fr); }
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,72px); align-items:center; }

/* ----------------------------- Boutons ------------------------------- */
.btn{ display:inline-flex; align-items:center; gap:.55em; padding:.92em 1.5em;
  font-family:var(--sans); font-weight:600; font-size:.98rem; letter-spacing:.01em;
  border-radius:var(--radius); transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  border:1px solid transparent; line-height:1; cursor:pointer; }
.btn svg{ width:1.05em; height:1.05em; }
.btn-primary{ background:var(--accent); color:var(--cream); box-shadow:var(--shadow-sm); }
.btn-primary:hover{ background:var(--contrast); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-ghost:hover{ border-color:var(--ink); background:var(--ink); color:var(--cream); transform:translateY(-2px); }
.btn-ghost.on-dark{ color:var(--on-dark); border-color:rgba(246,236,232,.85); }
.btn-ghost.on-dark:hover{ background:var(--cream); color:var(--accent); border-color:var(--cream); transform:translateY(-2px); }
/* primaire sur section sombre : bouton crème lisible (pas rouge sur rouge), hover net */
.bg-dark .btn-primary, .bg-grad .btn-primary{ background:var(--cream); color:var(--accent); box-shadow:var(--shadow-sm); }
.bg-dark .btn-primary:hover, .bg-grad .btn-primary:hover{ background:#fff; color:var(--contrast); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-lg{ padding:1.05em 1.8em; font-size:1.02rem; }
.link-arrow{ display:inline-flex; align-items:center; gap:.5em; font-weight:600; color:var(--accent);
  transition:gap .25s var(--ease); }
.link-arrow svg{ width:1.05em; height:1.05em; transition:transform .25s var(--ease); }
.link-arrow:hover{ gap:.75em; }
.link-arrow:hover svg{ transform:translateX(3px); }
.link-arrow.on-dark{ color:var(--on-dark); }

/* ----------------------------- Icônes -------------------------------- */
.ico{ width:24px; height:24px; stroke:currentColor; stroke-width:1.6; fill:none;
  stroke-linecap:round; stroke-linejoin:round; display:block; }
.ico-badge{ width:48px; height:48px; flex:none; display:grid; place-items:center;
  border-radius:var(--radius); background:var(--rose); color:var(--accent);
  transition:background .3s var(--ease), color .3s var(--ease); }
.ico-badge .ico{ width:26px; height:26px; }
.ico-badge.on-grad{ background:var(--grad); color:var(--cream); }

/* ------------------------- Étoiles & Google -------------------------- */
.stars{ display:inline-flex; gap:2px; color:var(--accent); }
.stars svg{ width:16px; height:16px; fill:currentColor; }
.stars.on-dark{ color:#F4C64B; }
.g-badge{ display:inline-flex; align-items:center; gap:.6em; padding:.5em .9em;
  background:var(--cream); border:1px solid var(--line); border-radius:100px;
  font-size:.9rem; box-shadow:var(--shadow-sm); }
.g-badge .num{ font-weight:600; }
.g-badge .g-logo{ width:18px; height:18px; flex:none; }
.g-badge .sep{ width:1px; height:16px; background:var(--line-2); }
.g-badge.on-dark{ background:rgba(255,255,255,.08); border-color:rgba(246,236,232,.2); color:var(--on-dark); }
.g-badge.on-dark .sep{ background:rgba(246,236,232,.25); }
/* pastille hero compacte (logo + note + étoiles, finit aux étoiles) */
.g-mini{ font-size:.85rem; padding:.4em .8em; gap:.5em; }
.g-mini .g-logo{ width:16px; height:16px; }
.g-mini .stars svg{ width:15px; height:15px; }

/* ----------------------------- Header -------------------------------- */
.header{ position:sticky; top:0; z-index:60; background:rgba(250,247,244,.86);
  backdrop-filter:saturate(1.2) blur(12px); -webkit-backdrop-filter:saturate(1.2) blur(12px);
  border-bottom:1px solid transparent; transition:background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.header.scrolled{ background:rgba(250,247,244,.95); border-color:var(--line); box-shadow:0 1px 0 rgba(26,21,18,.02), var(--shadow-sm); }
/* repli : sans backdrop-filter, fond solide (évite le header transparent, notamment mobile) */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .header{ background:var(--cream); }
  .header.scrolled{ background:var(--cream); }
}
.header-inner{ display:flex; align-items:center; gap:clamp(18px,3vw,40px); height:var(--header-h);
  padding-inline:var(--gutter); max-width:1360px; margin-inline:auto; }
.header-drawer{ display:contents; }  /* transparent au layout desktop ; devient un panneau déplié en mobile */
.brand{ display:inline-flex; align-items:center; gap:.7rem; flex:none; }
.brand-badge{ width:52px; height:52px; border-radius:var(--radius-logo); object-fit:cover;
  background:var(--accent); box-shadow:var(--shadow-sm); }
.brand-name{ display:flex; flex-direction:column; line-height:1; }
.brand-name .b1{ font-family:var(--serif); font-weight:700; font-size:1.15rem; letter-spacing:-.01em; }
.brand-name .b2{ font-family:var(--sans); font-weight:500; font-size:.62rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--muted); margin-top:.28em; }

.nav{ display:flex; align-items:center; gap:.35rem; }
.nav a, .nav .nav-trigger{ display:inline-flex; align-items:center; gap:.35em; padding:.5em .8em;
  font-weight:500; font-size:.96rem; color:var(--ink-80); border-radius:var(--radius);
  transition:color .2s var(--ease), background .2s var(--ease); }
.nav a:hover,.nav .nav-trigger:hover,.nav a[aria-current="page"]{ color:var(--accent); }
.nav a[aria-current="page"]{ font-weight:600; }
.nav-item{ position:relative; }
.nav-trigger .chev{ width:14px; height:14px; transition:transform .25s var(--ease); }
.nav-item:hover .chev, .nav-item:focus-within .chev{ transform:rotate(180deg); }
.dropdown{ position:absolute; top:calc(100% + 6px); left:0; min-width:288px; padding:.5rem;
  background:var(--cream); border:1px solid var(--line); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); opacity:0; visibility:hidden; transform:translateY(6px);
  transition:opacity .22s var(--ease), transform .22s var(--ease), visibility .22s; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a{ display:flex; flex-direction:column; align-items:flex-start; text-align:left; gap:.15rem; padding:.6rem .7rem; border-radius:var(--radius); }
.dropdown a strong{ font-weight:600; color:var(--ink); font-size:.95rem; }
.dropdown a span{ font-size:.8rem; color:var(--muted); }
.dropdown a:hover{ background:var(--rose); }
.dropdown a:hover strong{ color:var(--accent); }
.header-cta{ margin-left:auto; display:flex; align-items:center; gap:1rem; }
.burger{ display:none; width:44px; height:44px; margin-left:auto; align-items:center; justify-content:center; }
.burger span{ display:block; width:22px; height:2px; background:var(--ink); position:relative; transition:.3s var(--ease); }
.burger span::before,.burger span::after{ content:""; position:absolute; left:0; width:22px; height:2px; background:var(--ink); transition:.3s var(--ease); }
.burger span::before{ top:-7px; } .burger span::after{ top:7px; }

/* ----------------------- Barre d'annonce ----------------------------- */
.announce{ background:var(--grad); color:var(--on-dark); font-size:.82rem; }
.announce .container{ display:flex; align-items:center; justify-content:center; gap:1.4rem;
  height:40px; overflow:hidden; }
.announce .a-item{ display:inline-flex; align-items:center; gap:.5em; white-space:nowrap; }
.announce .a-item svg{ width:15px; height:15px; opacity:.85; }
.announce .dot{ width:3px; height:3px; border-radius:50%; background:var(--on-dark-soft); flex:none; }
.announce-track{ display:none; }

/* ------------------------------ Hero --------------------------------- */
.hero{ position:relative; min-height:clamp(560px, 82vh, 760px); display:flex; align-items:flex-end;
  overflow:hidden; background:var(--contrast); }
.hero-media{ position:absolute; inset:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-scrim{ position:absolute; inset:0; background:
  linear-gradient(96deg, rgba(18,14,11,.82) 0%, rgba(18,14,11,.52) 36%, rgba(18,14,11,.14) 60%, rgba(18,14,11,0) 82%),
  linear-gradient(180deg, rgba(18,14,11,.32) 0%, rgba(18,14,11,0) 32%, rgba(18,14,11,0) 50%, rgba(18,14,11,.52) 100%); }
.hero-scrim::after{ content:""; position:absolute; inset:0; mix-blend-mode:multiply;
  background:radial-gradient(140% 105% at 0% 100%, rgba(110,0,0,.42), transparent 56%); }
.hero-inner{ position:relative; z-index:2; width:100%; padding-block:clamp(40px,6vw,72px); }
.hero-inner .container{ max-width:var(--container); }
.hero .g-badge.on-dark{ background:rgba(18,14,11,.42); }
.hero h1{ color:#fff; max-width:15ch; margin-top:1.2rem; text-shadow:0 2px 30px rgba(0,0,0,.35); }
.hero .hero-tag{ color:rgba(255,255,255,.9); font-size:clamp(1.05rem,1.5vw,1.3rem); margin-top:1.2rem; max-width:42ch; text-shadow:0 1px 16px rgba(0,0,0,.35); }
.hero .cta-row{ margin-top:1.9rem; }
.hero .reassure{ margin-top:1.7rem; display:flex; gap:1.4rem; flex-wrap:wrap; color:rgba(255,255,255,.86); font-size:.9rem; }
.hero .reassure span{ display:inline-flex; align-items:center; gap:.45em; }
.hero .reassure svg{ width:16px; height:16px; opacity:.8; }
.cta-row{ display:flex; flex-wrap:wrap; gap:.9rem; align-items:center; }

/* Hero centré unifié : texte centré contenu, image/placeholder en fond plein */
.hero-c{ position:relative; min-height:clamp(460px,62vh,600px); display:grid; align-items:center;
  text-align:center; overflow:hidden; background:var(--contrast); }
.hero-c .hc-bg{ position:absolute; inset:0; }
.hero-c .hc-bg img{ width:100%; height:100%; object-fit:cover; }
.hero-c .hc-ph{ background:linear-gradient(158deg,#2A211B,#191411); }
.hero-c .hc-ph-tag{ position:absolute; left:50%; bottom:24px; transform:translateX(-50%);
  font-size:.68rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:rgba(246,236,232,.62);
  border:1px solid rgba(246,236,232,.22); padding:.42em .85em; border-radius:100px; background:rgba(0,0,0,.2); white-space:nowrap; }
.hero-c .hc-scrim{ position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(18,14,11,.34) 0%, rgba(18,14,11,.24) 45%, rgba(18,14,11,.5) 100%); }
.hero-c.has-img .hc-scrim{ background:linear-gradient(180deg, rgba(18,14,11,.5) 0%, rgba(18,14,11,.42) 45%, rgba(18,14,11,.66) 100%); }
.hero-c .hc-scrim::after{ content:""; position:absolute; inset:0; mix-blend-mode:multiply;
  background:radial-gradient(120% 92% at 50% 42%, rgba(110,0,0,.3), transparent 66%); }
.hero-c .container{ position:relative; z-index:2; }
.hero-c .hc-inner{ max-width:760px; margin-inline:auto; padding-block:clamp(52px,8vw,96px);
  display:flex; flex-direction:column; align-items:center; gap:clamp(14px,1.9vw,22px); }
.hero-c h1{ color:#fff; font-size:clamp(2rem,3.6vw,3.1rem); max-width:24ch; text-wrap:pretty; text-shadow:0 2px 30px rgba(0,0,0,.38); }
.hero-c .hc-lead{ color:rgba(255,255,255,.9); font-size:clamp(1.05rem,1.5vw,1.28rem); line-height:1.5;
  max-width:54ch; margin:0; text-shadow:0 1px 16px rgba(0,0,0,.35); }
.hero-c .hc-cta{ justify-content:center; margin-top:.25rem; }
.hero-c .g-badge.on-dark{ background:rgba(18,14,11,.5); border-color:rgba(246,236,232,.28); }
/* variante hero aligné à gauche (accueil) : bloc texte à gauche, coupures maîtrisées */
.hero-c.hero-left{ text-align:left; }
.hero-c.hero-left .hc-inner{ margin-inline:0; align-items:flex-start; }
.hero-c.hero-left h1{ max-width:none; }
.hero-c.hero-left .hc-lead{ margin-inline:0; }
.hero-c.hero-left .hc-cta{ justify-content:flex-start; }
/* DESKTOP uniquement : premier écran = hero + bande chiffres remplissent la hauteur visible
   (le hero grandit pour occuper l'espace, les chiffres se calent en bas de l'écran).
   Sur mobile/tablette, .hero-fold est un simple bloc : hero à sa taille normale, chiffres dessous. */
@media (min-width:900px){
  .hero-fold{ display:flex; flex-direction:column; min-height:calc(100svh - 125px); }
  .hero-fold > .hero-c{ flex:1 0 auto; }
  .hero-fold > .trust-band{ flex:0 0 auto; }
}
@media (max-width:560px){
  .hero-c .hc-cta{ flex-direction:column; width:100%; }
  .hero-c .hc-cta .btn{ width:100%; justify-content:center; }
  /* titre pleine taille : on gagne la place en resserrant le padding du hero */
  .hero-c.hero-left .container{ padding-inline:10px; }
  /* pastille nettement plus petite que le H1 sur mobile */
  .hero-c .g-mini{ font-size:.72rem; padding:.32em .7em; gap:.42em; }
  .hero-c .g-mini .g-logo{ width:14px; height:14px; }
  .hero-c .g-mini .stars svg{ width:13px; height:13px; }
}

/* Hero éditorial (transposé de 21st « Editorial Image Hero », repeint DA) */
.hero-editorial{ background:var(--cream); }
.hero-editorial .he-media{ position:relative; width:100%; overflow:hidden; }
.hero-editorial .he-media img{ width:100%; aspect-ratio:40/15; object-fit:cover; object-position:50% 62%; display:block;
  -webkit-mask-image:linear-gradient(180deg,#000 84%,transparent 100%); mask-image:linear-gradient(180deg,#000 84%,transparent 100%); }
.hero-editorial .he-media::after{ content:""; position:absolute; inset:0; background:rgba(26,21,18,.05); pointer-events:none; }
.hero-editorial .he-copy{ display:grid; grid-template-columns:repeat(12,1fr); gap:clamp(20px,3vw,40px);
  padding-block:clamp(26px,3.4vw,44px) clamp(40px,6vw,80px); }
.hero-editorial .he-left{ grid-column:1 / span 4; display:flex; flex-direction:column; gap:1.3rem; align-items:flex-start; }
.hero-editorial .he-right{ grid-column:6 / span 7; display:flex; flex-direction:column; align-items:flex-start; gap:clamp(14px,1.8vw,22px); }
.hero-editorial h1{ margin:0; }
.hero-editorial .he-tag{ color:var(--ink-80); font-size:clamp(1.05rem,1.5vw,1.28rem); line-height:1.5; max-width:46ch; margin:0; }
.hero-editorial .he-reassure{ display:flex; flex-direction:column; gap:.7rem; color:var(--muted); font-size:.9rem; }
.hero-editorial .he-reassure span{ display:inline-flex; align-items:center; gap:.5em; }
.hero-editorial .he-reassure svg{ width:16px; height:16px; color:var(--accent); }
@media (max-width: 860px){
  .hero-editorial .he-media img{ aspect-ratio:16/10; object-position:50% 60%; }
  .hero-editorial .he-copy{ grid-template-columns:1fr; gap:1.6rem; }
  .hero-editorial .he-left, .hero-editorial .he-right{ grid-column:1 / -1; }
  .hero-editorial .he-left{ order:2; }
}

/* Hero secondaire (pages intérieures) : split image/texte */
.page-hero{ padding-block:clamp(56px,7vw,96px); }
.page-hero .ph-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,5vw,64px); align-items:center; }
.page-hero h1{ margin-top:1rem; }
.page-hero .lead{ margin-top:1.2rem; }
.page-hero .cta-row{ margin-top:1.8rem; }
.page-hero .ph-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.page-hero.compact{ padding-block:clamp(48px,6vw,84px); }
.page-hero.compact .ph-grid{ grid-template-columns:1fr; max-width:840px; }

/* --------------------------- Placeholders ---------------------------- */
/* visuels de projet « soignés » : linework architectural + gradient signature */
.ph{ position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/3;
  background:linear-gradient(158deg, var(--cream-2), var(--cream-3)); border:1px solid var(--line);
  display:grid; place-items:center; box-shadow:inset 0 0 0 1px rgba(250,247,244,.4); }
.ph .ph-lines{ width:62%; height:62%; color:var(--accent); opacity:.5; }
.ph .ph-tag{ position:absolute; top:14px; left:14px; z-index:2;
  font-size:.68rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; padding:.42em .78em; border-radius:100px;
  background:rgba(250,247,244,.92); color:var(--accent); border:1px solid var(--line); }
.ph.grad{ background:var(--grad); border-color:transparent; box-shadow:none; }
.ph.grad .ph-lines{ color:rgba(246,236,232,.6); opacity:1; }
.ph.grad .ph-tag{ background:rgba(26,21,18,.24); color:var(--cream); border-color:rgba(246,236,232,.28); }
.ph.ink{ background:linear-gradient(158deg,#26201A,#191411); border-color:transparent; box-shadow:none; }
.ph.ink .ph-lines{ color:rgba(246,236,232,.45); opacity:1; }
.ph.ink .ph-tag{ background:rgba(246,236,232,.12); color:var(--cream); border-color:rgba(246,236,232,.22); }
.ph-note{ font-size:.82rem; color:var(--muted); margin-top:var(--sp-2); font-style:italic; max-width:60ch; }
/* note de maquette : carte teintée, icône + label + texte. Deux types : note (carmin) / suggestion (ambre) */
.note-maq{ display:flex; gap:.75rem; align-items:flex-start; margin-top:var(--sp-3); max-width:66ch;
  padding:.9rem 1.1rem; background:var(--rose); border:1px solid var(--rose-2); border-radius:var(--radius); }
.note-maq .nm-ico{ flex:none; display:grid; place-items:center; margin-top:.05rem; }
.note-maq .nm-ico svg{ width:20px; height:20px; color:var(--accent); }
.note-maq .nm-body{ display:flex; flex-direction:column; gap:.18rem; }
.note-maq .nm-label{ font-family:var(--sans); font-weight:600; font-size:.66rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--accent); font-style:normal; }
.note-maq .nm-txt{ font-size:.86rem; line-height:1.5; color:var(--ink-80); font-style:italic; }
/* Suggestion : teinte ambre, distincte des notes carmin */
.note-maq.suggestion{ background:#F8F0E0; border-color:#E7D3A3; }
.note-maq.suggestion .nm-ico svg, .note-maq.suggestion .nm-label{ color:#976B1B; }
/* sur fond sombre */
.bg-grad .note-maq, .bg-dark .note-maq{ background:rgba(246,236,232,.12); border-color:rgba(246,236,232,.3); }
.bg-grad .note-maq .nm-ico svg, .bg-dark .note-maq .nm-ico svg,
.bg-grad .note-maq .nm-label, .bg-dark .note-maq .nm-label{ color:var(--cream); }
.bg-grad .note-maq .nm-txt, .bg-dark .note-maq .nm-txt{ color:var(--on-dark); }
.bg-grad .note-maq.suggestion, .bg-dark .note-maq.suggestion{ background:rgba(230,200,140,.15); border-color:rgba(230,200,140,.4); }

/* --------------------------- Cartes projet --------------------------- */
.project{ display:flex; flex-direction:column; background:var(--cream); border:1px solid var(--line);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.project:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--line-2); }
.project .ph{ aspect-ratio:4/3; border:none; border-radius:0; box-shadow:none; }
.project figcaption{ padding:1.05rem 1.15rem 1.2rem; display:flex; flex-direction:column; }
.project .p-chip{ display:block; font-weight:600; color:var(--accent); letter-spacing:.04em;
  text-transform:uppercase; font-size:.72rem; }
.project .p-loc{ font-size:.86rem; color:var(--muted); margin-top:.3rem; }
.project h3{ font-size:1.15rem; margin-top:.5rem; line-height:1.2; }
.project .p-status{ margin-top:.55rem; padding-top:.55rem; border-top:1px solid var(--line);
  font-size:.85rem; color:var(--ink-60); }
.grid:has(> .project){ align-items:start; }
.project-link .ph{ transition:transform .5s var(--ease), box-shadow .4s var(--ease); }
.project-link:hover .ph{ transform:translateY(-4px); box-shadow:var(--shadow-md); }

/* Galerie réalisations : grille 2 colonnes (desktop) / carrousel scroll-snap (tablette + mobile) */
.gallery-track{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(20px,2.4vw,32px); align-items:start; }
.gallery-nav{ display:none; }
@media (max-width:900px){
  .gallery-track{ display:flex; grid-template-columns:none; overflow-x:auto; scroll-snap-type:x mandatory;
    gap:16px; scroll-padding-inline:var(--gutter);
    margin-inline:calc(-1 * var(--gutter)); padding:4px var(--gutter) 6px; scrollbar-width:none; }
  .gallery-track::-webkit-scrollbar{ display:none; }
  .gallery-track > .project{ flex:0 0 min(84%, 400px); scroll-snap-align:center; }
  .gallery-nav{ display:flex; align-items:center; justify-content:center; gap:1.1rem; margin-top:1.5rem; }
}
.gal-arrow{ width:44px; height:44px; flex:none; border-radius:50%; border:1px solid var(--line-2);
  display:grid; place-items:center; color:var(--ink); background:var(--cream); cursor:pointer; transition:.2s var(--ease); }
.gal-arrow:hover{ border-color:var(--accent); color:var(--accent); }
.gal-arrow svg{ width:20px; height:20px; }
.gal-arrow[data-gal="prev"] svg{ transform:scaleX(-1); }
.gal-arrow:disabled{ opacity:.32; pointer-events:none; }
.gallery-dots{ display:flex; align-items:center; gap:7px; }
.gal-dot{ width:8px; height:8px; padding:0; border:none; border-radius:100px; background:var(--line-2);
  cursor:pointer; transition:width .3s var(--ease), background .3s var(--ease); }
.gal-dot.is-active{ width:24px; background:var(--accent); }

/* bento asymétrique pour la galerie d'accueil */
.bento{ display:grid; grid-template-columns:repeat(6,1fr); gap:clamp(14px,1.6vw,22px); }
.bento .project{ grid-column:span 2; }
.bento .project.wide{ grid-column:span 3; }
.bento .project.tall .ph{ aspect-ratio:3/4; }
.bento .project.wide .ph{ aspect-ratio:16/10; }

/* --------------------------- Liste prestations ----------------------- */
.rows{ border-top:1px solid var(--line); }
.row-item{ display:grid; grid-template-columns:auto 1fr auto; gap:clamp(16px,2.5vw,34px);
  align-items:center; padding:clamp(20px,2.6vw,30px) 0; border-bottom:1px solid var(--line);
  transition:padding-left .3s var(--ease); }
.row-item .r-body h3{ margin-bottom:.35rem; }
.row-item .r-body p{ color:var(--ink-80); max-width:64ch; margin:0; }
.row-item .r-go{ color:var(--muted); transition:color .25s var(--ease), transform .25s var(--ease); }
.row-item .r-go svg{ width:22px; height:22px; }
a.row-item:hover{ padding-left:10px; }
a.row-item:hover .ico-badge{ background:var(--grad); color:var(--cream); }
a.row-item:hover .r-go{ color:var(--accent); transform:translateX(4px); }

/* --------------------------- Feature cards --------------------------- */
.feature{ padding:clamp(22px,2.4vw,32px); background:var(--cream); border:1px solid var(--line);
  border-radius:var(--radius-lg); transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.feature .ico-badge{ margin-bottom:1.1rem; }
.feature h3{ font-size:1.2rem; margin-bottom:.5rem; }
.feature p{ color:var(--ink-80); font-size:.96rem; margin:0; }
.feature:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--line-2); }
.bg-dark .feature, .bg-grad .feature{ background:rgba(255,255,255,.05); border-color:rgba(246,236,232,.16); }
.bg-dark .feature h3, .bg-grad .feature h3{ color:var(--on-dark); }
.bg-dark .feature p, .bg-grad .feature p{ color:var(--on-dark-soft); }
.bg-dark .feature .ico-badge, .bg-grad .feature .ico-badge{ background:rgba(246,236,232,.12); color:var(--cream); }

/* ----------------------------- Stepper ------------------------------- */
/* frise : 4 teintes crème -> carmin le long de la ligne, bordures des ronds assorties */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(20px,2.4vw,30px); position:relative;
  --st1:#D8CCC1; --st2:#D3A6A0; --st3:#BE5E52; --st4:#A30001; }
.step{ position:relative; }
.step .s-top{ display:flex; align-items:center; gap:.9rem; margin-bottom:1rem; }
.step .s-num{ font-family:var(--serif); font-weight:700; font-size:1.6rem; color:var(--accent);
  width:52px; height:52px; display:grid; place-items:center; border-radius:50%;
  border:2px solid var(--line-2); background:var(--cream); flex:none; transition:border-color .3s ease; }
.step .s-line{ flex:1; height:2px; border-radius:2px;
  background:linear-gradient(var(--sdir,90deg), var(--sc1,var(--line-2)), var(--sc2,var(--line-2))); }
.step:nth-child(1){ --sc1:var(--st1); --sc2:var(--st2); }
.step:nth-child(2){ --sc1:var(--st2); --sc2:var(--st3); }
.step:nth-child(3){ --sc1:var(--st3); --sc2:var(--st4); }
.step:nth-child(1) .s-num{ border-color:var(--st1); }
.step:nth-child(2) .s-num{ border-color:var(--st2); }
.step:nth-child(3) .s-num{ border-color:var(--st3); }
.step:nth-child(4) .s-num{ border-color:var(--st4); }
.step:last-child .s-line{ background:transparent; }
.step h3{ font-size:1.18rem; margin-bottom:.45rem; }
.step p{ color:var(--ink-80); font-size:.95rem; margin:0; }
.step .ico{ width:20px; height:20px; color:var(--accent); }

/* ------------------------------ Avis --------------------------------- */
.reviews-head{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:1rem; margin-bottom:clamp(28px,3.6vw,48px); }
.rating-pill{ padding:.58em 1.15em; font-size:.96rem; }
.rating-pill .g-logo{ width:22px; height:22px; }
.rating-pill .num{ font-weight:700; font-size:1.12rem; }
.rating-pill .stars svg{ width:17px; height:17px; }

/* marquee 2 rangées, sens opposés (+ scroll manuel de secours) */
.marquee{ display:flex; flex-direction:column; gap:clamp(14px,1.6vw,22px);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.mq-row{ display:flex; gap:clamp(14px,1.6vw,22px); overflow-x:auto; scrollbar-width:none; }
.mq-row::-webkit-scrollbar{ display:none; }
.mq-track{ display:flex; gap:clamp(14px,1.6vw,22px); flex:none; animation:marquee 64s linear infinite; }
.mq-row.rev .mq-track{ animation-direction:reverse; animation-duration:74s; }
.marquee:hover .mq-track{ animation-play-state:paused; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .mq-track{ animation:none; } }

.review-card{ flex:none; width:min(400px,84vw); padding:1.5rem 1.6rem; background:var(--cream);
  border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column; gap:.8rem; color:var(--ink); }
.review-card .rc-top{ display:flex; align-items:center; justify-content:space-between; }
.review-card .rc-who{ display:flex; align-items:center; gap:.7rem; }
.review-card .rc-av{ width:38px; height:38px; border-radius:50%; background:var(--grad); color:var(--cream);
  display:grid; place-items:center; font-weight:600; font-size:.95rem; flex:none; font-family:var(--sans); }
.review-card .rc-name{ font-weight:600; font-size:.95rem; }
.review-card .rc-src{ font-size:.74rem; color:var(--muted); display:flex; align-items:center; gap:.3em; }
.review-card .rc-src .g-logo{ width:13px; height:13px; }
.review-card p{ font-size:.94rem; color:var(--ink-80); line-height:1.55; margin:0; }
.reviews-cta{ display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap; margin-top:clamp(28px,3.6vw,44px); }

/* ---------------------------- Territoire ----------------------------- */
.territory{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(28px,5vw,64px); align-items:center; }
/* cartes d'adresses (page Contact) : fond teinté, bordure couleur, icône par ligne */
.addr-full{ display:flex; flex-direction:column; gap:.5rem; padding:1.15rem 1.25rem; border-radius:var(--radius-lg);
  background:var(--rose); border:1px solid rgba(163,0,1,.18);
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
.addr-full:hover{ border-color:var(--accent); box-shadow:var(--shadow-sm); transform:translateY(-2px); }
.addr-full .af-city{ font-family:var(--serif); font-weight:700; font-size:1.15rem; color:var(--ink); margin-bottom:.1rem; }
.addr-full .af-line{ display:flex; align-items:flex-start; gap:.55rem; font-size:.9rem; color:var(--ink-80); line-height:1.45; }
.addr-full .af-line .af-i{ flex:none; display:grid; place-items:center; margin-top:.06rem; }
.addr-full .af-line .af-i svg{ width:16px; height:16px; color:var(--accent); }
.addr-full a.link-arrow{ margin-top:.4rem; font-size:.86rem; }
.addr-tag{ display:inline-block; margin-top:.7rem; font-size:.72rem; font-weight:600; letter-spacing:.05em;
  text-transform:uppercase; padding:.35em .75em; border-radius:100px; background:var(--rose); color:var(--accent); border:1px solid var(--rose-2); }

.city-list{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.6rem; }
.city-chip{ display:inline-flex; align-items:center; gap:.5em; padding:.55em .95em; border-radius:100px;
  background:var(--cream); border:1px solid var(--line); font-size:.9rem; font-weight:500;
  transition:.25s var(--ease); }
.city-chip svg{ width:14px; height:14px; color:var(--accent); }
a.city-chip:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-2px); }
.city-chip.plain{ color:var(--ink-80); }
.map-fr{ position:relative; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  background:var(--cream-2); padding:clamp(18px,3vw,30px); }
.map-fr svg{ width:100%; height:auto; display:block; }

/* ---------------------------- Formulaire ----------------------------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,64px); align-items:start; }
.form{ display:grid; gap:1rem; }
.form-body{ display:grid; gap:1.15rem; }
.form-body .btn{ justify-self:start; margin-top:.4rem; }
.form-body .form-note{ margin-top:-.5rem; }
.form .f-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field{ display:flex; flex-direction:column; gap:.4rem; }
.field label{ font-size:.82rem; font-weight:600; color:var(--ink-80); }
.field input,.field textarea{ font:inherit; font-size:.98rem; padding:.85em 1em; border-radius:var(--radius);
  border:1px solid var(--line-2); background:var(--cream); color:var(--ink); transition:border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus,.field textarea:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px rgba(163,0,1,.12); }
.form-note{ font-size:.8rem; color:var(--muted); }
.form-success{ display:none; padding:1.1rem 1.2rem; background:var(--rose); border:1px solid var(--rose-2);
  border-radius:var(--radius); color:var(--contrast); font-weight:500; align-items:center; gap:.6rem; }
.form-success svg{ width:20px; height:20px; flex:none; color:var(--accent); }
.form.sent .form-body{ display:none; }
.form.sent .form-success{ display:flex; }
.contact-aside .info-item{ display:flex; gap:.9rem; padding:1.1rem 0; border-bottom:1px solid var(--line); }
.contact-aside .info-item:first-child{ border-top:1px solid var(--line); }
.contact-aside .ico-badge{ width:42px; height:42px; }
.contact-aside .info-item h4{ font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:.25rem; }
.contact-aside .info-item .v{ font-weight:500; color:var(--ink); }
.bg-dark .field input,.bg-dark .field textarea,.bg-grad .field input,.bg-grad .field textarea{
  background:rgba(255,255,255,.06); border-color:rgba(246,236,232,.22); color:var(--on-dark); }
.bg-dark .field label,.bg-grad .field label{ color:var(--on-dark-soft); }

/* --------------------------- Filtres (réal.) ------------------------- */
.filters{ display:flex; flex-direction:column; gap:1.1rem; }
.filter-group{ display:flex; flex-wrap:wrap; gap:.45rem; align-items:center; }
.filter-group .fg-label{ font-size:.75rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-right:.5rem; }
/* chips segmentés à compteur (transposés de 21st « Filter Grid ») */
.fchip{ display:inline-flex; align-items:center; gap:.5em; height:34px; padding:0 .85em; border-radius:7px;
  border:1px solid var(--line-2); background:var(--cream); font-size:.86rem; font-weight:500; color:var(--ink-80);
  transition:background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.fchip .fc-count{ font-size:.74rem; color:var(--muted); font-variant-numeric:tabular-nums; }
.fchip:hover{ border-color:var(--ink); }
.fchip[aria-checked="true"]{ background:var(--ink); border-color:var(--ink); color:var(--cream); }
.fchip[aria-checked="true"] .fc-count{ color:rgba(246,236,232,.7); }
.fchip[aria-disabled="true"]{ opacity:.4; pointer-events:none; }
.fchip:focus-visible{ outline:none; box-shadow:0 0 0 3px rgba(163,0,1,.18); }
.project{ transition:opacity .35s var(--ease), transform .35s var(--ease); }
.project.hide{ display:none; }
.filter-empty{ display:none; padding:3rem 2rem; text-align:center; color:var(--muted); font-size:.95rem; }

/* ------------------------------ Split -------------------------------- */
.overlap .split{ align-items:stretch; }
.split-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.split-media img{ width:100%; height:100%; object-fit:cover; }
.stat-row{ display:flex; gap:clamp(24px,4vw,48px); flex-wrap:wrap; margin-top:1.6rem; }
.stat{ }
.stat .s-n{ font-family:var(--serif); font-weight:700; font-size:clamp(2rem,3vw,2.8rem); color:var(--accent); line-height:1; }
.stat .s-l{ font-size:.86rem; color:var(--muted); margin-top:.35rem; }
.bg-dark .stat .s-n, .bg-grad .stat .s-n{ color:var(--on-dark); }

/* citation pleine largeur */
.quote{ text-align:center; max-width:900px; margin-inline:auto; }
.quote p{ font-family:var(--serif); font-weight:700; font-size:clamp(1.6rem,3.2vw,2.6rem);
  line-height:1.24; max-width:none; margin:0; }

/* ------------------------------ Footer ------------------------------- */
/* Footer : rupture finale en crème unie (jamais de couleur), texte foncé */
.footer{ background:var(--cream-3); color:var(--ink-80); border-top:1px solid var(--line); }
.footer-map{ height:clamp(260px,32vw,380px); background:var(--cream-3); position:relative; }
.footer-map iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.15) contrast(1.02); }
.footer .container{ padding-block:clamp(40px,5vw,64px) clamp(24px,3vw,36px); }
.footer-sep{ height:1px; background:var(--line); margin-block:clamp(28px,3.4vw,40px); }
.footer-id{ display:grid; grid-template-columns:1.3fr 1fr; gap:clamp(28px,5vw,64px); }
.footer-brand .brand-badge{ width:64px; height:64px; }
.footer-brand .fb-name{ font-family:var(--serif); font-weight:700; font-size:1.4rem; color:var(--ink); margin-top:1rem; }
.footer-brand .fb-pos{ color:var(--ink-80); margin-top:.4rem; max-width:42ch; }
.footer-brand .fb-tag{ color:var(--ink); font-style:italic; margin-top:.9rem; }
.footer-brand .fb-re{ display:flex; gap:1.2rem; flex-wrap:wrap; margin-top:1.2rem; font-size:.85rem; }
.footer-brand .fb-re span{ display:inline-flex; align-items:center; gap:.45em; }
.footer-brand .fb-re svg{ width:15px; height:15px; color:var(--accent); }
.footer-contact{ display:flex; flex-direction:column; gap:1rem; }
.footer-contact h4{ font-size:.76rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-bottom:.2rem; }
.footer-contact a.fc-mail{ color:var(--ink); font-size:1.05rem; font-weight:500; border-bottom:1px solid var(--line-2); padding-bottom:2px; width:fit-content; transition:border-color .2s; }
.footer-contact a.fc-mail:hover{ border-color:var(--accent); }
.footer-contact .fc-phone{ color:var(--ink); font-size:1.05rem; }
.footer-contact .fc-hours{ color:var(--ink-80); }
.footer-nav{ display:grid; grid-template-columns:1.2fr 2fr; gap:clamp(24px,4vw,48px); }
.footer-nav .fn-col h4{ font-size:.76rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-bottom:1rem; }
.footer-nav ul{ display:flex; flex-direction:column; gap:.6rem; }
.footer-nav .fn-cities{ columns:2; }
.footer-nav a{ color:var(--ink-80); font-size:.92rem; transition:color .2s; }
.footer-nav a:hover{ color:var(--accent); }
.footer-social{ display:flex; gap:.7rem; margin-top:1.2rem; }
.footer-social a{ width:44px; height:44px; border:1px solid var(--line-2); border-radius:50%;
  display:grid; place-items:center; color:var(--ink-80); transition:.25s var(--ease); }
.footer-social a:hover{ color:var(--accent); border-color:var(--accent); background:var(--rose); }
.footer-social svg{ width:18px; height:18px; }
.footer-legal{ display:flex; flex-wrap:wrap; gap:.4rem 1rem; align-items:center; font-size:.82rem; color:var(--muted); }
.footer-legal a:hover{ color:var(--accent); }
.footer-legal .dot{ width:3px; height:3px; border-radius:50%; background:var(--muted); }

/* fin de page CTA */
.endcta{ text-align:center; }
.endcta .container{ max-width:760px; }
.endcta h2{ margin-bottom:1.4rem; }

/* CTA de fin en carte (composant) : dégradé signature d'accent, icônes prestations sur-mesure */
.cta-card{ max-width:880px; margin-inline:auto; background:var(--grad); border-radius:14px;
  padding:54px 44px; text-align:center; color:#FAF7F4; box-shadow:var(--shadow-lg); }
.cta-card .cc-over{ font-family:var(--sans); font-weight:500; font-size:11px; letter-spacing:.2em;
  text-transform:uppercase; color:#E9BFBF; }
.cta-card .cc-h2{ font-family:var(--serif); font-weight:700; font-size:clamp(30px,3.6vw,40px);
  line-height:1.1; color:#FAF7F4; margin-top:20px; }
.cta-card .cc-sub{ font-family:var(--sans); font-weight:400; font-size:16px; line-height:1.65;
  color:#F0D6D6; max-width:52ch; margin:16px auto 0; }
.cta-card .cc-sep{ height:1px; background:rgba(250,247,244,.2); margin-block:34px; }
.cta-card .cc-row{ display:grid; }
.cta-card .cc-row3{ grid-template-columns:repeat(3,minmax(0,1fr)); margin-bottom:30px; }
.cta-card .cc-row2{ grid-template-columns:repeat(2,minmax(0,1fr)); max-width:66%; margin:0 auto 38px; }
.cta-card .cc-item{ padding:0 14px; }
.cta-card .cc-item + .cc-item{ border-left:1px solid rgba(250,247,244,.16); }
.cta-card .cc-ico{ display:block; }
.cta-card .cc-ico svg{ width:24px; height:24px; color:#F0D6D6; margin:0 auto; }
.cta-card .cc-t{ font-family:var(--sans); font-weight:500; font-size:13px; color:#FAF7F4; margin-top:10px; }
.cta-card .cc-d{ font-family:var(--sans); font-weight:400; font-size:12px; line-height:1.4; color:#D9AFAF; margin-top:4px; }
.cta-card .cc-btn{ display:inline-flex; align-items:center; gap:10px; background:#FAF7F4; color:#A30001;
  font-family:var(--sans); font-weight:500; font-size:15px; padding:16px 34px; border-radius:4px;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease); }
.cta-card .cc-btn:hover{ transform:translateY(-2px); box-shadow:0 12px 26px -12px rgba(0,0,0,.45); }
.cta-card .cc-btn svg{ width:17px; height:17px; transition:transform .2s var(--ease); }
.cta-card .cc-btn:hover svg{ transform:translateX(3px); }
.cta-card .cc-actions{ display:flex; gap:14px; align-items:center; justify-content:center; flex-wrap:wrap; }
.cta-card .cc-btn2{ display:inline-flex; align-items:center; gap:8px; background:transparent; color:#FAF7F4;
  font-family:var(--sans); font-weight:500; font-size:15px; padding:16px 30px; border-radius:4px;
  border:1px solid rgba(250,247,244,.5); transition:border-color .2s var(--ease), background .2s var(--ease); }
.cta-card .cc-btn2:hover{ border-color:#FAF7F4; background:rgba(250,247,244,.1); }
.cta-card .cc-btn2 svg{ width:17px; height:17px; color:#FAF7F4; }
.cta-card .cc-info{ display:flex; gap:34px; flex-wrap:wrap; justify-content:center; }
.cta-card .cc-info span{ display:inline-flex; align-items:center; gap:8px; font-family:var(--sans); font-size:13px; color:#E0B8B8; }
.cta-card .cc-info span svg{ width:16px; height:16px; color:#E0B8B8; }
@media (max-width:680px){
  .cta-card{ padding:40px 22px; }
  .cta-card .cc-row3, .cta-card .cc-row2{ grid-template-columns:repeat(2,1fr); max-width:none; row-gap:26px; }
  /* filet uniquement entre 2 colonnes d'une même ligne, jamais orphelin */
  .cta-card .cc-row3 .cc-item:nth-child(odd), .cta-card .cc-row2 .cc-item:nth-child(odd){ border-left:none; }
}
@media (max-width:520px){
  .cta-card .cc-actions{ flex-direction:column; }
  .cta-card .cc-btn, .cta-card .cc-btn2{ width:100%; justify-content:center; }
}
@media (max-width:440px){
  .cta-card .cc-row3, .cta-card .cc-row2{ grid-template-columns:1fr; row-gap:22px; }
  .cta-card .cc-item + .cc-item{ border-left:none; }   /* même spécificité que la base -> gagne, aucun filet orphelin */
  .cta-card .cc-info{ flex-direction:column; gap:14px; }
}

/* ---------------------- Sélecteur segmenté --------------------------- */
.seg-wrap{ text-align:center; }
.seg-control{ display:inline-flex; background:var(--cream); border:1px solid var(--line); border-radius:100px; padding:4px; gap:2px; box-shadow:var(--shadow-sm); }
.seg-control button{ display:inline-flex; align-items:center; gap:.5em; padding:.6em 1.3em; border-radius:100px;
  font-weight:600; font-size:.94rem; color:var(--ink-80); transition:.25s var(--ease); }
.seg-control button svg{ width:18px; height:18px; }
.seg-control button[aria-selected="true"]{ background:var(--grad); color:var(--cream); box-shadow:var(--shadow-sm); }
.seg-panels{ margin-top:2rem; max-width:760px; margin-inline:auto; }
.seg-panel{ display:grid; grid-template-columns:auto 1fr; gap:1.4rem; align-items:center; text-align:left;
  padding:clamp(22px,2.4vw,32px); background:var(--cream); border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); }
.seg-panel .ico-badge{ width:56px; height:56px; }
.seg-panel h3{ margin-bottom:.4rem; }
.seg-panel p{ color:var(--ink-80); margin:0; }
.seg-wrap.seg-ready .seg-panel:not(.active){ display:none; }

/* ----------------------------- Onglets ------------------------------- */
.tabs .tab-list{ display:flex; gap:.3rem; border-bottom:1px solid var(--line); flex-wrap:wrap; }
.tab-btn{ display:inline-flex; align-items:center; gap:.5em; padding:.85em 1.15em; font-weight:600; font-size:.96rem;
  color:var(--ink-80); border-bottom:2px solid transparent; margin-bottom:-1px; transition:.2s var(--ease); }
.tab-btn svg{ width:18px; height:18px; }
.tab-btn[aria-selected="true"]{ color:var(--accent); border-bottom-color:var(--accent); }
.tab-btn:hover{ color:var(--accent); }
.tab-panels{ margin-top:2rem; }
.tab-panel{ display:grid; grid-template-columns:auto 1fr; gap:clamp(20px,3vw,40px); align-items:center; }
.tab-panel .tp-visual{ width:clamp(120px,16vw,180px); }
.tab-panel .ico-badge{ width:64px; height:64px; }
.tab-panel h3{ font-size:1.5rem; margin-bottom:.6rem; }
.tab-panel p{ color:var(--ink-80); max-width:52ch; margin:0; }
.tabs.tabs-ready .tab-panel:not(.active){ display:none; }

/* ---------------------------- Accordéon ------------------------------ */
.accordion{ border-top:1px solid var(--line); max-width:860px; }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-head{ width:100%; display:flex; align-items:center; gap:1.1rem; padding:clamp(18px,2.2vw,26px) 0;
  font-family:var(--serif); font-weight:700; font-size:clamp(1.1rem,1.6vw,1.35rem); color:var(--ink); text-align:left;
  transition:color .2s var(--ease); }
.acc-head:hover{ color:var(--accent); }
.acc-head .ico-badge{ width:44px; height:44px; flex:none; }
.acc-plus{ margin-left:auto; width:26px; height:26px; flex:none; position:relative; color:var(--accent); transition:transform .3s var(--ease); }
.acc-plus::before,.acc-plus::after{ content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); background:currentColor; }
.acc-plus::before{ width:14px; height:2px; } .acc-plus::after{ width:2px; height:14px; transition:transform .3s var(--ease); }
.acc-item.open .acc-plus::after{ transform:translate(-50%,-50%) scaleY(0); }
.acc-body{ padding:0 0 clamp(18px,2vw,24px) 55px; color:var(--ink-80); max-width:64ch; }
.acc-body p{ margin:0; }
.accordion.acc-ready .acc-item:not(.open) .acc-body{ display:none; }

/* ------------------------- Table comparative ------------------------- */
.compare-wrap{ overflow-x:auto; border:1px solid var(--line); border-radius:var(--radius-lg); }
.compare{ width:100%; border-collapse:collapse; min-width:560px; background:var(--cream); }
.compare caption{ text-align:left; padding:1rem 1.2rem; color:var(--muted); font-size:.85rem; }
.compare th,.compare td{ padding:1rem 1.3rem; text-align:left; border-bottom:1px solid var(--line); vertical-align:top; font-size:.96rem; }
.compare thead th{ font-family:var(--serif); font-weight:700; font-size:1.15rem; color:var(--ink); border-bottom:1px solid var(--line-2); }
.compare thead th:first-child{ background:transparent; }
.compare thead th.hi{ color:var(--accent); }
.compare tbody th{ font-weight:600; color:var(--muted); font-size:.8rem; letter-spacing:.04em; text-transform:uppercase; width:22%; }
.compare tbody tr:last-child td,.compare tbody tr:last-child th{ border-bottom:none; }
.compare td{ color:var(--ink-80); }
.compare .col-hi{ background:var(--rose); }

/* ------------------------ Bandeau de confiance ----------------------- */
.trust-band{ background:var(--cream-2); border-block:1px solid var(--line); }
.trust-band .container{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:clamp(20px,3vw,44px); padding-block:clamp(20px,2.4vw,28px); }
.trust-item{ display:inline-flex; align-items:center; gap:.6em; font-size:.92rem; color:var(--ink-80); }
.trust-item svg{ width:19px; height:19px; color:var(--accent); }
.trust-item strong{ font-weight:600; color:var(--ink); }
.trust-item .stars svg{ width:14px; height:14px; }
.trust-sep{ width:1px; height:22px; background:var(--line-2); }

/* -------------------------- Split chevauchement ---------------------- */
.overlap-stack{ position:relative; padding:6% 8% 10% 0; }
.overlap-stack .os{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.overlap-stack .os-back{ width:78%; }
.overlap-stack .os-front{ position:absolute; right:0; bottom:0; width:58%; border:5px solid var(--cream); }
.overlap-cap{ margin-top:.9rem; font-size:.8rem; color:var(--muted); font-style:italic; }

/* ----------------------------- Info band ----------------------------- */
.info-band{ display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:var(--cream); }
.info-band .ib{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:.8rem;
  padding:clamp(26px,3vw,40px) 1.2rem; border-left:1px solid var(--line); }
.info-band .ib:first-child{ border-left:none; }
.info-band .ib h4{ font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.info-band .ib .v{ font-size:1.05rem; font-weight:500; color:var(--ink); }
.info-band .ib .ico-badge{ width:48px; height:48px; }

/* --------------------------- Showcase asym. -------------------------- */
.showcase{ display:grid; grid-template-columns:1.35fr 1fr; gap:clamp(16px,2vw,26px); align-items:start; }
.showcase .project.wide .ph{ aspect-ratio:4/3.2; }
.showcase .project.tall .ph{ aspect-ratio:3/3.6; }

/* -------------------------- Territoire centré ------------------------ */
.territory-center{ max-width:900px; margin-inline:auto; text-align:center; }
.territory-center .map-fr{ max-width:600px; margin:0 auto 1.6rem; }
.territory-center .city-list{ justify-content:center; }
.territory-center .ph-note{ margin-inline:auto; }

/* ------------------------- Reveal on scroll -------------------------- */
.js-reveal .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); will-change:opacity,transform; }
.js-reveal .reveal.in{ opacity:1; transform:none; }
.js-reveal .reveal.d1{ transition-delay:.08s; }
.js-reveal .reveal.d2{ transition-delay:.16s; }
.js-reveal .reveal.d3{ transition-delay:.24s; }
@media (prefers-reduced-motion: reduce){
  .js-reveal .reveal{ opacity:1 !important; transform:none !important; transition:none; }
}

/* ----------------------------- Responsive ---------------------------- */
@media (max-width: 1000px){
  .bento{ grid-template-columns:repeat(4,1fr); }
  .bento .project, .bento .project.wide{ grid-column:span 2; }
  .footer-id{ grid-template-columns:1fr; }
}
@media (max-width: 860px){
  :root{ --header-h:72px; }
  .nav, .header-cta .btn{ display:none; }
  .burger{ display:flex; }
  .header{ background:var(--cream); }
  /* la barre ne bouge JAMAIS : le menu se déplie en panneau absolu SOUS la barre */
  .header.menu-open .header-drawer{
    display:flex; flex-direction:column; gap:.1rem;
    position:absolute; top:100%; left:0; right:0;
    background:var(--cream); border-top:1px solid var(--line); box-shadow:var(--shadow-lg);
    padding:.5rem var(--gutter) 1.1rem; max-height:calc(100dvh - var(--header-h)); overflow-y:auto; }
  .header.menu-open .nav{ display:flex; flex-direction:column; align-items:stretch; gap:.1rem; }
  .header.menu-open .nav a, .header.menu-open .nav .nav-trigger{ padding:.8em .2em; font-size:1.05rem; }
  .header.menu-open .nav-item{ position:static; }
  .header.menu-open .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none;
    border:none; padding:0 0 .4rem 1rem; min-width:0; background:transparent; }
  .header.menu-open .dropdown a{ padding:.5rem .2rem; align-items:flex-start; text-align:left; }
  .header.menu-open .dropdown a strong, .header.menu-open .dropdown a span{ text-align:left; width:100%; }
  .header.menu-open .header-cta{ display:block; margin-top:.5rem; }
  .header.menu-open .header-cta .btn{ display:inline-flex; width:100%; justify-content:center; }
  .header.menu-open .burger span{ background:transparent; }
  .header.menu-open .burger span::before{ top:0; transform:rotate(45deg); }
  .header.menu-open .burger span::after{ top:0; transform:rotate(-45deg); }

  .split, .contact-grid, .territory, .page-hero .ph-grid, .footer-nav{ grid-template-columns:1fr; }
  .split.rev > *:first-child{ order:2; }
  /* stepper : timeline verticale sur mobile (rond à gauche, ligne dégradée, texte décalé) */
  .steps{ grid-template-columns:1fr; gap:0; --sdir:180deg; }
  .step{ display:grid; grid-template-columns:52px 1fr; column-gap:18px; align-items:start; padding-bottom:clamp(22px,6vw,34px); }
  .step .s-top{ grid-column:1; grid-row:1 / span 2; align-self:start; display:block; margin:0; }
  .step h3{ grid-column:2; grid-row:1; align-self:start; min-height:0; margin:0 0 .3rem; display:block; }
  .step p{ grid-column:2; grid-row:2; align-self:start; margin:0; }
  .step .s-line{ display:block; position:absolute; left:25px; top:56px; bottom:0; width:2px; height:auto; flex:none; }
  .step:last-child{ padding-bottom:0; }
  .step:last-child .s-line{ display:none; }
  .g-4{ grid-template-columns:1fr 1fr; }
  .form .f-row{ grid-template-columns:1fr; }
  .tab-panel{ grid-template-columns:1fr; }
  .tab-panel .tp-visual{ width:clamp(96px,22vw,140px); }
  .seg-panel{ grid-template-columns:1fr; text-align:center; justify-items:center; }
  .info-band{ grid-template-columns:1fr; }
  .info-band .ib{ border-left:none; border-top:1px solid var(--line); }
  .info-band .ib:first-child{ border-top:none; }
  .showcase{ grid-template-columns:1fr; }
  .overlap-stack{ padding:0; }
  .overlap-stack .os-back{ width:100%; }
  .overlap-stack .os-front{ position:relative; width:70%; margin:-14% 0 0 auto; right:auto; bottom:auto; }
  .trust-sep{ display:none; }

  /* zones cliquables >= 44px (tactile) */
  .fchip{ height:44px; }
  .seg-control button{ min-height:44px; }
  .footer-social a{ width:44px; height:44px; }
  .city-chip{ min-height:44px; }
  .tab-btn{ min-height:44px; }

  /* announce -> ticker une ligne */
  .announce .container{ justify-content:flex-start; padding-left:16px; }
  .announce .a-item, .announce .dot{ display:none; }
  .announce-track{ display:flex; gap:2.2rem; white-space:nowrap; animation:marquee 22s linear infinite; padding-left:8px; }
  .announce-track .a-item{ display:inline-flex; }
}
@media (max-width: 560px){
  body{ font-size:16px; }
  .g-2, .g-3, .g-4, .steps, .bento{ grid-template-columns:1fr; }
  .bento .project, .bento .project.wide{ grid-column:span 1; }
  .row-item{ grid-template-columns:auto 1fr; }
  .row-item .r-go{ display:none; }
  .fn-cities{ columns:1 !important; }
  .footer-legal{ font-size:.78rem; }
  .hero .cta-row .btn{ width:100%; justify-content:center; }
}
