/* =========================================================
   Plombier Expert 95 — Design System "Atelier Laiton"
   Palette : Navy profond + Laiton/Or chaud + Crème
   Typo : Fraunces (display) + Spline Sans (body)
   100% vanilla, tokens via :root, zéro couleur en dur.
   ========================================================= */

/* ----------------------- TOKENS ----------------------- */
:root {
  /* Couleurs de marque */
  --navy-900: #08182B;
  --navy-800: #0B1F36;
  --navy-700: #0F2742;   /* navy principal */
  --navy-600: #173455;
  --navy-500: #214466;
  --navy-400: #3C5C7C;

  --brass-700: #9A7A2E;
  --brass-600: #B68F3C;
  --brass-500: #C9A24B;  /* laiton/or principal */
  --brass-400: #D7B569;
  --brass-300: #E6CE96;

  --cream-50:  #FBF8F2;
  --cream-100: #F6F1E7;  /* crème principal */
  --cream-200: #ECE3D2;
  --cream-300: #DDD0B7;

  --ink:       #14202E;
  --muted:     #4A5A6B;
  --muted-on-dark: #C2CFDC;
  --white:     #FFFFFF;

  /* Rôles sémantiques */
  --bg:            var(--cream-100);
  --bg-alt:        var(--cream-50);
  --surface:       var(--white);
  --text:          var(--ink);
  --text-soft:     var(--muted);
  --accent:        var(--brass-500);
  --accent-strong: var(--brass-700);
  --dark:          var(--navy-700);
  --line:          rgba(15, 39, 66, 0.12);
  --line-gold:     rgba(201, 162, 75, 0.45);

  /* Typo fluide */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Spline Sans", system-ui, -apple-system, sans-serif;

  --fs-xs:   clamp(0.75rem, 0.72rem + 0.15vw, 0.82rem);
  --fs-sm:   clamp(0.86rem, 0.82rem + 0.2vw, 0.94rem);
  --fs-base: clamp(1rem, 0.96rem + 0.25vw, 1.08rem);
  --fs-md:   clamp(1.12rem, 1.05rem + 0.4vw, 1.28rem);
  --fs-lg:   clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
  --fs-xl:   clamp(1.8rem, 1.5rem + 1.4vw, 2.7rem);
  --fs-2xl:  clamp(2.3rem, 1.8rem + 2.4vw, 3.8rem);
  --fs-3xl:  clamp(2.8rem, 2rem + 3.4vw, 4.6rem);

  /* Espacements */
  --sp-1: 0.4rem;
  --sp-2: 0.8rem;
  --sp-3: 1.2rem;
  --sp-4: 1.8rem;
  --sp-5: 2.6rem;
  --sp-6: 3.6rem;
  --sp-7: 5rem;
  --sp-8: 7rem;

  /* Rayons */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(8, 24, 43, 0.08);
  --shadow:    0 12px 30px -12px rgba(8, 24, 43, 0.22);
  --shadow-lg: 0 28px 60px -22px rgba(8, 24, 43, 0.32);
  --shadow-gold: 0 14px 34px -14px rgba(201, 162, 75, 0.5);

  /* Transitions */
  --t-fast: 140ms ease;
  --t:      240ms cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1160px;
  --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; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy-700);
  font-optical-sizing: auto;
}
h1 { font-size: var(--fs-3xl); font-weight: 600; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
p { color: var(--text-soft); }

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

/* ----------------------- LAYOUT ----------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.section { padding-block: clamp(3rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3.2rem); }
.section--dark { background: var(--navy-700); color: var(--cream-100); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream-50); }
.section--dark p { color: var(--muted-on-dark); }
.section--cream { background: var(--cream-50); }
.section--alt { background: var(--cream-200); }

.section-head { max-width: 720px; margin-bottom: var(--sp-5); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: var(--sp-2);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass-500);
}
.section--dark .eyebrow { color: var(--brass-400); }
.lead { font-size: var(--fs-md); color: var(--text-soft); }
.section--dark .lead { color: var(--cream-200); }

/* ----------------------- BUTTONS ----------------------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: var(--cream-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 1.1em; height: 1.1em; }

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--brass-500), var(--brass-700));
  --btn-fg: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 20px 44px -16px rgba(201,162,75,.65); }

.btn-call {
  --btn-bg: var(--navy-700);
  --btn-fg: var(--cream-50);
  border-color: var(--line-gold);
}
.btn-call:hover { --btn-bg: var(--navy-600); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-700);
  border-color: var(--line);
}
.btn-ghost:hover { --btn-bg: rgba(15,39,66,.05); border-color: var(--navy-400); }
.section--dark .btn-ghost { --btn-fg: var(--cream-50); border-color: rgba(255,255,255,.3); }
.section--dark .btn-ghost:hover { --btn-bg: rgba(255,255,255,.08); }

.btn--block { width: 100%; }

/* ----------------------- HEADER / NAV ----------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--navy-700);
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
}

.primary-nav { display: flex; align-items: center; gap: var(--sp-3); }
.nav-list { display: flex; align-items: center; gap: 0.3rem; }
.nav-list a {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-600);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-list a:hover { color: var(--navy-900); background: rgba(15,39,66,.06); }
.nav-list a.active {
  color: var(--accent-strong);
  box-shadow: inset 0 -2px 0 var(--brass-500);
}
.header-actions { display: flex; align-items: center; gap: var(--sp-2); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: var(--navy-700);
  color: var(--cream-50);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-700);
    padding: var(--sp-3) clamp(1.1rem,4vw,2.2rem) var(--sp-5);
    border-bottom: 3px solid var(--brass-500);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), transform var(--t), visibility var(--t);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    color: var(--cream-100);
    padding: 0.9rem 0.4rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
  }
  .nav-list a:hover { background: rgba(255,255,255,.06); color: var(--white); }
  .nav-list a.active { color: var(--brass-400); box-shadow: none; }
  .header-actions { margin-top: var(--sp-3); flex-direction: column; align-items: stretch; }
  .header-actions .btn { width: 100%; }
}

/* ----------------------- HERO ----------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 540px at 78% -8%, rgba(201,162,75,.22), transparent 60%),
    radial-gradient(900px 600px at 12% 110%, rgba(23,52,85,.5), transparent 55%),
    linear-gradient(160deg, var(--navy-800), var(--navy-700) 60%, var(--navy-600));
  color: var(--cream-100);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-gold) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line-gold) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.06;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-6);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero h1 { color: var(--cream-50); }
.hero h1 em { font-style: italic; color: var(--brass-400); }
.hero-sub { font-size: var(--fs-md); color: var(--cream-200); margin-top: var(--sp-3); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: var(--fs-sm);
  color: var(--cream-200);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5em; }
.hero-trust svg { width: 1.2em; height: 1.2em; color: var(--brass-400); }

.hero-card {
  background: rgba(8,24,43,.55);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(4px);
}
.hero-card h2 { color: var(--cream-50); font-size: var(--fs-lg); }
.hero-card .price-line {
  display: flex; align-items: baseline; gap: 0.4rem;
  margin: var(--sp-2) 0 var(--sp-3);
}
.hero-card .price {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--brass-400);
  font-weight: 600;
}
.hero-card ul { display: grid; gap: 0.6rem; margin-bottom: var(--sp-4); }
.hero-card li {
  display: flex; gap: 0.6em; align-items: flex-start;
  color: var(--cream-200); font-size: var(--fs-sm);
}
.hero-card li svg { width: 1.1em; height: 1.1em; color: var(--brass-400); flex: none; margin-top: 0.2em; }

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

/* ----------------------- REASSURANCE BAR ----------------------- */
.reassure {
  background: var(--navy-800);
  color: var(--cream-100);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.reassure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  padding-block: var(--sp-4);
}
.reassure-item { display: flex; align-items: center; gap: 0.8rem; }
.reassure-item svg { width: 2rem; height: 2rem; color: var(--brass-400); flex: none; }
.reassure-item strong { display: block; color: var(--cream-50); font-weight: 600; }
.reassure-item span { font-size: var(--fs-sm); color: var(--muted-on-dark); }
@media (max-width: 820px) { .reassure-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .reassure-grid { grid-template-columns: 1fr; } }

/* ----------------------- GRIDS ----------------------- */
.grid { display: grid; gap: var(--sp-4); }
.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: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ----------------------- CARDS ----------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-gold); }

.card-service { display: flex; flex-direction: column; height: 100%; position: relative; }
.card-service .icon-wrap {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: var(--brass-400);
  margin-bottom: var(--sp-3);
}
.card-service .icon-wrap svg { width: 28px; height: 28px; }
.card-service h3 { margin-bottom: 0.4rem; }
.card-service p { font-size: var(--fs-sm); flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4em;
  margin-top: var(--sp-3);
  font-weight: 600; font-size: var(--fs-sm);
  color: var(--accent-strong);
}
.card-link svg { width: 1em; height: 1em; transition: transform var(--t-fast); }
.card-service:hover .card-link svg { transform: translateX(4px); }

.card-feature .icon-wrap {
  background: var(--cream-200);
  color: var(--accent-strong);
}

/* ----------------------- AVANTAGES (puces SVG) ----------------------- */
.check-list { display: grid; gap: 0.85rem; }
.check-list li {
  display: flex; gap: 0.7em; align-items: flex-start;
  font-size: var(--fs-base);
}
.check-list li svg {
  width: 1.3em; height: 1.3em; flex: none; margin-top: 0.12em;
  color: var(--accent);
}
.section--dark .check-list li svg { color: var(--brass-400); }

/* ----------------------- TARIFS ----------------------- */
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.tarif-table caption {
  caption-side: top;
  text-align: left;
  font-size: var(--fs-sm);
  color: var(--text-soft);
  margin-bottom: var(--sp-2);
}
.tarif-table th, .tarif-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.tarif-table thead th {
  background: var(--navy-700);
  color: var(--cream-50);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
}
.tarif-table tbody tr:last-child td { border-bottom: none; }
.tarif-table tbody tr:nth-child(even) { background: var(--cream-50); }
.tarif-table .price-cell { font-weight: 600; color: var(--accent-strong); white-space: nowrap; font-family: var(--font-display); }
@media (max-width: 560px) {
  .tarif-table thead { display: none; }
  .tarif-table tbody tr { display: block; border-bottom: 2px solid var(--line); padding: 0.6rem 0; }
  .tarif-table td { display: flex; justify-content: space-between; gap: 1rem; border: none; padding: 0.5rem 1.1rem; }
  .tarif-table td::before { content: attr(data-label); font-weight: 600; color: var(--navy-700); }
}

/* ----------------------- PROCESS / STEPS ----------------------- */
.steps { display: grid; gap: var(--sp-4); counter-reset: step; }
.steps.grid-4, .steps.grid-3 { gap: var(--sp-4); }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: calc(-1 * var(--sp-3));
  left: var(--sp-4);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brass-500);
  background: var(--cream-50);
  padding: 0 0.5rem;
  line-height: 1;
}
.step h3 { font-size: var(--fs-md); margin-bottom: 0.4rem; }
.step p { font-size: var(--fs-sm); }
.section--dark .step { background: var(--navy-600); border-color: var(--line-gold); }
.section--dark .step::before { background: var(--navy-700); }

/* ----------------------- FAQ ----------------------- */
.faq { display: grid; gap: var(--sp-2); max-width: 860px; margin-inline: auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 var(--sp-4);
  transition: border-color var(--t);
}
.faq details[open] { border-color: var(--line-gold); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--navy-700);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--accent-strong);
  transition: transform var(--t);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.2rem; font-size: var(--fs-base); }

/* ----------------------- BADGES / CHIPS ----------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.4em 0.85em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  background: var(--cream-200);
  color: var(--navy-700);
  border: 1px solid var(--line-gold);
}
.badge svg { width: 1em; height: 1em; color: var(--accent-strong); }
.badge--gold { background: linear-gradient(135deg, var(--brass-400), var(--brass-600)); color: var(--navy-900); border: none; }
.badge--dark { background: var(--navy-700); color: var(--cream-100); }
.chip {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.35em 0.8em;
  font-size: var(--fs-sm);
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--navy-600);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ----------------------- CTA BAND ----------------------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 400px at 85% 0%, rgba(201,162,75,.25), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: clamp(2.4rem, 5vw, 4rem);
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--line-gold);
  border-radius: inherit;
  pointer-events: none;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-4);
  position: relative; z-index: 1;
}
.cta-band h2 { color: var(--cream-50); max-width: 18ch; }
.cta-band p { color: var(--cream-200); margin-top: 0.6rem; }
.cta-band .hero-cta { margin-top: 0; }

/* ----------------------- BREADCRUMB ----------------------- */
.breadcrumb { font-size: var(--fs-sm); color: var(--text-soft); padding-block: var(--sp-3); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--brass-500); }
.breadcrumb a:hover { color: var(--accent-strong); }
.breadcrumb [aria-current="page"] { color: var(--navy-700); font-weight: 600; }

/* ----------------------- STATS ----------------------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-4); }
.stat { text-align: center; padding: var(--sp-3); }
.stat .num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.section--dark .stat .num { color: var(--brass-400); }
.stat .label { font-size: var(--fs-sm); color: var(--text-soft); margin-top: 0.4rem; }
.section--dark .stat .label { color: var(--muted-on-dark); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* ----------------------- REVIEWS ----------------------- */
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.review .stars { display: flex; gap: 2px; color: var(--brass-500); }
.review .stars svg { width: 1.1em; height: 1.1em; }
.review blockquote { font-size: var(--fs-base); color: var(--text); font-style: italic; }
.review .reviewer { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: var(--brass-400);
  font-family: var(--font-display); font-weight: 600;
  flex: none;
}
.review .reviewer-meta strong { display: block; color: var(--navy-700); font-size: var(--fs-sm); }
.review .reviewer-meta span { font-size: var(--fs-xs); color: var(--text-soft); }

/* ----------------------- FORM ----------------------- */
.form { display: grid; gap: var(--sp-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--navy-700); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85em 1em;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brass-500);
  box-shadow: 0 0 0 3px rgba(201,162,75,.25);
}
.form-note { font-size: var(--fs-xs); color: var(--text-soft); }

/* ----------------------- ZONES GRID ----------------------- */
.zones-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-2); }
@media (max-width: 760px) { .zones-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .zones-grid { grid-template-columns: 1fr; } }
.zone-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500;
  transition: border-color var(--t), transform var(--t);
}
.zone-item:hover { border-color: var(--line-gold); transform: translateY(-2px); }
.zone-item svg { width: 1.2em; height: 1.2em; color: var(--accent); flex: none; }

/* ----------------------- SPLIT (img/illu + texte) ----------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; } }
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-500));
  border: 1px solid var(--line-gold);
  padding: var(--sp-5);
  display: grid; place-items: center;
  color: var(--brass-400);
  box-shadow: var(--shadow);
}
.media-frame svg { width: min(70%, 280px); height: auto; }

/* ----------------------- FOOTER ----------------------- */
.site-footer {
  background: var(--navy-800);
  color: var(--muted-on-dark);
  padding-block: var(--sp-6) var(--sp-4);
  border-top: 3px solid var(--brass-500);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: var(--cream-50);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: var(--fs-sm); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--brass-400); }
.footer-brand .brand-name { color: var(--cream-50); }
.footer-brand p { font-size: var(--fs-sm); margin-top: var(--sp-2); color: var(--muted-on-dark); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-sm); }
.footer-contact svg { width: 1.1em; height: 1.1em; color: var(--brass-400); flex: none; margin-top: 0.25em; }
.footer-call {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--brass-400);
  font-weight: 600;
}
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--fs-xs);
  color: var(--muted-on-dark);
}
.footer-bottom a:hover { color: var(--brass-400); }

/* ----------------------- STICKY MOBILE CALL BAR ----------------------- */
.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-gold);
  box-shadow: 0 -8px 24px -10px rgba(8,24,43,.4);
  transform: translateY(110%);
  transition: transform var(--t);
}
.call-bar.is-visible { transform: translateY(0); }
.call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.95rem;
  font-weight: 600;
  font-size: var(--fs-sm);
}
.call-bar svg { width: 1.2em; height: 1.2em; }
.call-bar .cb-call { background: var(--brass-500); color: var(--navy-900); }
.call-bar .cb-quote { background: var(--navy-700); color: var(--cream-50); }
@media (max-width: 700px) {
  .call-bar { display: grid; }
  body { padding-bottom: 56px; }
}

/* ----------------------- UTILITIES ----------------------- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-0 { margin-bottom: 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-700); color: var(--cream-50);
  padding: 0.8rem 1.2rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 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;
}
.divider-gold { width: 64px; height: 2px; background: var(--brass-500); border: none; margin: var(--sp-3) 0; }
.section-head--center .divider-gold { margin-inline: auto; }
