/*
Theme Name: Uhlmann
Theme URI: https://entreprise-uhlmann.fr
Author: Maxime / PULS
Description: Landing page éditoriale premium pour Entreprise Uhlmann — couvreur · charpentier · zingueur à La Crau (Var). Inspiration Aesop × Hermès × Stripe : typographie Fraunces + Inter, palette terre cuite & ardoise sur fond papier crème, micro-animations lentes. KPI unique : sonnerie du téléphone.
Version: 2.0.0
License: Proprietary
Text Domain: uhlmann
Tags: artisan, couvreur, landing-page, editorial, premium
*/

/* ==========================================================================
   1 · TOKENS (variables CSS — palette stricte, typo, spacing, easings)
   ========================================================================== */

:root {
  /* ---------- Backgrounds ---------- */
  --bg-cream:        #F7F3EC;
  --bg-off-white:    #FCFAF6;
  --bg-deep:         #1A1A1A;

  /* ---------- Accent palette ---------- */
  --accent-terra:    #C5532B;
  --accent-terra-d:  #9E3F1F;
  --accent-slate:    #2F3E46;
  --accent-bois:     #B8956A;
  --accent-gold:     #C9A961;

  /* ---------- Text ---------- */
  --text-dark:       #1A1A1A;
  --text-muted:      #5C5C5C;
  --text-faint:      #A0A0A0;
  --text-on-dark:    #F7F3EC;

  /* ---------- Lines ---------- */
  --line-soft:       rgba(26, 26, 26, 0.08);
  --line-medium:     rgba(26, 26, 26, 0.18);
  --line-on-dark:    rgba(247, 243, 236, 0.15);

  /* ---------- Typography scale (clamp fluide) ---------- */
  --font-hero:       clamp(48px, 8vw, 112px);
  --font-section:    clamp(36px, 5vw, 72px);
  --font-sub:        clamp(20px, 2.5vw, 28px);
  --font-stat:       clamp(64px, 7vw, 120px);
  --font-body-lg:    clamp(17px, 1.5vw, 19px);
  --font-body:       16px;
  --font-small:      14px;
  --font-eyebrow:    12px;

  /* ---------- Spacing ---------- */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs:  12px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;
  --space-3xl: 144px;
  --space-4xl: 200px;

  /* ---------- Container ---------- */
  --container-max:   1280px;
  --container-pad:   32px;
  --container-pad-mobile: 20px;

  /* ---------- Motion ---------- */
  --ease-out-soft:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-soft:cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:        0.3s;
  --dur-base:        0.6s;
  --dur-slow:        1.2s;

  /* ---------- Header ---------- */
  --header-h:        72px;
}

/* ==========================================================================
   2 · RESET MINIMAL
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ==========================================================================
   3 · TYPOGRAPHIC BASE
   ========================================================================== */

.font-serif { font-family: 'Fraunces', Georgia, serif; }
.font-sans  { font-family: 'Inter', -apple-system, sans-serif; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.05;
}
h1 { font-size: var(--font-hero);    letter-spacing: -0.04em; line-height: 0.95; }
h2 { font-size: var(--font-section); letter-spacing: -0.03em; line-height: 1.05; }
h3 { font-size: var(--font-sub);     letter-spacing: -0.01em; line-height: 1.25; }

p { line-height: 1.65; color: var(--text-muted); }
p.lead {
  font-size: var(--font-body-lg);
  color: var(--text-dark);
  line-height: 1.7;
}

.italic { font-style: italic; }
.terra  { color: var(--accent-terra); }
.gold   { color: var(--accent-gold); }
.slate  { color: var(--accent-slate); }
.muted  { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: var(--font-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow .num { color: var(--accent-terra); }

/* ==========================================================================
   4 · LAYOUT HELPERS
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (max-width: 768px) {
  .container { padding-inline: var(--container-pad-mobile); }
}

.section {
  padding-block: var(--space-3xl);
}
@media (max-width: 768px) {
  .section { padding-block: 80px; }
}

.section--dark {
  background: var(--bg-deep);
  color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--dark p { color: rgba(247, 243, 236, 0.78); }
.section--dark .eyebrow { color: rgba(247, 243, 236, 0.55); }

.section--alt { background: var(--bg-off-white); }

/* Ornement utilisé devant les "engagements" — petite croix dorée */
.ornament {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-gold);
  transform: rotate(45deg);
  margin-right: 14px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ==========================================================================
   5 · TRAITEMENT ÉDITORIAL DES PHOTOS
   ========================================================================== */

.editorial-img {
  filter: contrast(1.05) saturate(0.92) brightness(1.02);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
}
/* Lazy reveal — flou qui se résorbe */
.editorial-frame img {
  filter: blur(16px) contrast(1.05) saturate(0.92);
  transform: scale(1.04);
  transition: filter var(--dur-slow) var(--ease-out-soft),
              transform var(--dur-slow) var(--ease-out-soft);
}
.editorial-frame img.is-loaded {
  filter: contrast(1.05) saturate(0.92) brightness(1.02);
  transform: scale(1);
}

/* ==========================================================================
   6 · BOUTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease-out-soft),
              background  0.4s var(--ease-out-soft),
              color       0.4s var(--ease-out-soft),
              box-shadow  0.4s var(--ease-out-soft);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Primaire — terra plein */
.btn-primary {
  background: var(--accent-terra);
  color: var(--bg-cream);
}
.btn-primary:hover {
  background: var(--accent-terra-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 83, 43, 0.4);
}

/* Secondaire — outline sombre (contexte fond clair, hors hero) */
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--bg-cream);
  transform: translateY(-2px);
}

/* CTA téléphone GRAND format (section finale) */
.btn-tel-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 480px;
  min-height: 80px;
  padding: 0 32px;
  background: var(--accent-terra);
  color: var(--bg-cream);
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  transition: background var(--dur-fast) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft),
              transform var(--dur-base) var(--ease-out-soft);
}
.btn-tel-xl svg { width: 28px; height: 28px; flex-shrink: 0; }
.btn-tel-xl:hover {
  background: var(--accent-terra-d);
  box-shadow: 0 0 0 8px rgba(197, 83, 43, 0.15);
  transform: translateY(-1px);
}

/* Focus visible AA */
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-terra);
  outline-offset: 3px;
}

/* ==========================================================================
   7 · ANIMATIONS — SCROLL REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-soft),
              transform 0.8s var(--ease-out-soft);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Reveal par mot ou par syllabe — sur les hero titles */
.split-line {
  display: block;
  overflow: hidden;
}
.split-line > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s var(--ease-out-soft),
              transform 0.8s var(--ease-out-soft);
  transition-delay: var(--line-delay, 0ms);
}
.split-line.is-visible > span {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax léger sur images */
.parallax {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* prefers-reduced-motion — coupe tout */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .split-line > span { opacity: 1; transform: none; }
  .parallax { transform: none !important; }
}

/* ==========================================================================
   8 · CURSOR — natif (curseur custom retiré sur demande)
   ========================================================================== */
.cursor { display: none !important; }

/* ==========================================================================
   9 · SR-ONLY (a11y)
   ========================================================================== */

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ==========================================================================
   10 · HEADER (sticky frosted)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(247, 243, 236, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out-soft),
              background var(--dur-fast) var(--ease-out-soft);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
}
.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (max-width: 768px) {
  .site-header .inner { padding-inline: var(--container-pad-mobile); }
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: var(--text-dark);
  text-decoration: none;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .brand-logo { height: 32px; }
}

.site-nav { display: flex; gap: var(--space-lg); }
.site-nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out-soft);
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--accent-terra);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out-soft);
}
.site-nav a:hover { color: var(--text-dark); }
.site-nav a:hover::after { transform: scaleX(1); }
@media (max-width: 980px) { .site-nav { display: none; } }

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent-terra);
  color: var(--bg-cream);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: background var(--dur-fast) var(--ease-out-soft);
}
.header-tel:hover { background: var(--accent-terra-d); }
.header-tel svg { width: 14px; height: 14px; }
.header-tel .tel-label { font-variant-numeric: tabular-nums; }
@media (max-width: 480px) {
  .header-tel .tel-label { display: none; }
  .header-tel { padding: 10px 12px; }
}

/* Sticky bottom tel on mobile (apparaît au scroll) */
.mobile-tel-fab {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent-terra);
  color: var(--bg-cream);
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.18);
  transition: transform 0.5s var(--ease-out-soft);
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
}
.mobile-tel-fab.is-visible { transform: translateX(-50%) translateY(0); }
.mobile-tel-fab svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .mobile-tel-fab { display: inline-flex; } }

/* ==========================================================================
   11 · HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Photo de fond (<picture>) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.05) saturate(0.95);
}

/* Overlay : sombre à gauche (texte) → transparent à droite (photo visible)
   + léger assombrissement haut/bas pour confort */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(20, 18, 14, 0.78) 0%,
      rgba(20, 18, 14, 0.55) 35%,
      rgba(20, 18, 14, 0.20) 65%,
      rgba(20, 18, 14, 0.00) 100%),
    linear-gradient(180deg,
      rgba(20, 18, 14, 0.30) 0%,
      rgba(20, 18, 14, 0.00) 50%,
      rgba(20, 18, 14, 0.40) 100%);
  pointer-events: none;
}

/* Conteneur du contenu — colonne gauche, max 720px */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.hero-content > * { max-width: 720px; }
@media (max-width: 768px) {
  .hero-content { padding: 0 var(--container-pad-mobile); }
  .hero-content > * { max-width: 100%; }
}

/* Eyebrow hero */
.hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.85);
  margin-bottom: 32px;
}

/* Titre H1 — cream sur overlay sombre */
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--bg-cream);
  margin: 0 0 40px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLineIn 0.9s var(--ease-out-soft) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.10s; }
.hero-title .line:nth-child(2) { animation-delay: 0.30s; }
.hero-title .line:nth-child(3) { animation-delay: 0.50s; }
.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: #E2724A; /* terra cuite lumineux pour fond sombre */
}

@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Sous-titre — cream, lisible */
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--bg-cream);
  max-width: 580px;
  margin: 0 0 48px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(20px);
  animation: heroLineIn 0.9s var(--ease-out-soft) 0.7s forwards;
}

/* CTAs hero */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroLineIn 0.9s var(--ease-out-soft) 0.85s forwards;
}

/* Secondaire dans le hero — bord cream visible */
.hero .btn-secondary {
  background: transparent;
  color: var(--bg-cream);
  border-color: rgba(247, 243, 236, 0.95);
}
.hero .btn-secondary:hover {
  background: var(--bg-cream);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(20, 18, 14, 0.50) 0%,
        rgba(20, 18, 14, 0.70) 50%,
        rgba(20, 18, 14, 0.85) 100%);
  }
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-title .line,
  .hero-subtitle,
  .hero-ctas {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   12 · SECTION 2 — PITCH ÉDITORIAL (2 colonnes)
   ========================================================================== */

.pitch { padding-block: var(--space-3xl); }
.pitch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (min-width: 900px) {
  .pitch-grid { grid-template-columns: 45% 1fr; gap: var(--space-3xl); }
}
@media (max-width: 768px) {
  .pitch-grid { padding-inline: var(--container-pad-mobile); }
}

/* Photo de l'artisan, portrait 4/5 */
.pitch-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-off-white);
}
.pitch-photo picture, .pitch-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Titre Fraunces italique */
.pitch-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: var(--space-md) 0 var(--space-lg);
}
.pitch-title em { font-style: italic; color: var(--accent-terra); }
.pitch-body { max-width: 560px; }
.pitch-body p {
  font-size: var(--font-body-lg);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.pitch-body p strong { color: var(--text-dark); font-weight: 600; }
.pitch-commits {
  list-style: none;
  padding: 0; margin: var(--space-xl) 0 0;
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.pitch-commits li {
  display: flex; align-items: center; gap: var(--space-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 16px;
  color: var(--text-dark);
}

/* ==========================================================================
   13 · SECTION 3 — SERVICES (grid éditoriale)
   ========================================================================== */

.services {
  padding-block: var(--space-3xl);
  background: var(--bg-off-white);
}
.services-head {
  max-width: var(--container-max);
  margin: 0 auto var(--space-3xl);
  padding-inline: var(--container-pad);
}
.services-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
  margin-top: var(--space-md);
}
.services-head h2 em { font-style: italic; color: var(--accent-terra); }
@media (max-width: 768px) {
  .services-head { padding-inline: var(--container-pad-mobile); }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl) var(--space-xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3xl) var(--space-2xl); }
}
@media (max-width: 768px) {
  .services-grid { padding-inline: var(--container-pad-mobile); }
}
.service { display: flex; flex-direction: column; gap: var(--space-md); }

/* Cartes service — IMAGES UNIFORMES (toutes la même taille / hauteur) */
.service-image,
.service-image picture {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #EFE9DD;
  display: block;
}
.service-image picture {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: contrast(1.05) saturate(0.95) brightness(1.02);
  transition: transform 0.9s var(--ease-out-soft);
}
.service:hover .service-image img { transform: scale(1.04); }

/* Mobile : ratio un peu plus carré pour limiter la hauteur, mais toujours uniforme */
@media (max-width: 768px) {
  .service-image,
  .service-image picture { aspect-ratio: 16 / 11; }
}

/* .feature = banderole pleine largeur, format cinéma 21/9 */
.service.feature { grid-column: 1 / -1; }
.service.feature .service-image,
.service.feature .service-image picture { aspect-ratio: 21 / 9; }
.service.feature .service-title { font-size: clamp(32px, 3.6vw, 56px); }
@media (max-width: 768px) {
  .service.feature .service-image,
  .service.feature .service-image picture { aspect-ratio: 16 / 9; }
}

.service-num {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-eyebrow);
  font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-terra);
}
.service-num .sep { color: var(--text-faint); margin: 0 6px; }
.service-num .label { color: var(--text-muted); }
.service-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.service-desc {
  color: var(--text-muted);
  font-size: var(--font-body-lg);
  line-height: 1.65;
  max-width: 52ch;
}

/* ==========================================================================
   14 · SECTION 4 — CHIFFRES CLÉS (bandeau dark)
   ========================================================================== */

.stats {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-block: var(--space-2xl);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
@media (min-width: 900px) {
  .stat + .stat { border-left: 1px solid var(--line-on-dark); }
}
@media (max-width: 899px) {
  .stat:nth-child(2n) { border-left: 1px solid var(--line-on-dark); }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-on-dark); }
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bg-cream);
  display: inline-flex; align-items: baseline; gap: 4px;
}
.stat-num .suffix {
  color: var(--accent-terra);
  font-size: 0.45em;
  font-weight: 600;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.55);
  margin-top: var(--space-md);
}

/* ==========================================================================
   15 · SECTION 5 — ZONE D'INTERVENTION (carte SVG + liste)
   ========================================================================== */

.zone {
  padding-block: var(--space-3xl);
  background: var(--bg-cream);
}
.zone-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 1000px) {
  .zone-inner { grid-template-columns: 1fr 1.2fr; gap: 80px; }
}
@media (max-width: 768px) {
  .zone-inner { padding-inline: var(--container-pad-mobile); }
}

.zone-text { max-width: 520px; }

/* Helpers réutilisables — gros titre + lead de section */
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}
.section-title em { font-style: italic; color: var(--accent-terra); }
.section-lead {
  color: var(--text-muted);
  font-size: var(--font-body-lg);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 52ch;
}

/* Liste des villes — dots dorés */
.zone-cities {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
}
.zone-cities li {
  position: relative;
  padding-left: 18px;
}
.zone-cities li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

/* La map Google — bordure subtile + ombre éditoriale */
.zone-map {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26, 26, 26, 0.08),
    0 24px 64px rgba(26, 26, 26, 0.12);
  border: 1px solid rgba(26, 26, 26, 0.06);
  filter: saturate(0.92) contrast(1.02);
}
.zone-map iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}
@media (max-width: 1024px) {
  .zone-map iframe { height: 440px; }
}
@media (max-width: 600px) {
  .zone-map iframe { height: 360px; }
  .zone-cities { grid-template-columns: 1fr; }
}

/* ==========================================================================
   16 · SECTION 6 — AVIS GOOGLE (sombre, éditorial)
   ========================================================================== */

.reviews {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-block: var(--space-3xl);
}
.reviews-head {
  max-width: var(--container-max);
  margin: 0 auto var(--space-3xl);
  padding-inline: var(--container-pad);
  text-align: center;
}
.reviews-head .eyebrow { color: rgba(247, 243, 236, 0.55); }
.reviews-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bg-cream);
  margin-top: var(--space-md);
  max-width: 18ch;
  margin-inline: auto;
}
.reviews-head h2 em { font-style: italic; color: #E2724A; }
@media (max-width: 768px) {
  .reviews-head { padding-inline: var(--container-pad-mobile); }
}

.reviews-list {
  display: flex; flex-direction: column;
  gap: var(--space-3xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}
@media (max-width: 768px) {
  .reviews-list { padding-inline: var(--container-pad-mobile); gap: var(--space-2xl); }
}
.review { max-width: 880px; margin: 0 auto; text-align: center; }
.review-stars {
  color: var(--accent-gold);
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: var(--space-lg);
}
.review-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.45;
  color: var(--bg-cream);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}
.review-author {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(247, 243, 236, 0.7);
}
.review-author strong { color: var(--bg-cream); font-weight: 500; }
.review-author .sep { margin: 0 8px; color: rgba(247, 243, 236, 0.3); }
.reviews-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}
.reviews-cta a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(247, 243, 236, 0.75);
  border-bottom: 1px solid rgba(247, 243, 236, 0.25);
  padding-bottom: 4px;
  letter-spacing: 0.04em;
  transition: color var(--dur-fast) var(--ease-out-soft),
              border-color var(--dur-fast) var(--ease-out-soft);
}
.reviews-cta a:hover {
  color: #E2724A;
  border-color: #E2724A;
}

/* ==========================================================================
   17 · SECTION 7 — CTA TÉLÉPHONE FINAL
   ========================================================================== */

.cta-final {
  background: var(--bg-cream);
  padding-block: var(--space-3xl);
  text-align: center;
}
.cta-final .container { display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
.cta-final h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: var(--space-lg);
}
.cta-final p.lead {
  color: var(--text-muted);
  font-size: var(--font-body-lg);
  max-width: 36ch;
  margin-bottom: var(--space-xl);
}
.cta-final .btn-tel-xl { margin: 0 auto; }
.cta-final-hours {
  margin-top: var(--space-lg);
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   18 · SECTION 8 — FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-cream);
  border-top: 1px solid var(--line-soft);
  padding: var(--space-2xl) 0 var(--space-xl);
  font-size: 14px;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1.2fr 1.2fr 1fr; gap: var(--space-2xl); }
}
@media (max-width: 768px) {
  .footer-grid { padding-inline: var(--container-pad-mobile); }
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: var(--space-2xs);
  line-height: 1;
}
.footer-brand .dot { color: var(--accent-terra); }
.footer-tag {
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-md);
}
.footer-list {
  list-style: none; padding: 0; margin: 0;
}
.footer-list li { margin-bottom: var(--space-2xs); line-height: 1.7; }
.footer-list a {
  color: var(--text-dark);
  transition: color var(--dur-fast) var(--ease-out-soft);
}
.footer-list a:hover { color: var(--accent-terra); }
.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .footer-bottom { padding-inline: var(--container-pad-mobile); }
}

.todo {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-terra);
  background: rgba(197, 83, 43, 0.10);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   19 · PAGES SEO (page.php) — prose + sidebar
   ========================================================================== */

.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 1000px) {
  .page-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: var(--space-3xl); align-items: start; }
}

.prose {
  font-size: var(--font-body-lg);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 68ch;
}
.prose h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: var(--space-2xl) 0 var(--space-md);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text-dark);
  letter-spacing: -0.015em;
  margin: var(--space-xl) 0 var(--space-sm);
}
.prose p { margin-bottom: var(--space-md); }
.prose p strong { color: var(--text-dark); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: var(--space-md); }
.prose li { margin-bottom: 6px; }
.prose a {
  color: var(--accent-terra);
  border-bottom: 1px solid rgba(197, 83, 43, 0.25);
  transition: border-color var(--dur-fast) var(--ease-out-soft);
}
.prose a:hover { border-color: var(--accent-terra); }
.prose .highlight {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-cream);
  border-left: 3px solid var(--accent-terra);
  border-radius: 2px;
  margin: var(--space-lg) 0;
  font-size: var(--font-body);
}
.prose .highlight strong { color: var(--accent-terra); }

.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}
@media (max-width: 999px) {
  .sidebar { position: static; }
}
.sidebar-card {
  background: var(--bg-cream);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: var(--space-md);
}
.sidebar-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-md);
}
.sidebar-card.sidebar-card-cta {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  border-color: transparent;
  text-align: center;
}
.sidebar-card.sidebar-card-cta h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--bg-cream);
}
.sidebar-card.sidebar-card-cta p {
  font-size: 14px;
  color: rgba(247, 243, 236, 0.75);
  margin-bottom: var(--space-md);
  line-height: 1.55;
}
.sidebar-card.sidebar-card-cta .btn { width: 100%; }
.sidebar-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
}
.sidebar-list li {
  display: flex; align-items: center;
  gap: var(--space-sm);
}
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li { margin-bottom: 6px; }
.sidebar-nav a {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out-soft),
              border-color var(--dur-fast) var(--ease-out-soft);
}
.sidebar-nav a:hover {
  color: var(--accent-terra);
  border-bottom-color: rgba(197, 83, 43, 0.3);
}
