/* Inter — latin-ext */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter — latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Playfair Display — latin-ext */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/playfair-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Playfair Display — latin */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/playfair-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #111;
  --white: #fff;
  --off-white: #f7f7f5;
  --gray: #666;
  --gray-light: #999;
  --gray-border: #e0e0e0;
  --accent: #2a2a2a;
  --max-width: 1200px;
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: 80px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.logo {
  display: none;
}

.header-phone {
  display: none;
  visibility: hidden;
  width: 0;
  overflow: hidden;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 36px;
}

nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  color: var(--black);
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width 0.4s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover {
  color: var(--gray);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 40px 80px;
}

.hero-logo {
  width: 210px;
  margin: 0 auto 48px;
  filter: invert(1) brightness(2);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 strong {
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-values {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 48px;
}

.hero-value {
  text-align: center;
}

.hero-value .number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.hero-value .label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.4);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════
   BUTTONS
   ═══════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1.5px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.btn--dark {
  border-color: var(--black);
  color: var(--black);
}

.btn--dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn--filled {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn--filled:hover {
  background: transparent;
  color: var(--black);
}

/* Bouton d'appel (téléphone) — page locale */
.btn-call {
  display: inline-block;
}
.btn-call a {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.btn-call a:hover {
  background: transparent;
  color: var(--white);
}

/* ═══════════════════════════════════
   SECTIONS
   ═══════════════════════════════════ */
section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-title strong {
  font-weight: 700;
}

.section-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-text {
  margin: 0 auto;
}

/* ═══════════════════════════════════
   A PROPOS (split layout)
   ═══════════════════════════════════ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images .img-wrapper {
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 3/4;
}

.about-images .img-wrapper:nth-child(2) {
  margin-top: 40px;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  cursor: pointer;
}

.about-images .img-wrapper:hover img {
  transform: scale(1.04);
}

.about-content .section-label {
  text-align: center;
}

.about-content .section-title {
  text-align: center;
}

.about-name {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-divider {
  display: none;
}

.about-role {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-top: 12px;
  white-space: nowrap;
}

.about-role::before,
.about-role::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

.about-content .section-text {
  text-align: justify;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════
   ÉTAPES (process steps)
   ═══════════════════════════════════ */
.steps {
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--black);
  stroke-width: 1.2;
  fill: none;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--gray-border);
}

.step:last-child::after {
  display: none;
}

/* ═══════════════════════════════════
   SERVICES
   ═══════════════════════════════════ */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-border);
  border: 1px solid var(--gray-border);
}

.service-card {
  padding: 48px 36px;
  background: var(--white);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--off-white);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--black);
  color: var(--white);
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--black);
  stroke-width: 1.5;
  fill: none;
  transition: var(--transition);
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════
   GALERIE / RÉALISATIONS
   ═══════════════════════════════════ */
.gallery {
  background: var(--off-white);
}

/* ── Grille de projets ── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-grid[hidden] {
  display: none;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--gray-border);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}


.project-card-img {
  width: 100%;
  height: 100%;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.project-card:hover .project-card-img img {
  transform: scale(1.06);
}

.project-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: var(--white);
}

.project-card-info h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-card-count {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ── Vue projet (switch) ── */
.project-view {
  animation: fadeIn 0.3s ease;
}

.project-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--gray);
  padding: 0;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.project-back:hover {
  color: var(--black);
}

.project-back svg {
  width: 18px;
  height: 18px;
}

.project-view-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 32px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Toggle Avant/Après ── */
.ba-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.ba-toggle-inner {
  display: inline-flex;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  position: relative;
}

.ba-toggle-inner button {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 32px;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s;
}

.ba-toggle-inner button.active {
  color: var(--white);
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--black);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-slider.right {
  transform: translateX(100%);
}

.ba-grid-fade {
  transition: opacity 0.3s ease;
}

.ba-grid-fade.fading {
  opacity: 0;
}

/* ── Vidéos dans la galerie ── */
.gallery-item video.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  pointer-events: none;
  background: var(--black);
}

.gallery-item .gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}

.gallery-item:hover .gallery-play {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-item .gallery-play svg {
  margin-left: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--gray-border);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.4s;
}

.gallery-item:hover .overlay {
  background: rgba(0, 0, 0, 0.3);
}

.gallery-item .overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay span {
  transform: translateY(0);
  opacity: 1;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-light);
  font-size: 0.85rem;
}

.gallery-placeholder svg {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  stroke: var(--gray-light);
  stroke-width: 1.2;
  fill: none;
}

/* ═══════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════ */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial {
  text-align: center;
  padding: 40px 24px;
}

.testimonial .quote-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gray-border);
  margin-bottom: 16px;
}

.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial .author {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial .location {
  font-size: 0.78rem;
  color: var(--gray-light);
}

/* ═══════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════ */
.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 80px 40px;
}

.cta-banner .section-title {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ═══════════════════════════════════
   CERTIFICATIONS
   ═══════════════════════════════════ */
.certifications {
  background: var(--off-white);
  padding: 60px 0;
}

.certif-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  align-items: center;
}

.certif-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.certif-item svg {
  width: 32px;
  height: 32px;
  stroke: var(--black);
  stroke-width: 1.2;
  fill: none;
  flex-shrink: 0;
}

.certif-item span {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════
   ZONE D'INTERVENTION
   ═══════════════════════════════════ */
.zone-section {
  background: var(--white);
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zone-map svg {
  width: 100%;
  height: auto;
  max-width: 440px;
}

.zone-map .dept {
  fill: var(--off-white);
  stroke: var(--gray-border);
  stroke-width: 1.5;
  transition: fill 0.3s;
}

.zone-map .dept.primary {
  fill: #e8e8e4;
}

.zone-map .dept:hover {
  fill: #ddd;
}

.zone-map .marker {
  fill: var(--black);
}

.zone-map .radius {
  fill: rgba(0, 0, 0, 0.04);
  stroke: var(--black);
  stroke-width: 1;
  stroke-dasharray: 6 4;
}

.zone-map .label {
  font-family: var(--font);
  font-size: 11px;
  fill: var(--gray);
  text-anchor: middle;
}

.zone-map .marker-label {
  font-family: var(--font);
  font-size: 10px;
  fill: var(--black);
  font-weight: 600;
}

.zone-info .section-label,
.zone-info .section-title,
.zone-info .section-text {
  text-align: left;
}

.zone-list {
  margin: 28px 0;
}

.zone-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.92rem;
  color: var(--black);
}

.zone-list li:last-child {
  border-bottom: none;
}

.zone-list .dept-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--off-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.zone-note {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.7;
}

.zone-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--gray-border);
}

.zone-box h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.zone-box ul {
  margin-bottom: 12px;
}

.zone-box li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 4px 0;
}

.zone-box .zone-note {
  font-size: 0.8rem;
  margin-top: 8px;
}

/* ═══════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════
   PRESTATIONS PAGE (dark cards)
   ═══════════════════════════════════ */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.presta-card {
  background: #2a2520;
  padding: 40px 28px;
  color: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.presta-card:hover {
  background: #352f29;
}

.presta-card .presta-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}

.presta-card .presta-icon svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 1;
  fill: none;
}

.presta-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.presta-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.65;
}

.prestations-section {
  background: #1e1a16;
  padding: 100px 0;
}

.prestations-section .section-title {
  color: var(--white);
}

.prestations-section .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.prestations-section .section-text {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .prestations-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--black);
  stroke-width: 1.5;
  fill: none;
}

.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--black);
}

.certif-box {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--gray-border);
}

.certif-box h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.certif-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certif-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
}

.certif-list li:last-child {
  margin-bottom: 0;
}

.certif-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--black);
  stroke-width: 1.5;
  fill: none;
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--gray-border);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--black);
}

.form-group input.invalid {
  border-color: #c0392b;
}

.form-group input.valid {
  border-color: #2d6a2d;
}

.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 6px;
}

.field-error[hidden] {
  display: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group label .required {
  color: #c0392b;
  font-weight: 600;
}

.form-required-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.form-required-note .required {
  color: #c0392b;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.cf-turnstile {
  margin-bottom: 20px;
}

.form-status {
  margin-bottom: 16px;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  border-radius: 4px;
  transition: opacity 0.3s, transform 0.3s;
}

.form-status:empty {
  display: none;
}

.form-status--success,
.form-status--error {
  padding: 18px 22px 18px 52px;
  position: relative;
}

.form-status--success::before,
.form-status--error::before {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  line-height: 1;
}

.form-status--success {
  background: #f0faf0;
  border-left: 3px solid #2d6a2d;
  color: #1e4d1e;
  font-weight: 500;
}

.form-status--success::before {
  content: "\2713";
  color: #2d6a2d;
}

.form-status--error {
  background: #fdf2f2;
  border-left: 3px solid #c0392b;
  color: #6b1c1c;
  font-weight: 500;
}

.form-status--error::before {
  content: "\2717";
  color: #c0392b;
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 0 32px;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 60px;
  filter: invert(1) brightness(2);
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.7;
}

footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  transition: color 0.3s;
}

footer a:hover {
  color: var(--white);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════
   CONTACT OBFUSCATION
   ═══════════════════════════════════ */
.protected {
  cursor: pointer;
}

.ct {
  unicode-bidi: bidi-override;
  direction: rtl;
}

/* ═══════════════════════════════════
   GALLERY CAPTIONS
   ═══════════════════════════════════ */
.gallery-caption {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ═══════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 80vw;
  max-height: 70vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: zoom-in;
}

.lightbox img.zoomed {
  cursor: grab;
}

.lightbox img.zoomed:active {
  cursor: grabbing;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-caption {
  color: var(--white);
  font-size: 0.9rem;
  margin-top: 20px;
  letter-spacing: 0.04em;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  header {
    height: 64px;
  }

  header .container {
    height: 64px;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .header-phone {
    display: flex;
    visibility: visible;
    width: auto;
    overflow: visible;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.02em;
  }

  .header-phone svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .header-phone a {
    color: var(--black);
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    padding: 0;
  }

  nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  nav li {
    border-bottom: 1px solid var(--gray-border);
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 20px 60px;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
  }

  nav a::after {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-values {
    flex-direction: column;
    gap: 20px;
  }

  .hero-value .number {
    font-size: 1.8rem;
  }

  .hero-logo {
    width: 140px;
    margin-bottom: 32px;
  }

  .hero-content {
    padding: 64px 20px 60px;
  }

  .btn {
    padding: 14px 32px;
    font-size: 0.78rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    order: -1;
  }

  .zone-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zone-map {
    order: -1;
    text-align: center;
  }

  .zone-map svg {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-content .section-text {
    font-size: 0.92rem;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .step {
    padding: 28px 16px;
  }

  .step-number {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .step h3 {
    font-size: 0.85rem;
  }

  .step p {
    font-size: 0.82rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    padding: 28px 16px;
  }

  .service-card h3 {
    font-size: 0.8rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-caption {
    transform: translateY(0);
    font-size: 0.7rem;
    padding: 6px 8px;
  }

  .lightbox img {
    max-width: 96vw;
    max-height: 60vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    z-index: 10;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }

  .lightbox-caption {
    font-size: 0.8rem;
    padding: 0 20px;
    text-align: center;
  }

  .lightbox-counter {
    font-size: 0.7rem;
  }

  .testimonials-grid {
    gap: 16px;
  }

  .testimonial {
    padding: 24px 16px;
  }

  .testimonial .quote-icon {
    font-size: 2.5rem;
  }

  .testimonial blockquote {
    font-size: 0.88rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 1.3rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding: 100px 0 48px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 0.85rem;
  }

  .certif-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .certif-item span {
    font-size: 0.78rem;
  }

  .cta-banner {
    padding: 48px 20px;
  }

  .cta-banner .section-title {
    font-size: 1.4rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
  }

  .certif-box {
    padding: 24px;
  }

  .presta-card {
    padding: 28px 20px;
  }

  .presta-card h3 {
    font-size: 0.9rem;
  }

  .presta-card p {
    font-size: 0.82rem;
  }

  .prestations-section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: 110px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card-info {
    padding: 14px;
  }

  .project-card-info h3 {
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images .img-wrapper:nth-child(2) {
    margin-top: 0;
  }
}

/* ═══════════════════════════════════
   PAGE LOCALE (Rennes & villes)
   ═══════════════════════════════════ */
.section-light { background: #f7f6f4; }
/* Sur fond clair, restaurer le texte foncé (sinon hérite du blanc de .prestations-section) */
.prestations-section.section-light .section-title { color: var(--black); }
.prestations-section.section-light .section-label { color: var(--gray); }
.prestations-section.section-light .section-text { color: var(--gray); }

/* Hero — badges de confiance */
.local-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.local-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.local-badges svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

/* Bande urgence — points clés */
.urgence-points {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 36px;
}
.urgence-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}
.urgence-point svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Communes — chips */
.commune-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.commune-chips span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  cursor: default;
}
.commune-chips span::before {
  content: '';
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23111' stroke-width='1.6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  opacity: 0.45;
  transition: var(--transition);
}
.commune-chips span:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.commune-chips span:hover::before {
  filter: invert(1) brightness(2);
  opacity: 1;
}

/* FAQ — accordéon élégant (fond sombre) */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 30px 76px 30px 0;
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
  list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: rgba(255, 255, 255, 0.75); }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  transition: var(--transition);
}
.faq-item summary:hover::after {
  border-color: #fff;
}
.faq-item[open] summary {
  color: #fff;
}
.faq-item[open] summary::after {
  content: '\2212';
  background: #fff;
  color: #1e1a16;
  border-color: #fff;
}
.faq-item p {
  padding: 4px 76px 32px 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  font-size: 1rem;
  animation: faq-reveal 0.4s ease;
}
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-item summary { font-size: 1.12rem; padding-right: 60px; }
  .faq-item summary::after { width: 40px; height: 40px; }
  .faq-item p { padding-right: 0; }
}

@media (max-width: 600px) {
  .local-badges { gap: 20px; }
  .commune-chips span { padding: 9px 16px; font-size: 0.82rem; }
}

/* ═══════════════════════════════════
   SECTION URGENCE (page locale)
   ═══════════════════════════════════ */
.urgence-section {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,255,255,0.04), transparent 70%),
    #0d0d0d;
  overflow: hidden;
}
.urgence-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.urgence-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}

/* Indicateur "Disponible" pulsant */
.urgence-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.urgence-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
  flex-shrink: 0;
}
.urgence-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0.5;
  animation: urgence-pulse 1.8s ease-out infinite;
}
@keyframes urgence-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Centrage du paragraphe d'intro urgence */
.urgence-inner .section-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Bouton d'appel avec lueur animée douce */
.urgence-call {
  display: inline-block;
  margin-top: 4px;
}
.btn-call--pulse a {
  animation: call-glow 2.2s ease-out infinite;
}
@keyframes call-glow {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .urgence-dot::after,
  .btn-call--pulse a { animation: none; }
}

/* ═══════════════════════════════════
   SECTION CONTENU LOCAL (page Rennes)
   ═══════════════════════════════════ */
.info-section {
  padding: 100px 0;
  background: var(--white);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.info-block {
  text-align: left;
}
.info-block .info-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}
.info-block .info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.4;
}
.info-block h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--black);
}
.info-block p {
  color: #444;
  font-size: 0.96rem;
  line-height: 1.8;
}

@media (max-width: 860px) {
  .info-grid { grid-template-columns: 1fr; gap: 40px; max-width: 560px; }
}

/* ═══════════════════════════════════
   BANDEAU CONSENTEMENT COOKIES
   ═══════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 920px;
  margin: 0 auto;
  background: #1e1a16;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: cookie-up 0.4s ease;
}
@keyframes cookie-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.cookie-text a {
  color: #fff;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 26px;
  cursor: pointer;
  border: 1.5px solid #fff;
  transition: var(--transition);
}
.cookie-refuse {
  background: transparent;
  color: #fff;
}
.cookie-refuse:hover {
  background: rgba(255, 255, 255, 0.12);
}
.cookie-accept {
  background: #fff;
  color: #1e1a16;
}
.cookie-accept:hover {
  background: rgba(255, 255, 255, 0.85);
}
@media (max-width: 600px) {
  .cookie-banner { padding: 18px; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 12px 16px; }
}
