/* ═══ MÉTHODE — Single column dark section ═══ */

.methode {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px var(--section-px);
  background: var(--noir-bg);
  border-top: 1px solid var(--noir-surface);
  overflow: visible;
}

.methode__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 100%;
  max-width: 800px;
}

.methode__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.methode__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--brume);
}

.methode__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.methode__title-l1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--noir);
  line-height: 1.1;
  letter-spacing: -1.1px;
}

.methode__title-l2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
  line-height: 1.1;
  letter-spacing: -1.1px;
}

.methode__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--gris-500);
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
}

.methode__img {
  width: 100vw;
  max-width: none;
  margin-top: -40px;
  margin-left: calc(50% - 50vw);
}

/* ── Mobile ── */

@media (max-width: 767px) {
  .methode {
    padding: 64px 20px;
  }

  .methode__img {
    margin-top: 16px;
  }
}

/* ── Tablet+ ── */

@media (min-width: 768px) {
  .methode__title-l1 {
    font-size: 40px;
  }

  .methode__title-l2 {
    font-size: 36px;
  }
}

/* ── Desktop ── */

@media (min-width: 1024px) {
  .methode__title-l1 {
    font-size: 44px;
  }

  .methode__title-l2 {
    font-size: 40px;
  }
}
