/* ============================================================
   MAISON VERDIER · démonstration Tailor
   Pierre claire, encre bleu nuit, laiton. Cormorant Garamond + Jost.
   ============================================================ */

:root {
  --pierre: #f4f1ea;
  --pierre-2: #ece7dc;
  --pierre-3: #e3dccd;
  --encre: #1b2433;
  --encre-2: #3a4456;
  --encre-3: #6b7486;
  --laiton: #b08d57;
  --laiton-2: #c9a86f;
  --blanc: #fdfcf9;
  --filet: rgba(27, 36, 51, 0.16);
  --ombre: 0 18px 50px rgba(27, 36, 51, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --corps: "Jost", "Futura", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--corps);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--encre);
  background: var(--pierre);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--laiton);
  color: var(--blanc);
}

/* ---------- utilitaires ---------- */

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--laiton);
}

.section {
  padding: 110px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.12;
  margin-top: 14px;
}

.section-head h2 em {
  font-style: italic;
  color: var(--laiton);
}

.section-head p {
  margin-top: 18px;
  color: var(--encre-2);
  max-width: 54ch;
}

.filet {
  border: none;
  border-top: 1px solid var(--filet);
}

/* ---------- révélation au scroll ---------- */

.rev {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rev.vis {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rev {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- badge démonstration ---------- */

.demo-badge {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 90;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-2);
  background: rgba(253, 252, 249, 0.92);
  border: 1px solid var(--filet);
  padding: 7px 14px;
  backdrop-filter: blur(6px);
  border-radius: 2px;
}

.demo-badge:hover {
  color: var(--laiton);
}

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header.solid {
  background: rgba(244, 241, 234, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--filet);
}

.brand {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blanc);
  transition: color 0.35s ease;
}

.brand .dot {
  color: var(--laiton-2);
}

.brand small {
  display: block;
  white-space: nowrap;
  font-family: var(--corps);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--laiton-2);
  margin-top: -2px;
}

.header.solid .brand {
  color: var(--encre);
}

.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(253, 252, 249, 0.85);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav a:hover {
  color: var(--laiton-2);
  border-color: var(--laiton-2);
}

.header.solid .nav a {
  color: var(--encre-2);
}

.header.solid .nav a:hover {
  color: var(--laiton);
  border-color: var(--laiton);
}

.nav .nav-cta {
  border: 1px solid var(--laiton-2);
  padding: 9px 20px;
  color: var(--laiton-2);
}

.nav .nav-cta:hover {
  background: var(--laiton);
  border-color: var(--laiton);
  color: var(--blanc);
}

.header.solid .nav-cta {
  border-color: var(--laiton);
  color: var(--laiton);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--blanc);
  transition: transform 0.3s, opacity 0.3s, background 0.35s;
}

.header.solid .burger span {
  background: var(--encre);
}

body.menu-open .burger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .burger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: var(--encre);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  color: var(--pierre);
}

.mobile-menu a:hover {
  color: var(--laiton-2);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--blanc);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 36, 51, 0.45) 0%,
    rgba(27, 36, 51, 0.25) 40%,
    rgba(27, 36, 51, 0.78) 100%
  );
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
}

.hero .label {
  color: var(--laiton-2);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 1.06;
  max-width: 13ch;
  margin: 18px 0 14px;
}

.hero h1 em {
  font-style: italic;
  color: var(--laiton-2);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(253, 252, 249, 0.88);
  max-width: 52ch;
  margin-bottom: 42px;
}

/* module de recherche */

.search {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  background: var(--blanc);
  color: var(--encre);
  box-shadow: var(--ombre);
}

.search .field {
  padding: 18px 24px;
  border-right: 1px solid var(--filet);
}

.search .field label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--encre-3);
  margin-bottom: 4px;
}

.search select {
  width: 100%;
  font: inherit;
  font-weight: 400;
  font-size: 16px;
  color: var(--encre);
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B08D57' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}

.search .go {
  background: var(--encre);
  color: var(--blanc);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0 38px;
  transition: background 0.3s;
}

.search .go:hover {
  background: var(--laiton);
}

.hero-scroll {
  position: absolute;
  right: 38px;
  bottom: 38px;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.7);
  writing-mode: vertical-rl;
}

/* ---------- chiffres clés ---------- */

.stats {
  background: var(--encre);
  color: var(--pierre);
  padding: 64px 0;
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
  padding: 0 12px;
}

.stat + .stat {
  border-left: 1px solid rgba(244, 241, 234, 0.14);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
  color: var(--laiton-2);
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.66);
}

/* ---------- biens ---------- */

.biens-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.biens-count {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-3);
  white-space: nowrap;
  padding-bottom: 8px;
}

.biens-count strong {
  color: var(--laiton);
  font-weight: 500;
}

.grille-biens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.bien-card {
  display: block;
  background: var(--blanc);
  border: 1px solid var(--filet);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bien-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre);
}

.bien-card .visuel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bien-card .visuel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.bien-card:hover .visuel img {
  transform: scale(1.05);
}

.bien-card .visuel .type {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(253, 252, 249, 0.92);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 6px 12px;
  color: var(--encre);
}

.bien-card .infos {
  padding: 24px 26px 28px;
}

.bien-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
}

.bien-card .lieu {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--encre-3);
}

.bien-card .bas {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--filet);
}

.bien-card .prix {
  font-family: var(--display);
  font-weight: 600;
  font-size: 23px;
  color: var(--laiton);
}

.bien-card .specs {
  font-size: 13px;
  color: var(--encre-3);
  font-weight: 400;
}

.biens-vide {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--filet);
  color: var(--encre-3);
}

.biens-vide button {
  display: inline-block;
  margin-top: 12px;
  color: var(--laiton);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid var(--laiton);
  padding-bottom: 2px;
}

/* ---------- estimation (brique système) ---------- */

.estimation {
  background: var(--encre);
  color: var(--pierre);
}

.estimation .label {
  color: var(--laiton-2);
}

.estimation .section-head p {
  color: rgba(244, 241, 234, 0.72);
}

.esti-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.esti-argu {
  position: sticky;
  top: 110px;
}

.esti-argu ul {
  list-style: none;
  margin-top: 34px;
  display: grid;
  gap: 22px;
}

.esti-argu li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: rgba(244, 241, 234, 0.85);
}

.esti-argu li .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--laiton-2);
  line-height: 1.1;
  min-width: 34px;
}

.esti-argu li strong {
  display: block;
  font-weight: 400;
  color: var(--pierre);
  letter-spacing: 0.04em;
}

.esti-argu li p {
  font-size: 15px;
  margin-top: 2px;
}

/* la machine */

.machine {
  background: var(--blanc);
  color: var(--encre);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.machine-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid var(--filet);
}

.machine-top .titre {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--encre-3);
}

.steps-dots {
  display: flex;
  gap: 8px;
}

.steps-dots i {
  width: 22px;
  height: 2px;
  background: var(--pierre-3);
  transition: background 0.3s;
}

.steps-dots i.on {
  background: var(--laiton);
}

.machine-body {
  padding: 36px 30px 40px;
  min-height: 380px;
}

.step {
  display: none;
}

.step.actif {
  display: block;
  animation: stepIn 0.45s ease both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.step .q {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 26px;
}

.step .q em {
  font-style: italic;
  color: var(--laiton);
}

.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.choice {
  border: 1px solid var(--filet);
  padding: 18px 20px;
  text-align: left;
  transition: border-color 0.25s, background 0.25s;
}

.choice:hover {
  border-color: var(--laiton);
}

.choice.sel {
  border-color: var(--laiton);
  background: rgba(176, 141, 87, 0.08);
}

.choice strong {
  display: block;
  font-weight: 400;
  font-size: 17px;
}

.choice span {
  font-size: 13px;
  color: var(--encre-3);
}

/* surface */

.surface-ctrl {
  text-align: center;
  padding: 10px 0 6px;
}

.surface-val {
  font-family: var(--display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--encre);
}

.surface-val small {
  font-size: 24px;
  color: var(--laiton);
  font-style: italic;
}

input[type="range"] {
  width: 100%;
  margin-top: 30px;
  appearance: none;
  height: 2px;
  background: var(--pierre-3);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--laiton);
  border: 4px solid var(--blanc);
  box-shadow: 0 2px 10px rgba(27, 36, 51, 0.3);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--laiton);
  border: 3px solid var(--blanc);
  box-shadow: 0 2px 10px rgba(27, 36, 51, 0.3);
  cursor: pointer;
}

.surface-bornes {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--encre-3);
  margin-top: 10px;
}

/* adresse */

.adresse-fields {
  display: grid;
  gap: 16px;
}

.adresse-fields input,
.adresse-fields select {
  width: 100%;
  font: inherit;
  font-weight: 300;
  font-size: 17px;
  padding: 16px 18px;
  border: 1px solid var(--filet);
  background: var(--blanc);
  color: var(--encre);
  outline: none;
  border-radius: 0;
}

.adresse-fields input:focus,
.adresse-fields select:focus {
  border-color: var(--laiton);
}

.machine-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
}

.btn-retour {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-3);
}

.btn-retour:hover {
  color: var(--encre);
}

.btn-suite {
  background: var(--encre);
  color: var(--blanc);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 34px;
  transition: background 0.3s, opacity 0.3s;
}

.btn-suite:hover {
  background: var(--laiton);
}

.btn-suite:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* résultat */

.resultat {
  text-align: center;
}

.resultat .label {
  color: var(--laiton);
}

.fourchette {
  margin: 22px 0 6px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
}

.fourchette .tiret {
  color: var(--laiton);
  font-style: italic;
  padding: 0 8px;
}

.prix-m2 {
  font-size: 14px;
  color: var(--encre-3);
}

.resultat .note {
  font-size: 13px;
  color: var(--encre-3);
  max-width: 44ch;
  margin: 18px auto 0;
}

.rdv {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--filet);
}

.rdv p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--encre-2);
  margin-bottom: 16px;
}

.creneaux {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.creneau {
  border: 1px solid var(--filet);
  padding: 14px 10px;
  font-size: 15px;
  transition: border-color 0.25s, background 0.25s;
}

.creneau strong {
  display: block;
  font-weight: 400;
}

.creneau span {
  font-size: 13px;
  color: var(--laiton);
}

.creneau:hover {
  border-color: var(--laiton);
}

.creneau.sel {
  border-color: var(--laiton);
  background: rgba(176, 141, 87, 0.1);
}

.rdv-ok {
  margin-top: 18px;
  padding: 16px;
  background: rgba(176, 141, 87, 0.12);
  border: 1px solid var(--laiton);
  font-size: 15px;
  display: none;
}

.rdv-ok.on {
  display: block;
  animation: stepIn 0.4s ease both;
}

.refaire {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-3);
  border-bottom: 1px solid transparent;
}

.refaire:hover {
  color: var(--laiton);
  border-color: var(--laiton);
}

/* ---------- suivi vendeur ---------- */

.suivi {
  background: var(--pierre-2);
}

.suivi-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.rapport {
  background: var(--blanc);
  border: 1px solid var(--filet);
  box-shadow: var(--ombre);
}

.rapport-head {
  padding: 24px 30px;
  border-bottom: 1px solid var(--filet);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.rapport-head .obj {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
}

.rapport-head .obj small {
  display: block;
  font-family: var(--corps);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-3);
  margin-top: 4px;
}

.rapport-head .semaine {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--laiton);
  white-space: nowrap;
}

.rapport-bloc {
  padding: 22px 30px;
  border-bottom: 1px solid var(--filet);
}

.rapport-bloc:last-child {
  border-bottom: none;
}

.rapport-bloc > .titre {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--encre-3);
  margin-bottom: 16px;
}

.visite {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  font-size: 15px;
}

.visite + .visite {
  border-top: 1px dashed var(--filet);
}

.visite .jour {
  font-weight: 400;
  min-width: 88px;
  color: var(--encre-2);
}

.visite .qui {
  flex: 1;
}

.visite .tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  white-space: nowrap;
}

.tag.chaud {
  background: rgba(176, 141, 87, 0.16);
  color: var(--laiton);
}

.tag.tiede {
  background: var(--pierre-2);
  color: var(--encre-2);
}

.retour-achat {
  font-size: 15px;
  font-style: italic;
  font-family: var(--display);
  font-size: 19px;
  color: var(--encre-2);
  padding: 8px 0 8px 18px;
  border-left: 2px solid var(--laiton);
}

.retour-achat + .retour-achat {
  margin-top: 14px;
}

.retour-achat small {
  display: block;
  font-family: var(--corps);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--encre-3);
  margin-top: 6px;
}

.stats-diff {
  display: grid;
  gap: 14px;
}

.stat-ligne {
  display: grid;
  grid-template-columns: 130px 1fr 60px;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.stat-ligne .nom {
  color: var(--encre-2);
}

.stat-ligne .barre {
  height: 4px;
  background: var(--pierre-2);
  position: relative;
}

.stat-ligne .barre i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--laiton);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-ligne .val {
  text-align: right;
  font-weight: 400;
  color: var(--encre);
}

.rapport-foot {
  padding: 16px 30px;
  background: var(--pierre);
  font-size: 13px;
  color: var(--encre-3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--laiton);
  flex-shrink: 0;
  animation: pulse 2.4s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(176, 141, 87, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(176, 141, 87, 0);
  }
}

.suivi-argu {
  position: sticky;
  top: 110px;
}

.suivi-argu .section-head {
  margin-bottom: 30px;
}

.suivi-points {
  list-style: none;
  display: grid;
  gap: 16px;
}

.suivi-points li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--encre-2);
}

.suivi-points li::before {
  content: "·";
  color: var(--laiton);
  font-size: 30px;
  line-height: 0;
  position: relative;
  top: 6px;
}

.suivi-cta {
  display: inline-block;
  margin-top: 30px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--laiton);
  border-bottom: 1px solid var(--laiton);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}

.suivi-cta:hover {
  color: var(--encre);
  border-color: var(--encre);
}

/* ---------- équipe / avis / contact ---------- */

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
}

.agent {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: center;
  background: var(--blanc);
  border: 1px solid var(--filet);
  padding: 26px;
}

.agent img {
  width: 150px;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.85);
}

.agent h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
}

.agent .role {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--laiton);
  margin: 4px 0 12px;
}

.agent p {
  font-size: 14px;
  color: var(--encre-2);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}

.avis {
  border-top: 2px solid var(--laiton);
  padding-top: 24px;
}

.avis .texte {
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
  color: var(--encre-2);
}

.avis .qui {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-3);
}

.avis .etoiles {
  color: var(--laiton);
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  font-size: 13px;
}

/* contact */

.contact-bande {
  margin-top: 96px;
  background: var(--encre);
  color: var(--pierre);
  padding: 70px clamp(28px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact-bande h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
}

.contact-bande h2 em {
  font-style: italic;
  color: var(--laiton-2);
}

.coords {
  margin-top: 26px;
  display: grid;
  gap: 8px;
  font-size: 15px;
  color: rgba(244, 241, 234, 0.8);
}

.coords strong {
  font-weight: 400;
  color: var(--laiton-2);
}

.form-contact {
  display: grid;
  gap: 14px;
}

.form-contact input,
.form-contact textarea {
  font: inherit;
  font-weight: 300;
  font-size: 16px;
  padding: 15px 18px;
  background: rgba(253, 252, 249, 0.06);
  border: 1px solid rgba(244, 241, 234, 0.22);
  color: var(--pierre);
  outline: none;
  border-radius: 0;
  width: 100%;
}

.form-contact input::placeholder,
.form-contact textarea::placeholder {
  color: rgba(244, 241, 234, 0.45);
}

.form-contact input:focus,
.form-contact textarea:focus {
  border-color: var(--laiton-2);
}

.form-contact textarea {
  min-height: 110px;
  resize: vertical;
}

.form-contact .btn-suite {
  background: var(--laiton);
  justify-self: start;
}

.form-contact .btn-suite:hover {
  background: var(--laiton-2);
}

.form-contact .ok {
  display: none;
  font-size: 15px;
  color: var(--laiton-2);
}

.form-contact.envoye .ok {
  display: block;
}

/* ---------- footer ---------- */

.footer {
  background: var(--encre);
  color: rgba(244, 241, 234, 0.6);
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  padding: 36px 0;
  font-size: 13px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer .brand-foot {
  font-family: var(--display);
  font-size: 20px;
  color: var(--pierre);
}

.footer .brand-foot .dot {
  color: var(--laiton-2);
}

.footer a {
  color: var(--laiton-2);
}

.footer a:hover {
  text-decoration: underline;
}

/* ---------- page bien ---------- */

.bien-hero {
  padding: 140px 0 0;
}

.fil-ariane {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--encre-3);
  margin-bottom: 26px;
}

.fil-ariane a:hover {
  color: var(--laiton);
}

.bien-titre-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}

.bien-titre-row h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
}

.bien-titre-row .lieu {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--encre-3);
}

.bien-titre-row .prix {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--laiton);
  white-space: nowrap;
}

.galerie {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 220px);
  gap: 14px;
}

.galerie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s;
}

.galerie img:hover {
  opacity: 0.92;
}

.galerie img:first-child {
  grid-row: 1 / -1;
}

.bien-corps {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  padding: 72px 0 110px;
  align-items: start;
}

.bien-desc h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 20px;
}

.bien-desc p + p {
  margin-top: 16px;
}

.bien-desc p {
  color: var(--encre-2);
}

.carac {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--filet);
}

.carac div {
  padding: 16px 20px;
  border-bottom: 1px solid var(--filet);
  border-right: 1px solid var(--filet);
}

.carac div:nth-child(2n) {
  border-right: none;
}

.carac div:nth-last-child(-n + 2) {
  border-bottom: none;
}

.carac span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--encre-3);
}

.carac strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
}

.visite-card {
  position: sticky;
  top: 110px;
  background: var(--blanc);
  border: 1px solid var(--filet);
  box-shadow: var(--ombre);
  padding: 32px;
}

.visite-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 6px;
}

.visite-card .sous {
  font-size: 13px;
  color: var(--encre-3);
  margin-bottom: 22px;
}

.visite-card form {
  display: grid;
  gap: 12px;
}

.visite-card input,
.visite-card select {
  font: inherit;
  font-weight: 300;
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--filet);
  background: var(--blanc);
  color: var(--encre);
  outline: none;
  border-radius: 0;
  width: 100%;
}

.visite-card input:focus,
.visite-card select:focus {
  border-color: var(--laiton);
}

.visite-card .btn-suite {
  width: 100%;
}

.visite-card .ok {
  display: none;
  text-align: center;
  font-size: 14px;
  padding: 12px;
  background: rgba(176, 141, 87, 0.12);
  border: 1px solid var(--laiton);
  color: var(--encre);
}

.visite-card.envoye .ok {
  display: block;
  animation: stepIn 0.4s ease both;
}

.visite-card.envoye form .btn-suite {
  display: none;
}

.autres-biens {
  background: var(--pierre-2);
}

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

@media (max-width: 1024px) {
  .esti-grid,
  .suivi-grid,
  .bien-corps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .esti-argu,
  .suivi-argu,
  .visite-card {
    position: static;
  }

  .grille-biens {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .stat:nth-child(3) {
    border-left: none;
  }

  .avis-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-bande {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .wrap {
    width: calc(100% - 40px);
  }

  .hero {
    padding-top: 110px;
  }

  .hero .wrap {
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .search {
    grid-template-columns: 1fr;
  }

  .search .field {
    border-right: none;
    border-bottom: 1px solid var(--filet);
    padding: 14px 20px;
  }

  .search .go {
    padding: 18px;
  }

  .grille-biens {
    grid-template-columns: 1fr;
  }

  .biens-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .choices {
    grid-template-columns: 1fr;
  }

  .machine-body {
    padding: 28px 22px 32px;
    min-height: 0;
  }

  .machine-top {
    padding: 16px 22px;
  }

  .creneaux {
    grid-template-columns: 1fr;
  }

  .equipe-grid {
    grid-template-columns: 1fr;
  }

  .agent {
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 20px;
  }

  .agent img {
    width: 110px;
    height: 140px;
  }

  .contact-bande {
    margin-top: 64px;
    padding: 48px 26px;
  }

  .galerie {
    grid-template-columns: 1fr;
    grid-template-rows: 260px repeat(3, 180px);
  }

  .galerie img:first-child {
    grid-row: auto;
  }

  .bien-titre-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .bien-hero {
    padding-top: 110px;
  }

  .stat-ligne {
    grid-template-columns: 96px 1fr 52px;
    gap: 10px;
  }

  .visite {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
  }

  .visite .jour {
    min-width: 0;
  }

  .visite .qui {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .demo-badge {
    bottom: 12px;
    left: 12px;
    font-size: 10px;
    padding: 6px 10px;
  }
}

/* ============================================================
   PAGE CÔTÉ AGENCE (tableau de bord de démonstration)
   ============================================================ */

.dash-intro {
  padding: 170px 0 70px;
}

.dash-intro h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  max-width: 16ch;
  margin-top: 14px;
}

.dash-intro h1 em {
  font-style: italic;
  color: var(--laiton);
}

.dash-sub {
  margin-top: 20px;
  max-width: 62ch;
  color: var(--encre-2);
  font-size: 18px;
}

.dash-kpis {
  background: var(--encre);
  color: var(--pierre);
  padding: 56px 0;
}

.dash-kpis .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.dash-sombre {
  background: var(--encre);
  color: var(--pierre);
}

.dash-sombre .section-head p {
  color: rgba(244, 241, 234, 0.72);
}

.dash-sombre .label {
  color: var(--laiton-2);
}

.dash-pierre2 {
  background: var(--pierre-2);
}

/* journal */

.journal,
.file-envoi {
  background: var(--blanc);
  border: 1px solid var(--filet);
  box-shadow: var(--ombre);
}

.j-ligne {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 26px;
  border-bottom: 1px dashed var(--filet);
  font-size: 15px;
}

.j-ligne:last-child {
  border-bottom: none;
}

.j-heure {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--laiton);
  white-space: nowrap;
}

.j-texte {
  color: var(--encre-2);
}

.j-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  white-space: nowrap;
}

.j-tag.fait {
  background: rgba(176, 141, 87, 0.16);
  color: var(--laiton);
}

.j-tag.prog {
  background: var(--pierre-2);
  color: var(--encre-2);
}

/* kanban */

.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.k-col {
  background: rgba(253, 252, 249, 0.05);
  border: 1px solid rgba(244, 241, 234, 0.14);
  padding: 18px;
}

.k-titre {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.65);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.k-titre i {
  font-style: normal;
  font-family: var(--display);
  font-size: 20px;
  color: var(--laiton-2);
}

.k-card {
  background: var(--blanc);
  color: var(--encre);
  padding: 14px 16px;
  margin-bottom: 12px;
}

.k-card:last-child {
  margin-bottom: 0;
}

.k-card strong {
  display: block;
  font-weight: 400;
  font-size: 15px;
}

.k-card span {
  display: block;
  font-size: 13px;
  color: var(--encre-3);
  margin-top: 2px;
}

.k-card em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--encre-2);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--filet);
}

.k-card em.k-auto {
  color: var(--laiton);
}

.k-card em.k-auto::before {
  content: "✦ ";
}

/* rapprochement */

.dash-2col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.match-contexte {
  font-size: 15px;
  color: var(--encre-2);
  border-left: 2px solid var(--laiton);
  padding-left: 16px;
}

.match-contexte strong {
  font-weight: 400;
  color: var(--encre);
}

.match-card {
  background: var(--blanc);
  border: 1px solid var(--filet);
  box-shadow: var(--ombre);
  padding: 26px 28px;
}

.match-titre {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--encre-3);
  margin-bottom: 14px;
}

.file-envoi .match-titre {
  padding: 20px 26px 0;
}

.file-envoi {
  margin-top: 28px;
}

.match-ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--filet);
  transition: opacity 0.3s;
}

.match-ligne.envoye {
  opacity: 0.55;
}

.match-ligne.envoye .m-qui strong::after {
  content: " · e-mail parti ✓";
  font-size: 12px;
  color: var(--laiton);
}

.m-qui strong {
  display: block;
  font-weight: 400;
  font-size: 15px;
}

.m-qui span {
  font-size: 13px;
  color: var(--encre-3);
}

.m-score {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--encre-3);
  white-space: nowrap;
}

.m-score.haut {
  color: var(--laiton);
}

.m-score.bas {
  opacity: 0.6;
}

.match-card .btn-suite {
  width: 100%;
  margin-top: 20px;
}

.match-ok {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(176, 141, 87, 0.12);
  border: 1px solid var(--laiton);
  font-size: 14px;
}

.match-ok.on {
  display: block;
  animation: stepIn 0.4s ease both;
}

/* automatisations */

.autos {
  background: var(--blanc);
  border: 1px solid var(--filet);
  box-shadow: var(--ombre);
}

.auto-ligne {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 26px;
  border-bottom: 1px solid var(--filet);
  transition: opacity 0.3s;
}

.auto-ligne:last-child {
  border-bottom: none;
}

.auto-ligne.pause {
  opacity: 0.55;
}

.auto-infos strong {
  display: block;
  font-weight: 400;
  font-size: 16px;
}

.auto-infos span {
  font-size: 13px;
  color: var(--encre-3);
}

.auto-statut {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--encre-2);
  white-space: nowrap;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  flex-shrink: 0;
}

.switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.switch i {
  position: absolute;
  inset: 0;
  background: var(--pierre-3);
  transition: background 0.25s;
}

.switch i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--blanc);
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(27, 36, 51, 0.3);
}

.switch input:checked + i {
  background: var(--laiton);
}

.switch input:checked + i::after {
  transform: translateX(20px);
}

/* agenda */

.agenda {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.a-jour {
  background: var(--blanc);
  border: 1px solid var(--filet);
  padding: 22px 24px;
}

.a-titre {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--filet);
}

.a-evt {
  padding: 10px 0;
  border-bottom: 1px dashed var(--filet);
}

.a-evt:last-child {
  border-bottom: none;
}

.a-evt span {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--laiton);
}

.a-evt strong {
  display: block;
  font-weight: 400;
  font-size: 15px;
}

.a-evt em {
  font-style: normal;
  font-size: 13px;
  color: var(--encre-3);
}

.a-evt.auto {
  border-left: 2px solid var(--laiton);
  padding-left: 12px;
}

/* CTA final */

.dash-cta {
  background: var(--encre);
  color: var(--pierre);
  padding: 96px 0;
  text-align: center;
}

.dash-cta .label {
  color: var(--laiton-2);
}

.dash-cta h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.12;
  margin: 16px auto 18px;
  max-width: 18ch;
}

.dash-cta h2 em {
  font-style: italic;
  color: var(--laiton-2);
}

.dash-cta p {
  max-width: 56ch;
  margin: 0 auto 34px;
  color: rgba(244, 241, 234, 0.78);
}

.dash-cta-btns {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.dash-cta .btn-suite {
  background: var(--laiton);
}

.dash-cta .btn-suite:hover {
  background: var(--laiton-2);
}

.dash-cta .btn-retour {
  color: rgba(244, 241, 234, 0.7);
}

.dash-cta .btn-retour:hover {
  color: var(--pierre);
}

.nav a.actif {
  color: var(--laiton);
  border-color: var(--laiton);
}

/* responsive côté agence */

@media (max-width: 1024px) {
  .kanban {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dash-kpis .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
  }

  .agenda {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dash-intro {
    padding: 130px 0 56px;
  }

  .kanban {
    grid-template-columns: 1fr;
  }

  .j-ligne {
    grid-template-columns: 1fr auto;
  }

  .j-heure {
    grid-column: 1;
  }

  .j-tag {
    grid-row: 1;
    grid-column: 2;
  }

  .j-texte {
    grid-column: 1 / -1;
  }

  .auto-ligne {
    grid-template-columns: auto 1fr;
    gap: 14px 16px;
  }

  .auto-statut {
    grid-column: 2;
    white-space: normal;
  }
}

/* ============================================================
   MONTÉE EN GAMME (audit Agora) : texture, théâtralisation,
   conversion, accessibilité. Ajouts en fin de feuille.
   ============================================================ */

/* --- Contraste : laiton-texte lisible sur fond clair (WCAG AA) --- */
:root { --laiton-texte: #8a6a3b; }
p.label,
.bien-card .prix,
.bien-card .visuel .type,
.agent .role,
.creneau span,
.m-score.haut,
.suivi-cta,
.avis .etoiles,
.k-card em.k-auto { color: var(--laiton-texte); }
.prix-m2 strong { color: var(--laiton-texte); }
.fil-ariane a:hover { color: var(--laiton-texte); }

/* --- Grain papier global --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Reveals : courbe plus noble --- */
.rev {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Focus visible (clavier) --- */
:focus-visible { outline: 2px solid var(--laiton); outline-offset: 3px; }
.choice:focus-visible,
.creneau:focus-visible { outline-offset: -2px; }
.search select:focus-visible,
.adresse-fields input:focus-visible,
.adresse-fields select:focus-visible,
.form-contact input:focus-visible,
.form-contact textarea:focus-visible,
.visite-card input:focus-visible,
.visite-card select:focus-visible {
  outline: 2px solid var(--laiton);
  outline-offset: 0;
}

/* --- Hero : bandeau de cadrage + filigrane monogramme --- */
.hero { overflow: hidden; padding-top: 96px; }

.hero-cadrage {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--blanc);
  background: rgba(27, 36, 51, 0.5);
  backdrop-filter: blur(4px);
  border-left: 2px solid var(--laiton-2);
  padding: 11px 18px;
  margin-bottom: 22px;
  max-width: 56ch;
}
.hero-cadrage a {
  color: var(--laiton-2);
  border-bottom: 1px solid var(--laiton-2);
}

.hero-monogram {
  position: absolute;
  right: -3vw;
  bottom: -9vw;
  z-index: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 44vw;
  line-height: 1;
  color: var(--laiton);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
.dash-cta { position: relative; overflow: hidden; }
.dash-cta .wrap { position: relative; z-index: 1; }
.dash-cta .hero-monogram { color: var(--laiton-2); opacity: 0.05; }

/* --- Avatars monogramme (équipe, zéro visage réel) --- */
.agent-mono {
  width: 150px;
  height: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--encre);
  color: var(--laiton-2);
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 6px rgba(244, 241, 234, 0.06);
}

/* --- Cartes de bien : filet laiton qui signe au survol --- */
.bien-card { position: relative; }
.bien-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--laiton);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.bien-card:hover::after { transform: scaleX(1); }

/* --- Estimateur : sas de calcul --- */
.sas { padding: 14px 0 6px; }
.sas-titre {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--encre-3);
  margin-bottom: 24px;
}
.sas-lignes { list-style: none; display: grid; gap: 16px; }
.sas-lignes li {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pierre-3);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sas-lignes li::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--pierre-3);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.sas-lignes li.on {
  opacity: 1;
  transform: none;
  color: var(--encre-2);
}
.sas-lignes li.on::before {
  background: var(--laiton);
  border-color: var(--laiton);
}

/* --- Estimateur : révélation étagée du résultat --- */
.resultat.revele .fourchette {
  animation: foRevele 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes foRevele {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: none; }
}
.resultat.revele .prix-m2,
.resultat.revele .note,
.resultat.revele .rdv {
  animation: foMonte 0.6s ease both;
  animation-delay: 0.4s;
}
@keyframes foMonte {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* --- Micro-CTA contextuels (conversion) --- */
.esti-pont,
.journal-pont {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--encre-2);
  max-width: 62ch;
}
.estimation .esti-pont { color: rgba(244, 241, 234, 0.7); }
.esti-pont a,
.journal-pont a {
  color: var(--laiton-texte);
  font-weight: 500;
  border-bottom: 1px solid var(--laiton);
  display: inline-block;
  margin-top: 8px;
  min-height: 30px;
}
.estimation .esti-pont a { color: var(--laiton-2); border-color: var(--laiton-2); }
.journal-pont { margin-left: auto; margin-right: auto; text-align: center; }

/* --- Notes de conformité --- */
.avis-note,
.form-rgpd {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--encre-3);
}
.avis-note { margin-bottom: 22px; font-style: italic; }
.form-rgpd { margin-top: 4px; color: rgba(244, 241, 234, 0.5); }

/* --- Bloc « De cette démo à votre agence » --- */
.passage-prix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}
.prix-bloc {
  background: var(--blanc);
  border: 1px solid var(--filet);
  padding: 30px 32px;
}
.prix-quoi {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--encre-2);
  margin-bottom: 14px;
}
.prix-chiffre {
  font-family: var(--display);
  font-size: 24px;
  color: var(--encre-2);
}
.prix-chiffre strong {
  font-size: 40px;
  font-weight: 600;
  color: var(--laiton-texte);
}
.prix-note { margin-top: 10px; font-size: 13px; color: var(--encre-3); }
.prix-rassure {
  font-size: 15px;
  color: var(--encre-2);
  max-width: 70ch;
  border-left: 2px solid var(--laiton);
  padding-left: 18px;
  margin-bottom: 48px;
}

.passage-process { display: grid; gap: 22px; max-width: 760px; }
.proc-titre {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--encre-3);
}
.proc-etape { display: flex; gap: 20px; align-items: flex-start; }
.proc-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 34px;
  line-height: 1;
  color: var(--laiton-texte);
  min-width: 40px;
}
.proc-etape strong { display: block; font-weight: 400; font-size: 18px; }
.proc-etape p { margin-top: 4px; font-size: 15px; color: var(--encre-2); }

.mot-julien {
  margin-top: 48px;
  background: var(--encre);
  color: var(--pierre);
  padding: 36px 40px;
  max-width: 820px;
}
.mot-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--laiton-2);
  margin-bottom: 16px;
}
.mot-texte {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
}
.mot-signe {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 234, 0.7);
}

.cta-sous { margin-top: 22px; font-size: 14px; color: rgba(244, 241, 234, 0.7); }
.cta-proof { display: inline-block; margin-top: 8px; font-size: 13px; color: var(--laiton-2); }

/* --- Journal du matin : écriture au scroll + bascule de tag --- */
.journal.j-anim .j-ligne {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.journal.j-anim .j-ligne.vis { opacity: 1; transform: none; }
.j-tag.flip { animation: flashLaiton 0.9s ease; }
@keyframes flashLaiton {
  0% { background: var(--laiton); color: var(--blanc); }
  100% { background: rgba(176, 141, 87, 0.16); color: var(--laiton-texte); }
}

/* --- Page mentions --- */
.legal { padding: 150px 0 110px; }
.legal h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 52px);
  margin: 12px 0 36px;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  margin: 32px 0 10px;
}
.legal p { max-width: 64ch; color: var(--encre-2); }
.legal a { color: var(--laiton-texte); border-bottom: 1px solid var(--laiton); }
.legal-retour { margin-top: 40px; }

/* --- Reduced motion : compléments --- */
@media (prefers-reduced-motion: reduce) {
  .pulse { animation: none; }
  .step.actif,
  .rdv-ok.on,
  .match-ok.on,
  .resultat.revele .fourchette,
  .resultat.revele .prix-m2,
  .resultat.revele .note,
  .resultat.revele .rdv { animation: none; }
  .j-tag.flip { animation: none; }
  .journal.j-anim .j-ligne { opacity: 1; transform: none; }
  body::before { display: none; }
}

/* --- Responsive : montée en gamme --- */
@media (max-width: 1024px) {
  .esti-grid .machine { order: -1; }
  .passage-prix { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .btn-retour,
  .refaire,
  .suivi-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .agent-mono { width: 110px; height: 140px; font-size: 42px; }
  .hero-monogram { font-size: 60vw; bottom: -14vw; }
  .mot-texte { font-size: 20px; }
  .mot-julien { padding: 28px 24px; }
}

/* ============================================================
   REPOSITIONNEMENT SYSTÈME (audit Agora #2)
   Hero hybride scène/coulisses, section système pivot,
   biens rétrogradés. Ajouts en fin de feuille (priment).
   ============================================================ */

/* ----- Hero hybride : métier à gauche, mécanique à droite ----- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 100svh;
  background: var(--encre);
  color: var(--blanc);
  overflow: hidden;
  padding-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(27, 36, 51, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(28px, 5vw, 72px) 72px;
}

.hero-left > :not(.hero-monogram) { position: relative; z-index: 1; }

.hero-left .label { color: var(--laiton-2); }

.hero-left h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.06;
  margin: 16px 0 18px;
  max-width: 15ch;
}
.hero-left h1 em { font-style: italic; color: var(--laiton-2); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(253, 252, 249, 0.82);
  max-width: 52ch;
  margin-bottom: 30px;
}

.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-cta .btn-suite { background: var(--laiton); }
.hero-cta .btn-suite:hover { background: var(--laiton-2); }
.hero-lien {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.7);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.hero-lien:hover { color: var(--laiton-2); border-color: var(--laiton-2); }
.hero-rassure { margin-top: 18px; font-size: 13px; color: rgba(253, 252, 249, 0.5); }

.hero-left .hero-monogram {
  color: var(--laiton-2);
  opacity: 0.05;
  right: auto;
  left: -2vw;
  bottom: -8vw;
  z-index: 0;
}

.hero-right { position: relative; overflow: visible; z-index: 3; }
.hero-right .hero-bg { position: absolute; inset: 0; overflow: hidden; background-size: cover; background-position: center; }
.hero-right .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27, 36, 51, 0.92) 0%, rgba(27, 36, 51, 0.3) 48%, rgba(27, 36, 51, 0.12) 100%);
}

/* carte journal posée sur la photo */
.hero-board {
  position: absolute;
  left: -56px;
  bottom: 9%;
  z-index: 3;
  width: min(430px, 80%);
  background: rgba(253, 252, 249, 0.97);
  color: var(--encre);
  border: 1px solid var(--filet);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  padding: 22px 26px;
}
.hb-titre {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--encre-3);
  margin-bottom: 14px;
}
.hb-journal { list-style: none; display: grid; }
.hb-journal li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px dashed var(--filet);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--encre-2);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hb-journal li:first-child { border-top: none; }
.hb-journal li.vis { opacity: 1; transform: none; }
.hb-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--laiton-texte);
  white-space: nowrap;
}
.hb-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--filet);
  font-size: 13.5px;
  color: var(--encre-2);
}
.hb-foot strong { font-weight: 500; color: var(--encre); }

@media (prefers-reduced-motion: reduce) {
  .hb-journal li { opacity: 1; transform: none; }
}

/* ----- Bandeau de cadrage pleine largeur ----- */
.cadrage-bande { background: var(--pierre-2); padding: 18px 0; border-bottom: 1px solid var(--filet); }
.cadrage-bande p {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--encre-2);
  max-width: 92ch;
  margin: 0 auto;
}

/* ----- Section système (le pivot) ----- */
.systeme { background: var(--pierre-2); }
.piliers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pilier {
  background: var(--blanc);
  border: 1px solid var(--filet);
  padding: 32px 30px;
  position: relative;
}
.pilier::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--laiton);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pilier:hover::after { transform: scaleY(1); }
.pilier-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 30px;
  color: var(--laiton-texte);
}
.pilier h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  margin: 8px 0 12px;
}
.pilier p { font-size: 15px; color: var(--encre-2); }

/* cousu main */
.cousu {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--encre);
  color: var(--pierre);
  padding: 48px clamp(28px, 5vw, 56px);
}
.cousu .label { color: var(--laiton-2); }
.cousu h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 10px 0 16px;
}
.cousu p { color: rgba(244, 241, 234, 0.8); }
.cousu-cta {
  display: block;
  border: 1px solid rgba(244, 241, 234, 0.25);
  padding: 26px 28px;
  transition: border-color 0.3s, background 0.3s;
}
.cousu-cta:hover { border-color: var(--laiton-2); background: rgba(176, 141, 87, 0.08); }
.cousu-cta span {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--laiton-2);
}
.cousu-cta strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 23px;
  color: var(--pierre);
  margin: 8px 0;
}
.cousu-cta em { font-style: normal; font-size: 13px; color: rgba(244, 241, 234, 0.6); }

/* ----- Biens rétrogradés : la recherche en support ----- */
#biens .search { margin-bottom: 24px; }

/* ----- Responsive hero + système ----- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left { padding: 110px 24px 36px; }
  .hero-right {
    min-height: 60svh;
    display: flex;
    align-items: flex-end;
    padding: 18px;
  }
  .hero-board {
    position: static;
    width: 100%;
    left: auto;
    bottom: auto;
  }
  .piliers { grid-template-columns: 1fr; }
  .cousu { grid-template-columns: 1fr; gap: 28px; padding: 36px 26px; }
}
