/* Sections */
section { padding: 48px 20px; }
@media (min-width: 768px) { section { padding: 80px 40px; } }

/* ── HERO IMMERSIF ── */
.hero-immersif {
  position: relative;
  min-height: clamp(520px, 88dvh, 800px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h-mobile) + 32px) 20px 48px;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}
.hero-immersif__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-immersif__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-immersif::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10,12,6,0.15) 0%,
    rgba(10,12,6,0.30) 40%,
    rgba(10,12,6,0.65) 80%,
    rgba(10,12,6,0.78) 100%
  );
}
.hero-immersif__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
}
.hero-immersif__inner .eyebrow { color: rgba(255,255,255,0.82); }
.hero-immersif__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.05;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-immersif__title em {
  font-style: italic;
  color: var(--accent-2);
}
.hero-immersif__sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-cta .btn { width: 100%; justify-content: center; }

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
  .hero-cta .btn { width: auto; }
}
@media (min-width: 768px) {
  .hero-immersif {
    padding: calc(var(--header-h) + 48px) 40px 72px;
    min-height: clamp(560px, 88dvh, 840px);
  }
}

/* ── RÉALISATIONS ── */
.real-section { background: var(--bg); }
.real-section .section-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.real-section .see-all {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap 0.2s;
}
.real-section .see-all:hover { gap: 10px; }
.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ── SERVICES (LAY-1 grid-3 card:line) ── */
.services-section { background: var(--bg-alt); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .svc-card:first-child { border-top: none; }
}
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); column-gap: 48px; }
}

/* ── A PROPOS ── */
.about-section { background: var(--surface); }
.about-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 16px;
}
.about-text p {
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-text p:first-of-type {
  font-size: 1.08rem;
  color: var(--text);
  font-style: italic;
  font-family: var(--ff-display);
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.about-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ── AVIS (LAY-1 cols-2) ── */
.avis-section { background: var(--bg); }
.avis-section .section-header { text-align: center; }
.avis-section .section-header p { margin: 14px auto 0; }
.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.avis-footer { text-align: center; margin-top: 28px; }
@media (min-width: 640px) {
  .avis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--accent);
  padding: 40px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  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, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.stat-separator {
  width: 1px;
  background: rgba(255,255,255,0.2);
}
@media (min-width: 768px) {
  .stats-strip { padding: 48px 40px; }
}

/* ── FAQ ── */
.faq-section { background: var(--surface); }
.faq-section .section-header h2 { text-align: center; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item:first-child { border-top: 1px solid var(--border); }

/* ── ZONE ── */
.zone-section { background: var(--bg-alt); }
.zone-cols {
  display: grid;
  gap: 40px;
}
.zone-info h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
}
.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
@media (min-width: 768px) {
  .zone-cols { grid-template-columns: 1fr 1fr; align-items: start; }
  .map-wrapper iframe { height: 380px; }
}

/* ── CONTACT ── */
.contact-section { background: var(--bg); }
.contact-wrap {
  display: grid;
  gap: 40px;
}
.contact-info h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text);
}
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  display: grid; place-items: center;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  color: var(--accent);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-body { display: flex; flex-direction: column; gap: 2px; }
.contact-item-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); }
.contact-item-val { font-size: 0.98rem; color: var(--text); font-weight: 600; }
.contact-item-val a { color: var(--accent); }
.contact-cta-row { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
@media (min-width: 480px) { .contact-cta-row { flex-direction: row; } }

@media (min-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr 1.2fr; align-items: start; }
}
