/* ============================================================
   PCP — Provence Chauffage Plomberie
   Design system inspiré du flocage camion :
   bleu marine #2b344a, blanc, gris argent, typo sobre
   ============================================================ */

:root {
  /* Palette camion */
  --navy:    #2b344a;   /* bleu logo principal */
  --navy-d:  #1e2638;   /* bleu foncé */
  --navy-dp: #161d2c;   /* très foncé fond */
  --silver:  #e8eaed;   /* gris argent du camion */
  --silver-d:#d0d3d9;
  --smoke:   #f5f6f8;   /* quasi blanc du camion */
  --accent:  #3d7ab5;   /* bleu clair — seul accent, discret */
  --white:   #ffffff;
  --off:     #f0f2f5;
  --cream:   #fafaf9;
  --gray:    #6b7280;
  --gray-l:  #9ca3af;
  --line:    #e5e7eb;
  --dark-txt:#1a2035;

  /* Typographie sobre comme le camion */
  --fh: 'Oswald', 'Arial Narrow', sans-serif;
  --fb: 'Open Sans', system-ui, sans-serif;

  --r:   6px;
  --rl:  12px;
  --sh:  0 2px 12px rgba(43,52,74,.08);
  --shM: 0 6px 28px rgba(43,52,74,.14);
  --shL: 0 16px 56px rgba(43,52,74,.18);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); color: var(--navy); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slideIn  { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
@keyframes scaleUp  { from { opacity:0; transform:scale(.95); } to { opacity:1; transform:scale(1); } }
@keyframes lineGrow { from { transform:scaleX(0); } to { transform:scaleX(1); } }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section.alt { background: var(--smoke); }
.section.dark { background: var(--navy); }
.section.darker { background: var(--navy-dp); }
.section.silver { background: var(--silver); }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  letter-spacing: .03em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar a {
  color: #fff;
  font-family: var(--fh);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(255,255,255,.3);
  transition: border-color .2s;
}
.topbar a:hover { border-color: #fff; }
.topbar-sep { opacity: .3; margin: 0 12px; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(43,52,74,.06);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(43,52,74,.12); }

.nav {
  display: flex; align-items: center;
  height: 74px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

/* Logo — mis en avant */
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  margin-right: 40px; flex-shrink: 0;
  text-decoration: none;
  padding: 6px 0;
}
.nav-logo-img {
  width: 52px; height: 52px;
  flex-shrink: 0;
  transition: transform .3s;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-family: var(--fh);
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 9px; font-weight: 400;
  color: var(--gray-l);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.nav-logo-tagline {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: .06em;
}

/* Nav links */
.nav-links { display: flex; gap: 2px; flex: 1; padding: 0; }
.nav-links a {
  font-family: var(--fh);
  font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray);
  padding: 8px 12px; border-radius: var(--r);
  transition: all .18s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 12px; right: 12px;
  height: 2px; background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-shrink: 0; }
.nav-phone-block { display: flex; flex-direction: column; align-items: flex-end; }
.nav-phone-block small { font-size: 9px; color: var(--gray-l); text-transform: uppercase; letter-spacing: .1em; }
.nav-phone-block a {
  font-family: var(--fh); font-weight: 700; font-size: 18px;
  color: var(--navy); letter-spacing: .03em; transition: color .18s;
}
.nav-phone-block a:hover { color: var(--accent); }
.btn-nav-cta {
  font-family: var(--fh); font-weight: 600; font-size: 12px;
  letter-spacing: .09em; text-transform: uppercase;
  background: var(--navy); color: #fff;
  padding: 10px 20px; border-radius: var(--r);
  transition: background .18s, transform .18s; white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--navy-d); transform: translateY(-1px); }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; padding: 10px;
  background: none; border: 1.5px solid var(--line);
  border-radius: var(--r); cursor: pointer;
  margin-left: auto; transition: border-color .2s;
}
.menu-toggle:hover { border-color: var(--navy); }
.menu-toggle span {
  display: block; height: 1.5px; background: var(--navy);
  border-radius: 1px; transition: all .25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--fh); font-weight: 600; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--r);
  border: 1.5px solid transparent; cursor: pointer;
  transition: all .2s; text-align: center; white-space: nowrap;
}
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-d); transform: translateY(-2px); box-shadow: var(--shM); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--smoke); }
.btn-silver { background: var(--silver); color: var(--navy); border-color: var(--silver-d); }
.btn-silver:hover { background: var(--silver-d); }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 12px; }

/* ── Eyebrow ────────────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fh); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 14px;
}
.eyebrow::before { content: '—'; color: var(--accent); font-weight: 700; }
.eyebrow.light { color: rgba(255,255,255,.5); }
.eyebrow.light::before { color: var(--silver-d); }

/* ── Headings ───────────────────────────────────────────────── */
h1 { font-family: var(--fh); text-transform: uppercase; letter-spacing: .02em; line-height: 1.05; font-weight: 700; }
h2 { font-family: var(--fh); text-transform: uppercase; letter-spacing: .02em; line-height: 1.1; font-weight: 700; font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 16px; }
h3 { font-family: var(--fh); text-transform: uppercase; letter-spacing: .04em; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.section-intro { font-size: 17px; color: var(--gray); max-width: 640px; line-height: 1.75; margin-bottom: 48px; }

/* ── Hero principal ─────────────────────────────────────────── */
.hero {
  background: var(--navy-dp);
  position: relative; overflow: hidden;
  min-height: calc(100svh - 110px);
  display: grid; grid-template-columns: 1fr 1fr;
}

/* Grain texture très subtil */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .6;
}

.hero-left {
  padding: clamp(56px,8vw,104px) clamp(24px,5vw,72px) clamp(56px,8vw,104px) clamp(32px,5vw,80px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}

/* Ligne verticale signature, inspirée séparateur camion */
.hero-left::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 3px; background: rgba(255,255,255,.12);
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fh); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 20px;
  animation: fadeUp .5s ease both;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Le grand logo centré en hero — mis en avant */
.hero-logo-big {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp .6s .1s ease both;
}
.hero-logo-big svg {
  width: 200px; height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.hero-logo-big-text {
  display: flex; flex-direction: column;
}
.hero-logo-big-name {
  font-family: var(--fh); font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  color: #fff; line-height: 1; display: flex; flex-direction: column;
}
.hero-logo-big-sub {
  font-family: var(--fh); font-size: clamp(11px,1.2vw,14px); font-weight: 400;
  text-transform: uppercase; letter-spacing: .2em;
  color: rgba(255,255,255,.4); margin-top: 8px;
}

.hero-tagline {
  font-size: clamp(15px,1.6vw,18px);
  color: rgba(255,255,255,.62); max-width: 500px;
  line-height: 1.75; margin-bottom: 36px;
  animation: fadeUp .6s .2s ease both;
}

/* 3 services hero camion-style */
.hero-services {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); overflow: hidden;
  animation: fadeUp .6s .3s ease both;
}
.hero-svc {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.hero-svc:last-child { border-bottom: none; }
.hero-svc:hover { background: rgba(255,255,255,.04); }
.hero-svc-icon { font-size: 18px; width: 28px; text-align: center; flex-shrink: 0; }
.hero-svc-name {
  font-family: var(--fh); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: #fff;
}
.hero-svc-desc { font-size: 12px; color: rgba(255,255,255,.38); margin-top: 1px; }

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .6s .4s ease both;
}

/* Stats en bas du hero */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.08);
  animation: fadeIn .8s .5s ease both;
}
.hero-stat {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(255,255,255,.03); }
.hero-stat-num {
  font-family: var(--fh); font-size: 30px; font-weight: 700;
  color: #fff; display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 10px; color: rgba(255,255,255,.38);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 4px; display: block;
}

/* Partie droite : photos */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.hero-photo {
  overflow: hidden; position: relative;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.85) saturate(.9);
}
.hero-photo:hover img { transform: scale(1.04); filter: brightness(.9) saturate(1); }
.hero-photo.main { grid-column: span 2; }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,29,44,.7) 0%, transparent 50%);
}
.hero-photo-label {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  font-family: var(--fh); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.7);
}

/* Camion badge sur hero */
.hero-van-badge {
  position: absolute; bottom: 20px; right: 20px; z-index: 10;
  background: rgba(22,29,44,.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: scaleUp .7s .6s ease both;
}
.hero-van-badge img {
  width: 36px; height: 36px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.hero-van-badge-text strong {
  display: block; font-family: var(--fh); font-size: 12px;
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: #fff;
}
.hero-van-badge-text span { font-size: 11px; color: rgba(255,255,255,.4); }

/* ── Page hero (pages internes) ─────────────────────────────── */
.page-hero {
  background: var(--navy-dp);
  padding: 72px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--accent), transparent 60%);
}
.page-hero .breadcrumb { font-size: 12px; color: rgba(255,255,255,.38); margin-bottom: 20px; letter-spacing: .03em; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); transition: color .18s; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span { color: rgba(255,255,255,.2); margin: 0 8px; }
.page-hero h1 { font-size: clamp(30px,4.5vw,54px); color: #fff; margin-bottom: 18px; max-width: 860px; }
.page-hero .hero-desc { font-size: 17px; color: rgba(255,255,255,.6); max-width: 680px; line-height: 1.75; margin-bottom: 28px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Logo hero section (brand page) ────────────────────────── */
.brand-hero {
  background: var(--smoke);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.brand-hero-inner {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap; justify-content: center;
}
.brand-logo-large { width: 180px; height: auto; opacity: .9; }
.brand-divider { width: 1px; height: 80px; background: var(--line); }
.brand-info { display: flex; flex-direction: column; gap: 4px; }
.brand-info-name {
  font-family: var(--fh); font-size: 32px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--navy);
}
.brand-info-full {
  font-family: var(--fh); font-size: 13px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .18em; color: var(--gray);
}
.brand-info-tagline { font-size: 14px; color: var(--gray-l); margin-top: 4px; }

/* ── Zones strip ────────────────────────────────────────────── */
.zones-strip {
  background: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.zones-strip-inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.zones-label {
  font-family: var(--fh); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); flex-shrink: 0; margin-right: 4px;
}
.zone-pill {
  font-size: 12px; color: rgba(255,255,255,.5);
  padding: 3px 12px; border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; white-space: nowrap; transition: all .18s;
}
.zone-pill.active { color: #fff; border-color: rgba(255,255,255,.3); }

/* ── Cards ──────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border-radius: var(--rl); overflow: hidden; }
.card {
  background: #fff; padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  transition: background .2s;
  position: relative;
}
.card:hover { background: var(--smoke); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.card:hover::before { transform: scaleX(1); }
.card-icon { font-size: 28px; margin-bottom: 18px; opacity: .85; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 15px; line-height: 1.65; flex: 1; margin-bottom: 20px; }
.card-link {
  font-family: var(--fh); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s; align-self: flex-start;
}
.card-link::after { content: '→'; }
.card-link:hover { gap: 10px; }

/* Card variante sombre */
.card.dark { background: var(--navy); }
.card.dark:hover { background: var(--navy-d); }
.card.dark h3 { color: #fff; }
.card.dark p { color: rgba(255,255,255,.5); }
.card.dark .card-link { color: rgba(255,255,255,.7); }
.card.dark::before { background: rgba(255,255,255,.2); }

/* ── Split sections ─────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  position: relative; border-radius: var(--rl);
  overflow: hidden; box-shadow: var(--shL);
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.split-img:hover img { transform: scale(1.03); }
.split-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(22,29,44,.82); padding: 16px 20px;
  font-family: var(--fh); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.7);
}

/* ── Check list ─────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--navy); line-height: 1.5;
}
.check-list li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M7 10.4l2.3 2.3 3.7-4.6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  margin-top: 2px;
}
.check-list.light li { color: rgba(255,255,255,.75); }
.check-list.light li::before { background-color: rgba(255,255,255,.15); }

/* ── Service nav grid ───────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.svc-link {
  display: flex; align-items: center; gap: 10px;
  background: var(--smoke); border: 1px solid var(--line);
  border-radius: var(--r); padding: 13px 16px;
  font-family: var(--fh); font-size: 13px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: var(--navy);
  transition: all .18s;
}
.svc-link::before { content: '›'; color: var(--accent); font-size: 18px; line-height: 1; transition: transform .2s; }
.svc-link:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.svc-link:hover::before { color: var(--silver); transform: translateX(3px); }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border-radius: var(--rl); overflow: hidden; }
.stat-box {
  background: #fff; padding: 32px 20px; text-align: center;
  transition: background .2s;
}
.stat-box:hover { background: var(--smoke); }
.stat-num {
  font-family: var(--fh); font-size: 44px; font-weight: 700;
  color: var(--navy); display: block; line-height: 1;
}
.stat-label { font-size: 12px; color: var(--gray); margin-top: 8px; text-transform: uppercase; letter-spacing: .06em; }

/* ── Proof items ────────────────────────────────────────────── */
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border-radius: var(--rl); overflow: hidden; }
.proof-item { background: #fff; padding: 24px 20px; text-align: center; transition: background .2s; }
.proof-item:hover { background: var(--smoke); }
.proof-num { font-family: var(--fh); font-size: 32px; font-weight: 700; color: var(--navy); display: block; }
.proof-label { font-size: 12px; color: var(--gray); margin-top: 6px; letter-spacing: .03em; line-height: 1.4; }

/* ── Reviews ────────────────────────────────────────────────── */
.avis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.avis-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rl); padding: 26px;
  transition: border-color .2s, transform .25s;
}
.avis-card:hover { border-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.avis-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avis-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 15px; font-weight: 700; color: #fff;
}
.avis-name { font-family: var(--fh); font-size: 14px; font-weight: 600; color: #fff; }
.avis-loc { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 1px; }
.avis-stars { color: #e8b84b; font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.avis-text { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.7; font-style: italic; }
.avis-date { font-size: 10px; color: rgba(255,255,255,.22); margin-top: 14px; letter-spacing: .05em; text-transform: uppercase; }
.avis-score-big { font-family: var(--fh); font-size: 56px; font-weight: 700; color: #fff; line-height: 1; }
.avis-stars-big { color: #e8b84b; font-size: 20px; letter-spacing: 3px; }
.avis-count { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; border-radius: var(--rl); overflow: hidden; }
.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .3s; filter: brightness(.9) saturate(.95); }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(22,29,44,.75));
  padding: 16px; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay strong { font-family: var(--fh); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.gallery-overlay span { font-size: 11px; color: rgba(255,255,255,.5); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; transition: border-color .2s;
}
.faq-item:hover, .faq-item.open { border-color: var(--navy); }
.faq-q {
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  cursor: pointer; user-select: none;
  font-family: var(--fh); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--navy);
  transition: background .2s;
}
.faq-q:hover { background: var(--smoke); }
.faq-tog {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  transition: transform .3s, border-color .2s, background .2s;
}
.faq-item.open .faq-tog { transform: rotate(45deg); background: var(--navy); border-color: var(--navy); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: 15px; color: var(--gray); line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 24px 20px; }

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band { background: var(--navy); padding: 72px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.62); margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Van strip (band avec photo camion) ─────────────────────── */
.van-strip {
  background: var(--navy-d);
  padding: 0;
  display: grid; grid-template-columns: 1fr 1.5fr;
  overflow: hidden; min-height: 240px;
}
.van-strip-content {
  padding: 48px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.van-strip-content h3 { color: #fff; font-size: 22px; }
.van-strip-content p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }
.van-strip-img { overflow: hidden; position: relative; }
.van-strip-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) saturate(.8); }
.van-strip-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy-d) 0%, transparent 40%);
  z-index: 1;
}

/* ── Contact form ───────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-family: var(--fh); font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); font-family: var(--fb); font-size: 15px;
  color: #fff; outline: none; transition: border-color .2s, background .2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.09);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.22); }
.form-group select { color: rgba(255,255,255,.6); }
.form-group select option { background: var(--navy); }
.form-group textarea { min-height: 110px; resize: vertical; }

/* ── City grid ──────────────────────────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.city-item {
  background: var(--smoke); border: 1px solid var(--line);
  border-radius: var(--r); padding: 12px 14px;
  font-family: var(--fh); font-size: 12px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: 8px; transition: all .18s;
}
.city-item::before { content: '›'; color: var(--gray-l); transition: color .2s; }
.city-item:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.city-item:hover::before { color: rgba(255,255,255,.5); }
.city-item.priority { background: var(--navy); color: #fff; border-color: var(--navy); }
.city-item.priority::before { color: rgba(255,255,255,.4); }
.city-item.priority:hover { background: var(--navy-d); }

/* ── Blog ───────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--rl); overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shM); }
.blog-card-tag {
  display: inline-block; font-family: var(--fh); font-size: 10px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--navy); color: #fff;
  padding: 3px 9px; border-radius: 3px; margin-bottom: 12px;
}
.blog-card-body { padding: 22px; }
.blog-card h3 { font-size: 16px; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.blog-card-meta { font-size: 11px; color: var(--gray-l); text-transform: uppercase; letter-spacing: .06em; }

/* ── Rich content ───────────────────────────────────────────── */
.content-rich p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 18px; }
.content-rich p:last-child { margin-bottom: 0; }
.content-rich strong { color: var(--navy); font-weight: 600; }
.content-rich a { color: var(--accent); border-bottom: 1px solid rgba(61,122,181,.3); transition: border-color .18s; }
.content-rich a:hover { border-color: var(--accent); }
.content-rich h2 { font-size: 24px; margin: 36px 0 16px; color: var(--navy); }

/* ── Reveal animations ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--navy-dp);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-block { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.footer-logo-img { width: 140px; height: auto; filter: brightness(0) invert(1); opacity: .7; }
.footer-brand { font-family: var(--fh); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #fff; margin-top: 12px; }
.footer-brand-full { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.3); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.75; margin-bottom: 20px; max-width: 320px; }
.footer-phone { font-family: var(--fh); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: .04em; display: block; margin-bottom: 4px; }
.footer-phone-label { font-size: 10px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .1em; }
.footer-col h4 {
  font-family: var(--fh); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .18s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,.2); letter-spacing: .03em;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .18s; }
.footer-bottom a:hover { color: #fff; }

/* ── Float phone ────────────────────────────────────────────── */
.float-phone {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--navy); color: #fff;
  font-family: var(--fh); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 20px; border-radius: 100px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 4px 20px rgba(43,52,74,.4);
  transition: all .2s;
  animation: fadeUp .6s 1s ease both; opacity: 0;
}
.float-phone:hover { background: var(--navy-d); transform: scale(1.03); }

/* ── Avantages numbered ─────────────────────────────────────── */
.avantages { display: flex; flex-direction: column; }
.avantage-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.avantage-row:last-child { border: none; }
.avantage-num {
  font-family: var(--fh); font-size: 36px; font-weight: 700;
  color: rgba(255,255,255,.1); line-height: 1; flex-shrink: 0; width: 50px;
  transition: color .3s;
}
.avantage-row:hover .avantage-num { color: rgba(255,255,255,.25); }
.avantage-title {
  font-family: var(--fh); font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: 4px;
}
.avantage-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .city-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .menu-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 12px;
    gap: 2px; border-top: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 300;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; font-size: 14px; }
  .nav-phone-block { display: none; }
  .btn-nav-cta { display: none; }
  .site-header { position: sticky; top: 0; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 300px; order: -1; }
  .hero-right-grid { position: relative; inset: auto; height: 300px; }
  .hero-left { padding: 36px 20px 48px; }
  .hero-logo-big svg { width: 140px; }
  .hero-logo-big-name { font-size: clamp(28px,7vw,44px); }
  .hero-services { display: none; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-van-badge { display: none; }

  /* Page hero */
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: clamp(26px,5.5vw,40px); }
  .page-hero-btns { flex-direction: column; }

  /* Sections */
  .section { padding: 56px 0; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse { direction: ltr; }
  .card-grid { grid-template-columns: 1fr; gap: 0; }
  .avis-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .blog-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .proof-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .van-strip { grid-template-columns: 1fr; }
  .van-strip-img { min-height: 200px; }
  .cta-band { padding: 48px 0; }
  .cta-band .btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .brand-hero-inner { flex-direction: column; text-align: center; }
  .brand-divider { width: 80px; height: 1px; }
  .float-phone { bottom: 14px; right: 14px; padding: 11px 16px; font-size: 12px; }
}

@media (max-width: 480px) {
  .city-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .nav-logo-text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Logo corrections removed — logo now visible in nav */


.hero-brand-center{text-align:left;margin:10px 0 25px}
.hero-brand-center img{max-width:180px;height:auto}
