/* === STYLES DES SECTIONS === */

section { padding: clamp(48px,7vw,88px) 0; }

/* ---- HERO IMMERSIF ---- */
.hero-immersif {
  position: relative;
  min-height: clamp(520px, 88dvh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(40px,7vw,80px);
  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,.22) 40%,
    rgba(49,42,32,.72) 100%
  );
}
.hero-immersif__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(247,241,225,.82);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero-immersif__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem,6vw,4.4rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
}
.hero-immersif__title em {
  font-style: italic;
  color: var(--accent-2);
}
.hero-immersif__sub {
  font-size: clamp(.95rem,1.7vw,1.15rem);
  color: rgba(247,241,225,.88);
  max-width: 48ch;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-immersif__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: rgba(247,241,225,.55);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--ff-ui);
}

/* ---- SERVICES ---- */
.services-section { background: var(--bg-alt); }
.services-lead { font-size: .9rem; color: var(--text-2); margin-top: 10px; max-width: 52ch; }

/* ---- A PROPOS ---- */
.about-section { background: var(--bg); }

/* ---- REALISATIONS (teaser index) ---- */
.realisations-section { background: var(--bg-alt); }
.realisations-cta-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px,4vw,40px);
}

/* ---- AVIS ---- */
.avis-section { background: var(--bg); }
.avis-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(32px,5vw,48px);
}

/* ---- FAQ ---- */
.faq-section { background: var(--bg-alt); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px,6vw,80px);
  align-items: start;
}
.faq-aside h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-aside p { font-size: .88rem; color: var(--text-2); }

/* ---- ZONE ---- */
.zone-section { background: var(--bg); }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px,5vw,56px);
  align-items: start;
}
.zone-title-map { font-size: 1rem; font-weight: 600; font-family: var(--ff-ui); color: var(--text); margin-bottom: 12px; }

/* ---- CONTACT ---- */
.contact-section { background: var(--accent-dark); }
.contact-section .section-eyebrow { color: var(--accent-2); }
.contact-section .section-eyebrow::before { background: var(--accent-2); }
.contact-section .section-title { color: #F7F1E1; }
.contact-section .section-lead { color: rgba(247,241,225,.72); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
}
.contact-form-wrap .field label { color: rgba(247,241,225,.85); }
.contact-form-wrap .field input,
.contact-form-wrap .field textarea,
.contact-form-wrap .field select {
  background: rgba(247,241,225,.08);
  border-color: rgba(247,241,225,.2);
  color: #F7F1E1;
}
.contact-form-wrap .field input:focus,
.contact-form-wrap .field textarea:focus,
.contact-form-wrap .field select:focus {
  border-color: var(--accent-2);
}
.contact-form-wrap ::placeholder { color: rgba(247,241,225,.4); }
.contact-form-wrap .form-note { color: rgba(247,241,225,.45); }
.contact-cards-wrap { display: flex; flex-direction: column; gap: 14px; }
.contact-card--dark {
  background: rgba(247,241,225,.08);
  border-color: rgba(247,241,225,.15);
  color: #F7F1E1;
}
.contact-card--dark .contact-card__icon {
  background: rgba(107,122,58,.3);
  color: var(--accent-2);
}
.contact-card--dark .contact-card__label { color: rgba(247,241,225,.5); }
.contact-card--dark .contact-card__value { color: #F7F1E1; }
.contact-card--dark:hover { border-color: var(--accent-2); }
