/* =====================================================
   APROPOS.CSS — OLFACT
   Page « À propos ». Même DA que le site (luxe éditorial :
   crème / violet / or, Cormorant + DM Sans).
   Tokens + header + footer : voir layout.css.
   ===================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

body.about-page {
  font-family: "Cormorant Upright", serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-family: "Cormorant Upright", serif; font-weight: 500; }
::selection { background: rgba(135, 104, 48, 0.18); }
img { max-width: 100%; display: block; }

/* ----------------------- PRIMITIVES PARTAGÉES ----------------------- */
.kicker {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 20px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-deep);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 4px;
}

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  line-height: 1.07;
  color: var(--ink);
}
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .kicker::before { display: none; }
.section-lead {
  font-family: "DM Sans", sans-serif;
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(47, 24, 71, 0.74);
  max-width: 56ch;
  margin-top: 20px;
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.25s ease;
}
.btn--solid { background-color: var(--plum); color: #fff; border-color: var(--plum); }
.btn--solid:hover { background-color: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost { color: var(--ink); border-color: rgba(47, 24, 71, 0.45); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-deep);
  transition: color 0.25s, gap 0.25s;
}
.link-arrow:hover { color: var(--gold-text); gap: 18px; }

/* ------------------------------- LAYOUT ------------------------------- */
.about > section {
  padding-inline: max(40px, calc((100% - 1100px) / 2));
}

/* Filet + losange or en tête de section (cohérence avec l'accueil) */
.manifeste,
.piliers-section,
.distinct-section,
.founder,
.about-cta {
  position: relative;
  border-top: 1px solid var(--line);
  padding-block: 110px;
}
.manifeste::before,
.piliers-section::before,
.distinct-section::before,
.founder::before,
.about-cta::before {
  content: "\25C6";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 16px;
  background: var(--cream);
  color: var(--gold);
  font-size: 0.5rem;
  line-height: 1;
}

/* ------------------------------- INTRO ------------------------------- */
.about-hero {
  padding-top: 170px;
  padding-bottom: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 30px;
}
.about-hero h1 em { font-style: italic; font-weight: 600; color: var(--gold-text); }
.about-hero__lead {
  font-family: "DM Sans", sans-serif;
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(47, 24, 71, 0.82);
  max-width: 60ch;
}
.about-hero__lead strong { font-weight: 600; color: var(--plum); }

/* ----------------------------- MANIFESTE ----------------------------- */
.manifeste { text-align: center; }
.manifeste__quote {
  font-family: "Cormorant Upright", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.25;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 auto 34px;
}
.manifeste__text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(47, 24, 71, 0.74);
  max-width: 60ch;
  margin: 0 auto;
}

/* ------------------------------ PILIERS ------------------------------ */
.piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pilier { border-top: 2px solid var(--gold); padding-top: 26px; }
.pilier__num {
  display: block;
  font-family: "Cormorant Upright", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
}
.pilier h3 { font-size: 1.9rem; color: var(--ink); margin-bottom: 12px; }
.pilier p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.99rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(47, 24, 71, 0.74);
}

/* --------------------------- DIFFÉRENCIATION --------------------------- */
.distinct-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.distinct {
  background: var(--paper);
  padding: 40px 38px;
}
.distinct h3 {
  font-size: 1.6rem;
  color: var(--plum);
  margin-bottom: 12px;
  padding-bottom: 12px;
  position: relative;
}
.distinct h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 1px;
  background: var(--gold-deep);
}
.distinct p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.99rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(47, 24, 71, 0.74);
}

/* --------------------------- MOT DU FONDATEUR --------------------------- */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.founder__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 26px 54px -26px rgba(47, 24, 71, 0.4);
}
.founder blockquote {
  margin: 8px 0 30px;
}
.founder blockquote p {
  font-family: "Cormorant Upright", serif;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 18px;
}
.founder__sign {
  font-family: "Cormorant Upright", serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--plum);
}
.founder__role {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-top: 8px;
}

/* -------------------------------- CTA -------------------------------- */
.about-cta { text-align: center; }
.about-cta h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--ink);
  margin-bottom: 18px;
}
.about-cta p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(47, 24, 71, 0.74);
  max-width: 46ch;
  margin: 0 auto 38px;
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 34px;
}
.about-cta__alt { margin: 0 auto; }

/* ------------------------------ RESPONSIVE ------------------------------ */
@media (max-width: 900px) {
  .manifeste,
  .piliers-section,
  .distinct-section,
  .founder,
  .about-cta { padding-block: 80px; }

  .about-hero { padding-top: 130px; }
  .section-head { margin-bottom: 46px; }

  .piliers { grid-template-columns: 1fr; gap: 36px; }
  .founder { grid-template-columns: 1fr; gap: 40px; }
  .founder__media { max-width: 420px; }
}

@media (max-width: 600px) {
  .about > section { padding-inline: 22px; }
  .distinct-grid { grid-template-columns: 1fr; }
  .about-cta__actions .btn { flex: 1 1 auto; }
}
