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

:root {
  --page: #e5eef5;
  --ink: #14161c;
  --teal: #6cc4e8;
  --teal-d: #6cc4e8;
  --teal-br: #6cc4e8;
  --muted: #6a6e78;
  --card: #ffffff;
  --line: #e7e8ee;
  --anthra: #3c444c;
  --maxw: 1750px;
  --pad: clamp(10px, 1.4vw, 18px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* echelle fluide : reduit la taille globale sur laptop (~14") sans changer le rendu sur grand ecran 2K+ */
@media (min-width: 981px) {
  html { font-size: clamp(14px, calc(8.36px + 0.373vw), 16px); }
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--page);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  padding: var(--pad);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { display: block; }

.shell { max-width: var(--maxw); margin: 0 auto; }
/* Mobile : plus d'air sur les côtés + anti-débordement (un bloc du hero débordait à droite et mangeait la marge de ce côté) */
@media (max-width: 720px) {
  :root { --pad: clamp(18px, 5vw, 24px); }
  .hero, #prestations { overflow-x: clip; }
  .hero-media .ba, .hero-actions, .hero-contact, .hero-contact a { max-width: 100%; }
}
.eyebrow { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }

/* decor de fond facon carte de visite : GRANDS wedges diagonaux deux-tons (turquoise + anthracite superpose, bords nets), bien visibles, repartis tout le long, defilent avec le contenu */
.bg-decor { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-decor i { position: absolute; display: block; }
/* grands TRIANGLES etires/scalenes (jamais de triangle basique 45deg) qui touchent les bords de l'ecran ; #6cc4e8 + anthracite, faible opacite */
/* placement essai 3 : alternance stricte gauche/droite bien espacee (aucun triangle trop proche d'un autre), hero degage */
.bg-decor i:nth-child(1)  { display: none; }
.bg-decor i:nth-child(2)  { top: 24%; right: 0; width: 185px; height: 340px; background: var(--anthra); clip-path: polygon(100% 0, 0 100%, 100% 100%); }
.bg-decor i:nth-child(3)  { display: none; }
.bg-decor i:nth-child(4)  { top: 33%; left: 0;  width: 400px; height: 150px; background: var(--teal);   clip-path: polygon(0 0, 100% 0, 0 100%); }
.bg-decor i:nth-child(5)  { top: 41%; right: 0; width: 200px; height: 300px; background: var(--teal);   clip-path: polygon(0 0, 100% 0, 100% 100%); }
.bg-decor i:nth-child(6)  { top: 50%; left: 0;  width: 420px; height: 160px; background: var(--teal);   clip-path: polygon(0 0, 0 100%, 100% 100%); }
.bg-decor i:nth-child(7)  { top: 58%; right: 0; width: 175px; height: 360px; background: var(--anthra); clip-path: polygon(100% 0, 0 100%, 100% 100%); }
.bg-decor i:nth-child(8)  { top: 67%; left: 0;  width: 390px; height: 150px; background: var(--teal);   clip-path: polygon(0 0, 100% 0, 0 100%); }
.bg-decor i:nth-child(9)  { top: 75%; right: 0; width: 190px; height: 320px; background: var(--teal);   clip-path: polygon(0 0, 100% 0, 100% 100%); }
.bg-decor i:nth-child(10) { top: 84%; left: 0;  width: 410px; height: 150px; background: var(--anthra); clip-path: polygon(0 0, 0 100%, 100% 100%); }
.bg-decor i:nth-child(11) { top: 92%; right: 0; width: 195px; height: 340px; background: var(--teal);   clip-path: polygon(100% 0, 0 100%, 100% 100%); }
.bg-decor i:nth-child(12) { display: none; }
.bg-decor i:nth-child(13) { display: none; }
.bg-decor i:nth-child(14) { display: none; }
.bg-decor i:nth-child(15) { display: none; }
.bg-decor i:nth-child(16) { display: none; }

/* arrow circle */
.arrowc { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; flex-shrink: 0; transition: transform 0.2s, background 0.2s; }
.arrowc svg { width: 16px; height: 16px; }

/* pill buttons */
.pill { display: inline-flex; align-items: center; gap: 0.85rem; background: #fff; color: var(--ink); padding: 8px 8px 8px 22px; border-radius: 14px; font-weight: 600; font-size: 0.92rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.pill:hover { transform: translateY(-2px); }
.pill:hover .arrowc { transform: rotate(45deg); }
.pill-teal { background: var(--teal); color: #fff; padding: 12px 26px; box-shadow: none; }
.pill-teal:hover { background: var(--teal-d); }
.pill-ghost { background: rgba(255,255,255,0.16); color: #fff; padding: 12px 24px; border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(6px); box-shadow: none; }

/* ═══════════ HERO (éditorial) ═══════════ */
.hero { position: relative; min-height: calc(100vh - 88px); display: grid; grid-template-rows: 1fr auto; grid-template-columns: minmax(0, 1fr); padding: clamp(1.25rem, 2.5vw, 2rem) 0 clamp(1rem, 2vw, 1.5rem); }
.hero-grid { align-self: center; }
.hero-reviews { align-self: end; margin-top: clamp(1rem, 2vw, 1.75rem); scroll-margin-top: 100px; }
.hero-reviews .review { flex-basis: clamp(240px, 24vw, 300px); padding: 1.1rem 1.25rem; }
.hero-reviews .review p { margin-bottom: 0.9rem; -webkit-line-clamp: 3; }
.hero::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 100vw; z-index: 0; background: var(--teal); clip-path: polygon(100% 50%, 100% 100%, 0 100%); pointer-events: none; }
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; margin: calc(-1 * var(--pad)) calc(50% - 50vw) 0; padding-left: calc(50vw - 50%); padding-right: calc(50vw - 50%); box-shadow: 0 4px 18px rgba(18,28,55,0.05); }
.site-header::before { content: ''; position: absolute; inset: 0; z-index: 0; background: var(--teal); clip-path: polygon(0 0, 50% 0, 0 100%); pointer-events: none; }
.hero-nav { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1750px; margin: 0 auto; padding: 0.7rem 0; }
.hero-logo { background: #fff; padding: 6px 11px; border-radius: 11px; display: inline-flex; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.hero-logo:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.hero-logo img { height: 58px; width: auto; }
.hero-links { display: flex; align-items: center; gap: clamp(1.3rem, 2vw, 2.1rem); }
.hero-links a { position: relative; color: var(--ink); font-size: 0.95rem; font-weight: 500; padding: 3px 0; transition: color 0.2s ease; }
.hero-links a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px; background: var(--teal-d); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.28s cubic-bezier(0.2,0.7,0.2,1); }
.hero-links a:hover { color: var(--ink); }
.hero-links a:hover::after { transform: scaleX(1); }
.burger { display: none; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; flex-shrink: 0; transition: background 0.2s ease; }
.burger:hover { background: var(--teal); }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); transition: background 0.2s ease; }
.burger:hover span { background: #fff; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.25rem); align-items: center; max-width: 1200px; margin: 0 auto; }
.hero-left { max-width: 1040px; text-align: center; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px 16px; font-size: 0.82rem; font-weight: 600; box-shadow: 0 6px 18px rgba(18,28,55,0.06); }
.hero-badge svg { width: 15px; height: 15px; color: var(--teal); }
.hero-left h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 clamp(1rem, 2vw, 1.4rem); }
.hero-left h1 .hl { color: var(--teal-d); }
.hero-sub { color: var(--muted); font-size: 1.2rem; line-height: 1.6; max-width: 520px; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.hero-cta { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--teal); color: #fff; font-weight: 600; font-size: 1.15rem; padding: 18px 36px; border-radius: 15px; box-shadow: 0 6px 16px rgba(18,28,55,0.13); transition: transform 0.2s ease, background 0.2s ease; }
.hero-cta svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.hero-cta:hover { background: var(--teal-d); transform: translateY(-2px); }
.hero-cta:hover svg { transform: translate(3px, -3px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0.8rem; }
.hero-review { display: inline-flex; align-items: center; gap: 0.5rem; padding: 13px 18px; border-radius: 15px; background: #fff; border: 1.5px solid var(--line); color: var(--ink); box-shadow: 0 5px 16px rgba(18,28,55,0.07); transition: transform 0.2s ease, border-color 0.2s ease; }
.hero-review:hover { transform: translateY(-2px); border-color: var(--teal); }
.hero-review .g-ic { width: 20px; height: 20px; flex-shrink: 0; }
.hero-review .hr-num { font-weight: 700; font-size: 1.05rem; }
.hero-review .stars { color: #f5a623; font-size: 0.88rem; letter-spacing: 1px; }
.hero-review .hr-count { color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.hero-contact { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem 1.5rem; margin-top: clamp(1.1rem, 2vw, 1.5rem); }
.hero-contact a { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 1.08rem; color: var(--ink); transition: color 0.2s ease; }
.hero-contact a:hover { color: var(--ink); }
.hero-contact .hc-ico { width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--ink); display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(18,28,55,0.06); transition: background 0.2s ease, color 0.2s ease; }
.hero-contact a:hover .hc-ico { background: var(--teal); color: #fff; }
.hero-contact .hc-ico svg { width: 18px; height: 18px; }
.hero-rating { display: flex; align-items: center; gap: 1rem; margin-top: clamp(0.9rem, 2vw, 1.5rem); }
.hero-avatars { display: flex; }
.hero-avatars span { width: 52px; height: 52px; border-radius: 50%; border: 3px solid var(--page); background: var(--teal-d); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.95rem; margin-left: -15px; }
.hero-avatars span:first-child { margin-left: 0; }
.hero-rating .r-line { display: flex; align-items: center; gap: 0.5rem; }
.hero-rating .r-num { font-weight: 700; font-size: 1.3rem; }
.hero-rating .stars { font-size: 1.1rem; }
.hero-rating .r-txt { display: block; font-size: 0.92rem; color: var(--muted); margin-top: 3px; }
.hero-media { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-media .ba { width: 100%; max-width: 1100px; height: clamp(340px, 48vh, 440px); aspect-ratio: auto; margin: 0 auto; }
.hero-sub { max-width: 620px; margin-left: auto; margin-right: auto; }
.hero-actions, .hero-contact, .hero-rating { justify-content: center; }
.hero-media img { position: absolute; object-fit: cover; border-radius: 24px; box-shadow: 0 24px 50px rgba(18,28,55,0.16); }
.hero-media .img-tall { right: 0; top: 0; width: 47%; height: 100%; }
.hero-media .img-wide { left: 0; bottom: 0; width: 49%; height: 66%; z-index: 2; }
.media-circle { position: absolute; left: 50%; top: 33%; transform: translate(-50%, -50%); z-index: 3; width: clamp(64px, 6vw, 82px); height: clamp(64px, 6vw, 82px); border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(18,28,55,0.22); transition: transform 0.25s ease; }
.media-circle:hover { transform: translate(-50%, -50%) rotate(45deg); }
.media-circle svg { width: 26px; height: 26px; }

/* hero entrance */
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-nav { animation: heroUp 0.6s 0.02s ease-out both; }
.hero-badge { animation: heroUp 0.6s 0.1s ease-out both; }
.hero-left h1 { animation: heroUp 0.7s 0.18s ease-out both; }
.hero-sub { animation: heroUp 0.7s 0.28s ease-out both; }
.hero-cta { animation: heroUp 0.7s 0.36s ease-out both; }
.hero-rating { animation: heroUp 0.7s 0.44s ease-out both; }
.hero-media { animation: heroUp 0.8s 0.3s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  .hero-nav, .hero-badge, .hero-left h1, .hero-sub, .hero-cta, .hero-rating, .hero-media, .hero-logo, .hero-cta svg, .media-circle { animation: none !important; transition: none !important; }
}

/* ═══════════ SECTION SHELL ═══════════ */
.section { padding: clamp(3rem, 6vw, 5rem) 0; scroll-margin-top: 88px; }
.sec-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.sec-head h2 { margin-left: auto; margin-right: auto; }
.sec-head p { margin-left: auto; margin-right: auto; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin-top: 0.8rem; max-width: 560px; }
.sec-head p { color: var(--muted); font-size: 0.95rem; max-width: 360px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 14px rgba(18,28,55,0.04); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.4rem; font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico { position: relative; flex-shrink: 0; width: 20px; height: 20px; }
.faq-ico::before, .faq-ico::after { content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2.5px; background: var(--teal-d); border-radius: 2px; transform: translate(-50%, -50%); transition: transform 0.25s ease, opacity 0.25s ease; }
.faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.faq-is-open .faq-ico::after { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }
.faq-item.faq-is-open summary { color: var(--teal-d); }
.faq-a { overflow: hidden; }
.faq-a p { margin: 0; padding: 0 1.4rem 1.25rem; color: var(--muted); line-height: 1.65; }


/* avis google */
.reviews-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.reviews-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin-top: 0.8rem; }
.g-rating { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0.9rem 1.4rem; box-shadow: 0 10px 30px rgba(18,28,55,0.07); }
.g-big { width: 34px; height: 34px; flex-shrink: 0; }
.g-rating-num { font-size: 2.2rem; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.g-rating-meta { display: flex; flex-direction: column; gap: 3px; }
.stars { color: #f5a623; letter-spacing: 1px; }
.g-rating-meta .stars { font-size: 0.95rem; }
.g-count { font-size: 0.82rem; color: var(--muted); }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 50s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review { flex: 0 0 clamp(280px, 30vw, 356px); margin-right: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem; box-shadow: 0 10px 30px rgba(18,28,55,0.06); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.review-top .stars { font-size: 1rem; }
.g-mini { width: 18px; height: 18px; }
.review p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: 0.7rem; }
.review-author .av { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }
.review-author strong { display: block; font-size: 0.9rem; }
.review-author > div span { font-size: 0.8rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .marquee { overflow-x: auto; } }

/* prestations panel */
.svc-panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.75rem); align-items: stretch; }
.svc-card { background: #fff; border-radius: 24px; padding: clamp(1.75rem, 3.2vw, 3.25rem); display: flex; flex-direction: column; text-align: center; }
.svc-card h2 { font-size: clamp(1.7rem, 3.1vw, 2.7rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; margin: 1rem 0 clamp(1.5rem, 3vw, 2.5rem); }
.svc-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); text-align: left; }
.svc-item { border-bottom: 1px solid var(--line); }
.svc-q { width: 100%; display: flex; align-items: center; gap: 0.85rem; padding: 1.05rem 0.25rem; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 1.05rem; font-weight: 600; color: var(--ink); text-align: left; transition: color 0.2s ease; }
.svc-q:hover, .svc-item.open .svc-q { color: var(--ink); }
.svc-plus { display: inline-flex; color: var(--ink); flex-shrink: 0; transition: transform 0.3s ease; }
.svc-plus svg { width: 18px; height: 18px; }
.svc-item.open .svc-plus { transform: rotate(45deg); }
.svc-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.svc-a p { padding: 0.15rem 0.5rem 1.6rem 2.5rem; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.svc-contact { display: inline-flex; align-items: center; gap: 0.5rem; align-self: center; margin-top: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 3px; transition: color 0.2s ease, border-color 0.2s ease; }
.svc-contact svg { width: 16px; height: 16px; color: var(--ink); }
.svc-contact:hover { color: var(--ink); border-color: var(--ink); }
.svc-photo { border-radius: 24px; overflow: hidden; min-height: 380px; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* gallery bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1.25rem; }
.bento a { border-radius: 18px; overflow: hidden; display: block; }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bento a:hover img { transform: scale(1.05); }
.bento .big { grid-column: span 2; grid-row: span 2; }
.bento .wide { grid-column: span 2; }

/* before / after comparator (single, side nav) */
.ba-wrap { max-width: 1200px; margin: 0 auto; }
.ba-layout { display: grid; grid-template-columns: minmax(240px, 310px) 1fr; gap: clamp(1.5rem, 3vw, 3.25rem); align-items: stretch; }
.ba-info { max-width: 820px; margin: clamp(1.25rem, 2.5vw, 1.75rem) auto 0; background: #fff; border-radius: 18px; padding: clamp(1.4rem, 2.4vw, 1.9rem); box-shadow: 0 10px 30px rgba(18,28,55,0.06); text-align: center; }
.ba-info-loc { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-d); margin-bottom: 0.7rem; }
.ba-info-title { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 0.85rem; }
.ba-info-desc { font-size: 1rem; line-height: 1.65; color: var(--muted); margin: 0; }
.ba-carousel { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 22px); }
.ba-stage { position: relative; flex: 1; min-width: 0; }
.ba { position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 3 / 2; cursor: ew-resize; touch-action: pan-y; -webkit-user-select: none; user-select: none; --pos: 50%; box-shadow: 0 14px 36px rgba(18,28,55,0.14); display: none; }
.ba.active { display: block; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-tag { position: absolute; top: 16px; z-index: 4; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(16,20,28,0.6); padding: 7px 15px; border-radius: 8px; pointer-events: none; }
.ba-tag.before { left: 14px; }
.ba-tag.after { right: 14px; }
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: #fff; transform: translateX(-50%); z-index: 5; box-shadow: 0 0 10px rgba(0,0,0,0.3); pointer-events: none; }
.ba-grip { position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%); z-index: 6; width: 44px; height: 44px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,0.32); pointer-events: none; transition: transform 0.16s ease; }
.ba:hover .ba-grip { transform: translate(-50%, -50%) scale(1.08); }
.ba-grip svg { width: 21px; height: 21px; color: var(--ink); }
.ba-cap { display: none; }
.ba-cap h3 { font-size: 1.65rem; font-weight: 600; line-height: 1.2; }
.ba-cap span { font-size: 1.02rem; color: rgba(255,255,255,0.85); }
.ba-nav { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer; border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(18,28,55,0.12); transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }
.ba-nav:hover { transform: translateY(-2px); background: var(--teal); color: #fff; border-color: var(--teal); }
.ba-nav svg { width: 24px; height: 24px; }
.ba-count { text-align: center; margin-top: 1.1rem; font-size: 0.88rem; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 600px) {
  .ba-nav { width: 44px; height: 44px; }
  .ba-carousel { flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
  .ba-stage { flex-basis: 100%; order: -1; }
  .ba-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .ba-info { text-align: center; }
}

/* expert panel */
.expert-panel { background: #fff; border-radius: 24px; padding: clamp(1.25rem, 2.5vw, 1.75rem); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 3vw, 2.75rem); align-items: center; }
.expert-panel > img { width: 100%; height: clamp(320px, 36vw, 440px); object-fit: cover; border-radius: 18px; }
.expert-body { padding-right: 1rem; text-align: center; }
.expert-body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin: 0.8rem 0 1rem; }
.expert-body p { color: var(--muted); font-size: 0.96rem; line-height: 1.7; margin-bottom: 1.75rem; }
.expert-sign { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }
.expert-sign .nm { font-weight: 700; }
.expert-sign .rl { font-size: 0.84rem; color: var(--muted); }


/* partenaires */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); max-width: 1080px; margin: 0 auto; }
.partner { display: flex; flex-direction: column; background: #fff; border-radius: 20px; padding: 12px 12px 4px; box-shadow: 0 10px 28px rgba(18,28,55,0.08); transition: transform 0.28s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.28s ease; }
.partner:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(18,28,55,0.18); }
.partner-ph { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 5; }
.partner-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1); }
.partner:hover .partner-ph img { transform: scale(1.05); }
.partner-go { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; opacity: 0; transform: translateY(-6px); transition: opacity 0.25s ease, transform 0.25s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.partner:hover .partner-go { opacity: 1; transform: translateY(0); }
.partner-go svg { width: 16px; height: 16px; }
.partner-info { padding: 0.95rem 0.5rem 0.7rem; }
.partner-info h3 { font-size: 1.08rem; font-weight: 600; }
.partner-trade { font-size: 0.88rem; color: var(--ink); font-weight: 600; }
@media (max-width: 720px) { .partner-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* contact */
.contact-panel { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; max-width: 1080px; margin: 0 auto; }
.contact-info { text-align: center; }
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin: 1rem auto 1.1rem; max-width: 440px; }
.contact-info > p { color: var(--muted); font-size: 1.02rem; line-height: 1.6; max-width: 400px; margin: 0 auto clamp(1.5rem, 3vw, 2.25rem); }
.contact-list { display: inline-flex; flex-direction: column; gap: 1.2rem; text-align: left; }
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.ci-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--teal); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.ci-ico svg { width: 20px; height: 20px; }
.ci-lbl { display: block; font-size: 0.8rem; color: var(--muted); }
.contact-list a, .ci-val { font-weight: 600; font-size: 1.02rem; color: var(--ink); transition: color 0.2s ease; }
.contact-list a:hover { color: var(--ink); }
.contact-form { background: #fff; border-radius: 24px; padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: 0 16px 40px rgba(18,28,55,0.08); display: flex; flex-direction: column; gap: 1rem; }
/* minmax(0,…) obligatoire : un 1fr nu laisse les champs deborder (largeur mini intrinseque des input) */
.cf-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }
.cf-row > * { min-width: 0; }
.contact-form input, .contact-form textarea, .contact-form select { max-width: 100%; }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.contact-form input, .contact-form textarea { font-family: inherit; font-size: 0.95rem; font-weight: 400; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--page); color: var(--ink); transition: border-color 0.2s ease, background 0.2s ease; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9aa0ab; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal-d); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .hero-cta { margin-top: 0.5rem; justify-content: center; width: 100%; font-family: inherit; border: none; cursor: pointer; }
@media (max-width: 860px) { .contact-panel { grid-template-columns: minmax(0, 1fr); } .cf-row { grid-template-columns: minmax(0, 1fr); } }

/* footer */
.footer { position: relative; overflow: hidden; background: var(--teal-d); color: #fff; margin: clamp(1.5rem, 3vw, 2.5rem) calc(-1 * var(--pad)) calc(-1 * var(--pad)); padding: clamp(3.5rem, 5vw, 5rem) 0 0; }
.footer::before { content: ''; position: absolute; top: 0; right: 0; width: 42vw; height: 100%; background: var(--anthra); clip-path: polygon(100% 0, 100% 100%, 42% 0); pointer-events: none; z-index: 0; }
.footer-inner, .footer-bottom { position: relative; z-index: 1; }
.footer-inner { max-width: 1560px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.footer-brand .hero-logo { display: inline-flex; margin-bottom: 1.4rem; }
.footer-brand p { color: rgba(255,255,255,0.82); font-size: 0.92rem; line-height: 1.7; max-width: 330px; margin-bottom: 1.5rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.footer-contact a, .footer-contact span { font-size: 0.92rem; color: rgba(255,255,255,0.92); transition: opacity 0.2s; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 1.2rem; }
.footer-col a { display: flex; align-items: center; min-height: 40px; font-size: 0.92rem; color: rgba(255,255,255,0.85); margin-bottom: 0.1rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-soc { display: flex; gap: 0.6rem; }
.footer-soc a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.4); display: grid; place-items: center; color: #fff; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-soc a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer-soc svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.25); }
.footer-bottom-inner { max-width: 1560px; margin: 0 auto; padding: 1.4rem clamp(1.5rem, 4vw, 4rem); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.72); }
/* signature BassinWebFlow */
.footer-made { display: inline-flex; align-items: center; gap: 0.34rem; white-space: nowrap; }
.footer-made .footer-heart { width: 13px; height: 13px; flex-shrink: 0; color: var(--teal); }
.footer-made a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: opacity 0.2s; }
.footer-made a:hover { opacity: 0.75; }

/* responsive */
@media (max-width: 980px) {
  .burger { display: flex; }
  .hero-links { display: none; position: absolute; top: calc(100% + 10px); right: 0; flex-direction: column; align-items: stretch; gap: 0.15rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 44px rgba(18,28,55,0.16); padding: 0.5rem; min-width: 210px; z-index: 40; }
  .hero-links.open { display: flex; }
  .hero-links a { padding: 0.6rem 0.9rem; border-radius: 9px; }
  .hero-links a::after { display: none; }
  .hero-links a:hover { background: var(--page); }
  .hero-grid { grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem); }
  .hero-media { height: auto; }
  .hero-media .ba { height: auto; aspect-ratio: 3 / 2; max-width: 480px; }
  .hero { min-height: 0; }
  .hero::before { display: none; }
  .bg-decor { display: none; }
  .site-header::before { display: none; }
  .footer::before { display: none; }
  .hero-left { max-width: none; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-contact { justify-content: center; }
  .hero-rating { justify-content: center; }
  .hero-actions { justify-content: center; }
  .intro-panel { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-panel { grid-template-columns: minmax(0, 1fr); }
  .expert-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .nav-quote { display: none; }
  .hero-left h1 { font-size: clamp(2rem, 9vw, 2.9rem); }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-contact { align-items: center; }
  .footer-soc { justify-content: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ═══ TYPO : Bebas Neue (comme le logo) sur les gros titres ; Montserrat pour le reste ═══ */
.hero-left h1,
.sec-head h2,
.reviews-head h2,
.svc-card h2,
.expert-body h2,
.contact-info h2 {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.02;
}
/* H2 de section dans le bleu du site */
.sec-head h2, .reviews-head h2, .svc-card h2, .expert-body h2, .contact-info h2 { color: var(--teal); }

/* === Pages SEO locales "Artisan + lieu" === */
.lieu-hero { padding-top: clamp(2.25rem, 5vw, 3.75rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.lieu-head { max-width: 860px; margin: 0 auto; text-align: center; }
.lieu-head h1 { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-weight: 400; letter-spacing: 0.015em; line-height: 1.02; font-size: clamp(2.5rem, 6vw, 4.6rem); color: var(--ink); margin: 0.7rem 0 1.1rem; }
.lieu-head h1 .hl { color: var(--teal-d); }
.lieu-lead { color: var(--muted); font-size: 1.18rem; line-height: 1.6; max-width: 660px; margin: 0 auto; }
.lieu-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; align-items: center; margin-top: clamp(1.5rem, 3vw, 2rem); }
.lieu-body { padding-top: clamp(1rem, 2vw, 1.5rem); }
.lieu-content { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(1.75rem, 3.5vw, 2.75rem); }
.lieu-block h2 { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-weight: 400; letter-spacing: 0.015em; line-height: 1.05; font-size: clamp(1.55rem, 3.2vw, 2.3rem); color: var(--teal); margin-bottom: 0.55rem; }
.lieu-block p { color: var(--ink); font-size: 1.04rem; line-height: 1.75; }
.lieu-cta { max-width: 720px; margin: 0 auto; text-align: center; background: #fff; border-radius: 24px; padding: clamp(2rem, 4vw, 3.25rem); box-shadow: 0 16px 40px rgba(18,28,55,0.08); }
.lieu-cta h2 { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-weight: 400; letter-spacing: 0.015em; line-height: 1.05; font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: var(--teal); margin: 0.7rem 0 0.8rem; }
.lieu-cta > p { color: var(--muted); font-size: 1.02rem; line-height: 1.6; max-width: 460px; margin: 0 auto clamp(1.5rem, 3vw, 2rem); }
.lieu-cta .contact-list { margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.lieu-cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: center; align-items: center; }
.lieu-back { font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.lieu-back:hover { color: var(--teal-d); border-color: var(--teal-d); }

/* cartes prestations des pages lieu */
.lieu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem); max-width: 900px; margin: 0 auto; }
.lieu-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.5rem, 2.6vw, 2.1rem); box-shadow: 0 10px 30px rgba(18,28,55,0.05); }
.lieu-card-ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--teal); color: #fff; margin-bottom: 1rem; }
.lieu-card-ico svg { width: 26px; height: 26px; }
.lieu-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.lieu-card p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
@media (max-width: 720px) { .lieu-grid { grid-template-columns: 1fr; } }
.lieu-grid-metiers { max-width: 1000px; }
.lieu-grid-metiers .lieu-card p { font-size: 1rem; line-height: 1.7; }

/* pages lieu : hero avec formulaire de contact */
.lieu-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; max-width: 1180px; margin: 0 auto; }
.lieu-hero .lieu-head { text-align: left; max-width: none; margin: 0; }
.lieu-hero .lieu-head h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin: 0.4rem 0 1rem; }
.lieu-hero .lieu-lead { margin: 0 0 1.5rem; max-width: 540px; font-size: 1.08rem; }
.lieu-hero .contact-list { display: flex; flex-direction: column; gap: 0.9rem; text-align: left; }
.lieu-form { background: #fff; border-radius: 24px; padding: clamp(1.75rem, 3vw, 2.5rem); box-shadow: 0 16px 40px rgba(18,28,55,0.08); }
.lieu-form .eyebrow { color: var(--teal-d); }
.lieu-form h2 { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-weight: 400; letter-spacing: 0.015em; line-height: 1.05; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--teal); margin: 0.5rem 0 1.25rem; }
.lieu-form .contact-form { background: transparent; box-shadow: none; padding: 0; border-radius: 0; }
@media (max-width: 860px) {
  .lieu-hero-grid { grid-template-columns: 1fr; }
  .lieu-hero .lieu-head { text-align: center; }
  .lieu-hero .lieu-lead { margin-left: auto; margin-right: auto; }
  .lieu-hero .contact-list { align-items: center; }
}

/* pages lieu : savoir-faire (métiers développés) */
.lieu-savoir .sec-head { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.lieu-intro { max-width: 660px; margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem); text-align: center; }
.lieu-intro p { color: var(--ink); font-size: 1.16rem; line-height: 1.6; margin: 0 0 0.9rem; }
.lieu-intro p:last-child { margin-bottom: 0; }
.lieu-metiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem) clamp(1.75rem, 4vw, 3.25rem); max-width: 1000px; margin: 0 auto; }
.lieu-metier h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 0.5rem; }
.lieu-metier p { color: var(--muted); font-size: 1rem; line-height: 1.72; }
@media (max-width: 720px) { .lieu-metiers { grid-template-columns: 1fr; } }

/* pages lieu : contexte local + checklist */
.lieu-context { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.75rem, 3.5vw, 3rem); align-items: start; }
.lieu-context-lead { font-size: 1.06rem; line-height: 1.75; color: var(--ink); margin: 0; }
.lieu-checklist { display: flex; flex-direction: column; gap: 0.85rem; }
.lieu-checklist li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 1rem; line-height: 1.5; color: var(--ink); }
.lieu-checklist .chk { flex-shrink: 0; width: 22px; height: 22px; color: var(--teal-d); margin-top: 1px; }
@media (max-width: 720px) { .lieu-context { grid-template-columns: 1fr; } }

/* pages lieu : etapes (process) */
.lieu-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); max-width: 1100px; margin: 0 auto; }
.lieu-step { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.4rem, 2.4vw, 1.9rem); box-shadow: 0 10px 30px rgba(18,28,55,0.05); }
.lieu-step-num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--teal); color: #fff; font-weight: 700; font-size: 1.15rem; margin-bottom: 0.9rem; }
.lieu-step h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.lieu-step p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
@media (max-width: 860px) { .lieu-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .lieu-steps { grid-template-columns: 1fr; } }

/* footer : bloc zones d'intervention (14 liens) */
.footer-zones { border-top: 1px solid rgba(255,255,255,0.18); padding: clamp(2rem, 3.5vw, 2.75rem) 0 clamp(0.5rem, 1.5vw, 1rem); }
.footer-zones-title { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 1.25rem; }
.footer-zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.footer-zones-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-zones-commune { font-weight: 700; font-size: 0.92rem; color: #fff; margin-bottom: 0.3rem; }
a.footer-zones-commune:hover { text-decoration: underline; }
.footer-zones-col a:not(.footer-zones-commune) { display: flex; align-items: center; min-height: 38px; font-size: 0.88rem; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-zones-col a:not(.footer-zones-commune):hover { color: #fff; }
@media (max-width: 720px) { .footer-zones-grid { grid-template-columns: 1fr 1fr; } }

/* ═══ Correctif marges : WordPress injecte un <style> inline « body { padding: 0 } » (styles globaux) APRÈS theme.css, ce qui écrasait le padding latéral du body. Résultat : contenu collé aux bords ET header/footer full-bleed (margin calc(-1*var(--pad))) qui débordaient de l'écran (décalage horizontal en mobile). On le rétablit avec une spécificité supérieure (html body) pour repasser devant le style inline. */
html body { padding-left: var(--pad); padding-right: var(--pad); }

/* filtre des realisations (puces rectangulaires, pas de pilule) */
.ba-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.ba-chip { font-family: inherit; display: inline-flex; align-items: center; min-height: 40px; font-size: 0.9rem; font-weight: 600; padding: 0.5rem 1.05rem; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.ba-chip:hover { border-color: var(--teal); }
.ba-chip.is-active { background: var(--teal); color: #fff; border-color: var(--teal); }
