/* sections.css — styles propres à chaque section */

/* ── EYEBROW (label de section) ─────────────────── */
.section-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

/* ── HERO (HERO-GRILLE-7-5) ──────────────────────── */
.hero-grid75 {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 96px) 24px clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-grid75__content { display: flex; flex-direction: column; }
.hero-grid75__eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-grid75__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-grid75__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  line-height: 1.03;
  color: var(--text);
  font-weight: 500;
}
.hero-grid75__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-2);
  opacity: 0.9;
  margin: 18px 0 28px;
  max-width: 44ch;
  line-height: 1.7;
}
.hero-grid75__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-grid75__media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-grid75__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SECTIONS COMMUNES ───────────────────────────── */
.section-services,
.section-realisations,
.section-avis,
.section-faq,
.section-zone,
.section-contact {
  padding: clamp(56px, 8vw, 100px) 0;
}
.section-services { background: var(--surface); }
.section-realisations { background: var(--bg); }
.section-avis { background: var(--bg-alt); }
.section-faq { background: var(--surface); }
.section-zone { background: var(--bg); }
.section-contact { background: var(--bg-alt); }

/* Titres h2 avec marge */
.section-services h2,
.section-realisations h2,
.section-avis h2,
.section-faq h2,
.section-zone h2,
.section-contact h2 {
  margin-bottom: 0.5rem;
}

/* ── STATS STRIP ─────────────────────────────────── */
.stats-strip {
  background: var(--accent);
  padding: clamp(36px, 5vw, 60px) 0;
}
.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-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
}

/* Séparateurs entre stats */
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.2);
}

/* ── ZONE D'INTERVENTION ─────────────────────────── */
.zone-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 2.5rem;
  align-items: start;
}
.zone-info { display: flex; flex-direction: column; gap: 32px; }
.zone-info h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 12px; }

.zone-list { display: flex; flex-direction: column; gap: 8px; }
.zone-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-2);
  padding: 8px 12px;
  background: var(--surface);
  border-radius: var(--r-sm);
}
.zone-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
}
.horaires-table tr {
  border-bottom: 1px solid var(--border);
}
.horaires-table td {
  padding: 9px 8px;
  font-size: 0.88rem;
  color: var(--text-2);
}
.horaires-table td:first-child { font-weight: 600; color: var(--text); width: 45%; }
.horaires-table tr.is-today td { color: var(--accent); font-weight: 700; }
.horaires-table tr.is-closed td { color: var(--text-mute); }
.horaires-table tr.is-today td:first-child { color: var(--accent); }

.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--text) 8%, transparent);
}
.map-wrapper iframe { display: block; }

.open-badge {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}
.open-badge.is-open  { background: color-mix(in srgb, #25a244 15%, transparent); color: #1a7a33; }
.open-badge.is-closed-now { background: color-mix(in srgb, #dc2626 12%, transparent); color: #b91c1c; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 2.5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: center; /* PIÈGE #3 : align-items center sur icône+texte */
  gap: 14px;
}
.contact-item svg { flex-shrink: 0; }
.contact-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 2px; }
.contact-value { font-size: 0.95rem; color: var(--text); font-weight: 600; }
a.contact-value:hover { color: var(--accent); }

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

/* À propos section (intégrée dans contact ou standalone) */
.section-about {
  background: var(--bg);
  padding: clamp(48px, 7vw, 80px) 0;
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.about-media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-content { display: flex; flex-direction: column; gap: 18px; }
.about-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-2);
}
.about-content p:first-of-type {
  font-family: var(--ff-display);
  font-size: 1.12rem;
  color: var(--text);
  font-style: italic;
}
