/* ── HERO IMMERSIF (HERO-IMMERSIF) ── */
.hero-immersif {
  position: relative;
  min-height: 88dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h-mobile) + 32px) 20px 44px;
  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;
}

/* Voile gradient : lisibilité texte */
.hero-immersif::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.06) 0%,
      rgba(0,0,0,.30) 40%,
      rgba(0,0,0,.68) 100%);
}

.hero-immersif__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
}

.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
  display: block;
}

.hero-immersif__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.02;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 0;
}

.hero-immersif__title em {
  font-style: italic;
  color: oklch(80% 0.10 145);
}

.hero-immersif__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin: 18px 0 28px;
  max-width: 52ch;
}

/* Piège prod #2 : CTA empilés pleine largeur sur mobile */
.hero-immersif__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-immersif__cta .btn {
  width: 100%;
  justify-content: center;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--accent);
  padding: 40px 0;
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; gap: 6px; }

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-label {
  font-family: var(--ff-ui);
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
}

/* ── SERVICES (LAY-2 alt-rows) ── */
.section-services {
  background: var(--surface);
}

.svc-alt {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 80px);
}

.svc-alt__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.svc-alt__text { order: 2; }
.svc-alt__visual { order: 1; }

.svc-num {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: .04em;
  margin-bottom: 10px;
  display: block;
}

.svc-alt__text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.svc-alt__text p {
  font-size: .97rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 48ch;
}

.svc-alt__text .btn { margin-top: 20px; }

.svc-icon-wrap {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.svc-icon-wrap svg {
  width: 60%;
  height: 60%;
}

/* ── RÉALISATIONS (masonry galerie) ── */
.section-realisations { background: var(--bg); }

.gal-masonry {
  column-count: 2;
  column-gap: 10px;
}

.gal-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}

.gal-item img {
  width: 100%;
  display: block;
  transition: transform .4s var(--ease-out);
}

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

.gal-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.realisations-cta {
  text-align: center;
  margin-top: 32px;
}

/* ── À PROPOS ── */
.section-apropos { background: var(--surface); }

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.apropos-photo {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  order: -1;
}

.apropos-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.apropos-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  margin-bottom: 20px;
  color: var(--text);
}

.apropos-text p {
  font-size: .97rem;
  color: var(--text-2);
  line-height: 1.75;
}

.apropos-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.apropos-list li {
  display: flex;
  align-items: center; /* piège prod #3 */
  gap: 12px;
  font-size: .93rem;
  color: var(--text-2);
}

.apropos-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

/* ── AVIS (LAY-2 single) ── */
.section-avis { background: var(--bg); }

.avis-featured {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  border: 1px solid var(--border);
}

.avis-featured__stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 20px;
}

.avis-featured__stars svg {
  width: 20px;
  height: 20px;
  color: #f5a623;
}

.avis-featured__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.35;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

.avis-featured__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.avis-featured__name {
  font-family: var(--ff-ui);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
}

.avis-featured__date {
  font-size: .8rem;
  color: var(--text-mute);
}

/* Grille avis secondaires */
.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.avis-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.avis-card blockquote {
  margin: 10px 0 16px;
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
}

.avis-card .avis-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* piège prod #3 */
  gap: 8px 16px;
}

.avis-card .avis-author-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

.avis-card .avis-date {
  font-size: .8rem;
  color: var(--text-mute);
}

.avis-link-google {
  display: block;
  text-align: center;
  margin-top: 32px;
  font-family: var(--ff-ui);
  font-size: .9rem;
  color: var(--accent);
  text-decoration: underline;
}

.avis-link-google:hover { color: var(--text); }

/* ── FAQ ── */
.section-faq { background: var(--surface); }

/* ── ZONE ── */
.section-zone { background: var(--bg); }

.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.zone-list { margin-bottom: 24px; }

.zone-list li {
  display: flex;
  align-items: center; /* piège prod #3 */
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  color: var(--text-2);
}

.zone-list li:last-child { border-bottom: 0; }

.zone-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.zone-info h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
}

/* ── CONTACT ── */
.section-contact { background: var(--accent); color: #fff; }

.section-contact h2,
.section-contact .eyebrow { color: #fff; }
.section-contact .eyebrow { opacity: .75; }

.section-contact p { color: rgba(255,255,255,.85); }

.contact-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-infos { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: center; /* piège prod #3 */
  gap: 14px;
}

.contact-item .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item .icon-wrap svg { width: 20px; height: 20px; color: #fff; }

.contact-item strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-bottom: 3px;
}

.contact-item span {
  color: rgba(255,255,255,.9);
  font-size: .97rem;
}

.contact-item a {
  color: #fff;
  text-decoration: underline;
  font-size: 1.05rem;
  font-weight: 600;
}

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

.contact-cta-wrap .btn {
  width: 100%;
  justify-content: center;
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.contact-cta-wrap .btn:hover {
  background: rgba(255,255,255,.9);
  color: var(--accent);
}

.contact-cta-wrap .btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}

.contact-cta-wrap .btn-wa:hover {
  background: color-mix(in srgb, var(--wa-green) 85%, #000);
  color: #fff;
}

/* Formulaire contact */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0; /* piège prod #10 : select overflow */
}

.field label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.field input,
.field textarea,
.field select {
  font-family: var(--ff-body);
  font-size: .97rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-md);
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s;
  min-height: 48px;
  min-width: 0; /* piège prod #10 */
  width: 100%;
  resize: vertical;
}

.field select { width: 100%; min-width: 0; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.45); }

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.18);
  outline: none;
}

.form-submit {
  margin-top: 6px;
  background: #fff;
  color: var(--accent);
  border: 2px solid #fff;
  font-size: 1rem;
}

.form-submit:hover {
  background: rgba(255,255,255,.92);
  color: var(--accent);
  transform: translateY(-1px);
}

.form-feedback {
  font-size: .88rem;
  padding: .6rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--ff-ui);
}

.form-feedback.success { background: rgba(255,255,255,.15); color: #d4edda; }
.form-feedback.error   { background: rgba(255,0,0,.15);     color: #f8d7da; }
