/* ==========================================================================
   SEB CP Signature — Feuille de styles principale
   Identité visuelle : fond noir · or/champagne · bleu (plomberie) · rouge (chaleur)
   Inspirée directement du logo : typographie serif élégante, palette premium
   ========================================================================== */


/* ==========================================================================
   VARIABLES CSS
   ========================================================================== */
:root {
  /* --- Palette or (du logo) --- */
  --gold:           #C9A84C;
  --gold-light:     #E8C96B;
  --gold-dark:      #9A7C35;
  --gold-gradient:  linear-gradient(135deg, #9A7A2A 0%, #C9A84C 45%, #E8C96B 100%);
  --gold-shimmer:   linear-gradient(90deg, #9A7A2A, #C9A84C, #F0D060, #C9A84C, #9A7A2A);

  /* --- Accents logo --- */
  --blue:       #2E86C1;   /* goutte d'eau */
  --blue-soft:  rgba(46, 134, 193, 0.12);
  --red:        #D95F2B;   /* flamme */
  --red-soft:   rgba(217, 95, 43, 0.10);

  /* --- Fonds --- */
  --bg-0:    #080808;   /* fond le plus sombre */
  --bg-1:    #0d0d0d;   /* fond principal */
  --bg-2:    #141414;   /* sections alternées */
  --bg-3:    #1C1C1C;   /* cartes */
  --bg-card: #161616;

  /* --- Texte --- */
  --text-1:     #F2EDE0;   /* texte principal (blanc chaud) */
  --text-2:     #AFA89A;   /* texte secondaire */
  --text-3:     #6A6258;   /* texte discret */

  /* --- Bordures --- */
  --border-dim:    rgba(201, 168, 76, 0.15);
  --border-mid:    rgba(201, 168, 76, 0.35);
  --border-bright: rgba(201, 168, 76, 0.65);

  /* --- Typographies --- */
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* --- Espacements --- */
  --gap-xs:  0.4rem;
  --gap-sm:  0.8rem;
  --gap-md:  1.6rem;
  --gap-lg:  3.2rem;
  --gap-xl:  5.6rem;

  /* --- Rayons --- */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* --- Transitions --- */
  --t-fast:   0.2s ease;
  --t-base:   0.35s ease;
  --t-slow:   0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Ombres --- */
  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.18);
  --shadow-glow:  0 8px 40px rgba(201, 168, 76, 0.35);
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /* overflow-x: hidden sur html (et NON uniquement sur body) empêche body de
     devenir un scroll-container sur Chrome Android. Sans ça, position:fixed
     se positionne relativement au body (= page entière) et non au viewport,
     ce qui décale les éléments fixed vers le bas sur les pages longues. */
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-1);
  color: var(--text-1);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
a    { text-decoration: none; color: inherit; transition: color var(--t-base); }
strong { font-weight: 600; }
button { font-family: var(--font-sans); }

/* Focus visible accessible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}


/* ==========================================================================
   UTILITAIRES
   ========================================================================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

/* --- En-têtes de section --- */
.section-header        { text-align: center; margin-bottom: var(--gap-lg); }
.section-header--left  { text-align: left; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: var(--gap-xs);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.15;
  margin-bottom: var(--gap-sm);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-subtitle strong { color: var(--gold-light); }

.section-cta { text-align: center; margin-top: var(--gap-lg); }


/* ==========================================================================
   BOUTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Bouton or (CTA principal) */
.btn-gold {
  background: var(--gold-gradient);
  color: #080808;
  border-color: transparent;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #b8960c 0%, #d4af37 50%, #f0d060 100%);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: #080808;
}

/* Bouton contour */
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-mid);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

#navbar {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
  transition: background var(--t-base), box-shadow var(--t-base);
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gap-md);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo nav */
.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

/* Liens nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA nav */
.nav-cta {
  background: var(--gold-gradient) !important;
  color: #080808 !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--r-sm);
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.4);
  transform: translateY(-1px);
  color: #080808 !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px var(--gap-md) var(--gap-xl);
  background-color: var(--bg-0);
  position: relative;
  overflow: hidden;
}

/* Image de fond hero (low-opacity) */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

/* Halos décoratifs calqués sur les couleurs du logo */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow--gold {
  width: 700px; height: 500px;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
}
.hero-glow--blue {
  width: 350px; height: 350px;
  top: 35%; left: 40%;
  background: radial-gradient(ellipse, rgba(46, 134, 193, 0.06) 0%, transparent 70%);
}
.hero-glow--red {
  width: 300px; height: 300px;
  top: 30%; left: 58%;
  background: radial-gradient(ellipse, rgba(217, 95, 43, 0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-logo-wrap { margin-bottom: var(--gap-lg); }
.hero-logo {
  margin: 0 auto;
  max-width: 340px;
  width: 100%;
  /* PNG fond transparent : s’intègre au fond noir sans démarcation */
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: var(--gap-sm);
}
.title-sep { color: var(--gold); margin: 0 0.3em; }
.hero-title-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.4em;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  margin-bottom: var(--gap-sm);
  font-weight: 300;
}
.hero-tagline strong { color: var(--gold-light); font-weight: 500; }

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.8rem;
  font-size: 0.78rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--gap-lg);
}
.hero-services-list .sep { color: var(--gold-dark); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  justify-content: center;
}

/* Indicateur de scroll */
.hero-scroll {
  position: absolute;
  bottom: var(--gap-md);
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.45;
  transition: opacity var(--t-base);
  animation: bounceY 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 30px; height: 30px; }
.hero-scroll:hover { opacity: 0.9; }


/* ==========================================================================
   SECTIONS — base commune
   ========================================================================== */
section { padding: var(--gap-xl) 0; }


/* ==========================================================================
   SERVICES
   ========================================================================== */
.section-services { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  padding: var(--gap-md) calc(var(--gap-md) * 1.25);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-slow), transform var(--t-base);
}
/* Barre or gauche au survol */
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--t-base);
}
.service-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.service-card:hover::before { opacity: 1; }

/* Photo de couverture dans les cartes services */
.service-card-img {
  display: block;
  width: calc(100% + 2 * var(--gap-md) * 1.25);
  margin: calc(-1 * var(--gap-md)) calc(-1 * var(--gap-md) * 1.25) var(--gap-sm);
  height: 190px;
  object-fit: cover;
  border-radius: var(--r-md) var(--r-md) 0 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-img { transform: scale(1.05); }

.service-icon {
  width: 54px; height: 54px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--gap-sm);
  transition: background var(--t-base), border-color var(--t-base);
}
.service-card:hover .service-icon {
  background: rgba(201, 168, 76, 0.14);
  border-color: var(--border-mid);
}
.service-icon svg { width: 26px; height: 26px; color: var(--gold); }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: var(--gap-sm);
  line-height: 1.7;
}
.service-list { display: flex; flex-direction: column; gap: 0.35rem; }
.service-list li {
  font-size: 0.82rem;
  color: var(--text-3);
  padding-left: 1.3em;
  position: relative;
}
.service-list li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--gold-dark);
}


/* ==========================================================================
   RÉALISATIONS
   ========================================================================== */
.section-realisations { background: var(--bg-1); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-sm);
}
/* 1ère photo en vedette sur 2 colonnes */
.gallery-item:first-child { grid-column: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--border-dim);
  cursor: pointer;
  background: var(--bg-3);
  aspect-ratio: 4 / 3;
}
.gallery-item:first-child { aspect-ratio: 16 / 10; }

.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item:focus-within { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Légende en overlay */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: var(--gap-lg) var(--gap-sm) var(--gap-sm);
  transform: translateY(102%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; gap: 3px;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-caption-title {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600;
  color: var(--text-1);
}
.gallery-caption-sub { font-size: 0.78rem; color: var(--text-2); }


/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  cursor: zoom-out;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  max-width: 94vw;
  max-height: 94vh;
}

.lightbox-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.lightbox-img {
  max-width: 78vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 8px 60px rgba(0,0,0,0.9);
  border: 1px solid var(--border-dim);
}
.lightbox-caption {
  font-size: 0.85rem;
  color: var(--text-2);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid var(--border-mid);
  color: var(--gold-light);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close {
  position: absolute;
  top: -52px; right: 0;
  width: 42px; height: 42px;
  font-size: 1.6rem;
}
.lightbox-nav {
  width: 48px; height: 48px;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  transform: scale(1.05);
}

/* Lightbox mobile : flèches superposées sur l'image */
@media (max-width: 600px) {
  .lightbox-inner {
    flex-direction: column;
    gap: 0;
  }
  .lightbox-img {
    max-width: calc(100vw - 1.5rem);
    max-height: 72vh;
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    font-size: 1.6rem;
    z-index: 2;
    background: rgba(10, 10, 10, 0.8);
  }
  #lightboxPrev { left: 0.4rem; }
  #lightboxNext { right: 0.4rem; }
}


/* ==========================================================================
   POURQUOI NOUS
   ========================================================================== */
.section-pourquoi { background: var(--bg-2); }

.arguments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.argument-card {
  text-align: center;
  padding: var(--gap-md);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.argument-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.argument-icon {
  width: 66px; height: 66px;
  margin: 0 auto var(--gap-sm);
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base);
}
.argument-card:hover .argument-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--border-mid);
}
.argument-icon svg { width: 28px; height: 28px; color: var(--gold); }

.argument-title {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.argument-desc { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }
.argument-desc strong { color: var(--gold-light); font-weight: 500; }


/* ==========================================================================
   ZONE D'INTERVENTION
   ========================================================================== */
.section-zone { background: var(--bg-1); }

.zone-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--gap-lg);
  align-items: center;
}

.zone-intro {
  font-size: 0.98rem;
  color: var(--text-2);
  margin-bottom: var(--gap-md);
  line-height: 1.75;
}
.zone-intro strong { color: var(--gold-light); }

.zone-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem var(--gap-md);
  margin-bottom: var(--gap-md);
}
.zone-list li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 1.1em;
  position: relative;
}
.zone-list li::before {
  content: '●';
  position: absolute; left: 0;
  font-size: 0.45em; top: 0.45em;
  color: var(--gold);
}

.zone-note {
  font-size: 0.82rem;
  color: var(--text-3);
  font-style: italic;
  margin-bottom: var(--gap-md);
}

/* Carte Google Maps zone */
.zone-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  flex-shrink: 0;
  width: 420px;
  height: 380px;
}
.zone-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.05) saturate(1.1) brightness(0.92);
}

/* Badge visuel zone (fallback) */
.zone-visual { display: flex; align-items: center; justify-content: center; }

.zone-badge {
  position: relative;
  width: 200px; height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.3rem;
  color: var(--text-1);
  text-align: center;
}
.zone-badge svg {
  width: 36px; height: 36px;
  stroke: var(--gold);
  margin-bottom: 0.2rem;
}
.zone-badge-city {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.zone-badge-region {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Anneaux concentriques animés */
.zone-badge-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-dim);
  animation: ringPulse 3s ease-in-out infinite;
}
.zone-badge-ring--1 { width: 110px; height: 110px; animation-delay: 0s; }
.zone-badge-ring--2 { width: 158px; height: 158px; animation-delay: 0.8s; }
.zone-badge-ring--3 { width: 200px; height: 200px; animation-delay: 1.6s; }


/* ==========================================================================
   CONTACT
   ========================================================================== */
.section-contact { background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}

/* Bloc numéro de téléphone */
.contact-phone-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--gap-lg) var(--gap-md);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  gap: 0.5rem;
  transition: all var(--t-base);
}
.contact-phone-link:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.contact-phone-icon {
  width: 64px; height: 64px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.4rem;
}
.contact-phone-icon svg { width: 26px; height: 26px; color: #080808; }

.contact-phone-number {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.contact-phone-cta {
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Infos contact */
.contact-infos { display: flex; flex-direction: column; gap: var(--gap-md); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
}
.contact-info-icon {
  width: 38px; height: 38px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--gold); }

.contact-info-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-info-item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-1);
}
.contact-info-item span { font-size: 0.9rem; color: var(--text-2); }


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border-dim);
  padding: var(--gap-xl) 0 var(--gap-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}

.footer-logo { max-width: 200px; margin-bottom: var(--gap-sm); }
.footer-brand p { font-size: 0.85rem; color: var(--text-3); line-height: 1.75; }

.footer-nav strong,
.footer-services-list strong,
.footer-contact-info strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: var(--gap-sm);
}

.footer-nav ul,
.footer-services-list ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-nav a,
.footer-services-list li { font-size: 0.85rem; color: var(--text-3); }
.footer-nav a:hover { color: var(--gold-light); }

.footer-contact-info { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-phone {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: color var(--t-fast);
}
.footer-phone:hover { color: var(--gold); }
.footer-email {
  font-size: 0.82rem;
  color: var(--text-3);
  transition: color var(--t-fast);
}
.footer-email:hover { color: var(--gold-light); }
.footer-contact-info span { font-size: 0.82rem; color: var(--text-3); }

/* Masquer le bouton flottant quand le menu mobile est ouvert */
body.nav-open .floating-cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: var(--gap-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-3); }


/* ==========================================================================
   BOUTON FLOTTANT (appel rapide)
   ========================================================================== */
.floating-cta {
  position: fixed;
  z-index: 800;
  /* NE PAS ajouter transform/will-change ici : sur Chrome Android,
     cela casse le positionnement fixed (relatif à la page au lieu du viewport) */
}

.floating-btn {
  display: flex;
  align-items: center;
  background: var(--gold-gradient);
  color: #080808;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t-base);
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.5);
}
.floating-btn:hover { box-shadow: 0 8px 40px rgba(201, 168, 76, 0.7); }

.floating-icon svg { width: 21px; height: 21px; flex-shrink: 0; }

/* --- DESKTOP : onglet latéral droit --- */
@media (min-width: 768px) {
  .floating-cta {
    right: 0;
    bottom: 42%;
    transform: translateY(50%);
  }
  .floating-btn {
    flex-direction: row;
    padding: 0.75rem 0.9rem 0.75rem 0.85rem;
    border-radius: var(--r-md) 0 0 var(--r-md);
    gap: 0.6rem;
    /* Légèrement masqué par défaut, glisse au survol */
    transform: translateX(calc(100% - 56px));
    transition: transform var(--t-base), box-shadow var(--t-base);
  }
  .floating-btn:hover {
    transform: translateX(0) !important;
    box-shadow: -4px 6px 32px rgba(201, 168, 76, 0.55);
  }
  .floating-icon {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .floating-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 110px;
    opacity: 0;
    transition: opacity var(--t-base);
  }
  .floating-btn:hover .floating-text { opacity: 1; }
  .floating-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.8;
  }
  .floating-number {
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
  }
}

/* --- MOBILE : bouton rond en bas à droite --- */
@media (max-width: 767px) {
  .floating-cta {
    right: 1.2rem;
    /* env(safe-area-inset-bottom) couvre l'indicateur home iPhone + toolbar Safari
       La valeur de repli 0px s'applique aux appareils sans safe area (Android).
       viewport-fit=cover (dans le meta viewport) est nécessaire pour iOS. */
    bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
  }
  .floating-btn {
    padding: 0.9rem 1.4rem;
    border-radius: 50px;
    gap: 0.55rem;
    animation: floatPulse 2.8s ease-in-out infinite;
  }
  .floating-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .floating-label { font-size: 0.82rem; font-weight: 700; }
  .floating-number { font-size: 0.72rem; opacity: 0.85; }
}


/* ==========================================================================
   ANIMATIONS AU SCROLL (Intersection Observer)
   ========================================================================== */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Décalage en cascade pour les grilles */
.reveal-item:nth-child(2) { transition-delay: 0.10s; }
.reveal-item:nth-child(3) { transition-delay: 0.20s; }
.reveal-item:nth-child(4) { transition-delay: 0.30s; }
.reveal-item:nth-child(5) { transition-delay: 0.40s; }


/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.4;  transform: scale(1.04); }
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 28px rgba(201, 168, 76, 0.5); }
  50%       { box-shadow: 0 6px 40px rgba(201, 168, 76, 0.75); }
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ----- Tablette paysage (≤ 1100px) ----- */
@media (max-width: 1100px) {
  .arguments-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: repeat(2, 1fr); }
  .zone-content     { grid-template-columns: 1fr; }
  .zone-visual      { display: none; }
  .zone-map         { width: 100%; height: 320px; }
}

/* ----- Tablette portrait (≤ 900px) ----- */
@media (max-width: 900px) {
  .services-grid    { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
}

/* ----- Mobile (≤ 768px) ----- */
@media (max-width: 768px) {
  :root {
    --gap-lg: 2.6rem;
    --gap-xl: 4rem;
  }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    /* position: absolute (pas fixed) pour éviter le bug iOS Safari
       "nested fixed" — le parent <header> étant déjà fixed,
       le menu reste visuellement fixe sans le bug de scroll */
    position: absolute;
    top: 100%;   /* juste sous le bas du <header> = 80px du haut */
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-dim);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--gap-md);
    gap: var(--gap-sm);
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform var(--t-base), visibility 0s var(--t-base);
  }
  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--t-base), visibility 0s;
  }
  .nav-links a { font-size: 0.95rem; }
  .nav-cta { width: 100%; justify-content: center; }

  /* Hero */
  .hero-logo     { max-width: 260px; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Galerie */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; aspect-ratio: 4/3; }

  /* Zone */
  .zone-list { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ----- Mobile étroit (≤ 520px) ----- */
@media (max-width: 520px) {
  :root {
    --gap-md:  1.2rem;
    --gap-lg:  2.2rem;
    --gap-xl:  3.2rem;
  }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .arguments-grid { grid-template-columns: 1fr; }
  .zone-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-phone-number { font-size: 1.55rem; }
  .section-title { font-size: 1.75rem; }
}

/* ----- Impression ----- */
@media print {
  .floating-cta,
  #navbar,
  .lightbox,
  .hero-scroll { display: none; }
  body { background: #fff; color: #000; }
}


/* ==========================================================================
   TÉMOIGNAGES
   ========================================================================== */
.section-temoignages { background: var(--bg-1); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}

.temoignage-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  padding: var(--gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  transition: border-color var(--t-base), transform var(--t-base);
  margin: 0;
}
.temoignage-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.temoignage-stars {
  display: flex;
  gap: 3px;
}
.temoignage-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.temoignage-text {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  quotes: "\201C" "\201D";
}

.temoignage-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--gap-sm);
  border-top: 1px solid var(--border-dim);
}
.temoignage-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-1);
}
.temoignage-lieu {
  font-size: 0.78rem;
  color: var(--text-3);
}

@media (max-width: 900px) {
  .temoignages-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   À PROPOS — page dédiée
   ========================================================================== */
.apropos-hero {
  padding: calc(var(--nav-h, 80px) + var(--gap-xl)) 0 var(--gap-xl);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}
.apropos-hero .page-hero-bg-img {
  opacity: 0.07;
  object-position: center top;
}
.apropos-intro {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--gap-xl);
  align-items: start;
  margin-top: var(--gap-lg);
}

/* ── Carte identité artisan ── */
.apropos-id-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  padding: var(--gap-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  position: relative;
  overflow: hidden;
}
.apropos-id-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.apropos-id-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(201,168,76,0.10);
  border: 2px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.apropos-id-avatar span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.apropos-id-name {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.apropos-id-name strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-1);
}
.apropos-id-name span {
  font-size: 0.83rem;
  color: var(--gold-light);
  font-weight: 500;
}
.apropos-id-divider {
  width: 100%;
  height: 1px;
  background: var(--border-dim);
}
.apropos-id-stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.apropos-id-stats li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.apropos-id-stats li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.apropos-id-stats li div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.apropos-id-stats li strong {
  font-size: 0.88rem;
  color: var(--text-1);
  font-weight: 600;
}
.apropos-id-stats li span {
  font-size: 0.78rem;
  color: var(--text-3);
}

.apropos-text h1 { margin-bottom: var(--gap-sm); }
.apropos-text .section-label { margin-bottom: 0.4rem; }
.apropos-text p { color: var(--text-2); line-height: 1.8; margin-bottom: var(--gap-sm); }

.apropos-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}
.apropos-value-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  padding: var(--gap-md);
}
.apropos-value-card h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.apropos-value-card p { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; }

.apropos-qualifications {
  background: var(--bg-2);
  border-radius: var(--r-md);
  padding: var(--gap-lg);
  margin-top: var(--gap-lg);
  border: 1px solid var(--border-dim);
}
.apropos-qualifications h2 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  margin-bottom: var(--gap-md);
}
.apropos-qual-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-sm);
  list-style: none;
  padding: 0;
}
.apropos-qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.apropos-qual-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .apropos-intro { grid-template-columns: 1fr; }
  .apropos-id-card { max-width: 360px; margin: 0 auto; width: 100%; }
  .apropos-values-grid { grid-template-columns: 1fr; }
  .apropos-qual-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   AJOUTS MULTI-PAGES — styles partagés pour les pages internes
   (Phase 1 — utilisés à partir de la Phase 2)
   ========================================================================== */

/* --- Lien actif aria-current (pages.js) --- */
.nav-links a[aria-current="page"] {
  color: var(--gold-light);
}
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* --- Lien mentions légales footer --- */
.footer-legal-link {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 0.5rem;
  transition: color var(--t-fast);
}
.footer-legal-link:hover { color: var(--gold); }

/* --- Hero page interne (remplace la section #accueil one-page) --- */
.page-hero {
  padding: calc(var(--nav-h, 80px) + var(--gap-xl)) var(--gap-md) var(--gap-xl);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    var(--bg-1);
  border-bottom: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}

/* Image de fond hero pages internes */
.page-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero .page-hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--gap-sm);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--gap-sm);
  color: var(--text-1);
}

.page-hero .page-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto var(--gap-md);
  line-height: 1.6;
}

.page-hero .page-hero-actions {
  display: flex;
  gap: var(--gap-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--gap-sm) 0;
  font-size: 0.82rem;
  color: var(--text-3);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--text-3);
  margin-right: 0.3rem;
}

.breadcrumb a {
  color: var(--text-2);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--gold); }

.breadcrumb [aria-current="page"] {
  color: var(--gold-light);
}

/* --- Section intro page interne --- */
.section-intro {
  padding: var(--gap-lg) 0;
}

.section-intro-text {
  max-width: 760px;
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
}

.section-intro-text strong { color: var(--text-1); }

/* --- Grille de prestations (pages services) --- */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap-md);
  margin-top: var(--gap-md);
}

.prestation-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  padding: var(--gap-md) var(--gap-md) var(--gap-lg);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.prestation-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.prestation-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: var(--gap-sm);
}

.prestation-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}

.prestation-card p {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* --- Étapes numérotées --- */
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--gap-md);
  counter-reset: step;
  margin-top: var(--gap-md);
}

.step-item {
  position: relative;
  padding: var(--gap-md);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  counter-increment: step;
}

.step-item::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.step-item p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* --- Bloc FAQ --- */
.faq-list {
  max-width: 780px;
  margin: var(--gap-md) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-dim);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--gap-sm) 0;
  font-weight: 600;
  color: var(--text-1);
  font-size: 0.97rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-sm);
  transition: color var(--t-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--gold-light); }

.faq-item p {
  padding: 0 0 var(--gap-sm);
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* --- Bloc urgence (plomberie) --- */
.urgence-block {
  background: linear-gradient(135deg, rgba(217, 95, 43, 0.12) 0%, rgba(201, 168, 76, 0.06) 100%);
  border: 1px solid rgba(217, 95, 43, 0.3);
  border-radius: var(--r-lg);
  padding: var(--gap-lg) var(--gap-md);
  text-align: center;
  margin: var(--gap-lg) 0;
}

.urgence-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--text-1);
  margin-bottom: 0.5rem;
}

.urgence-block p {
  color: var(--text-2);
  margin-bottom: var(--gap-md);
}

/* --- Formulaire contact --- */
.form-contact {
  max-width: 620px;
  margin: var(--gap-md) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  color: var(--text-1);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23afa89a'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

/* --- Mentions légales --- */
.mentions-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--gap-xl) var(--gap-md);
}

.mentions-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: var(--gap-lg);
}

.mentions-content h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin: var(--gap-md) 0 0.5rem;
}

.mentions-content p,
.mentions-content ul {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.75;
}

.mentions-content a { color: var(--gold); }
.mentions-content a:hover { color: var(--gold-light); }

/* --- Responsive ajouts --- */
@media (max-width: 768px) {
  .page-hero .page-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .page-hero .page-hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .steps-list { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .prestations-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   GALERIE RÉALISATIONS — filtres
   ================================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: var(--gap-lg);
}

.filter-btn {
  padding: 0.45rem 1.25rem;
  border: 1px solid var(--border-dim);
  border-radius: 999px;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-base);
}
.filter-btn:hover {
  border-color: var(--border-bright);
  color: var(--text-1);
}
.filter-btn.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #000;
  font-weight: 600;
}

.gallery-item[hidden] { display: none; }

/* ================================================================
   PAGE CONTACT — two-column layout spécifique
   ================================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

.contact-info-block {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  padding: var(--gap-lg);
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--bg-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-info-value {
  font-size: 1rem;
  color: var(--text-1);
  font-weight: 500;
}
.contact-info-value a { color: var(--gold-light); }
.contact-info-value a:hover { color: var(--gold); }

.contact-highlight-tel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: var(--gap-md);
  background: var(--gold-gradient);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: opacity var(--t-base);
}
.contact-highlight-tel:hover { opacity: 0.9; }
.contact-highlight-tel svg { width: 28px; height: 28px; stroke: #000; }
.contact-highlight-tel span { color: #000; font-weight: 700; font-size: 1.1rem; }

@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PAGE MENTIONS LÉGALES (déjà défini mais ajout compléments)
   ================================================================ */
.mentions-section + .mentions-section {
  border-top: 1px solid var(--border-dim);
  margin-top: var(--gap-lg);
  padding-top: var(--gap-lg);
}
