/* ===== HERO SPLIT (HERO-SPLIT) ===== */
.hero-section {
  padding-top: var(--header-h-mobile);
  background: var(--bg);
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 24px clamp(40px, 5vw, 72px);
}
.hero-split__content { display: flex; flex-direction: column; gap: 0; }

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

/* MOT-4 reveal-mask sur H1 */
.hero-split__title {
  font-family: var(--ff-display);
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  line-height: 1.04;
  color: var(--text);
  display: block;
  width: 100%;
  font-weight: 500;
}
.hero-split__title em {
  font-style: italic;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
  text-underline-offset: 4px;
}

.hero-split__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-2);
  line-height: 1.65;
  margin: 20px 0 22px;
  max-width: 46ch;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-split__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-split__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== A PROPOS ===== */
.about-section {
  background: var(--bg-alt);
  padding: var(--section-py) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.about-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}
.about-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  line-height: 1.35;
  margin-bottom: 16px;
}
.about-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.72;
}
.about-body p + p { margin-top: 12px; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
  font-family: var(--ff-ui);
}
.about-list li::before {
  content: '';
  display: inline-flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23557544' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2,6 5,9 10,3'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 8px 12px 40px color-mix(in srgb, var(--text) 14%, transparent);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-md);
  padding: 8px 14px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== SERVICES (grid-3, card risograph LAY-3) ===== */
.services-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}
.section-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-header .section-title { margin-top: 10px; }
.section-header .section-lead { margin-top: 12px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 22px);
}
.svc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.svc-icon {
  color: var(--accent);
  opacity: 0.75;
}
.svc-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
.svc-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}

/* Card foncée accent (5e prestation: dark) */
.svc-card.c-riso--dark h3 { color: var(--on-dark); }
.svc-card.c-riso--dark p { color: color-mix(in srgb, var(--on-dark) 78%, transparent); }
.svc-card.c-riso--dark .svc-num,
.svc-card.c-riso--dark .svc-icon { color: color-mix(in srgb, var(--on-dark) 65%, transparent); }

/* ===== REALISATIONS (gallery grid LAY-3 + lightbox) ===== */
.realisations-section {
  background: var(--bg-alt);
  padding: var(--section-py) 0;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: clamp(24px, 4vw, 40px);
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  aspect-ratio: 1/1;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.25s;
}
.gal-item:hover figcaption { opacity: 1; }

/* CTA card galerie (sans aspect-ratio fixe — PIÈGE PROD #6) */
.gal-cta-card {
  background: var(--accent-dark);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  min-height: 140px; /* pas d'aspect-ratio sur les cartes texte */
  text-align: center;
  text-decoration: none;
}
.gal-cta-card h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--on-dark);
  font-weight: 500;
}
.gal-cta-card .btn { font-size: 0.82rem; padding: 10px 18px; }

.gal-more-link {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ===== AVIS ===== */
.avis-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-alt);
  padding: var(--section-py) 0;
}
.faq-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: clamp(24px, 4vw, 40px);
}

/* ===== ZONE D'INTERVENTION ===== */
.zone-section {
  background: var(--bg);
  padding: var(--section-py) 0;
}
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: clamp(24px, 4vw, 40px);
}
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.zone-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 100px;
  padding: 5px 12px;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 600;
}
.zone-chip--main {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.hours-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.hours-table tr td {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.hours-table tr td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 40%;
  text-transform: capitalize;
}
.hours-table tr.is-today td { color: var(--accent); font-weight: 700; }
.hours-table tr.is-today td:first-child::after {
  content: ' ▸';
  color: var(--accent);
}
.hours-table tr.is-closed td { color: var(--text-mute); }

.map-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--accent-dark);
  padding: var(--section-py) 0;
  position: relative;
}
.contact-section :where(.eyebrow) { color: color-mix(in srgb, var(--on-dark) 55%, transparent); }
.contact-section :where(.section-title, h2) { color: var(--on-dark); }
.contact-section .section-lead { color: color-mix(in srgb, var(--on-dark) 75%, transparent); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: clamp(24px, 4vw, 40px);
}

.contact-rows { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--on-dark);
  transition: background 0.18s;
}
.contact-row:hover { background: rgba(255,255,255,0.12); text-decoration: none; color: var(--on-dark); }
.contact-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--on-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-row-body { display: flex; flex-direction: column; }
.contact-row-label {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--on-dark) 55%, transparent);
}
.contact-row-value {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--on-dark);
}

/* Formulaire contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--on-dark) 65%, transparent);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0; /* PIÈGE PROD #10 select overflow */
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--on-dark);
  transition: border-color 0.18s;
}
.form-group select {
  appearance: none;
  min-width: 0; /* PIÈGE PROD #10 */
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(246,240,230,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--on-dark) 55%, transparent);
}
.form-group textarea { min-height: 96px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
