.micro-page {
  background: #000;
}

html {
  scroll-behavior: smooth;
}

/* Laisser la place au header fixe */
.micro {
  padding-top: 0;
  /* géré globalement via body{padding-top: var(--header-h)} */
  padding-bottom: 0;
}

.micro-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 0;
  /* collé */
  align-items: center;
  padding: 0;
  /* collé entre sections */
}

.micro-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1200px 520px at 78% 50%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(0, 0, 0, 0) 70%);
  opacity: 1;
}

.micro-row>* {
  position: relative;
  z-index: 1;
}

.micro-row--left {
  grid-template-columns: 1.65fr 1fr;
}

.micro-row--right {
  grid-template-columns: 1fr 1.65fr;
}

/* Marges texte (comme sur la capture) */
.micro-row--right .micro-copy {
  padding: 0 80px 0 96px;
}

.micro-row--left .micro-copy {
  padding: 0 96px 0 80px;
}

.micro-h1 {
  margin: 0 0 6px;
  font-size: 3rem;
  /* typo “titres des pages” */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}

.micro-h3 {
  margin: 0 0 6px;
  font-size: 3rem;
  /* chaque section a aussi un “titre” lié à un intertitre */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}

.micro-kicker {
  margin: 0 0 18px;
  font-weight: 600;
  /* typo “intertitres” */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  line-height: 1;
  opacity: .95;
}

.micro-rule {
  height: 2px;
  width: 360px;
  max-width: 100%;
  background: var(--red);
  margin: 0 0 18px;
}

.micro-text {
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
  color: #e6e6e6;
  font-weight: 400;
  /* texte (22px via base) */
}

.micro-text--meta {
  margin-top: 18px;
}

.micro-list {
  margin: 18px 0 18px 22px;
  padding: 0;
  color: #e6e6e6;
  font-weight: 700;
}

.micro-list li {
  margin: 0 0 10px;
}

.micro-media {
  margin: 0;
  border-radius: 0;
  /* collé, sans arrondi */
  overflow: hidden;
}

.micro-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA + Galerie */
.micro-h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.micro-h2--underline {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.micro-kicker--big {
  margin-top: 10px;
}

.micro-rule--long {
  width: 520px;
}

.micro-cta {
  padding: 64px 0 56px;
}

.micro-cta-inner {
  max-width: 1400px;
  /* plus large comme sur la capture */
  margin: 0 auto;
  padding: 0 96px;
}

.micro-cta-text {
  margin: 0 0 26px;
  color: #e6e6e6;
  line-height: 1.6;
  font-weight: 600;
  max-width: none;
  /* texte sur une largeur plus grande */
}

.micro-cta-btn {
  padding: 16px 22px;
  font-weight: 900;
}

.gallery-fab {
  position: fixed;
  left: 96px;
  bottom: 40px;
  z-index: 60;
  padding: 16px 22px;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transition: opacity .18s ease, transform .18s ease;
}

.gallery-fab.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.micro-gallery {
  padding: 40px 0 90px;
}

.micro-gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 96px;
}

.micro-grid {
  margin-top: 34px;
  /* Masonry simple sans “trous” */
  column-count: 4;
  column-gap: 18px;
}

.micro-card {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 18px;
}

.micro-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.micro-card--wide {}

.micro-card--tall {}

/* Vidéo responsive */
.micro-video {
  padding: 0 0 54px;
}

.micro-video-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 96px;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 980px) {
  .micro {
    padding-top: 0;
  }

  /* déjà géré globalement par body{padding-top: var(--header-h)} */
  /* Responsive (toutes les pages "presta" = .micro-page) :
     on enlève l'alternance -> image puis texte sur chaque section
     + petite marge entre les sections */
  .micro-page .micro-row {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 22px;
  }

  .micro-page .micro-row--left,
  .micro-page .micro-row--right {
    grid-template-columns: 1fr;
  }

  .micro-page .micro-media {
    order: 1;
  }

  .micro-page .micro-copy {
    order: 2;
    padding: 0 24px;
  }

  .micro-h1 {
    font-size: clamp(36px, 7vw, 60px);
  }

  .micro-h3 {
    font-size: clamp(32px, 7vw, 52px);
  }

  .micro-h2 {
    font-size: clamp(36px, 7vw, 60px);
  }

  .micro-cta-inner,
  .micro-gallery-inner {
    padding: 0 24px;
  }

  .micro-grid {
    column-count: 2;
  }

  .gallery-fab {
    left: 24px;
    bottom: 24px;
  }
}