/* =========================================================
   Page À propos
   ========================================================= */
.hero--about .hero__title { text-align: center; }
.hero--about .hero__media { position: relative; height: 100%; overflow: hidden; }

/* --- Mon histoire --- */
.section--story { background: var(--cream); }

.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--wrap);
  margin-inline: auto;
}

.story__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.section__head--left { text-align: left; margin-bottom: 26px; }
.section__head--left .rule { margin-left: 0; }

.story__text p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 16px;
}
.story__text p:last-child { margin-bottom: 0; }

/* --- Valeurs (page seule) --- */
.section--values-solo { background: var(--sand); }
.section--values-solo .rule--heart::after { background: var(--sand); }

.values--wide {
  max-width: 760px;
  margin-inline: auto;
  gap: 3rem;
}

/* --- Citation --- */
.section--quote { background: var(--cream-warm); text-align: center; }

.quote { max-width: 620px; margin-inline: auto; }

.quote__mark {
  display: block;
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.quote__text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}

.quote__author {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

/* --- CTA collections --- */
.section--cta {
  background:
    radial-gradient(circle at 15% 20%, rgba(226,178,168,.4), transparent 45%),
    radial-gradient(circle at 88% 70%, rgba(214,150,140,.36), transparent 48%),
    linear-gradient(120deg, #F7EDE2, #F2E3D4);
  text-align: center;
}

.cta { max-width: 560px; margin-inline: auto; }

.cta__title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta__text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 26px;
}

/* --- Responsive À propos --- */
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; gap: 32px; }
  .story__media { order: -1; }
  .section__head--left { text-align: center; }
  .section__head--left .rule { margin-inline: auto; }
  .quote__text { font-size: 20px; }
}