/* =========================================================================
   Jumbo Pneus 95 Groslay — feuille de styles
   Tokens (charte) : vert #0d3f20 / footer #0a2914 / accent #1a8140 /
   jaune #FFC400. Titres : Barlow Semi Condensed. Texte : Barlow.
   Breakpoint unique : 820px.
   ========================================================================= */

:root {
  --green:        #0d3f20;
  --green-deep:   #0a2914;
  --green-accent: #1a8140;
  --yellow:       #FFC400;
  --ink:          #15201a;
  --ink-2:        #0d2417;
  --muted:        #42514a;
  --muted-2:      #566a5c;
  --muted-3:      #9fb3a3;
  --light:        #f3f9f3;
  --line:         #eef0ed;
  --maxw:         1240px;
  --pad:          32px;
  --shadow-soft:  0 12px 30px rgba(13, 63, 32, .18);
  --font-head:    'Barlow Semi Condensed', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }
::selection { background: var(--yellow); color: #0c3d1f; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: 96px 0; }

/* ---- boutons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 40px;
  border: 0;
  cursor: pointer;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--yellow);
  color: #0c2d18;
  box-shadow: 0 12px 34px rgba(255, 196, 0, .32);
}
.btn--primary:hover { box-shadow: 0 16px 40px rgba(255, 196, 0, .42); }
.btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .18); }
.btn--green { background: var(--green); color: #fff; }
.btn--soft  { background: #f1f4ef; color: #3c4d42; font-weight: 700; }
.btn--sm    { padding: 13px 24px; font-size: 15px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-accent);
}
.eyebrow--yellow { color: var(--yellow); }
.rule { width: 72px; height: 6px; border-radius: 6px; background: var(--yellow); margin-top: 16px; }

/* ---- header --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green);
  border-bottom: 3px solid var(--yellow);
}
.site-header .container {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a:not(.btn) {
  color: #d6e2d6;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color .2s ease;
}
.nav a:not(.btn):hover { color: #fff; }
.nav .btn {
  color: #0c2d18; font-weight: 800; font-size: 15px; padding: 11px 22px;
  box-shadow: 0 6px 18px rgba(255, 196, 0, .35);
}
.nav .btn:hover { box-shadow: 0 8px 22px rgba(255, 196, 0, .5); }

/* ---- menu mobile (hamburger) : masqués par défaut (desktop) --------------- */
.nav-toggle { display: none; }
.mobile-menu { display: none; }

.nav-toggle {
  width: 46px; height: 46px; padding: 0;
  border: 0; border-radius: 12px; cursor: pointer;
  background: rgba(255, 255, 255, .08);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2.5px; border-radius: 2px;
  background: #fff; transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  flex-direction: column; gap: 4px;
  padding: 10px var(--pad) 18px;
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.mobile-menu a:not(.btn) {
  color: #e6efe6; text-decoration: none; font-weight: 600; font-size: 17px;
  padding: 14px 6px; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.mobile-menu a:not(.btn):active { color: var(--yellow); }
.mobile-menu .btn { justify-content: center; margin-top: 14px; }

/* ---- hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 78% 18%, #1f8a47 0%, #0d3f20 58%, #082c16 100%);
  overflow: hidden;
}
.hero__glow,
.hero__ring { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow { top: -140px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255, 196, 0, .22), transparent 66%); }
.hero__ring { bottom: -180px; left: -140px; width: 460px; height: 460px;
  border: 70px solid rgba(255, 196, 0, .06); }
.hero .grid-2 { padding: 78px var(--pad); position: relative; }
.hero__tag { display: inline-flex; align-items: center; gap: 9px; color: var(--yellow);
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 {
  font-family: var(--font-head);
  font-size: 74px;
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 18px 0 0;
  color: #fff;
}
.hero__sub { font-size: 19px; line-height: 1.6; color: #c9dccd; max-width: 470px; margin: 24px 0 0; }
.hero__sub strong { color: #fff; font-weight: 700; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 196, 0, .16);
  border: 1px solid rgba(255, 196, 0, .4);
  color: #FFD54A;
  font-size: 13.5px; font-weight: 700;
  padding: 9px 15px; border-radius: 40px;
}
/* Itinéraire glissé dans la rangée des pastilles (mobile) : bouton jaune */
.pill--action {
  display: none;                       /* affiché seulement sur mobile */
  text-decoration: none; cursor: pointer;
  background: var(--yellow);
  color: #0c2d18;
  border-color: var(--yellow);
  transition: background .2s ease;
}
.pill--action:hover { background: #ffd233; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; align-items: center; gap: 22px; margin-top: 42px; }
.hero__stats .col { display: flex; flex-direction: column; }
.hero__stats .num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: #fff; line-height: 1; }
.hero__stats .num span { color: var(--yellow); }
.hero__stats .lbl { font-size: 12.5px; color: #9bb4a1; margin-top: 5px; font-weight: 500; }
.hero__stats .sep { width: 1px; height: 38px; background: rgba(255, 255, 255, .18); }

.hero__media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
  border: 5px solid var(--yellow);
}
.hero__media img,
.hero__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero__media .slide { opacity: 0; transition: opacity 1.2s ease; }
.hero__media .slide.is-active { opacity: 1; animation: jp-kenburns 16s ease-in-out infinite alternate; }
.hero__badge {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero__badge .chip {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--green); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 20px;
}
.hero__badge .t1 { font-weight: 700; font-size: 15px; color: var(--ink-2); }
.hero__badge .t2 { font-size: 13px; color: var(--muted-2); margin-top: 1px; }

/* ---- bandeau marques ------------------------------------------------------ */
.brands { background: var(--light); border-top: 1px solid #e3ece2; border-bottom: 1px solid #e3ece2; }
.brands .container {
  padding: 26px var(--pad);
  display: flex; align-items: center; gap: 30px;
  flex-wrap: wrap; justify-content: space-between;
}
.brands__label {
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #9aa69a;
}
.brands__track {
  display: flex; gap: 14px; overflow: hidden; flex: 1; min-width: 280px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands__marquee {
  display: flex; gap: 56px; width: max-content;
  align-items: center;
  animation: jp-marquee 28s linear infinite;
  will-change: transform;
}
.brands__track:hover .brands__marquee { animation-play-state: paused; }
.brands__marquee .logo-wrap {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px;
}
.brands__marquee .logo {
  width: auto; max-width: 168px;
  object-fit: contain; display: block;
  opacity: .85; transition: opacity .2s ease;
}
.brands__track:hover .logo { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .brands__marquee { animation: jp-marquee 28s linear infinite !important; }
}

/* ---- barre de stats ------------------------------------------------------- */
.stats { background: var(--green); position: relative; overflow: hidden; }
.stats__stripe { position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background-image: repeating-linear-gradient(45deg, var(--yellow) 0 18px, var(--green) 18px 36px); }
.stats .grid-4 { padding: 40px var(--pad); }
.stats .cell { text-align: center; padding: 6px 4px; }
.stats .num { font-family: var(--font-head); font-size: 42px; font-weight: 800; line-height: 1; letter-spacing: -.01em; color: var(--yellow); }
.stats .lbl { font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-top: 8px; color: #bcd4c2; }

/* ---- grilles génériques --------------------------------------------------- */
.grid-2 { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- prestations ---------------------------------------------------------- */
.services { background: linear-gradient(180deg, #fff 0%, #f3f9f3 100%); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.section-head h2 {
  font-family: var(--font-head); font-size: 52px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1; margin: 14px 0 0; color: var(--ink-2);
}
.section-head .lead { font-size: 16px; color: #8a978a; max-width: 340px; margin: 0; line-height: 1.55; }
.services__grid { margin-top: 54px; }
.service-card {
  position: relative; border-radius: 22px; overflow: hidden; cursor: pointer;
  aspect-ratio: 3 / 3.4; background: var(--ink-2);
  border-bottom: 5px solid var(--yellow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(13, 63, 32, .25); }
.service-card:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; opacity: .82;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}
.service-card:hover img { transform: scale(1.06); }
.service-card .veil { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 16, .05) 30%, rgba(8, 40, 22, .88) 100%); }
.service-card .num {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); color: #0c2d18;
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  padding: 5px 11px; border-radius: 8px;
}
.service-card .body { position: absolute; left: 22px; right: 22px; bottom: 20px; }
.service-card h3 {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  letter-spacing: -.01em; text-transform: uppercase; margin: 0; color: #fff; line-height: 1.02;
}
.service-card p { font-size: 14px; color: #cfe0cf; line-height: 1.5; margin: 7px 0 0; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  color: var(--yellow); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
}

/* ---- bandeau pare-brise --------------------------------------------------- */
.glass { position: relative; background: var(--green); overflow: hidden; }
.glass .container {
  padding: 54px var(--pad);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.glass__left { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 320px; }
.glass__logo {
  width: 104px; height: 104px; border-radius: 50%; flex: none;
  background: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, .35); object-fit: contain;
}
.glass h2 {
  font-family: var(--font-head); color: #fff; font-size: 34px; font-weight: 800;
  letter-spacing: -.01em; line-height: 1.05; margin: 8px 0 0; text-transform: uppercase;
}
.glass h2 span { color: var(--yellow); }
.glass p { color: #9fc0a8; font-size: 14px; line-height: 1.5; margin: 9px 0 0; }
.glass__logo--rect {
  width: auto; height: 52px; max-width: 340px; flex: none;
  display: block; object-fit: contain;
}

/* ---- à propos ------------------------------------------------------------- */
.about { background: #fff; position: relative; }
.about__media { position: relative; }
.about__media .b1, .about__media .b2 { position: absolute; border-radius: 26px; z-index: 0; }
.about__media .b1 { top: -18px; left: -18px; width: 72%; height: 72%; background: var(--yellow); }
.about__media .b2 { bottom: -16px; right: -16px; width: 54%; height: 54%; background: #e9f6ed; }
.about__media .frame {
  position: relative; z-index: 1; border-radius: 26px; overflow: hidden;
  aspect-ratio: 4 / 4.4; box-shadow: 0 30px 70px rgba(13, 63, 32, .2); border: 5px solid #fff;
}
.about__media .frame img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1); }
.about__media .frame:hover img { transform: scale(1.06); }
.about__media .frame--video { aspect-ratio: 16 / 9; }
.about__media .frame--video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #0d2417; }
.about h2 {
  font-family: var(--font-head); font-size: 50px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1; margin: 14px 0 0; color: var(--ink-2);
}
.about p { font-size: 17px; color: #4a5b50; line-height: 1.65; margin: 22px 0 0; }
.about p + p { margin-top: 14px; }
.about p strong { color: var(--ink); font-weight: 600; }
.atouts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin-top: 30px; }
.atout { display: flex; align-items: flex-start; gap: 12px; }
.tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: #e6f3ea; color: #137a3a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; margin-top: 2px;
}
.atout span:last-child { font-size: 15.5px; font-weight: 500; color: #2c3a32; line-height: 1.4; }
.about__brands {
  display: flex; align-items: center; gap: 16px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.about__brands .lbl { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #9aa69a; }
.about__brands img.rect { height: 48px; width: auto; display: block; border-radius: 9px; }
.about__brands img.round { height: 56px; width: 56px; border-radius: 50%; background: #fff; display: block; object-fit: contain; }

/* ---- avis ----------------------------------------------------------------- */
.reviews {
  background: radial-gradient(circle at 50% -10%, #1f8a47 0%, #0c3b1e 72%);
  position: relative; overflow: hidden;
}
.reviews__stripe { position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background-image: repeating-linear-gradient(45deg, var(--yellow) 0 18px, transparent 18px 36px); }
.reviews .section-head h2 { color: #fff; }
.reviews__score {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px; padding: 14px 22px;
}
.reviews__score .big { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--yellow); line-height: 1; }
.reviews__score .stars { color: var(--yellow); font-size: 15px; letter-spacing: 2px; }
.reviews__score .meta { font-size: 12.5px; color: #bcd4c2; margin-top: 3px; font-weight: 500; }
.reviews__grid { margin-top: 54px; }
.review {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px; padding: 28px; display: flex; flex-direction: column;
}
.review__top { display: flex; align-items: center; justify-content: space-between; }
.review__top .stars { color: var(--yellow); font-size: 15px; letter-spacing: 2px; }
.review__top .src { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #7fae8a; }
.review__quote { font-size: 16px; line-height: 1.6; color: #e9f0e9; margin: 16px 0 0; flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12); }
.review__who .av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); color: #0c3b1e;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-head);
}
.review__who .name { font-weight: 600; font-size: 15px; color: #fff; }
.review__who .meta { font-size: 12px; color: #9cb09d; margin-top: 2px; }

/* ---- réseaux / vidéos ----------------------------------------------------- */
.social { background: linear-gradient(180deg, #fff 0%, #f3f9f3 100%); }

.feature-video {
  margin: 48px auto 0; max-width: 680px;
  border-radius: 20px; overflow: hidden;
  border: 4px solid #fff; box-shadow: 0 24px 56px rgba(13, 63, 32, .22);
  background: #0d2417; aspect-ratio: 1024 / 540;
}
.feature-video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #0d2417; }

.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.reel {
  position: relative; margin: 0; border-radius: 20px; overflow: hidden;
  aspect-ratio: 9 / 16; background: #0d2417;
  border-bottom: 5px solid var(--yellow); box-shadow: var(--shadow-soft);
}
.reel__v { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.reel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,28,16,.18) 0%, transparent 22%, transparent 62%, rgba(8,40,22,.85) 100%);
}
.reel__sound {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(8, 24, 14, .55); color: #fff; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background .2s ease;
}
.reel__sound:hover { background: rgba(8, 24, 14, .8); }
.reel__cap { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; }
.reel__cap a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--yellow); font-weight: 700; font-size: 13px; letter-spacing: .03em;
  text-transform: uppercase; text-decoration: none;
}
.reel__cap a:hover { text-decoration: underline; }

.social-follow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
}
.social-follow__lbl { font-size: 14px; font-weight: 600; color: var(--muted-2); margin-right: 4px; }
.social-btn { color: #fff; }
.social-btn--fb { color: #fff; }
.social-ic {
  flex: none; width: 22px; height: 22px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 13px; font-family: var(--font-head);
}
.social-ic--fb { background: #1877f2; }
.social-ic--ig { background: linear-gradient(45deg, #f9ce34 5%, #ee2a7b 50%, #6228d7 95%); }

/* ---- contact -------------------------------------------------------------- */
.contact { background: linear-gradient(180deg, #f3f9f3 0%, #fff 100%); }
.contact .grid-2 { grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: stretch; }
.contact h2 {
  font-family: var(--font-head); font-size: 50px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1; margin: 14px 0 0; color: var(--ink-2);
}
.info-list { margin-top: 30px; display: flex; flex-direction: column; }
.info { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info:last-child { border-bottom: 0; }
.info .ic {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: #e6f3ea; color: #137a3a; display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.info .k { font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #9aa69a; }
.info .v { font-size: 17px; font-weight: 600; margin-top: 4px; color: var(--ink); }
.info a.v { color: #137a3a; text-decoration: none; display: block; }
.info a.sub { display: block; font-size: 14.5px; font-weight: 500; margin-top: 3px; color: var(--muted-2); text-decoration: none; }
.hours-row { margin-top: 8px; display: flex; justify-content: space-between; font-size: 15.5px; color: var(--ink); }
.hours-row.closed { margin-top: 6px; color: #9aa69a; }
.hours-row .d { font-weight: 500; }
.hours-row .h { font-weight: 700; }
.hours-row.closed .h { font-weight: 600; }
.contact__map {
  border-radius: 24px; overflow: hidden; border: 1px solid #e6ebe2;
  min-height: 460px; background: #eef0ed;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* ---- footer --------------------------------------------------------------- */
.site-footer { background: var(--green-deep); color: var(--muted-3); padding: 56px 0 32px; }
.site-footer .top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; }
.site-footer .about-col { max-width: 360px; }
.site-footer .about-col img.logo { height: 56px; width: auto; display: block; border-radius: 10px; }
.site-footer .about-col p { font-size: 14px; line-height: 1.65; margin: 18px 0 0; }
.site-footer .net { display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 8px; padding: 6px 10px; margin-top: 18px; }
.site-footer .net img { height: 26px; width: auto; display: block; border-radius: 5px; }
.site-footer .cols { display: flex; gap: 56px; flex-wrap: wrap; }
.site-footer .cols h4 { color: #fff; font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 0; }
.site-footer .cols .links { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.site-footer .cols a { color: var(--muted-3); text-decoration: none; font-size: 14.5px; }
.site-footer .cols a:hover { color: #fff; }
.site-footer .bar {
  max-width: var(--maxw); margin: 38px auto 0; padding: 20px var(--pad) 0;
  border-top: 1px solid #163d24; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 10px 18px;
  font-size: 12px; letter-spacing: .02em; font-weight: 500;
}
.site-footer .bar > span { margin: 0; }
.site-footer .bar a { color: #6f8576; text-decoration: none; white-space: nowrap; }
.site-footer .bar a:hover { color: #9fb3a3; }
.site-footer .bar .legal { display: flex; gap: 18px; flex: 0 0 auto; }

/* ---- modales -------------------------------------------------------------- */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 24, 14, .7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: jp-fade-in .2s ease;
}
.overlay[hidden] { display: none; }
.overlay--devis { z-index: 110; background: rgba(8, 24, 14, .72); }
.modal {
  background: #fff; border-radius: 24px; max-width: 680px; width: 100%;
  max-height: 90vh; overflow: auto; box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
  animation: jp-modal-in .28s cubic-bezier(.2, .8, .2, 1); position: relative;
}
.modal--devis { max-width: 560px; max-height: 92vh; }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, .92); color: var(--green);
  font-size: 22px; font-weight: 700; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}
.modal__hero { height: 220px; border-radius: 24px 24px 0 0; overflow: hidden; position: relative; }
.modal__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal__hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 52, 26, .1), rgba(11, 52, 26, .6)); }
.modal__hero .num {
  position: absolute; left: 26px; bottom: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); color: #0c2d18; font-family: var(--font-head);
  font-weight: 800; font-size: 16px; padding: 5px 12px; border-radius: 8px;
}
.modal__hero .badge {
  position: absolute; right: 26px; bottom: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px; padding: 8px 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25); height: 44px;
}
.modal__hero .badge img { height: 100%; width: auto; display: block; border-radius: 6px; }
.modal__body { padding: 28px 34px 36px; }
.modal__body h3 {
  font-family: var(--font-head); font-size: 34px; font-weight: 800;
  letter-spacing: -.02em; text-transform: uppercase; margin: 0; line-height: 1; color: var(--ink-2);
}
.modal__body .desc { font-size: 16px; color: #4a5b50; line-height: 1.65; margin: 16px 0 0; }
.modal__points { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.modal__points .atout span:last-child { font-size: 15px; }
.modal__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }

/* devis modal */
.modal__head { background: var(--green); border-radius: 24px 24px 0 0; padding: 26px 32px; border-bottom: 4px solid var(--yellow); }
.modal__head .eyebrow { color: var(--yellow); font-weight: 700; }
.modal__head h3 {
  font-family: var(--font-head); font-size: 30px; font-weight: 800;
  letter-spacing: -.01em; text-transform: uppercase; margin: 6px 0 0; line-height: 1; color: #fff;
}
.devis-form { padding: 24px 32px 32px; display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: flex; gap: 12px; flex-wrap: wrap; }
.field-row .field { flex: 1; min-width: 160px; }
.field label { font-size: 12.5px; font-weight: 700; color: #3c4d42; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 13px 15px;
  border: 1.5px solid #d8ded6; border-radius: 12px; outline: none; color: var(--ink); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(26, 129, 64, .12);
}
.field textarea { resize: vertical; }
.devis-form .submit { margin-top: 6px; justify-content: center; font-weight: 800; }
.devis-form .note { font-size: 12px; color: #8a978a; text-align: center; margin: 2px 0 0; line-height: 1.5; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.devis-success { padding: 36px 32px 40px; text-align: center; }
.devis-success .ok {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; background: #e6f3ea; color: #137a3a; font-size: 32px; font-weight: 800;
}
.devis-success h3 { font-family: var(--font-head); font-size: 26px; font-weight: 800; text-transform: uppercase; margin: 18px 0 0; color: var(--ink-2); }
.devis-success p { font-size: 15px; color: var(--muted-2); line-height: 1.6; margin: 10px 0 0; }
.devis-success .row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.devis-error { color: #b3261e; font-size: 13px; text-align: center; margin: 0; min-height: 16px; }

/* ---- pages légales -------------------------------------------------------- */
.legalpage { padding: 56px 0 80px; background: linear-gradient(180deg, #f3f9f3 0%, #fff 240px); }
.legalpage .container { max-width: 820px; }
.legalpage__back { display: inline-block; color: var(--green-accent); text-decoration: none; font-weight: 600; font-size: 14.5px; margin-bottom: 22px; }
.legalpage__back:hover { text-decoration: underline; }
.legalpage h1 { font-family: var(--font-head); font-size: 48px; font-weight: 800; letter-spacing: -.02em; line-height: 1; margin: 12px 0 0; color: var(--ink-2); }
.legalpage h2 { font-family: var(--font-head); font-size: 24px; font-weight: 800; letter-spacing: -.01em; color: var(--ink-2); margin: 36px 0 0; }
.legalpage p, .legalpage li { font-size: 16px; line-height: 1.7; color: #3c4d42; }
.legalpage p { margin: 12px 0 0; }
.legalpage ul { margin: 12px 0 0; padding-left: 22px; }
.legalpage li { margin-top: 4px; }
.legalpage a { color: #137a3a; }
.legalpage strong { color: var(--ink); font-weight: 600; }
.legalpage .btn { margin-top: 8px; color: #fff; }
.legalpage__note {
  background: #fff8df; border: 1px solid #ffe48a; border-left: 4px solid var(--yellow);
  border-radius: 12px; padding: 14px 18px; font-size: 14px; color: #6b5a14; margin-top: 24px;
}
.legalpage__update { margin-top: 32px; font-size: 13.5px; color: #9aa69a; font-style: italic; }
.legalpage + .site-footer .bar { margin-top: 0; }

/* ---- bandeau cookies ------------------------------------------------------ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 620px; margin: 0 auto;
  background: var(--green); color: #d6e2d6;
  border: 1px solid rgba(255, 196, 0, .4); border-radius: 16px;
  padding: 16px 18px; box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
  animation: jp-rise .4s ease;
}
.cookie-banner__txt { margin: 0; font-size: 13.5px; line-height: 1.5; flex: 1 1 260px; }
.cookie-banner__txt a { color: var(--yellow); }
.cookie-banner__btns { display: flex; gap: 10px; margin-left: auto; }
@media (max-width: 820px) {
  .cookie-banner__btns { margin-left: 0; width: 100%; }
  .cookie-banner__btns .btn { flex: 1 1 0; justify-content: center; }
}

/* ---- reveal au scroll ----------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---- animations ----------------------------------------------------------- */
@keyframes jp-marquee  { from { transform: translateX(0); }   to { transform: translateX(-50%); } }
@keyframes jp-rise     { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes jp-shine    { 0% { background-position: -180% 0; } 60%, 100% { background-position: 180% 0; } }
@keyframes jp-modal-in { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes jp-fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes jp-kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }

.jp-rise { opacity: 0; animation: jp-rise .8s cubic-bezier(.2, .8, .2, 1) forwards; }
.jp-shine {
  background: linear-gradient(100deg, #FFC400 35%, #fff7d6 50%, #FFC400 65%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; animation: jp-shine 4.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---- responsive : breakpoint unique 820px --------------------------------- */
@media (max-width: 820px) {
  :root { --pad: 20px; }
  .section { padding: 38px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 26px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact .grid-2 { grid-template-columns: 1fr; }
  .feature-video { margin-top: 28px; }
  .reels {
    display: flex; gap: 14px; margin-top: 22px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad);
    -webkit-overflow-scrolling: touch;
  }
  .reels::-webkit-scrollbar { display: none; }
  .reel { flex: 0 0 46%; scroll-snap-align: center; }

  /* ---- Hero épuré sur mobile ---------------------------------------------- */
  .hero .grid-2 { padding: 26px var(--pad) 30px; gap: 22px; }
  .hero__tag { font-size: 12px; letter-spacing: .12em; }
  .hero h1 { font-size: 35px; line-height: 1.02; margin-top: 12px; }
  /* Le paragraphe fait doublon avec les pastilles : masqué (reste lu par Google) */
  .hero__sub { display: none; }
  /* Pastilles compactes en guise de messages-clés */
  .pills { gap: 8px; margin-top: 18px; }
  .pill { font-size: 12px; padding: 7px 13px; }
  /* Itinéraire déplacé dans la rangée des pastilles (pas de ligne en plus) */
  .pill--action { display: inline-flex; }
  /* 2 boutons principaux pleine largeur ; l'Itinéraire des CTA est masqué sur mobile */
  .hero__cta { margin-top: 22px; gap: 10px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__cta .btn--itineraire { display: none; }
  /* Vidéo un peu resserrée */
  .hero__media { border-width: 4px; }

  .section-head h2, .about h2, .contact h2, .reviews .section-head h2 { font-size: 27px; }

  /* Stats du hero masquées : la bande jaune juste après les affiche déjà */
  .hero__stats { display: none; }

  /* Bande stats compactée */
  .stats .grid-4 { padding: 24px var(--pad); }
  .stats .num { font-size: 32px; }
  .stats .lbl { font-size: 11.5px; margin-top: 5px; }

  /* Navigation : hamburger à la place des liens */
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu:not([hidden]) { display: flex; }

  #avis .grid-3 { grid-template-columns: 1fr; }
  #avis .grid-3 > .review:nth-child(n+3) { display: none; }   /* 2 avis max sur mobile */
  .reviews__grid { margin-top: 28px; }
  .review { padding: 18px; border-radius: 16px; }
  .review__quote { font-size: 14.5px; line-height: 1.55; margin-top: 12px; }
  .review__who { margin-top: 14px; padding-top: 12px; }
  .review__who .av { width: 34px; height: 34px; }
  .reviews__score { padding: 10px 16px; gap: 10px; }
  .reviews__score .big { font-size: 32px; }

  /* Réseaux : libellé sur sa ligne, les 2 boutons côte à côte */
  .social-follow__lbl { flex-basis: 100%; }
  .social-follow .social-btn { flex: 1 1 0; justify-content: center; }

  /* Bandeau Pare-Brise : empilé et logo ajusté à l'écran */
  .glass .container { padding: 32px var(--pad); gap: 18px; }
  .glass__left { flex-direction: column; align-items: flex-start; gap: 14px; min-width: 0; }
  .glass__logo--rect { height: auto; max-height: 42px; max-width: 100%; }
  .glass h2 { font-size: 21px; }
  .glass .btn { width: 100%; justify-content: center; }

  /* Carte de contact moins haute sur mobile (moins de défilement) */
  .contact__map, .contact__map iframe { min-height: 300px; }

  /* Rythme resserré des titres de section */
  .section-head { gap: 10px; }
  .section-head .lead { font-size: 15px; }
  .servicesGrid, .services__grid { margin-top: 22px; }
  .feature-video { margin-top: 24px; }
}
