/* ======================================================
   ABOUT / VISION
   ====================================================== */
.about {
  padding-top: clamp(3.5rem, 7cqw, 6rem);
  background: #F5F1EA;
}

/* Récit alterné : rangées photo ↔ texte (texte étoffé de chaque côté) */
.about__feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 6cqw, 5.5rem);
  align-items: start;
  margin-top: 4rem;
}
.about__feature + .about__feature { margin-top: clamp(3rem, 7cqw, 6rem); }
/* rangée inversée : texte à gauche, photo à droite */
.about__feature--reverse { grid-template-columns: 1.18fr 0.82fr; }
/* la photo (+ sa légende) suit le défilement le long des paragraphes */
.about__feature .about__media {
  position: sticky;
  top: calc(env(safe-area-inset-top) + 7rem);
  align-self: start;
  container-type: inline-size;
}

/* Légende sous la photo : une seule ligne, jamais plus large que la photo */
.about__caption {
  margin-top: 0.9rem;
  text-align: center;
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: clamp(0.44rem, 2.7cqw, 0.66rem);
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .about__feature,
  .about__feature--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .about__feature .about__media { position: static; }
  /* sur mobile, la photo passe toujours au-dessus du texte */
  .about__feature--reverse .about__media { order: -1; }
}

.about__copy p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.78;
  color: var(--ivory-soft);
  margin-bottom: 1.35rem;
}
.about__copy p:last-of-type { margin-bottom: 0; }

.about__signature {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.about__signature-name {
  font-family: var(--serif-display);
  font-size: 1.55rem;
  letter-spacing: 0.14em;
  color: var(--ivory);
}
.about__signature-title {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Portrait — cleaner, no inner frame */
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface);
}
.about__visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 1.6s var(--ease);
}
.about__visual:hover .about__visual-photo { transform: scale(1.03); }

/* Soft caption plate over photo */
.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(20, 14, 8, 0.45), transparent 40%);
}
