/* ============================================================
   Broussillon Mécanique Auto — Design "épuré clair premium"
   Refonte complète · structure HTML conservée
   ============================================================ */

:root {
  --ink: #16181c;          /* titres, boutons primaires */
  --ink-soft: #2b2f36;
  --text: #3a3f47;         /* corps de texte */
  --muted: #767c85;        /* texte secondaire */
  --paper: #ffffff;
  --cream: #f7f4ee;        /* fond chaud */
  --cream-2: #efe9e0;
  --line: #e7e1d7;
  --accent: #d2232a;       /* rouge du logo — accent unique */
  --accent-soft: #f7d4d5;
  --green: #25c065;        /* réservé WhatsApp */
  --green-2: #16a34a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 20px rgba(22, 24, 28, .06);
  --shadow: 0 18px 50px rgba(22, 24, 28, .10);
  --shadow-lg: 0 30px 80px rgba(22, 24, 28, .14);
  --ease: cubic-bezier(.22, .8, .2, 1);
  --display: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: 1rem;
  z-index: 1000;
  padding: .65rem .9rem;
  color: var(--ink);
  background: var(--accent);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(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;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(210, 35, 42, .5);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 110px 0; }

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; letter-spacing: -.01em; }
p { margin: 0; }

/* ---------- Boutons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 54px;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), color .18s var(--ease);
}
.button svg { width: 19px; height: 19px; fill: currentColor; flex: 0 0 auto; }
.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow-sm);
}
.button-primary:hover { background: #000; box-shadow: var(--shadow); }

.button-green {
  color: var(--paper);
  background: var(--green);
  box-shadow: var(--shadow-sm);
}
.button-green:hover { background: var(--green-2); box-shadow: var(--shadow); }

.button-accent {
  color: var(--ink);
  background: var(--accent);
}

/* ============================================================
   En-tête
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 244, 238, .82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 244, 238, .94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(22, 24, 28, .05);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1220px, calc(100% - 44px));
  min-height: 78px;
  margin-inline: auto;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  display: grid;
  width: 56px; height: 56px;
  place-items: center;
  flex: 0 0 auto;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; }
.brand-text em {
  color: var(--muted);
  font-style: normal;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 600;
}
.menu a { position: relative; padding: 8px 0; opacity: .82; white-space: nowrap; transition: opacity .18s var(--ease); }
.menu a:hover { opacity: 1; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.phone-action, .whatsapp-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: .55rem .95rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  flex: 0 0 auto;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), border-color .18s var(--ease);
}
.phone-action {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
}
.phone-action:hover { transform: translateY(-2px); border-color: var(--ink); }
.whatsapp-action { color: var(--paper); background: var(--green); }
.whatsapp-action:hover { transform: translateY(-2px); background: var(--green-2); }
.phone-action svg, .whatsapp-action svg { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px; height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   Héro
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  min-height: min(86vh, 760px);
  background: var(--cream);
}
.hero-photo, .hero-overlay { position: absolute; inset: 0; }
.hero-photo { z-index: -2; }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, var(--cream) 6%, rgba(247, 244, 238, .92) 34%, rgba(247, 244, 238, .35) 60%, rgba(247, 244, 238, 0) 80%);
}
.hero-grid { display: grid; padding: 80px 0; }
.hero-copy { max-width: 640px; }
.hero-copy h1 span {
  display: block;
  color: var(--accent);
}
.hero-copy p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0; margin: 0;
  list-style: none;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .55rem .95rem;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero-points svg { width: 20px; height: 20px; color: var(--accent); fill: currentColor; flex: 0 0 auto; }

/* ============================================================
   Bandeau urgence
   ============================================================ */
.urgent-strip {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hazard {
  position: absolute;
  inset: 0 auto 0 0;
  width: 120px;
  background: repeating-linear-gradient(60deg, var(--accent) 0 16px, var(--ink) 16px 32px);
  opacity: .25;
}
.urgent-grid {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 104px;
  padding: 18px 0;
}
.urgent-title { display: flex; align-items: center; gap: 16px; }
.urgent-title svg { width: 44px; height: 44px; color: var(--accent); fill: currentColor; flex: 0 0 auto; }
.urgent-title strong, .urgent-title span { display: block; }
.urgent-title strong { color: var(--paper); font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; }
.urgent-title span { color: var(--accent); font-size: 1rem; font-weight: 600; }
.urgent-grid ul {
  display: flex; flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0; margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, .82);
  font-size: .94rem;
  font-weight: 500;
}
.urgent-grid li { display: inline-flex; align-items: center; gap: 8px; }
.urgent-grid li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.urgent-strip .button-primary { color: var(--ink); background: var(--paper); }
.urgent-strip .button-primary:hover { background: var(--accent); }

/* ============================================================
   Chiffres clés
   ============================================================ */
.proof { background: var(--cream); padding: 64px 0 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.proof-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.proof-value {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.proof-value span[data-count] { color: var(--accent); }
.proof-note { margin: 0; color: var(--muted); font-size: .95rem; }

/* ============================================================
   Titres de section
   ============================================================ */
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p,
.section-heading.dark p {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-heading p::before {
  content: "";
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.section-heading h2, .section-heading.dark h2 { color: var(--ink); margin: 0; }
.section-heading .section-sub {
  display: block;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}
.section-heading .section-sub::before { display: none; }

/* ============================================================
   Réalisations
   ============================================================ */
.work { background: var(--paper); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.work-card picture { display: block; overflow: hidden; }
.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.work-card:hover img { transform: scale(1.05); }
.work-card figcaption { display: grid; gap: 4px; padding: 20px 22px 24px; }
.work-tag {
  justify-self: start;
  margin-bottom: 6px;
  padding: 4px 11px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.work-card strong { color: var(--ink); font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; }
.work-note { color: var(--muted); font-size: .94rem; }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.service-card svg {
  width: 28px; height: 28px;
  padding: 13px;
  margin-bottom: 20px;
  box-sizing: content-box;
  border-radius: 14px;
  background: var(--cream);
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.service-card:hover svg { background: var(--accent-soft); transform: rotate(-4deg); }
.service-card h3 { color: var(--ink); }
.service-card p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   Méthode (section contrastée claire)
   ============================================================ */
.method { background: var(--cream); }
.method-grid { display: grid; grid-template-columns: 300px 1fr; align-items: start; gap: 56px; }
.method .section-heading { margin-bottom: 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 32px;
  padding: 0; margin: 0;
  list-style: none;
}
.steps li { position: relative; }
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.steps strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 1.2rem; font-weight: 700; }
.steps p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   Flotte / pros
   ============================================================ */
.fleet { background: var(--paper); }
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.fleet-copy > p { max-width: 540px; margin-bottom: 24px; color: var(--text); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink-soft); font-weight: 500; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: .42em;
  width: 9px; height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.fleet-copy .button { margin-top: 28px; }
.fleet-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.fleet-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 44% 52%; }

/* ============================================================
   Tarifs
   ============================================================ */
.pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 44px; align-items: start; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-cards article {
  position: relative;
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.price-cards article:first-child { border-color: var(--accent); box-shadow: var(--shadow); }
.price-cards article:first-child::before {
  content: "Le plus demandé";
  position: absolute;
  top: -11px; left: 22px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-cards h3 { color: var(--ink); }
.price-cards strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.price-cards p { color: var(--muted); font-size: .94rem; }
.price-sub { margin: 0 0 14px; color: var(--muted); font-size: .95rem; font-weight: 600; }
.price-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.price-points li { position: relative; padding-left: 24px; color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.price-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.tariff-note {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.tariff-note p { color: var(--ink-soft); font-size: .98rem; }
.tariff-note p + p { margin-top: 10px; }

.tariff-table {
  margin-top: 16px;
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.tariff-table:focus-visible { outline: 3px solid rgba(210, 35, 42, .5); outline-offset: 3px; }
.tariff-table table { width: 100%; min-width: 720px; border-collapse: collapse; }
.tariff-table thead th {
  text-align: left;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  font-size: .92rem;
}
.tariff-table tbody th,
.tariff-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
}
.tariff-table tbody th { color: var(--ink); font-weight: 800; }
.tariff-table tbody tr:last-child th,
.tariff-table tbody tr:last-child td { border-bottom: 0; }
.pricing-panel {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-self: start;
}
.pricing-panel .check-list { margin-bottom: 28px; }
.pricing-panel .check-list li { color: rgba(255, 255, 255, .9); }
.pricing-panel .check-list li::before { background: rgba(224, 161, 22, .25); }
.pricing-panel .check-list li::after { border-color: var(--accent); }
.pricing-panel .button { width: 100%; margin-top: auto; color: var(--paper); background: var(--accent); }
.pricing-panel .button:hover { background: #b51d23; }

.tariff-note,
.tariff-table {
  grid-column: 1 / -1;
}

/* ============================================================
   Zones
   ============================================================ */
.zones { background: var(--paper); }
.zones-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.zones p { max-width: 540px; margin-bottom: 24px; color: var(--text); }
.zone-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; padding: 0; margin: 0; list-style: none; }
.zone-list li { position: relative; padding-left: 24px; color: var(--ink-soft); font-weight: 600; }
.zone-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 10px; height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.map-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.map-card svg { width: 100%; height: auto; }
.map-pin circle { fill: var(--accent); stroke: var(--paper); stroke-width: 4; }
.map-pin text { fill: var(--ink); font: 700 18px var(--sans); }

/* ============================================================
   Avis (carrousel)
   ============================================================ */
.reviews { background: var(--cream); }
.carousel { }
.carousel-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.carousel-meta { margin: 0; color: var(--accent); font-weight: 700; letter-spacing: .02em; }
.carousel-actions { display: inline-flex; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .55rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.chip:hover { transform: translateY(-2px); border-color: var(--ink); }
.chip:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  --per-view: 1;
  display: flex;
  gap: 16px;
  transform: translateX(0);
  transition: transform .42s var(--ease);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc((100% - (16px * (var(--per-view) - 1))) / var(--per-view));
  margin: 0;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.avatar {
  display: grid;
  width: 44px; height: 44px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--ink);
  background: var(--accent-soft);
  border-radius: 50%;
  font-weight: 700;
}
.carousel-slide blockquote { margin: 0 0 18px; color: var(--ink-soft); font-size: 1.04rem; }
.carousel-slide blockquote::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: .06em;
}
.carousel-slide figcaption { color: var(--ink); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
.faq-item {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.faq-item.is-open { border-color: var(--accent); background: var(--paper); }
.faq-q { margin: 0; }
.faq-trigger {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 20px 22px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}
.faq-trigger:hover { color: var(--accent); }
.faq-trigger::after {
  content: "";
  width: 11px; height: 11px;
  margin-top: 5px;
  flex: 0 0 auto;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
}
.faq-item.is-open .faq-trigger::after { transform: rotate(225deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; }

/* ============================================================
   CTA final (bande photo plein cadre)
   ============================================================ */
.final-cta {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(15, 16, 19, .92), rgba(15, 16, 19, .68) 60%, rgba(15, 16, 19, .45)),
    url("assets/mecanicien-itinerant-guadeloupe.jpg") center / cover;
}
.final-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 80px 0; }
.final-cta h2 { max-width: 640px; color: var(--paper); }
.final-cta p { max-width: 600px; color: rgba(255, 255, 255, .86); font-size: 1.1rem; }
.final-actions { display: flex; gap: 12px; }
.final-cta .button-primary { color: var(--ink); background: var(--paper); }
.final-cta .button-primary:hover { background: var(--accent); }

/* ============================================================
   Pied de page
   ============================================================ */
.footer { padding: 72px 0 90px; color: var(--muted); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.footer-brand { color: var(--paper); }
.footer-brand .brand-text em { color: rgba(255, 255, 255, .55); }
.footer p { max-width: 340px; margin-top: 16px; color: rgba(255, 255, 255, .55); }
.footer h2 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 10px;
  color: var(--paper);
  font-size: 1rem;
  letter-spacing: .02em;
}
.footer h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.footer a, .footer span { display: block; margin-bottom: 10px; color: rgba(255, 255, 255, .6); font-weight: 500; white-space: nowrap; }
.footer a:hover { color: var(--accent); }
.payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.payments-label { color: rgba(255, 255, 255, .55); font-size: .92rem; font-weight: 600; }
.payments-list { display: flex; gap: 10px; padding: 0; margin: 0; list-style: none; }
.pay {
  display: grid;
  place-items: center;
  width: 56px; height: 36px;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.pay svg { width: 48px; height: 30px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}
.footer-bottom p { margin: 0; max-width: none; }

/* ============================================================
   Barre d'action mobile
   ============================================================ */
.mobile-cta {
  position: fixed;
  right: 0; bottom: 0; left: 0;
  z-index: 100;
  display: none;
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(247, 244, 238, .96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.mobile-cta a {
  flex: 1;
  min-width: 0;
  padding: 13px 8px;
  border-radius: 12px;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}
.mobile-cta a:first-child { color: var(--paper); background: var(--ink); }
.mobile-cta a:nth-child(2) { color: var(--paper); background: var(--green); }
.mobile-cta a:last-child { color: var(--ink); background: var(--paper); border: 1px solid var(--line); }

/* ============================================================
   Apparition au défilement
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 700px) and (max-width: 939px) {
  .carousel-track { --per-view: 2; }
}
@media (min-width: 940px) {
  .carousel-track { --per-view: 3; }
}

@media (max-width: 1080px) {
  .menu { gap: 18px; font-size: .88rem; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 940px) {
  .section { padding: 80px 0; }
  .nav-shell { grid-template-columns: auto auto; min-height: 68px; }
  .menu-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; justify-self: end; }
  .menu {
    position: fixed;
    top: 68px; right: 0; left: 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 14px 24px 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .24s var(--ease);
  }
  .menu.is-open { transform: translateY(0); }
  .menu a { padding: 14px 0; opacity: 1; font-size: 1rem; }
  .menu a::after { bottom: 8px; }
  .nav-actions { display: none; }

  .hero-overlay {
    background: linear-gradient(90deg, var(--cream) 4%, rgba(247, 244, 238, .9) 46%, rgba(247, 244, 238, .55) 78%);
  }
  .proof-grid { grid-template-columns: 1fr; }
  .method-grid, .fleet-grid, .zones-grid, .final-grid, .footer-grid { grid-template-columns: 1fr; }
  .method .section-heading { margin-bottom: 8px; }
  .service-grid, .price-cards, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .final-actions { flex-wrap: wrap; }
  .footer-grid { gap: 32px; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  .section { padding: 60px 0; }
  .container { width: calc(100% - 36px); }
  .nav-shell { width: calc(100% - 36px); }

  .hero { min-height: auto; }
  .hero-grid { min-height: 560px; padding: 56px 0; }
  .hero-photo img { object-position: 74% 50%; }
  .hero-overlay {
    background: linear-gradient(0deg, var(--cream) 30%, rgba(247, 244, 238, .8) 60%, rgba(247, 244, 238, .4));
  }
  .hero-actions, .hero-actions .button { width: 100%; }

  .urgent-grid { grid-template-columns: 1fr; gap: 16px; }
  .hazard { width: 80px; opacity: .18; }

  .pricing-grid { grid-template-columns: 1fr; }
  .service-grid, .steps, .price-cards, .zone-list, .faq-grid, .work-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; padding: 22px; }
  .service-card svg { grid-row: span 2; margin: 0; }
  .service-card h3 { margin-bottom: 6px; }

  .final-actions, .final-actions .button { width: 100%; }
  .footer-bottom { display: grid; gap: 12px; }
  .mobile-cta { display: flex; }
}

@media (max-width: 680px) and (orientation: portrait) {
  .phone-action,
  .whatsapp-action {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }

  .phone-action span,
  .whatsapp-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 400px) {
  h1 { font-size: 2.5rem; }
}

body.lite {
  background: var(--paper);
}

body.lite .site-header {
  backdrop-filter: none;
}

body.lite .final-cta {
  background: var(--ink);
}

body.lite [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

body.lite .carousel-header {
  display: none;
}

body.lite .carousel-viewport {
  overflow: visible;
}

body.lite .carousel-track {
  flex-wrap: wrap;
  transform: none !important;
  transition: none;
}

body.lite .carousel-slide {
  flex: 1 1 280px;
  box-shadow: none;
}

body.lite .service-card,
body.lite .proof-card,
body.lite .pricing-panel,
body.lite .price-cards article,
body.lite .faq-item,
body.lite .map-card,
body.lite .fleet-photo {
  box-shadow: none;
}

/* ============================================================
   Mouvement réduit
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

body.modal-open { overflow: hidden; }

.button-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}
.button-secondary:hover { background: var(--cream); border-color: var(--ink); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
}
.modal.is-open { display: block; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 24, 28, .62);
  backdrop-filter: blur(2px);
}

.modal-dialog {
  position: relative;
  width: min(920px, calc(100% - 36px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  padding: 26px;
  overflow: auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal-close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.modal-close:hover { transform: translateY(-2px); border-color: var(--ink); }

.modal-status {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .98rem;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-top: 18px;
}

.modal-field-wide { grid-column: 1 / -1; }

.modal-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
  font-size: .92rem;
}

.modal-field input,
.modal-field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.modal-field textarea { resize: vertical; min-height: 96px; }

.modal-field.is-invalid input,
.modal-field.is-invalid textarea {
  border-color: rgba(210, 35, 42, .7);
  background: var(--paper);
}

.modal-error {
  min-height: 18px;
  margin-top: 6px;
  color: #b51d23;
  font-size: .88rem;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.modal-actions .button:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.modal-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(210, 35, 42, .35);
  background: rgba(210, 35, 42, .08);
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 230;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 620px) {
  .modal-dialog {
    width: calc(100% - 28px);
    margin: 14px auto;
    padding: 18px;
    max-height: calc(100vh - 28px);
  }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-field-wide { grid-column: auto; }
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
