/* =========================================================
   Canalisations Urgence — Design System « Sobre & Classe »
   Crème / ivoire + bordeaux profond #6B2737 + or/laiton #A8823C
   Titres : Playfair Display — Corps : Mulish
   100% vanilla, mobile-first, AA, prefers-reduced-motion
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Palette fonds */
  --creme: #F5F1E8;
  --ivoire: #FBF8F2;
  --blanc: #FFFFFF;
  --creme-ombre: #ECE5D6;

  /* Encre / texte */
  --encre: #241C1A;
  --encre-doux: #4A3F3C;
  --encre-faible: #6E625E;

  /* Accents */
  --bordeaux: #6B2737;
  --bordeaux-fonce: #561E2C;
  --bordeaux-clair: #84394A;
  --or: #A8823C;
  --or-clair: #C29E5C;
  --or-faible: #E4D4B0;

  /* Sémantique */
  --bg: var(--creme);
  --surface: var(--ivoire);
  --surface-2: var(--blanc);
  --texte: var(--encre);
  --texte-doux: var(--encre-doux);
  --accent: var(--bordeaux);
  --accent-2: var(--or);

  /* Filets / bordures */
  --filet: rgba(36, 28, 26, 0.12);
  --filet-or: rgba(168, 130, 60, 0.45);
  --filet-creme: rgba(245, 241, 232, 0.22);

  /* Rayons */
  --r-sm: 8px;
  --r-md: 11px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Ombres douces */
  --sh-sm: 0 1px 2px rgba(36,28,26,.05), 0 2px 8px rgba(36,28,26,.04);
  --sh-md: 0 4px 16px rgba(36,28,26,.07), 0 1px 3px rgba(36,28,26,.05);
  --sh-lg: 0 18px 48px rgba(36,28,26,.12);

  /* Typo — échelle mesurée */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-xs: 0.78rem;
  --fs-sm: 0.88rem;
  --fs-base: 1rem;
  --fs-md: clamp(1.05rem, 0.98rem + 0.4vw, 1.18rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-xl: clamp(1.55rem, 1.3rem + 1.1vw, 2.1rem);
  --fs-2xl: clamp(1.95rem, 1.5rem + 2vw, 2.9rem);
  --fs-3xl: clamp(2.3rem, 1.7rem + 2.8vw, 3.5rem);

  /* Espacements */
  --sp-1: 0.5rem;
  --sp-2: 0.85rem;
  --sp-3: 1.25rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;

  --container: 1180px;
  --container-narrow: 880px;

  --t: 0.32s cubic-bezier(.22,.61,.36,1);
  --t-slow: 0.6s cubic-bezier(.22,.61,.36,1);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--texte);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2.5px solid var(--bordeaux);
  outline-offset: 3px;
  border-radius: 3px;
}

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.18; color: var(--encre); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-3xl); font-weight: 700; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
p { color: var(--texte-doux); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.4rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.2rem, 7vw, var(--sp-7)); }
.section--tight { padding-block: clamp(2.4rem, 5vw, var(--sp-6)); }
.section--creme { background: var(--creme); }
.section--ivoire { background: var(--ivoire); }
.section--bordeaux {
  background: var(--bordeaux);
  color: var(--creme);
}
.section--bordeaux h1,.section--bordeaux h2,.section--bordeaux h3,.section--bordeaux h4 { color: var(--ivoire); }
.section--bordeaux p { color: rgba(251,248,242,.82); }

.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--or);
  display: inline-block;
}
.section--bordeaux .eyebrow { color: var(--or-clair); }
.section--bordeaux .eyebrow::before { background: var(--or-clair); }
.center .eyebrow { justify-content: center; }

.lead { font-size: var(--fs-md); color: var(--texte-doux); }
.section--bordeaux .lead { color: rgba(251,248,242,.85); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: .01em;
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  cursor: pointer;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn-primary {
  background: var(--bordeaux);
  color: var(--ivoire);
  box-shadow: var(--sh-sm);
}
.btn-primary:hover { background: var(--bordeaux-fonce); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--filet-or);
}
.btn-ghost:hover { background: rgba(168,130,60,.08); border-color: var(--or); transform: translateY(-2px); }
.section--bordeaux .btn-ghost { color: var(--ivoire); border-color: var(--filet-creme); }
.section--bordeaux .btn-ghost:hover { background: rgba(251,248,242,.1); border-color: var(--or-clair); }
.btn-call {
  background: var(--or);
  color: #2a200d;
  box-shadow: var(--sh-sm);
}
.btn-call:hover { background: var(--or-clair); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-lg { padding: 1.1rem 2rem; font-size: var(--fs-base); }
.btn-block { width: 100%; }

@media (prefers-reduced-motion: reduce){
  .btn:hover { transform: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,248,242,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--filet);
  transition: box-shadow var(--t), background var(--t);
}
.site-header.scrolled { box-shadow: var(--sh-md); background: rgba(251,248,242,.96); }
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; color: var(--encre); display: block; }
.brand-sub { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--or); font-weight: 700; }

.main-nav ul { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  display: inline-block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--encre-doux);
  padding: .55rem .7rem;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--t), background var(--t);
}
.main-nav a:hover { color: var(--bordeaux); background: rgba(168,130,60,.07); }
.main-nav a.active { color: var(--bordeaux); }
.main-nav a.active::after {
  content:""; position:absolute; left:.7rem; right:.7rem; bottom:.3rem;
  height: 2px; background: var(--or); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: .7rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--filet);
  background: var(--surface-2);
  border-radius: var(--r-sm);
  padding: 0;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content:""; position:absolute; left:50%; top:50%;
  width: 20px; height: 2px; background: var(--bordeaux);
  transform: translate(-50%,-50%);
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle span::before { transform: translate(-50%,-7px); }
.nav-toggle span::after  { transform: translate(-50%,5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

@media (max-width: 1024px){
  .main-nav a { font-size: .86rem; padding: .5rem .5rem; }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 900px){
  .nav-toggle { display: inline-block; }
  .header-cta .btn-ghost { display: none; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--ivoire);
    transform: translateX(100%);
    transition: transform var(--t-slow);
    padding: 1.4rem clamp(1.1rem,5vw,2rem) 2.4rem;
    overflow-y: auto;
    border-top: 1px solid var(--filet);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: .15rem; }
  .main-nav a { font-size: 1.05rem; padding: .95rem .6rem; border-bottom: 1px solid var(--filet); border-radius: 0; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { background: rgba(168,130,60,.1); }
  .main-nav .mobile-cta { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
}
@media (min-width: 901px){
  .main-nav .mobile-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero { background: var(--creme); position: relative; padding-block: clamp(2.6rem, 5vw, 4.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-content h1 { margin-bottom: 1.1rem; }
.hero-content h1 .accent { color: var(--bordeaux); font-style: italic; }
.hero-content .lead { margin-bottom: 1.7rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); font-weight: 600; color: var(--encre-doux); }
.hero-badge svg { width: 18px; height: 18px; color: var(--or); flex: none; }

/* Cadre image raffiné */
.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  padding: 10px;
  background: var(--ivoire);
  border: 1px solid var(--filet);
  box-shadow: var(--sh-lg);
}
.media-frame::after {
  content:"";
  position:absolute; inset: 4px;
  border: 1px solid var(--filet-or);
  border-radius: calc(var(--r-lg) - 4px);
  pointer-events: none;
}
.media-frame img {
  border-radius: var(--r-md);
  width: 100%;
  filter: grayscale(.28) sepia(.12) contrast(1.02) brightness(.99);
  transition: filter var(--t-slow);
}
.media-frame:hover img { filter: grayscale(.1) sepia(.05) contrast(1.03); }
.hero .media-frame img { aspect-ratio: 16/9; object-fit: cover; }
.media-frame .tag {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--bordeaux);
  color: var(--ivoire);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .04em;
  padding: .5rem .95rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md);
  display: inline-flex; align-items: center; gap: .45rem;
}
.media-frame .tag svg { width: 14px; height: 14px; color: var(--or-clair); }

@media (max-width: 880px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ---------- Bande réassurance ---------- */
.reassurance { background: var(--bordeaux); color: var(--ivoire); }
.reassurance .container { padding-block: 1.3rem; }
.reassurance-list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem 1.6rem;
}
.reassurance-item { display: flex; align-items: center; gap: .65rem; font-size: var(--fs-sm); font-weight: 600; color: rgba(251,248,242,.92); }
.reassurance-item svg { width: 22px; height: 22px; color: var(--or-clair); flex: none; }
@media (max-width: 760px){ .reassurance-list { grid-template-columns: repeat(2,1fr); } }

/* ---------- Grilles ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 920px){ .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* ---------- Cartes service ---------- */
.card {
  background: var(--surface-2);
  border: 1px solid var(--filet);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--filet-or); }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(168,130,60,.1);
  color: var(--bordeaux);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: var(--fs-sm); margin-bottom: 1rem; }
.card .card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--bordeaux);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap var(--t);
}
.card .card-link svg { width: 15px; height: 15px; transition: transform var(--t); }
.card:hover .card-link { gap: .65rem; }
.card:hover .card-link svg { transform: translateX(3px); }

/* Feature simple */
.feature { display: flex; gap: 1rem; }
.feature-ic {
  flex: none; width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(107,39,55,.08);
  color: var(--bordeaux);
}
.feature-ic svg { width: 23px; height: 23px; }
.section--bordeaux .feature-ic { background: rgba(168,130,60,.18); color: var(--or-clair); }
.feature h3 { font-size: var(--fs-md); margin-bottom: .3rem; }
.feature p { font-size: var(--fs-sm); }

/* ---------- Liste à puces ---------- */
.tick-list { display: grid; gap: .8rem; }
.tick-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--texte-doux); }
.tick-list li::before {
  content:"";
  flex: none; margin-top: .35rem;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(168,130,60,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A8823C' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.section--bordeaux .tick-list li { color: rgba(251,248,242,.85); }

/* ---------- Split image ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split .detail-frame img { aspect-ratio: 3/4; object-fit: cover; }
.split .intervention-frame img { aspect-ratio: 3/2; object-fit: cover; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: -1; } }

/* ---------- Table tarifs ---------- */
.price-table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--filet); box-shadow: var(--sh-sm); background: var(--surface-2); }
.price-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.price-table caption { text-align: left; padding: 1rem 1.3rem; font-size: var(--fs-xs); color: var(--encre-faible); }
.price-table th, .price-table td { padding: 1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--filet); }
.price-table thead th {
  background: var(--bordeaux);
  color: var(--ivoire);
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: .02em;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: rgba(245,241,232,.5); }
.price-table .price { font-family: var(--serif); font-weight: 700; color: var(--bordeaux); font-size: 1.1rem; white-space: nowrap; }
.price-table td small { display:block; color: var(--encre-faible); font-size: var(--fs-xs); }

/* ---------- Process en étapes ---------- */
.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.steps.grid-steps { grid-template-columns: repeat(4,1fr); }
@media (max-width: 920px){ .steps.grid-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px){ .steps.grid-steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--filet);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem 1.5rem;
  box-shadow: var(--sh-sm);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--or);
  display: block;
  margin-bottom: .7rem;
  line-height: 1;
}
.step h3 { font-size: var(--fs-md); margin-bottom: .4rem; }
.step p { font-size: var(--fs-sm); }
.section--bordeaux .step { background: rgba(251,248,242,.05); border-color: var(--filet-creme); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; max-width: 820px; }
.faq details {
  background: var(--surface-2);
  border: 1px solid var(--filet);
  border-radius: var(--r-md);
  padding: 0 1.4rem;
  box-shadow: var(--sh-sm);
  transition: border-color var(--t);
}
.faq details[open] { border-color: var(--filet-or); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--encre);
  padding: 1.2rem 2rem 1.2rem 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content:"+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--or); font-family: var(--sans); line-height: 1;
  transition: transform var(--t);
}
.faq details[open] summary::after { content:"–"; }
.faq details p { padding: 0 0 1.3rem; font-size: var(--fs-sm); color: var(--texte-doux); }

/* ---------- Badges / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .03em;
  padding: .42rem .85rem;
  border-radius: var(--r-pill);
  background: rgba(168,130,60,.12);
  color: var(--bordeaux);
  border: 1px solid var(--filet-or);
}
.chip svg { width: 13px; height: 13px; }
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ---------- Bande CTA ---------- */
.cta-band { background: var(--bordeaux); color: var(--ivoire); position: relative; overflow: hidden; }
.cta-band::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(900px 400px at 85% -20%, rgba(168,130,60,.22), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-block: clamp(2.4rem,5vw,3.6rem); }
.cta-band h2 { color: var(--ivoire); margin-bottom: .5rem; }
.cta-band p { color: rgba(251,248,242,.85); max-width: 48ch; }
.cta-band .cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--creme); border-bottom: 1px solid var(--filet); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: var(--fs-sm); padding-block: .9rem; }
.breadcrumb li { display: flex; align-items: center; gap: .5rem; color: var(--encre-faible); }
.breadcrumb li:not(:last-child)::after { content:"/"; color: var(--filet-or); }
.breadcrumb a { color: var(--encre-doux); font-weight: 600; }
.breadcrumb a:hover { color: var(--bordeaux); }
.breadcrumb li[aria-current] { color: var(--bordeaux); font-weight: 700; }

/* Page hero interne */
.page-hero { background: var(--bordeaux); color: var(--ivoire); padding-block: clamp(2.8rem,6vw,4.5rem); }
.page-hero h1 { color: var(--ivoire); margin-bottom: .8rem; max-width: 18ch; }
.page-hero .lead { color: rgba(251,248,242,.85); max-width: 56ch; margin-bottom: 1.5rem; }
.page-hero .eyebrow { color: var(--or-clair); }
.page-hero .eyebrow::before { background: var(--or-clair); }
.page-hero .hero-actions { display:flex; flex-wrap:wrap; gap:.8rem; }

/* ---------- Stats / compteurs ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 760px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem,4vw,3.1rem); color: var(--or); line-height: 1; }
.section--bordeaux .stat-num { color: var(--or-clair); }
.stat-label { font-size: var(--fs-sm); font-weight: 600; color: var(--encre-doux); margin-top: .5rem; }
.section--bordeaux .stat-label { color: rgba(251,248,242,.82); }
.stat::after { content:""; display:block; width:34px; height:2px; background: var(--filet-or); margin:.9rem auto 0; }

/* ---------- Avis / témoignages ---------- */
.review {
  background: var(--surface-2);
  border: 1px solid var(--filet);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--sh-sm);
  height: 100%;
  display: flex; flex-direction: column;
}
.review .stars { color: var(--or); letter-spacing: 2px; margin-bottom: .8rem; font-size: .95rem; }
.review blockquote { font-size: var(--fs-sm); color: var(--encre-doux); font-style: italic; margin-bottom: 1.1rem; line-height: 1.7; }
.review .author { margin-top: auto; display: flex; align-items: center; gap: .7rem; }
.review .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bordeaux); color: var(--ivoire);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 700;
  flex: none;
}
.review .author cite { font-style: normal; font-weight: 700; font-size: var(--fs-sm); color: var(--encre); display:block; }
.review .author small { color: var(--encre-faible); font-size: var(--fs-xs); }

/* ---------- Zones ---------- */
.zones-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .7rem; }
@media (max-width: 760px){ .zones-grid { grid-template-columns: repeat(2,1fr); } }
.zone {
  display: flex; align-items: center; gap: .55rem;
  background: var(--surface-2);
  border: 1px solid var(--filet);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--encre-doux);
}
.zone svg { width: 16px; height: 16px; color: var(--or); flex: none; }

/* ---------- Formulaire ---------- */
.form-card {
  background: var(--surface-2);
  border: 1px solid var(--filet);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem,3vw,2.4rem);
  box-shadow: var(--sh-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: var(--fs-sm); margin-bottom: .4rem; color: var(--encre); }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit; font-size: var(--fs-sm);
  padding: .85rem 1rem;
  border: 1px solid var(--filet);
  border-radius: var(--r-sm);
  background: var(--ivoire);
  color: var(--encre);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(168,130,60,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: var(--fs-xs); color: var(--encre-faible); margin-top: .8rem; }

/* Contact infos */
.info-list { display: grid; gap: 1.2rem; }
.info-item { display: flex; gap: .9rem; align-items: flex-start; }
.info-item .ic {
  flex: none; width: 44px; height: 44px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: rgba(168,130,60,.12); color: var(--bordeaux);
}
.info-item .ic svg { width: 21px; height: 21px; }
.info-item h4 { font-size: var(--fs-base); margin-bottom: .15rem; }
.info-item a, .info-item p { font-size: var(--fs-sm); color: var(--texte-doux); }
.info-item a:hover { color: var(--bordeaux); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bordeaux-fonce); color: rgba(251,248,242,.78); padding-block: clamp(2.8rem,5vw,4rem) 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; margin-bottom: 2.4rem; }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: var(--ivoire); }
.footer-brand p { color: rgba(251,248,242,.7); font-size: var(--fs-sm); margin-top: 1rem; max-width: 32ch; }
.footer-col h4 { color: var(--or-clair); font-family: var(--sans); font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a, .footer-col li { font-size: var(--fs-sm); color: rgba(251,248,242,.78); }
.footer-col a:hover { color: var(--or-clair); }
.footer-contact-item { display: flex; gap: .55rem; align-items: flex-start; margin-bottom: .8rem; font-size: var(--fs-sm); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--or-clair); flex: none; margin-top: .2rem; }
.footer-call {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  background: var(--or); color: #2a200d; font-weight: 700;
  padding: .75rem 1.2rem; border-radius: var(--r-pill); margin-top: .4rem; font-size: var(--fs-sm);
  transition: background var(--t), transform var(--t);
}
.footer-call:hover { background: var(--or-clair); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(251,248,242,.14);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  font-size: var(--fs-xs); color: rgba(251,248,242,.6);
}
.footer-bottom a { color: rgba(251,248,242,.7); }
.footer-bottom a:hover { color: var(--or-clair); }
.footer-legal-line { max-width: 70ch; line-height: 1.6; }

/* ---------- Barre sticky mobile ---------- */
.mobile-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  background: var(--bordeaux);
  border-top: 1px solid var(--bordeaux-clair);
  box-shadow: 0 -6px 20px rgba(36,28,26,.18);
  padding: .55rem .8rem calc(.55rem + env(safe-area-inset-bottom));
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  white-space: nowrap;
  background: var(--or); color: #2a200d;
  font-weight: 700; font-size: var(--fs-base);
  padding: .9rem; border-radius: var(--r-pill);
}
.mobile-call-bar a svg { width: 19px; height: 19px; }
@media (max-width: 760px){
  .mobile-call-bar { display: block; }
  body { padding-bottom: 76px; }
}

/* ---------- Reveal sobre ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .media-frame img, .media-frame:hover img { transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Utils ---------- */
.text-center { text-align: center; }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-0 { margin-bottom: 0; }
.maxw { max-width: 60ch; }
.divider-or { width: 54px; height: 2px; background: var(--or); border: none; margin: 1.2rem 0; }
.center .divider-or { margin-inline: auto; }
