/* ===========================================================
   Le coup de pouce de Victor — feuille de style
   Direction : épuré façon Notion, base noir & blanc,
   touches de bleu / orange / rouge en accents.
   =========================================================== */

:root {
  --ink: #1a1a18;
  --ink-soft: #555350;
  --ink-faint: #8a8783;
  --paper: #ffffff;
  --cream: #f7f6f3;
  --cream-2: #f0eee9;
  --line: #e7e4dd;

  --blue: #2e7cf6;
  --orange: #f5821f;
  --red: #ff6b5e;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(26,26,24,.05), 0 2px 8px rgba(26,26,24,.04);
  --shadow-md: 0 6px 24px rgba(26,26,24,.08);
  --shadow-lg: 0 18px 50px rgba(26,26,24,.12);

  --maxw: 1080px;
  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent-blue { color: var(--blue); }
.accent-orange { color: var(--orange); }
.accent-red { color: var(--red); }

/* ---------- Focus accessible ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===========================================================
   En-tête (barre du haut)
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; border-radius: 9px; }
.brand strong { font-family: var(--font-display); font-size: 18px; letter-spacing: -.02em; }
.brand small { display: block; font-size: 11.5px; color: var(--ink-faint); font-weight: 600; letter-spacing: .01em; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 15px;
  padding: 10px 18px; border-radius: 999px; transition: transform .15s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-1px); background: #000; }
@media (max-width: 620px) { .header-cta span { display: none; } .brand small { display: none; } }

/* ===========================================================
   Hero
   =========================================================== */
.hero { padding: 86px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(46,124,246,.07), transparent 60%),
    radial-gradient(50% 45% at 5% 30%, rgba(245,130,31,.07), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--cream); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

.hero h1 { font-size: clamp(40px, 6.4vw, 72px); margin-bottom: 18px; }
.hero h1 .light { color: var(--ink-faint); }
.hero .lead { font-size: clamp(18px, 2.2vw, 22px); color: var(--ink-soft); max-width: 30ch; margin-bottom: 30px; }
.hero .lead strong { color: var(--ink); font-weight: 700; }

.promises { display: flex; flex-direction: column; gap: 12px; margin: 30px 0 34px; }
.promise { display: flex; gap: 12px; align-items: flex-start; }
.promise .ico { font-size: 19px; line-height: 1.4; }
.promise b { font-weight: 700; }
.promise span { color: var(--ink-soft); }

/* Boutons */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 16px; padding: 14px 22px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; border: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(255,107,94,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,107,94,.42); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--ink); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.4); }

/* Visuel hero */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 28px; position: relative;
}
.hero-card img { width: 100%; border-radius: 18px; }
.hero-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-md);
}
.hero-badge b { color: var(--orange); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .hero .lead { max-width: none; }
}

/* ===========================================================
   Sections génériques
   =========================================================== */
section { scroll-margin-top: 80px; }
.band { padding: 84px 0; }
.band.cream { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(30px, 4.4vw, 44px); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 18px; }

/* ===========================================================
   À propos
   =========================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 18px; }
.about-text p strong { color: var(--ink); }
.trust-list { display: grid; gap: 16px; margin-top: 6px; }
.trust-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.trust-item .ico { font-size: 22px; }
.trust-item b { display: block; margin-bottom: 2px; }
.trust-item span { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ===========================================================
   Prestations
   =========================================================== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d8d4cc; }
.service .icon-box {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 18px; background: var(--cream-2);
}
.service .icon-box svg { width: 26px; height: 26px; stroke-width: 1.7; }
.service:nth-child(1) .icon-box { background: rgba(245,130,31,.12); color: var(--orange); }
.service:nth-child(2) .icon-box { background: rgba(46,124,246,.12); color: var(--blue); }
.service:nth-child(3) .icon-box { background: rgba(255,107,94,.13); color: var(--red); }
.service:nth-child(4) .icon-box { background: rgba(46,124,246,.12); color: var(--blue); }
.service:nth-child(5) .icon-box { background: rgba(245,130,31,.12); color: var(--orange); }
.service h3 { font-size: 20px; margin-bottom: 10px; }
.service p { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* ===========================================================
   Avis clients
   =========================================================== */
.reviews { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-size: 16px; color: var(--ink); margin-bottom: 16px; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-weight: 700; font-family: var(--font-display); font-size: 16px;
}
.review .who b { display: block; font-size: 15px; }
.review .who span { font-size: 13px; color: var(--ink-faint); }
@media (max-width: 900px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .reviews { grid-template-columns: 1fr; } }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 24px; height: 24px; position: relative; transition: transform .25s ease; }
.faq summary .plus::before, .faq summary .plus::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px;
}
.faq summary .plus::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq summary .plus::after { left: 11px; top: 4px; bottom: 4px; width: 2px; transition: opacity .2s ease; }
.faq details[open] summary .plus::after { opacity: 0; }
.faq details[open] summary .plus { transform: rotate(180deg); }
.faq .answer { padding: 0 22px 22px; color: var(--ink-soft); font-size: 16.5px; }

/* ===========================================================
   Contact
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 22px; margin-bottom: 8px; }
.contact-info .zone { color: var(--ink-soft); margin-bottom: 28px; font-size: 17px; }
.contact-info .zone b { color: var(--ink); }
.contact-methods { display: grid; gap: 12px; margin-bottom: 26px; }
.contact-method {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 15px 18px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, border-color .2s ease;
}
.contact-method:hover { transform: translateY(-2px); border-color: var(--ink); }
.contact-method .ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.contact-method .ico svg { width: 21px; height: 21px; }
.m-phone .ico { background: rgba(255,107,94,.13); color: var(--red); }
.m-wa .ico { background: rgba(37,211,102,.15); color: #1ea952; }
.m-mail .ico { background: rgba(46,124,246,.12); color: var(--blue); }
.contact-method small { display: block; color: var(--ink-faint); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.contact-method b { font-size: 17px; }

/* Formulaire */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); }
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card .sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font: inherit; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 12px; background: var(--cream); color: var(--ink); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus { background: #fff; border-color: var(--blue); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.field-file {
  border: 1.5px dashed var(--line); border-radius: 12px; padding: 16px; background: var(--cream);
  text-align: center; color: var(--ink-soft); font-size: 14.5px;
}
.field-file input { margin-top: 10px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .two-col { grid-template-columns: 1fr; } }

/* ===========================================================
   Zone d'intervention (carte)
   =========================================================== */
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.zone-intro p { color: var(--ink-soft); font-size: 18px; margin-bottom: 24px; }
.zone-intro p b { color: var(--ink); }
.town-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.town-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-weight: 600; font-size: 15px; box-shadow: var(--shadow-sm);
}
.town-pill .pin { color: var(--orange); display: inline-flex; }
.town-pill .pin svg { width: 15px; height: 15px; }
.map-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--cream);
}
.map-card iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-card .map-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 14px;
  padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px; pointer-events: none;
}
.map-card .map-tag .pin { color: var(--orange); display: inline-flex; }
.map-card .map-tag .pin svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .zone-grid { grid-template-columns: 1fr; gap: 32px; } .map-card iframe { height: 340px; } }

/* ===========================================================
   Pied de page
   =========================================================== */
.site-footer { background: var(--ink); color: #fff; padding: 54px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 11px; background: #fff; }
.footer-brand strong { font-family: var(--font-display); font-size: 19px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 2px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.75); font-size: 15px; transition: color .15s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.5); font-size: 13.5px; }
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ===========================================================
   Bouton flottant mobile (appel rapide)
   =========================================================== */
.mobile-call {
  display: none; position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 60; background: var(--red); color: #fff; font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; box-shadow: 0 8px 24px rgba(255,107,94,.5);
  display: none;
}
@media (max-width: 620px) {
  .mobile-call { display: inline-flex; align-items: center; gap: 9px; }
}

/* ===========================================================
   Apparition au chargement
   =========================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
  .d1 { animation-delay: .05s; } .d2 { animation-delay: .14s; }
  .d3 { animation-delay: .23s; } .d4 { animation-delay: .32s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}
