/* ============================
   HERO IMMERSIF (photo plein écran)
   ============================ */
.hero-immersif {
  position: relative;
  min-height: clamp(520px, 85vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: clamp(36px, 6vw, 80px) 24px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.hero-immersif__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-immersif__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-immersif::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.18) 35%,
    rgba(0,0,0,.62) 100%);
}
.hero-immersif__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}
.hero-eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.hero-immersif__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  color: #fff;
  margin-bottom: 16px;
}
.hero-immersif__sub {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: rgba(255,255,255,.9);
  margin: 16px 0 28px;
  max-width: 52ch;
  line-height: 1.6;
}
.hero-immersif__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .hero-immersif {
    min-height: 82vh;
    padding: calc(var(--header-h-mobile) + 28px) 20px 44px;
    align-items: flex-end;
    border-radius: 0 0 16px 16px;
  }
  .hero-immersif__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-immersif__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================
   RÉALISATIONS
   ============================ */
.realisations-section { padding-bottom: clamp(32px, 5vw, 64px); }
.realisations-header { margin-bottom: 36px; }
.realisations-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* About embed dans realisations */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-text { }
.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
}
.about-text .about-intro {
  color: var(--text);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-top: 36px;
  }
}

/* ============================
   SERVICES
   ============================ */
.services-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 22ch;
  margin-bottom: 8px;
}
.services-section .svc-grid { margin-top: 40px; }

/* ============================
   AVIS
   ============================ */
.avis-section .avis-cards { margin-top: 36px; }
.avis-section .lien-google {
  display: block;
  text-align: center;
  margin-top: 32px;
}

/* ============================
   STATS STRIP (TEX-6 OKLCH)
   ============================ */
.stats-strip {
  background:
    radial-gradient(60% 60% at 15% 50%, color-mix(in oklab, var(--accent) 12%, var(--bg)) 0%, transparent 60%),
    radial-gradient(50% 80% at 85% 30%, color-mix(in oklab, var(--accent) 8%, var(--bg)) 0%, transparent 55%),
    var(--bg-alt);
  padding: clamp(36px, 6vw, 64px) 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mute);
  max-width: 20ch;
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-sep { display: none; }
}

/* ============================
   FAQ
   ============================ */
.faq-section { }
.faq-section h2 { margin-bottom: 32px; }

/* ============================
   CONTACT
   ============================ */
.contact-section h2 { margin-bottom: 8px; }
.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-cols { grid-template-columns: 1fr; gap: 32px; }
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-cta-group { display: flex; flex-direction: column; gap: 12px; }
.contact-cta-group .btn { justify-content: center; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  color: var(--text);
}
.contact-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

.horaires-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-top: 16px;
}
.horaires-table th,
.horaires-table td {
  padding: 9px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.horaires-table th {
  font-weight: 500;
  color: var(--text-2);
  width: 40%;
}
.horaires-table td { color: var(--text); }
.horaires-table tr.is-today th,
.horaires-table tr.is-today td { color: var(--accent); font-weight: 600; }
.horaires-table tr.is-closed td { color: var(--text-mute); }

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 12px;
}
.open-status.is-open { background: oklch(95% 0.06 145); color: oklch(35% 0.12 145); }
.open-status.is-closed { background: oklch(95% 0.04 25); color: oklch(40% 0.1 25); }
.open-status-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field.full-width { grid-column: 1 / -1; }

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-notice {
  font-size: .8rem;
  color: var(--text-mute);
}
.form-success {
  display: none;
  background: oklch(95% 0.06 145);
  color: oklch(32% 0.12 145);
  border-radius: var(--r-md);
  padding: 16px;
  font-size: .95rem;
}
.form-success.is-visible { display: block; }

.map-wrapper {
  margin-top: 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}
@media (max-width: 768px) {
  .map-wrapper { margin-top: 32px; }
  .map-wrapper iframe { height: 260px; }
}

/* Zone chips */
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.zone-chip {
  background: var(--accent-soft);
  color: oklch(35% 0.1 145);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: .82rem;
  font-weight: 500;
}

/* ============================
   MODAL MENTIONS LÉGALES
   ============================ */
#ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.ml-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.ml-box h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.ml-content p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.ml-content strong { color: var(--text); font-weight: 600; }
.ml-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-alt);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text);
  transition: background var(--t-base);
}
.ml-close:hover { background: var(--border); }
