/* ============================================================
   SECTIONS — hero, avis, services, galerie, stats, faq, contact
   ============================================================ */

/* ---- HERO-EDITORIAL-CENTRE ------------------------------- */
.hero-centre {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
  padding: calc(var(--header-h-mobile) + 40px) 20px clamp(28px, 4vw, 40px);
}

.hero-centre__eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero-centre__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.03;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-centre__title em {
  font-style: italic;
  color: var(--accent);
}

.hero-centre__sub {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: var(--text-2);
  margin: 0 auto 14px;
  max-width: 52ch;
  line-height: 1.6;
}

.hero-centre__rating {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.hero-centre__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* CTA mobile : empilés pleine largeur */
@media (max-width: 560px) {
  .hero-centre__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-centre__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-centre__band {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: clamp(32px, 5vw, 56px);
}

.hero-centre__band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-centre {
    padding-top: calc(var(--header-h-mobile) + 28px);
  }
  .hero-centre__band { aspect-ratio: 16 / 10; }
}

/* ---- SECTION AVIS (COMP-2 : avis juste après hero) ------- */
.section-avis {
  background: var(--bg-alt);
}

.avis-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}

/* carousel (LAY-4 : avis=carousel) */
.avis-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.avis-carousel::-webkit-scrollbar {
  height: 4px;
}
.avis-carousel::-webkit-scrollbar-thumb {
  background: var(--accent-2);
  border-radius: 2px;
}

.avis-carousel__item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: min(86vw, 380px);
}

.avis-footer {
  text-align: center;
  margin-top: 24px;
}

/* ---- SECTION SERVICES (list-sep) ------------------------ */
.section-services { background: var(--bg); }

.services-header {
  margin-bottom: clamp(28px, 4vw, 40px);
}

/* list-sep (LAY-4 : services=list-sep) */
.svc-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}

.svc-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.svc-list__item:last-child {
  border-bottom: 1px solid var(--border);
}

.svc-list__num {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--accent);
  font-style: italic;
  min-width: 2rem;
  padding-top: 2px;
}

.svc-list__body {}

.svc-list__title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
}

.svc-list__desc {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ---- SECTION RÉALISATIONS (galerie slider + lien) ------- */
.section-realisations { background: var(--bg-alt); }

.realisations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}

/* gallery = slider (LAY-4) */
.gal-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 40px,
    #000 calc(100% - 40px),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 40px,
    #000 calc(100% - 40px),
    transparent
  );
}

.gal-slider::-webkit-scrollbar { height: 4px; }
.gal-slider::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.gal-slider__item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(220px, 58vw, 340px);
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gal-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gal-slider__item:hover img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .gal-slider__item img { transition: none; }
  .gal-slider__item:hover img { transform: none; }
}

.realisations-footer {
  text-align: center;
  margin-top: 28px;
}

/* ---- SECTION STATS STRIP -------------------------------- */
.section-stats {
  background: var(--dark-bg);
  padding-block: clamp(40px, 6vw, 64px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 40px);
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--dark-text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--ff-ui);
  font-size: .83rem;
  color: color-mix(in srgb, var(--dark-text) 68%, transparent);
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.4;
}

@media (max-width: 560px) {
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
    gap: 28px;
  }
}

/* ---- SECTION À PROPOS (intégrée dans le contact) -------- */
.apropos-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--border);
}

.apropos-block__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.apropos-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apropos-block__content {}

.apropos-block__text {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 14px;
}

.apropos-block__text + .apropos-block__text { margin-top: 10px; }

.apropos-block__prenom {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  margin-top: 20px;
  display: block;
}

@media (max-width: 768px) {
  .apropos-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .apropos-block__photo { aspect-ratio: 16 / 9; }
}

/* ---- SECTION CONTACT ------------------------------------ */
.section-contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.contact-info {}

.contact-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.contact-cta-stack .btn {
  width: 100%;
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-top: 20px;
}

.horaires-table tr {
  border-bottom: 1px solid var(--border);
}

.horaires-table td {
  padding: 9px 4px;
  color: var(--text-2);
}

.horaires-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--text);
}

.horaires-table tr.is-today td {
  color: var(--accent);
  font-weight: 600;
}

.horaires-table tr.is-today td:first-child::before {
  content: "→ ";
}

.horaires-table tr.is-closed td {
  color: var(--text-mute);
}

/* Carte Google Maps */
.map-wrapper {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Zone d'intervention chips */
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.zone-chip {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--ff-ui);
}

/* ---- SECTION FAQ ---------------------------------------- */
.section-faq { background: var(--bg-alt); }

.faq-container {
  max-width: 760px;
  margin-inline: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}
