/*
Theme Name: Les Artisans Pro
Theme URI: https://les-artisanspro.fr
Author: GENEVSKY DEV
Author URI: https://genevskydev.com
Description: Thème WordPress artisanal et élégant multi-services de dépannage à domicile (plomberie, serrurerie, climatisation, électricité, volet roulant, débouchage canalisation) pour les Alpes-Maritimes. Identité premium serif, structure SEO local métier×ville, City Hubs, maillage interne, GEO, logo intégré, bouton d'appel fixe mobile.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: artisanspro
*/

/* ============================================
   DESIGN TOKENS — Les Artisans Pro
   Identité artisanale premium : vert forêt + ocre laiton + crème
   (les noms de variables restent stables ; seules les valeurs changent)
   ============================================ */
:root {
  --c-night: #16332C;    /* vert forêt profond (base sombre) */
  --c-steel: #245A4C;    /* vert sauge foncé */
  --c-orange: #C8853F;   /* ocre laiton (CTA/accent) */
  --c-orange-soft: #DDA05A;
  --c-signal: #E0A458;   /* ocre clair (accents) */
  --c-mist: #F5F1E8;     /* crème (fonds clairs) */
  --c-urgent: #B23A2E;   /* terracotta (urgence, doux) */
  --c-white: #ffffff;
  --c-ink: #22302B;      /* encre verte sombre */
  --c-muted: #6b7770;
  --c-line: #e6e2d5;     /* ligne crème */
  --c-line-soft: #efece2;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 24px;

  /* ombres douces, teintées vert profond */
  --shadow-xs: 0 1px 2px rgba(22,51,44,.05), 0 2px 6px rgba(22,51,44,.06);
  --shadow: 0 4px 12px rgba(22,51,44,.07), 0 12px 32px rgba(22,51,44,.09);
  --shadow-lg: 0 8px 24px rgba(22,51,44,.09), 0 24px 60px rgba(22,51,44,.15);
  --shadow-orange: 0 8px 24px rgba(200,133,63,.3);

  --container: 1180px;
  --header-h: 80px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
/* Icônes SVG : dimension intrinsèque 1em (dans depanpro_icon). Ce garde-fou borne
   tout SVG qui n'aurait pas de taille explicite, sans casser la carte de zone. */
svg:not([width]) { width: 1.25em; height: 1.25em; }
.zone-map svg, .hero-visual svg { width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; letter-spacing: -.005em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 68px 0; }
.section--mist { background: var(--c-mist); }
.section--night { background: var(--c-night); color: var(--c-mist); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: 17px;
  color: var(--c-orange); letter-spacing: 0;
  margin-bottom: 14px;
}
.eyebrow::before { content:''; width: 24px; height: 2px; background: currentColor; border-radius: 2px; opacity: .6; }

.section-title { font-size: clamp(30px, 3.9vw, 46px); margin-bottom: 20px; font-weight: 600; }
.section-lead { font-size: 19px; color: var(--c-muted); max-width: 620px; line-height: 1.65; }
.section--night .section-lead { color: #cbbfa8; }
.section-head { max-width: 640px; margin-bottom: 8px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s;
  white-space: nowrap; letter-spacing: 0;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--c-orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--c-orange-soft); box-shadow: 0 12px 32px rgba(200,133,63,.38); }
.btn--phone { background: var(--c-urgent); color:#fff; box-shadow: 0 8px 24px rgba(178,58,46,.3); }
.btn--phone:hover { background: #c5473a; box-shadow: 0 12px 32px rgba(178,58,46,.4); }
.btn--ghost { background: transparent; color: var(--c-night); border: 1.5px solid var(--c-line); }
.btn--ghost:hover { border-color: var(--c-orange); color: var(--c-orange); }
.btn--light { background: #fff; color: var(--c-night); box-shadow: var(--shadow-xs); }
.btn--light:hover { box-shadow: var(--shadow); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 36px; font-size: 17px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line); height: var(--header-h);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(22,51,44,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }
.brand { display: flex; align-items: center; color: var(--c-night); }
.brand img { max-height: 48px; width: auto; }
.brand-logo { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { color: var(--c-orange); font-size: 40px; line-height: 0; display: inline-flex; }
.brand-word { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -.01em; line-height: 1; color: var(--c-night); }
.brand-word .brand-accent { color: var(--c-orange); margin-left: 4px; font-style: italic; }
.site-header.scrolled .brand-mark { transform: scale(.96); transition: transform .3s; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--c-steel); position: relative; }
.nav a::after { content:''; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--c-orange); transition: width .3s; }
.nav a:hover::after { width:100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--c-night); font-size: 15.5px; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--c-urgent); flex-shrink: 0; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display:block; width: 26px; height: 3px; background: var(--c-night); border-radius: 3px; margin: 5px 0; transition: .3s; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0 0 0 auto; width: min(85vw, 340px); background: var(--c-night); color:#fff; z-index: 1000; transform: translateX(100%); transition: transform .4s cubic-bezier(.76,0,.24,1); padding: 90px 28px 40px; overflow-y:auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display:block; font-family: var(--font-display); font-weight: 600; font-size: 19px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .btn { margin-top: 20px; }
.menu-close { position: absolute; top: 24px; right: 24px; background:none; border:none; color:#fff; font-size: 32px; cursor:pointer; line-height:1; }
.overlay { position: fixed; inset:0; background: rgba(22,51,44,.5); z-index: 999; opacity:0; visibility:hidden; transition:.3s; }
.overlay.open { opacity:1; visibility:visible; }

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; background: linear-gradient(165deg, #1d4438 0%, var(--c-night) 55%, #102620 100%); color: #fff; overflow: hidden; padding: 92px 0 100px; }
.hero::before { content:''; position:absolute; top:-25%; right:-8%; width: 680px; height: 680px; background: radial-gradient(circle, rgba(200,133,63,.18), transparent 60%); pointer-events:none; }
.hero::after { content:''; position:absolute; bottom:-45%; left:-12%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(36,90,76,.5), transparent 62%); pointer-events:none; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display:inline-flex; align-items:center; gap:9px; background: rgba(178,58,46,.12);
  border: 1px solid rgba(178,58,46,.32); color: #ffd3d7; padding: 7px 15px; border-radius: 999px;
  font-family: var(--font-display); font-weight:600; font-size:13.5px; margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width:8px; height:8px; border-radius:50%; background: var(--c-urgent); animation: apBlink 1.8s ease-in-out infinite; }
@keyframes apBlink { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.35;transform:scale(.82);} }
.hero h1 { font-size: clamp(35px, 4.8vw, 56px); margin-bottom: 22px; line-height: 1.08; font-weight: 600; animation: apRise .7s var(--ease) both; }
.hero h1 .hl { color: var(--c-signal); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content:''; position:absolute; left:0; right:0; bottom:-4px; height:3px; background: var(--c-orange); border-radius:3px; transform: scaleX(0); transform-origin:left; animation: apUnderline .8s var(--ease) .5s forwards; }
@keyframes apUnderline { to { transform: scaleX(1); } }
.hero-badge { animation: apRise .6s var(--ease) both; }
.hero-lead { font-size: 19px; color: #d8cfbe; margin-bottom: 34px; max-width: 530px; line-height: 1.65; animation: apRise .7s var(--ease) .1s both; }
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 40px; animation: apRise .7s var(--ease) .2s both; }
@keyframes apRise { from{opacity:0;transform:translateY(18px);} to{opacity:1;transform:translateY(0);} }
.hero-trust { display:flex; gap: 40px; flex-wrap:wrap; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.09); }
.hero-trust .item { display:flex; flex-direction:column; gap: 2px; }
.hero-trust .num { font-family: var(--font-display); font-weight:700; font-size: 28px; color: #fff; letter-spacing: -.02em; }
.hero-trust .lbl { font-size: 13.5px; color:#b8ad98; }

/* Hero service ticker */
.hero-visual { position: relative; }
.hero-card { background: linear-gradient(158deg, rgba(45,90,76,.5), rgba(22,51,44,.5)); border:1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.hero-card h3 { font-size: 16px; margin-bottom: 22px; color:#fff; display:flex; align-items:center; gap:10px; font-weight: 600; }
.hero-card h3 svg { width: 20px; height: 20px; color: var(--c-signal); }
.svc-ticker { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.svc-chip { display:flex; align-items:center; gap:12px; background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 14px 15px; transition: .35s var(--ease); opacity:0; transform: translateX(-14px); animation: chipIn .6s var(--ease) forwards; }
.svc-chip:nth-child(1){animation-delay:.05s}.svc-chip:nth-child(2){animation-delay:.15s}.svc-chip:nth-child(3){animation-delay:.25s}.svc-chip:nth-child(4){animation-delay:.35s}.svc-chip:nth-child(5){animation-delay:.45s}.svc-chip:nth-child(6){animation-delay:.55s}
@keyframes chipIn { to { opacity:1; transform: translateX(0); } }
.svc-chip:hover { background: rgba(200,133,63,.12); border-color: rgba(200,133,63,.5); transform: translateX(4px); }
.svc-chip .ico { width: 38px; height:38px; flex-shrink:0; border-radius: 11px; background: rgba(200,133,63,.14); display:flex; align-items:center; justify-content:center; color: var(--c-orange); transition: .35s; }
.svc-chip:hover .ico { background: var(--c-orange); color: #fff; }
.svc-chip .ico svg { width:20px; height:20px; }
.svc-chip span { font-family: var(--font-display); font-weight:600; font-size:13.5px; color:#F5F1E8; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.service-card {
  background:#fff; border:1px solid var(--c-line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; position:relative;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-line-soft); }
.service-ico { width: 56px; height:56px; border-radius: 15px; background: var(--c-mist); display:flex; align-items:center; justify-content:center; color:var(--c-steel); margin-bottom: 24px; transition: .4s var(--ease); }
.service-card:hover .service-ico { background: var(--c-orange); color:#fff; }
.service-ico svg { width: 27px; height:27px; }
.service-card h3 { font-size: 21px; margin-bottom: 11px; letter-spacing: -.02em; }
.service-card p { color: var(--c-muted); font-size: 15px; margin-bottom: 20px; flex-grow: 1; line-height: 1.6; }
.service-card .card-link { font-family: var(--font-display); font-weight:600; color: var(--c-orange); font-size:14.5px; display:inline-flex; align-items:center; gap:7px; }
.service-card .card-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ============================================
   ZONE MAP
   ============================================ */
.zone-wrap { display:grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items:center; }
.zone-map { position: relative; background: var(--c-night); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.zone-map svg { width:100%; height:auto; }
.ap-mark { animation: apReveal .5s ease both; }
.ap-mark:nth-of-type(1){animation-delay:.1s}.ap-mark:nth-of-type(2){animation-delay:.25s}.ap-mark:nth-of-type(3){animation-delay:.4s}.ap-mark:nth-of-type(4){animation-delay:.55s}.ap-mark:nth-of-type(5){animation-delay:.7s}.ap-mark:nth-of-type(6){animation-delay:.85s}
@keyframes apReveal { from{opacity:0;} to{opacity:1;} }
.ap-diamond { fill: var(--c-signal); stroke:#16332C; stroke-width:1.5; }
.ap-mark.ap-main .ap-diamond { fill: var(--c-orange); }
.ap-mark text { fill:#F5F1E8; font-family: var(--font-display); font-weight:600; font-size:13px; }
.zone-list { display:flex; flex-wrap:wrap; gap:10px; margin-top: 28px; }
.zone-tag { background:#fff; border:1px solid var(--c-line); border-radius:999px; padding:8px 16px; font-size:14px; font-family:var(--font-display); font-weight:500; color:var(--c-steel); transition:.25s; }
.zone-tag:hover { background: var(--c-orange); color:#fff; border-color: var(--c-orange); transform: translateY(-2px); }

/* ============================================
   CITY PAGES CARDS
   ============================================ */
.city-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-top: 48px; }
.city-card { position:relative; border-radius: var(--radius); overflow:hidden; min-height: 240px; display:flex; align-items:flex-end; box-shadow: var(--shadow); transition:.4s var(--ease); }
.city-card::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(22,51,44,.94) 8%, rgba(22,51,44,.15) 70%); }
.city-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.city-card:hover img { transform: scale(1.06); }
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.city-card .city-body { position:relative; z-index:2; padding: 26px; color:#fff; }
.city-card h3 { font-size: 23px; margin-bottom: 5px; }
.city-card p { font-size:13.5px; color:#cbbfa8; }
.city-card .arrow { position:absolute; top:20px; right:20px; z-index:2; width:40px; height:40px; border-radius:12px; background:rgba(255,255,255,.14); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center; color:#fff; transition:.35s var(--ease); }
.city-card .arrow svg { width:17px; height:17px; }
.city-card:hover .arrow { background: var(--c-orange); }
.city-more { margin-top: 36px; text-align:center; }
.city-more .btn svg { width:16px; height:16px; }

/* ============================================
   PROCESS / STEPS
   ============================================ */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap:24px; margin-top:44px; counter-reset: step; }
.step { position:relative; padding: 34px 24px 24px; background:#fff; border:1px solid var(--c-line); border-radius: var(--radius); }
.step::before { counter-increment: step; content: "0" counter(step); position:absolute; top:-18px; left:24px; font-family:var(--font-display); font-weight:800; font-size:34px; color: var(--c-orange); background:#fff; padding: 0 8px; }
.step h4 { font-size:18px; margin-bottom:8px; margin-top:6px; }
.step p { color: var(--c-muted); font-size:14px; }

/* ============================================
   WHY / FEATURES
   ============================================ */
.why-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; margin-top:44px; }
.why-item { display:flex; gap:16px; padding: 24px; border-radius: var(--radius); background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); }
.why-item .ico { width:48px; height:48px; flex-shrink:0; border-radius:12px; background: rgba(200,133,63,.16); display:flex; align-items:center; justify-content:center; color:var(--c-orange); }
.why-item h4 { font-size:18px; margin-bottom:6px; color:#fff; }
.why-item p { font-size:14px; color:#c3b9a5; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band { background: linear-gradient(135deg, var(--c-orange), #ff8c42); border-radius: var(--radius-lg); padding: 56px 48px; text-align:center; color:#fff; position:relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; top:-50%; right:-10%; width:400px; height:400px; background: radial-gradient(circle,rgba(255,255,255,.18),transparent 60%); }
.cta-band h2 { font-size: clamp(26px,3.4vw,40px); margin-bottom:14px; position:relative; }
.cta-band p { font-size:19px; margin-bottom:28px; opacity:.95; position:relative; }
.cta-band .btn--light { position:relative; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 44px auto 0; }
.faq-item { border:1px solid var(--c-line); border-radius: var(--radius-sm); margin-bottom:14px; overflow:hidden; background:#fff; transition:.3s; }
.faq-item.open { border-color: var(--c-orange); box-shadow: var(--shadow); }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:16px; padding: 22px 24px; cursor:pointer; font-family:var(--font-display); font-weight:600; font-size:17px; }
.faq-q .plus { width:26px; height:26px; flex-shrink:0; position:relative; }
.faq-q .plus::before,.faq-q .plus::after { content:''; position:absolute; background:var(--c-orange); border-radius:2px; transition:.3s; }
.faq-q .plus::before { top:12px; left:4px; width:18px; height:2px; }
.faq-q .plus::after { top:4px; left:12px; width:2px; height:18px; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity:0; }
.faq-a { max-height:0; overflow:hidden; transition: max-height .4s ease, padding .3s; padding:0 24px; color:var(--c-muted); }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 24px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; margin-top:44px; }
.testi { background:#fff; border:1px solid var(--c-line); border-radius: var(--radius); padding:28px; }
.testi .stars { color: var(--c-signal); margin-bottom:14px; font-size:18px; }
.testi p { font-size:15px; margin-bottom:18px; }
.testi .who { display:flex; align-items:center; gap:12px; }
.testi .avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,var(--c-steel),var(--c-orange)); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; }
.testi .who strong { display:block; font-size:15px; }
.testi .who span { font-size:13px; color:var(--c-muted); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--c-night); color:#cbbfa8; padding: 70px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:44px; }
.footer-brand { font-family:var(--font-display); font-weight:800; font-size:24px; color:#fff; margin-bottom:16px; }
.footer-col h4 { color:#fff; font-size:16px; margin-bottom:18px; }
.footer-col a { display:block; padding:6px 0; font-size:15px; color:#c3b9a5; transition:.25s; }
.footer-col a:hover { color: var(--c-orange); padding-left:6px; }
.footer-contact li { display:flex; gap:12px; margin-bottom:14px; font-size:15px; align-items:flex-start; }
.footer-contact svg { width:18px; height:18px; color: var(--c-orange); flex-shrink:0; margin-top:3px; }
.footer-brand svg, .footer-col svg { width:18px; height:18px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:26px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:14px; color:#7d93a8; }
.footer-bottom a { color:#c3b9a5; }

/* ============================================
   DROPDOWN MENUS
   ============================================ */
.nav-item.has-dropdown { position: relative; }
.nav-toggle { background:none; border:none; cursor:pointer; font-family:var(--font-body); font-weight:500; font-size:15px; color:var(--c-steel); display:inline-flex; align-items:center; gap:6px; padding:0; }
.nav-toggle .caret { width:8px; height:8px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg) translateY(-2px); transition:transform .3s; }
.nav-item:hover .nav-toggle .caret { transform:rotate(-135deg) translateY(-2px); }
.dropdown { position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(8px); background:#fff; border:1px solid var(--c-line); border-radius:16px; box-shadow:var(--shadow-lg); padding:10px; min-width:250px; opacity:0; visibility:hidden; transition:.28s var(--ease); z-index:920; }
.nav-item:hover .dropdown, .nav-item.open-dd .dropdown { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.dropdown::before { content:''; position:absolute; top:-14px; left:0; right:0; height:14px; }
.dropdown a { display:flex; align-items:center; gap:11px; padding:11px 14px; border-radius:10px; font-size:14.5px; font-family:var(--font-display); font-weight:500; color:var(--c-steel); transition:.2s; }
.dropdown a svg { width:18px; height:18px; color:var(--c-orange); }
.dropdown a:hover { background:var(--c-mist); color:var(--c-orange); }
.dropdown-all { border-top:1px solid var(--c-line); margin-top:6px; padding-top:14px !important; color:var(--c-orange) !important; font-weight:600 !important; }

/* mobile menu groups */
.mobile-group { border-bottom:1px solid rgba(255,255,255,.1); padding:14px 0; }
.mobile-group-title { display:block; font-family:var(--font-display); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.05em; color:var(--c-signal); margin-bottom:8px; }
.mobile-group a { padding:9px 0 !important; font-size:16px !important; border:none !important; }

/* ============================================
   CITY HUB
   ============================================ */
.cityhub-services { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin:24px 0 8px; }
.cityhub-service { display:flex; align-items:center; gap:14px; padding:18px; border:1px solid var(--c-line); border-radius:14px; background:#fff; transition:.3s var(--ease); }
.cityhub-service:hover { border-color:rgba(200,133,63,.4); transform:translateY(-3px); box-shadow:var(--shadow); }
.cityhub-ico { width:46px; height:46px; border-radius:12px; background:var(--c-mist); display:flex; align-items:center; justify-content:center; color:var(--c-steel); flex-shrink:0; transition:.3s; }
.cityhub-service:hover .cityhub-ico { background:var(--c-orange); color:#fff; }
.cityhub-ico svg { width:22px; height:22px; }
.cityhub-txt { display:flex; flex-direction:column; }
.cityhub-txt strong { font-family:var(--font-display); font-size:15px; }
.cityhub-txt em { font-style:normal; font-size:13px; color:var(--c-muted); }

/* ZONES HUB (/zones/) */
.zones-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:44px; }
.zone-hub-card { display:flex; align-items:center; gap:14px; padding:20px; border:1px solid var(--c-line); border-radius:16px; background:#fff; transition:.32s var(--ease); position:relative; }
.zone-hub-card:hover { border-color:rgba(200,133,63,.4); transform:translateY(-4px); box-shadow:var(--shadow); }
.zone-hub-ico { width:44px; height:44px; border-radius:12px; background:var(--c-mist); display:flex; align-items:center; justify-content:center; color:var(--c-orange); flex-shrink:0; }
.zone-hub-ico svg { width:22px; height:22px; }
.zone-hub-body { display:flex; flex-direction:column; }
.zone-hub-body strong { font-family:var(--font-display); font-size:15px; }
.zone-hub-body em { font-style:normal; font-size:13px; color:var(--c-muted); }
.zone-hub-arrow { margin-left:auto; color:var(--c-muted); transition:.3s; }
.zone-hub-arrow svg { width:16px; height:16px; }
.zone-hub-card:hover .zone-hub-arrow { color:var(--c-orange); transform:translateX(3px); }
.zones-all { display:flex; flex-wrap:wrap; gap:10px; }
.zones-all a { padding:9px 16px; background:#fff; border:1px solid var(--c-line); border-radius:999px; font-size:14px; font-family:var(--font-display); font-weight:500; color:var(--c-steel); transition:.25s; }
.zones-all a:hover { border-color:var(--c-orange); color:var(--c-orange); transform:translateY(-2px); }

/* ============================================
   FIXED MOBILE CALL BUTTON
   ============================================ */
.mobile-callbar { display:none; position:fixed; bottom:0; left:0; right:0; z-index:950; background:#ffffff; border-top:1px solid var(--c-line); padding:10px 14px calc(10px + env(safe-area-inset-bottom)); box-shadow: 0 -4px 20px rgba(22,51,44,.12); gap:10px; }
.mobile-callbar .btn { flex:1; padding:14px 12px; font-size:15px; border-radius:12px; }
.mobile-callbar .btn svg { width:17px; height:17px; }

/* ============================================
   SINGLE / CONTENT
   ============================================ */
.page-hero { background: linear-gradient(165deg, #1d4438, var(--c-night)); color:#fff; padding: 76px 0 68px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; top:-40%; right:-5%; width:520px; height:520px; background:radial-gradient(circle,rgba(200,133,63,.14),transparent 62%); }
.page-hero .breadcrumb { font-size:13.5px; color:#b8ad98; margin-bottom:18px; position:relative; }
.page-hero .breadcrumb a { transition:.2s; }
.page-hero .breadcrumb a:hover { color: var(--c-orange); }
.page-hero h1 { font-size: clamp(30px,4.2vw,48px); position:relative; max-width:840px; line-height:1.1; }
.page-hero h1 .hero-cp { color: var(--c-signal); font-size:.5em; font-weight:600; vertical-align:middle; }
.page-hero p { color:#d8cfbe; font-size:18px; margin-top:18px; max-width:660px; position:relative; line-height:1.6; }
.page-hero-cta { margin-top:28px; display:flex; gap:12px; flex-wrap:wrap; position:relative; }

.content-wrap { display:grid; grid-template-columns: 1fr 348px; gap:60px; padding: 76px 0; }
.prose { font-size:17px; line-height:1.75; }
.prose h2 { font-size:28px; margin: 44px 0 16px; letter-spacing:-.02em; }
.prose h3 { font-size:22px; margin: 32px 0 12px; letter-spacing:-.02em; }
.prose p { margin-bottom:18px; color:#3a4a5e; }
.prose a { color: var(--c-orange); font-weight:500; box-shadow: inset 0 -1px 0 rgba(200,133,63,.3); transition:.2s; }
.prose a:hover { box-shadow: inset 0 -2px 0 var(--c-orange); }
.prose ul { margin: 0 0 22px; padding-left:0; }
.prose ul li { position:relative; padding-left:32px; margin-bottom:13px; color:#3a4a5e; }
.prose ul li::before { content:''; position:absolute; left:0; top:4px; width:20px; height:20px; background:rgba(200,133,63,.14); border-radius:50%; }
.prose ul li::after { content:''; position:absolute; left:5px; top:9px; width:10px; height:10px; background:var(--c-orange); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat; }
.prose img { border-radius: var(--radius); margin: 26px 0; box-shadow: var(--shadow); }
.prose .callout { background: linear-gradient(135deg, #fff7f3, var(--c-mist)); border:1px solid var(--c-line); border-left:3px solid var(--c-orange); border-radius: var(--radius-sm); padding: 20px 24px; margin: 28px 0; font-size:15.5px; }
.prose .callout strong { color: var(--c-night); }

.sidebar { position:sticky; top: calc(var(--header-h) + 24px); align-self:start; }
.sidebar-card { background:#fff; border:1px solid var(--c-line); border-radius: var(--radius); padding:26px; margin-bottom:20px; box-shadow: var(--shadow-xs); }
.sidebar-card--cta { background: linear-gradient(158deg, var(--c-steel), var(--c-night)); color:#fff; border:none; box-shadow: var(--shadow); }
.sidebar-card h4 { font-size:18px; margin-bottom:14px; letter-spacing:-.02em; }
.sidebar-card--cta h4 { color:#fff; }
.sidebar-card--cta p { color:#d8cfbe; font-size:14.5px; margin-bottom:18px; }
.sidebar-cta-badge { display:inline-flex; align-items:center; gap:7px; background:rgba(245,179,1,.14); color:var(--c-signal); padding:6px 12px; border-radius:999px; font-family:var(--font-display); font-weight:600; font-size:12.5px; margin-bottom:16px; }
.sidebar-cta-badge svg { width:15px; height:15px; }
.sidebar-links a { display:flex; align-items:center; gap:11px; padding:11px 0; border-bottom:1px solid var(--c-line-soft); font-size:14.5px; font-family:var(--font-display); font-weight:500; color:var(--c-steel); transition:.25s var(--ease); }
.sidebar-links a:last-child { border-bottom:none; }
.sidebar-links a:hover { color:var(--c-orange); padding-left:5px; }
.sidebar-links a svg { width:17px; height:17px; color: var(--c-orange); flex-shrink:0; }
.sidebar-checklist li { display:flex; align-items:center; gap:10px; padding:8px 0; font-size:14.5px; color:var(--c-ink); }
.sidebar-checklist svg { width:17px; height:17px; color:var(--c-steel); flex-shrink:0; }

/* related services internal linking */
.related { margin-top:52px; padding-top:44px; border-top:1px solid var(--c-line); }
.related h2 { font-size:25px; margin-bottom:24px; letter-spacing:-.02em; }
.related-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; }
.related-card { border:1px solid var(--c-line); border-radius: 14px; padding:18px; transition:.32s var(--ease); display:flex; align-items:center; gap:13px; background:#fff; }
.related-card:hover { border-color:rgba(200,133,63,.4); transform:translateY(-3px); box-shadow:var(--shadow); }
.related-card .ico { width:42px; height:42px; border-radius:11px; background:var(--c-mist); display:flex; align-items:center; justify-content:center; color:var(--c-steel); flex-shrink:0; transition:.32s; }
.related-card:hover .ico { background:var(--c-orange); color:#fff; }
.related-card .ico svg { width:20px; height:20px; }
.related-card strong { font-family:var(--font-display); font-size:14.5px; font-weight:600; line-height:1.35; }

/* ============================================
   ANNUAIRE
   ============================================ */
.annuaire-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--c-line); }
.annuaire-block:last-child { border-bottom:none; }
.annuaire-head { display:flex; align-items:center; gap:16px; margin-bottom:22px; }
.annuaire-ico { width:52px; height:52px; border-radius:14px; background:var(--c-mist); display:flex; align-items:center; justify-content:center; color:var(--c-orange); flex-shrink:0; }
.annuaire-ico svg { width:26px; height:26px; }
.annuaire-head h2 { font-size:26px; margin:0; letter-spacing:-.02em; }
.annuaire-pillar { margin-left:auto; font-family:var(--font-display); font-weight:600; font-size:14px; color:var(--c-orange); display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.annuaire-pillar svg { width:15px; height:15px; transition:transform .3s var(--ease); }
.annuaire-pillar:hover svg { transform:translateX(4px); }
.annuaire-cities { display:grid; grid-template-columns: repeat(4,1fr); gap:10px; }
.annuaire-cities a { padding:11px 16px; background:#fff; border:1px solid var(--c-line); border-radius:10px; font-size:14px; font-family:var(--font-display); font-weight:500; color:var(--c-steel); transition:.28s var(--ease); }
.annuaire-cities a:hover { border-color:var(--c-orange); color:var(--c-orange); transform:translateY(-2px); box-shadow:var(--shadow-xs); }

/* reveal animation */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap:40px; }
  .services-grid, .city-grid, .testi-grid, .related-grid { grid-template-columns: repeat(2,1fr); }
  .steps, .why-grid { grid-template-columns: repeat(2,1fr); }
  .zone-wrap { grid-template-columns: 1fr; }
  .content-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav, .header-cta .btn { display:none; }
  .burger { display:block; }
  .zones-grid { grid-template-columns: repeat(2,1fr); }
  .cityhub-services { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size:16px; }
  .section { padding: 64px 0; }
  .services-grid, .city-grid, .testi-grid, .steps, .why-grid, .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap:32px; }
  .header-phone { display:none; }
  .mobile-callbar { display:flex; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .svc-ticker { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  /* Boutons pleine largeur sur mobile (hero + pages) pour éviter les débordements */
  .hero-cta, .page-hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .page-hero-cta .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr !important; }
  .zones-grid { grid-template-columns: 1fr; }
}

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }

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