/* =========================================================
   NREPAIR — Landing page
   Variante A : « Pop énergique »
   Vanilla HTML + CSS (portable WordPress/Elementor)
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

/* =========================================================
   1. TOKENS / VARIABLES
   ========================================================= */
:root {
  /* Couleurs marque */
  --jaune:        #F6B41C;
  --jaune-fonce:  #E0A013;
  --jaune-clair:  #FEF3D4;
  --encre:        #20232A;
  --encre-2:      #3A3F4A;
  --creme:        #FAF6EF;
  --blanc:        #FFFFFF;
  --ligne:        #ECE6DA;
  --muted:        #6E6A60;

  /* Rayons (formes très arrondies) */
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 24px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Ombres douces */
  --shadow-sm: 0 4px 14px rgba(32, 35, 42, .06);
  --shadow-md: 0 10px 30px rgba(32, 35, 42, .08);
  --shadow-lg: 0 24px 60px rgba(32, 35, 42, .12);
  --shadow-yellow: 0 14px 32px rgba(246, 180, 28, .35);

  /* Layout */
  --container: 1180px;
  --container-narrow: 800px;
  --gutter: 24px;
  --header-h: 76px;

  /* Transitions */
  --t: 200ms cubic-bezier(.4, 0, .2, 1);

  /* Pattern décoratif : petits points jaunes */
  --dots: radial-gradient(var(--jaune) 1.6px, transparent 1.7px);
}

/* =========================================================
   2. RESET / BASE
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--encre);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-locked { overflow: hidden; }

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

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

h1, h2, h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -.01em;
}

ul { list-style: none; padding: 0; }

button { font-family: inherit; cursor: pointer; }

/* SVG icons */
.icon {
  width: 20px;
  height: 20px;
  flex: none;
  display: inline-block;
  vertical-align: middle;
}

/* =========================================================
   3. ACCESSIBILITÉ : skip link + focus
   ========================================================= */
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--encre);
  color: var(--blanc);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top var(--t);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid var(--encre);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Sur les surfaces sombres, focus jaune pour le contraste */
.process :focus-visible,
.footer :focus-visible { outline-color: var(--jaune); }

/* =========================================================
   4. LAYOUT : container
   ========================================================= */
.container {
  width: 100%;
  max-width: 100%;            /* pleine largeur sur tout le site */
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 72px);
}
.container--narrow { max-width: 1100px; }

/* Elementor : conteneur de section en pleine largeur
   (le .container interne gère la largeur de lecture + les marges latérales) */
.elementor-section > .elementor-container { max-width: 100% !important; }
.e-con, .e-con-inner { max-width: 100% !important; }

.section { padding-block: 88px; }

/* En-tête de section */
.section__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__title {
  font-weight: 900;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.75rem);
  color: var(--encre);
}
.section__title--light { color: var(--blanc); }
.section__sub {
  margin-top: 14px;
  font-size: 1.0625rem;
  color: var(--muted);
}
.section__sub--center { margin-inline: auto; }
.section__note {
  margin-top: 12px;
  font-size: .875rem;
  font-style: italic;
  color: var(--muted);
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--jaune-fonce);
  background: var(--jaune-clair);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow--center { margin-inline: auto; }
.eyebrow--light {
  color: var(--encre);
  background: var(--jaune);
}

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

/* =========================================================
   5. BOUTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn--lg { padding: 17px 30px; font-size: 1.0625rem; }

.btn--primary {
  background: var(--jaune);
  color: var(--encre) !important;
  box-shadow: var(--shadow-yellow);
}
.btn--primary:hover {
  background: var(--jaune-fonce);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--blanc);
  color: var(--encre);
  border-color: var(--ligne);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  border-color: var(--encre);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--encre);
  color: var(--blanc);
}
.btn--dark:hover {
  background: var(--encre-2);
  transform: translateY(-2px);
}

/* =========================================================
   6. TOPBAR
   ========================================================= */
.topbar {
  background: var(--encre);
  color: var(--blanc);
  font-size: .875rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar__list li,
.topbar__zone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar .icon { width: 16px; height: 16px; color: var(--jaune); }
.topbar a:hover { color: var(--jaune); }
.topbar__zone { color: #D9D5CC; font-weight: 500; }

/* =========================================================
   7. HEADER STICKY + NAV + LOGO
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--ligne);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

/* Logo wordmark */
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.logo__n { color: var(--jaune); }
.logo__rest { color: var(--encre); }
.logo__rest--light { color: var(--blanc); }

/* Nav */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__list a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .9375rem;
  color: var(--encre-2);
  transition: background var(--t), color var(--t);
}
.nav__list a:hover {
  background: var(--jaune-clair);
  color: var(--encre);
}

.header__cta { margin-left: 4px; }

/* Burger (mobile only) */
/* !important + box-sizing : le kit global Elementor style TOUS les <button> (fond jaune,
   pill, padding) → sans ça le burger devient un gros rond jaune. */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  box-sizing: border-box;
  background: var(--blanc) !important;
  color: var(--encre) !important;
  border: 1px solid var(--ligne) !important;
  border-radius: var(--r-sm) !important;
  box-shadow: var(--shadow-sm) !important;
  margin-left: auto;
}
.burger__bar {
  width: 22px;
  height: 2.5px;
  background: var(--encre);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  margin-inline: auto;
}
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   8. HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--creme);
  padding-top: 56px;
  padding-bottom: 120px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}

.hero__title {
  font-weight: 900;
  font-size: clamp(2.3rem, 1.4rem + 4vw, 4rem);
  margin-top: 6px;
}
/* Mot-clé surligné jaune décoratif */
.mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: .06em;
  height: .30em;
  background: rgba(246, 180, 28, .32);
  border-radius: var(--r-pill);
  z-index: -1;
}
.hero__lead {
  margin-top: 22px;
  font-size: 1.125rem;
  color: var(--encre-2);
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Chips de réassurance */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-weight: 600;
  font-size: .9375rem;
  box-shadow: var(--shadow-sm);
}
.chip .icon { color: var(--jaune-fonce); width: 18px; height: 18px; }

/* Visuel hero (mascotte + blob + badges) */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.hero__blob {
  position: absolute;
  width: 108%;
  max-width: 560px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 42%, var(--jaune) 0 58%, var(--jaune-fonce) 100%);
  border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
  box-shadow: var(--shadow-lg);
  z-index: 0;
}
/* Petit accent de points jaunes (toléré) */
.hero__dots {
  position: absolute;
  width: 130px;
  height: 130px;
  right: -6px;
  bottom: 8px;
  background-image: var(--dots);
  background-size: 16px 16px;
  opacity: .55;
  z-index: 0;
}
.hero__mascot {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-height: 460px;
  filter: drop-shadow(0 22px 28px rgba(32, 35, 42, .22));
  animation: float 6s ease-in-out infinite;
}

/* Badges flottants ludiques */
.float-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blanc);
  border-radius: var(--r-pill);
  padding: 9px 15px;
  font-weight: 700;
  font-size: .875rem;
  color: var(--encre);
  box-shadow: var(--shadow-md);
}
.float-badge .icon { width: 17px; height: 17px; color: var(--jaune-fonce); }
.float-badge--1 { top: 8%;  left: -2%;  animation: float 5s ease-in-out infinite; }
.float-badge--2 { top: 38%; right: -4%; animation: float 7s ease-in-out infinite .4s; }
.float-badge--3 { bottom: 9%; left: 2%;  animation: float 6s ease-in-out infinite .8s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* =========================================================
   9. VAGUES DE SÉPARATION (SVG full-width)
   ========================================================= */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
  z-index: 1;
  fill: var(--jaune);
}
.wave--bottom { bottom: -1px; }
.wave--top    { top: -1px; }

/* La vague basse du hero pointe vers la section services (crème → reste crème),
   donc on la teinte en jaune léger pour la lisibilité de la transition. */
.hero .wave--bottom { fill: var(--jaune-clair); }

/* =========================================================
   10. SERVICES — cartes
   ========================================================= */
.services { background: var(--jaune-clair); }

.card {
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--r-md);
  background: var(--jaune);
  color: var(--encre);
  margin-bottom: 20px;
}
.card__badge .icon { width: 28px; height: 28px; }
.card__title {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.card__text {
  color: var(--muted);
  font-size: 1rem;
  flex: 1;
}
.card__link {
  margin-top: 20px;
  align-self: flex-start;
  font-weight: 700;
  color: var(--encre);
  border-bottom: 2px solid var(--jaune);
  padding-bottom: 2px;
  transition: gap var(--t), color var(--t);
}
.card__link:hover { color: var(--jaune-fonce); }
.card__link span { transition: transform var(--t); display: inline-block; }
.card__link:hover span { transform: translateX(4px); }

/* =========================================================
   11. POURQUOI NREPAIR — features
   ========================================================= */
.why { background: var(--creme); }

.feature { text-align: left; }
.feature__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--blanc);
  border: 1px solid var(--ligne);
  color: var(--jaune-fonce);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.feature__icon .icon { width: 26px; height: 26px; }
.feature__title {
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.feature__text { color: var(--muted); }

/* =========================================================
   12. PROCESS — bande sur fond encre
   ========================================================= */
.process {
  position: relative;
  background: var(--encre);
  color: var(--blanc);
  padding-block: 130px;
}
.process .wave { fill: var(--encre); }
/* La vague du haut vient de la section "why" (crème) */
.process .wave--top { fill: var(--encre); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.step {
  position: relative;
  background: var(--encre-2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-xl);
  padding: 34px 28px 30px;
}
.step__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--jaune);
  color: var(--encre);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-yellow);
}
.step__title {
  color: var(--blanc);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.step__text { color: #C9CCD3; }

/* =========================================================
   13. TARIFS
   ========================================================= */
.tarifs { background: var(--jaune-clair); }

.price {
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.price:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.price__label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--encre-2);
  margin-bottom: 10px;
}
.price__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--encre);
}
.price__value--quote {
  font-size: 1.25rem;
  color: var(--jaune-fonce);
}
.tarifs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

/* =========================================================
   14. BOUTIQUE — placeholder
   ========================================================= */
.boutique { background: var(--creme); }
.boutique__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.boutique__content .section__title { text-align: left; }
.boutique__text {
  margin: 16px 0 26px;
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 46ch;
}
.boutique__placeholder {
  position: relative;
  background: var(--jaune-clair);
  border: 2px dashed var(--jaune);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  min-height: 260px;
}
.boutique__soon {
  display: inline-block;
  background: var(--jaune);
  color: var(--encre);
  font-weight: 800;
  font-size: .875rem;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 26px;
}
.boutique__skeletons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.skeleton {
  height: 90px;
  border-radius: var(--r-md);
  background:
    linear-gradient(var(--blanc), var(--blanc)) padding-box,
    linear-gradient(120deg, rgba(255,255,255,.4), rgba(246,180,28,.25)) border-box;
  border: 1px solid var(--ligne);
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   15. ZONE D'INTERVENTION
   ========================================================= */
.zone { background: var(--jaune-clair); }
.zone__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
}
.zone__content .section__title { text-align: left; }
.zone__content .eyebrow { background: var(--blanc); }

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 4px;
}
.towns li {
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-weight: 600;
  font-size: .9375rem;
  box-shadow: var(--shadow-sm);
}
.towns__more {
  background: var(--encre) !important;
  color: var(--blanc);
  border-color: var(--encre) !important;
}
.zone .btn { margin-top: 26px; }

/* Encart Nîmes stylisé */
.zone__map {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 60%),
    var(--jaune);
  border-radius: var(--r-xl);
  padding: 56px 24px;
  min-height: 320px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.zone__dots { display: none; } /* surfaces unies : pas de texture en pointillés */
.zone__pin {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 1;
}
.zone__pin-icon {
  width: 88px;
  height: 88px;
  color: var(--encre);
  filter: drop-shadow(0 10px 16px rgba(32,35,42,.25));
}
.zone__city {
  margin-top: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--encre);
}
.zone__map-cap {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--encre-2);
}

/* =========================================================
   16. AVIS CLIENTS
   ========================================================= */
.reviews { background: var(--creme); }

.review {
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.review:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star {
  width: 20px;
  height: 20px;
  color: var(--jaune);
}
.review__quote {
  font-size: 1.0625rem;
  color: var(--encre-2);
  line-height: 1.55;
}
.review__author {
  margin-top: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--encre);
}
.review__author span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--muted);
}

/* =========================================================
   17. FAQ — accordéon
   ========================================================= */
.faq { background: var(--jaune-clair); }
.faq__list { display: grid; gap: 14px; }

.faq__item {
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--encre);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron {
  width: 22px;
  height: 22px;
  color: var(--jaune-fonce);
  flex: none;
  transition: transform var(--t);
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a {
  padding: 0 24px 22px;
  color: var(--muted);
}
.faq__a p { max-width: 64ch; }

/* =========================================================
   18. DEVIS — placeholder
   ========================================================= */
.devis { background: var(--creme); }
.devis__inner { text-align: center; }
.devis__inner .section__title { text-align: center; }

.slogan {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  color: var(--jaune-fonce);
  margin-bottom: 6px;
  line-height: 1;
}

.devis__placeholder {
  margin: 34px 0 30px;
  background: var(--blanc);
  border: 2px dashed var(--jaune);
  border-radius: var(--r-xl);
  padding: 48px 32px;
  display: grid;
  place-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.devis__icon { width: 52px; height: 52px; color: var(--jaune-fonce); }
.devis__placeholder-text {
  font-weight: 600;
  color: var(--encre-2);
  max-width: 48ch;
}
.devis__placeholder-text span {
  display: block;
  margin-top: 6px;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
}
.devis__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =========================================================
   19. FOOTER
   ========================================================= */
.footer {
  background: var(--encre);
  color: #C9CCD3;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-block: 64px 48px;
}
.logo--footer { font-size: 1.7rem; display: inline-block; }
.footer__slogan {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--jaune);
  margin: 12px 0 8px;
}
.footer__tagline {
  font-size: .9375rem;
  color: #9A9DA6;
  max-width: 38ch;
}
.footer__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--blanc);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { transition: color var(--t); }
.footer__col a:hover { color: var(--jaune); }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contact .icon { color: var(--jaune); width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .875rem;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-block: 20px;
  color: #9A9DA6;
}

/* =========================================================
   20. RESPONSIVE
   ========================================================= */

/* ---- Tablette ≤ 1024px ---- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- ≤ 920px : nav burger ---- */
@media (max-width: 920px) {
  .header__cta { display: none; }
  .burger { display: flex; }
  /* le backdrop-filter crée un bloc de référence qui casse le position:fixed du menu → on le retire sur mobile */
  .header { -webkit-backdrop-filter: none; backdrop-filter: none; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    margin: 0;
    background: var(--creme);
    border-left: 1px solid var(--ligne);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--t);
    padding: calc(var(--header-h) + 20px) 22px 30px;
    overflow-y: auto;
  }
  .nav--open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav__list a {
    display: block;
    padding: 14px 16px;
    font-size: 1.0625rem;
    border-radius: var(--r-md);
  }
}

/* ---- Tablette portrait ≤ 860px ---- */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding-bottom: 100px; }
  .hero__visual { order: -1; min-height: 380px; }
  .hero__mascot { max-height: 360px; }
  .hero__lead { max-width: none; }

  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .boutique__inner,
  .zone__inner { grid-template-columns: 1fr; gap: 32px; }
  .boutique__content .section__title,
  .zone__content .section__title { text-align: left; }
}

/* ---- Mobile ≤ 600px ---- */
@media (max-width: 600px) {
  .section { padding-block: 64px; }
  .process { padding-block: 100px; }

  .topbar__inner { justify-content: center; }
  .topbar__zone { width: 100%; justify-content: center; }

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

  .hero__actions .btn,
  .tarifs__actions .btn,
  .devis__actions .btn { width: 100%; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { justify-content: center; text-align: center; }

  .float-badge { font-size: .8125rem; padding: 7px 12px; }
  .float-badge--1 { left: 0; }
  .float-badge--2 { right: 0; }

  .wave { height: 46px; }
}

/* ---- Très petit ≤ 380px : ajuste les badges flottants ---- */
@media (max-width: 380px) {
  .float-badge--2 { display: none; } /* évite le débordement */
}

/* =========================================================
   21. MOTION RÉDUIT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__mascot,
  .float-badge { animation: none !important; }
}
