/* ============================================================
   Détection Fuite Bordeaux — Design System v1
   Concept : Expertise Urbaine — propre, moderne, percutant
   Palette : Navy #0B1F40 · Orange #F97316 · Bleu #2563EB
   Police  : Plus Jakarta Sans (400 / 500 / 600 / 700 / 800)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy: #0b1f40;
  --navy-md: #1a3260;
  --blue: #2563eb;
  --blue-dk: #1d4ed8;
  --red: #f97316;
  --red-dk: #ea6c0a;
  --bg: #ffffff;
  --bg-alt: #fff7ed;
  --bg-dark: #0b1f40;
  --text: #0b1f40;
  --muted: #64748b;
  --border: #e8e0d8;
  --white: #ffffff;
  --f-body: "Plus Jakarta Sans", sans-serif;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 28px;
  --sh-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --sh-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --sh-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--f-body);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p {
  color: var(--muted);
  line-height: 1.75;
}

/* ── Boutons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--r-md);
  padding: 0.875rem 2rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-md);
  border-color: var(--navy-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.badge-red {
  background: rgba(249, 115, 22, 0.1);
  color: var(--red);
  border: 1px solid rgba(249, 115, 22, 0.25);
}
.badge-blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.25);
}
.badge-navy {
  background: rgba(30, 41, 59, 0.08);
  color: var(--navy);
  border: 1px solid rgba(30, 41, 59, 0.15);
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}
.logo {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition:
    color 0.15s,
    background 0.15s;
}
.site-nav a:hover {
  color: var(--navy);
  background: var(--bg-alt);
}
.site-nav a.btn-red {
  color: var(--white);
}
.site-nav a.btn-red:hover {
  color: var(--white);
  background: var(--red-dk);
}

.nav-toggle {
  display: none;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── Hero (split asymmetrique) ──────────────────────────────── */
.hero {
  background:
    linear-gradient(
      to right,
      rgba(11, 31, 64, 0.95) 45%,
      rgba(11, 31, 64, 0.6)
    ),
    url("/assets/images/bordeaux-hero.webp") center / cover no-repeat;
  min-height: 480px;
  display: grid;
  grid-template-columns: 55fr 45fr;
}
.hero-left {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem)
    clamp(3.5rem, 8vw, 6rem) clamp(1rem, 5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
}
.hero-left h1 {
  color: var(--white);
  margin: 1rem 0 1.25rem;
  line-height: 1.1;
}
.hero-left h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-right {
  background: rgb(24 22 32 / 48%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.125rem;
  padding: 2.5rem 2rem;
}

/* Ligne de statut */
.hero-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.1);
  }
}

/* Grille 2×2 stats */
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hero-kpi {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.hero-kpi:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(249, 115, 22, 0.35);
}
.hero-kpi-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-kpi-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.4;
}

/* Mini témoignage */
.hero-testi {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--red);
  border-radius: var(--r-lg);
  padding: 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-testi-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.hero-testi-text {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.hero-testi-author {
  font-size: 0.775rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Trust bar (sous le hero accueil) ───────────────────────── */
.trust-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.625rem 1.5rem;
  border-right: 1px solid var(--border);
  opacity: 0;
  transform: translateY(18px);
  animation: trustFadeUp 0.55s ease forwards;
}
.trust-item:last-child {
  border-right: none;
}
.trust-item:nth-child(1) {
  animation-delay: 0.05s;
}
.trust-item:nth-child(2) {
  animation-delay: 0.15s;
}
.trust-item:nth-child(3) {
  animation-delay: 0.25s;
}
.trust-item:nth-child(4) {
  animation-delay: 0.35s;
}
@keyframes trustFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.trust-item:hover .trust-icon {
  background: rgba(249, 115, 22, 0.25);
  border-color: rgba(249, 115, 22, 0.5);
}
.trust-icon {
  width: 46px;
  height: 46px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.trust-icon img {
  width: 21px;
  height: 21px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(1000%)
    hue-rotate(348deg) brightness(105%);
}
.trust-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.trust-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item:nth-child(2n) {
    border-right: none;
  }
  .trust-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}
@media (max-width: 480px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section-alt {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--bg-alt);
}
.section-dark {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--navy);
}
.section-red {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--red);
}

/* Contraste : textes sur fond alt chaud */
.section-alt h1,
.section-alt h2,
.section-alt h3,
.section-alt h4 {
  color: var(--navy);
}
.section-alt p {
  color: var(--muted);
}
.section-alt .section-eyebrow {
  color: var(--red-dk);
}
.section-alt .stat-card {
  background: var(--white);
}
.section-alt .service-card {
  background: var(--white);
}
.section-alt .guide-card {
  background: var(--white);
}

/* Contraste : textes sur fonds sombres */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}
.section-dark p {
  color: rgba(255, 255, 255, 0.65);
}
.section-dark .section-eyebrow {
  color: rgba(147, 197, 253, 0.9);
}
.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.65);
}
.section-dark .section-title {
  color: var(--white);
}

.section-red h1,
.section-red h2,
.section-red h3,
.section-red h4 {
  color: var(--white);
}
.section-red p {
  color: rgba(255, 255, 255, 0.85);
}
.section-red .section-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}
.section-red .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  margin-bottom: 3rem;
}
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-title {
  margin-bottom: 0.875rem;
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--muted);
}

/* ── Grilles ────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.875rem;
}

/* ── Service cards (gardees pour pages internes) ────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(1000%)
    hue-rotate(348deg) brightness(105%);
}
.service-card h3 {
  color: var(--navy);
}
.service-card p {
  font-size: 0.9375rem;
}
.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.service-card-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.service-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ── Service strips (pages internes, gardé) ─────────────────── */
.service-strip {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  align-items: start;
}
.service-strip + .service-strip {
  margin-top: 1.25rem;
}
.service-strip-icon {
  width: 56px;
  height: 56px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-strip-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(1000%)
    hue-rotate(348deg) brightness(105%);
}
.service-strip h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-strip p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.service-strip-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
}
.service-strip-link:hover {
  text-decoration: underline;
}

/* ── Photo strip (accueil) ───────────────────────────────────── */
.photo-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  background: var(--navy);
  height: 340px; /* < 467px hauteur native → pas d'upscale */
}
.photo-strip-col {
  flex: 0 0 calc(100% / 3);
  max-width: 700px;
  overflow: hidden;
  position: relative;
}
.photo-strip-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 64, 0.22);
  transition: opacity 0.35s;
  pointer-events: none;
}
.photo-strip-col:hover::after {
  opacity: 0;
}
.photo-strip-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}
.photo-strip-col:hover img {
  transform: scale(1.04);
}

/* ── Image banner (pages internes) ──────────────────────────── */
.img-banner {
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  max-width: 700px;
  margin: 0 auto;
}
.img-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.img-banner:hover img {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .photo-strip {
    flex-wrap: wrap;
  }
  .photo-strip-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .photo-strip-col:not(:first-child) {
    display: none;
  }
}

/* ── SVC Cards (section Nos services — accueil) ─────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.svc-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}
.svc-card-header {
  padding: 2.25rem 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.svc-card-header--orange {
  background: var(--red);
}
.svc-card-header--navy {
  background: var(--navy);
}
.svc-card-icon-wrap {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card-icon-wrap img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
.svc-card-num {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
}
.svc-card-body {
  background: var(--white);
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.svc-card-body h3 {
  font-size: 1.375rem;
  color: var(--navy);
}
.svc-card-body > p {
  font-size: 0.9375rem;
}
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.25rem 0 0.75rem;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.svc-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-card-header--orange ~ .svc-card-body .svc-features li::before {
  background: var(--red);
}
.svc-card-header--navy ~ .svc-card-body .svc-features li::before {
  background: var(--navy);
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Arg cards (numerotes) ──────────────────────────────────── */
.arg-num-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.arg-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(249, 115, 22);
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
}
.arg-num-content h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.arg-num-content p {
  font-size: 0.875rem;
}

/* ── Chiffres clés ──────────────────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.stat-card-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}
.stat-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.5rem;
  display: block;
}

/* ── Avis clients (reviews) ─────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  box-shadow: var(--sh-md);
  border-top: 4px solid var(--red);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.review-quote {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}
.review-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.review-text {
  font-size: 0.9375rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8125rem;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.review-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.3;
}
.review-location {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.review-verified {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--red);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Loc list (remplace loc-card pills) ─────────────────────── */
.loc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.loc-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--white);
  transition:
    background 0.15s,
    color 0.15s;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9375rem;
}
.loc-list-item:hover {
  background: var(--bg-alt);
  color: var(--blue);
}
.loc-list-item:nth-child(3n) {
  border-right: none;
}
.loc-list-cp {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.loc-list-arrow {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: auto;
  padding-left: 0.75rem;
}

/* ── Loc card (gardee pour sidebar voisins) ─────────────────── */
.loc-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    color 0.15s;
}
.loc-card:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.loc-card img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(1000%)
    hue-rotate(348deg) brightness(105%);
  opacity: 0.6;
}
.loc-card-cp {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

/* ── Guide cards ────────────────────────────────────────────── */
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.guide-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.guide-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-card-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(1000%)
    hue-rotate(348deg) brightness(105%);
}
.guide-card h3 {
  font-size: 1rem;
  color: var(--navy);
}
.guide-card p {
  font-size: 0.9rem;
}
.guide-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: auto;
}
.guide-card-link:hover {
  text-decoration: underline;
}

/* ── Formulaires ────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  width: 100%;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.form-select {
  background-color: var(--white);
  cursor: pointer;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Section formulaire dark ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
/* Styles sombres : uniquement dans section-dark */
.section-dark .contact-layout .form-label {
  color: rgba(255, 255, 255, 0.5);
}
.section-dark .contact-layout .form-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.section-dark .contact-layout .form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}
.section-dark .contact-layout .form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.section-dark .contact-layout .form-select {
  background-color: rgba(255, 255, 255, 0.06);
}
.section-dark .contact-layout .form-select option {
  background: var(--navy);
  color: var(--white);
}
/* check-list dans section sombre */
.section-dark .contact-check-list .contact-check {
  color: rgba(255, 255, 255, 0.7);
}
.section-dark .contact-title {
  color: var(--white);
}
.section-dark .contact-lead {
  color: rgba(255, 255, 255, 0.65);
}

.contact-title {
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-lead {
  color: var(--muted);
  font-size: 1.0625rem;
  margin-bottom: 1.75rem;
}
.contact-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.contact-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.contact-check img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(36%) sepia(72%) saturate(600%)
    hue-rotate(188deg) brightness(105%);
  flex-shrink: 0;
}

/* ── Page dédiée devis ──────────────────────────────────────── */
.devis-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

/* ── Hero mini (pages internes) ─────────────────────────────── */
.hero-mini {
  background:
    linear-gradient(rgba(11, 31, 64, 0.8), rgba(11, 31, 64, 0.8)),
    url("/assets/images/bordeaux-hero.webp") center / cover no-repeat;
  border-bottom: 3px solid var(--red);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.hero-mini h1 {
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  color: var(--white);
}
.hero-mini-lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.875rem;
  margin-bottom: 1.75rem;
  max-width: 620px;
  line-height: 1.65;
}
.hero-mini .breadcrumb {
  color: rgba(255, 255, 255, 0.5);
}
.hero-mini .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}
.hero-mini .breadcrumb span {
  color: rgba(255, 255, 255, 0.45);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--blue);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--muted);
}

/* ── Layout pages lieux ─────────────────────────────────────── */
.lieu-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.lieu-content h2 {
  margin: 2rem 0 0.875rem;
  font-size: 1.375rem;
}
.lieu-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.0625rem;
}
.lieu-content p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.lieu-content ul {
  margin: 0.75rem 0 1rem 1.25rem;
  list-style: disc;
}
.lieu-content ul li {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

/* ── Sidebar CTA card ───────────────────────────────────────── */
.lieu-sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
}
.lieu-cta-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--sh-md);
}
.lieu-cta-card h3 {
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.lieu-cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lieu-cta-card .form-label {
  color: var(--navy-md);
}

/* ── Maillage interne ───────────────────────────────────────── */
.maillage-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* ── Layout article guide ───────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.article-content h2 {
  margin: 2rem 0 0.875rem;
  font-size: 1.375rem;
}
.article-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.0625rem;
}
.article-content p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.article-content ul {
  margin: 0.75rem 0 1rem 1.25rem;
  list-style: disc;
}
.article-content ul li {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.aside-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: sticky;
  top: 84px;
}
.aside-cta h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.aside-cta h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.aside-cta p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.aside-cta .btn-outline {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}
.aside-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── FAQ ────────────────────────────────────────────────────── */
/* ── Mentions légales ───────────────────────────────────────── */
.mentions-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.mentions-block:first-child {
  padding-top: 0;
}
.mentions-block:last-child {
  border-bottom: none;
}
.mentions-block h2 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.875rem;
}
.mentions-block p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
}
.faq-answer {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #081221;
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.875rem;
}
.footer-logo span {
  color: var(--red);
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Sticky CTA mobile ──────────────────────────────────────── */
.sticky-cta-mobile {
  display: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lieu-layout {
    grid-template-columns: 1fr;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .devis-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .devis-form {
    order: 1;
  }
  .devis-arguments {
    order: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0;
    background: var(--white);
    padding: 1.5rem;
    z-index: 199;
    gap: 0.25rem;
    overflow-y: auto;
  }
  .site-nav.open {
    display: flex;
  }
  .nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-burger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-burger {
    display: flex;
  }
  .site-nav a {
    padding: 0.875rem 1rem;
    border-radius: var(--r-md);
    font-size: 1rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  /* Hero split */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    max-width: 100%;
    margin-left: 0;
  }
  .hero-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-testi {
    display: none;
  }
  /* KPI strip */
  .kpi-strip-inner {
    flex-wrap: wrap;
  }
  .kpi-strip-item {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--border);
  }
  /* Loc list */
  .loc-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc-list-item:nth-child(3n) {
    border-right: 1px solid var(--border);
  }
  .loc-list-item:nth-child(2n) {
    border-right: none;
  }
  /* Service strip */
  .service-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .sticky-cta-mobile {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0.875rem 1.25rem;
    padding-bottom: calc(0.875rem + env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  }
  .sticky-cta-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--red);
    color: var(--white);
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--r-md);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .sticky-cta-mobile a:active {
    opacity: 0.85;
  }
  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
  .loc-list {
    grid-template-columns: 1fr;
  }
  .loc-list-item:nth-child(2n) {
    border-right: none;
  }
  .loc-list-item:nth-child(3n) {
    border-right: none;
  }
  .loc-list-item {
    border-right: none !important;
  }
  .kpi-strip-item {
    flex: 1 1 100%;
  }
  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-testi {
    display: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .btn,
  .sticky-cta-mobile {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
    padding-bottom: 0;
  }
}
