/* ==========================================================================
   About — parcours, chiffres, facon de travailler. Page neutre : elle est
   lue par les trois audiences, donc pas d'accent dominant.

   Pas de section materiel ici : elle est reservee a la future page Gear
   (brief section 3).
   ========================================================================== */

main {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section-label {
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

/* ---------- Accroche ---------- */

.about-hero {
  padding: clamp(3rem, 10vw, 6rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  max-width: 46rem;
}

.about-hero__eyebrow {
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.about-hero__title {
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.about-hero__dot { color: var(--accent-presta); }

/* ---------- Parcours ----------
   Raconte comme une trajectoire, pas comme un CV : du texte suivi, aucune
   liste de dates. Les photos accompagnent le recit plutot que de le
   decouper. */

.story {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(3rem, 8vw, 4.5rem);
}

@media (min-width: 52rem) {
  .story { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: start; }
}

.story__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: clamp(1.02rem, 1rem + 0.35vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 36rem;
}

.story__text p:first-child { color: var(--fg); }

.story__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

/* Photos de tournage, en vertical comme le reste du site. La deuxieme est
   decalee pour eviter l'effet planche contact. */
.story__photo {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(170deg, #1c1c22 0%, #26262e 50%, #17171c 100%);
}

.story__photo:nth-child(2) { transform: translateY(clamp(1rem, 3vw, 2.5rem)); }

/* ---------- Chiffres ---------- */

.proof { padding-block: clamp(2.5rem, 6vw, 3.5rem); }

.proof__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 8vw, 5rem);
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.proof__list dt {
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--fg-muted);
}

/* Chiffres en display, comme sur l'accueil : meme voix pour la meme preuve. */
.proof__list dd {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Facon de travailler ---------- */

.method { padding-block: clamp(2.5rem, 7vw, 4rem); }

.method__list {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  counter-reset: point;
  list-style: none;
  padding: 0;
  margin: 0;
}

.method__list li { counter-increment: point; }

.method__list li::before {
  content: counter(point, decimal-leading-zero);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.method__list h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.method__list p { color: var(--fg-muted); font-size: 0.95rem; }

/* ---------- Appel a l'action ---------- */

.about-cta {
  padding-block: clamp(3rem, 8vw, 4.5rem);
  border-top: 1px solid var(--border);
  max-width: 40rem;
}

.about-cta__title {
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-cta__text { margin-top: 1rem; color: var(--fg-muted); }

.btn {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn:hover { filter: brightness(0.9); transform: translateY(-1px); }
