/* ─── Page header ────────────────────────────────────── */
/* h1 : "Marie-Amandine," normal + "fondatrice" italic orange dessous */
.qs-header-name {
  color: var(--text);
}
.qs-header-role {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  display: block;
  margin-bottom: 0.5rem;
}
.qs-header-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── Layout histoire — texte gauche, photo sticky droite ── */
.qs-two-col {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}
.qs-text .label {
  display: block;
  margin-bottom: 0.75rem;
}
.qs-text h2 {
  margin: 0 0 1.5rem;
}
.qs-text h2 em {
  color: var(--text);
}
.qs-text p {
  margin-bottom: 1.1rem;
}
.qs-text p:last-child {
  margin-bottom: 0;
}
.qs-text strong {
  color: var(--text);
  font-weight: 600;
}
.qs-img-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.qs-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(242, 154, 62, 0.15);
}
.qs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Vision — même layout deux colonnes, sans divider ── */
.qs-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.qs-vision-text .label {
  display: block;
  margin-bottom: 0.75rem;
}
.qs-vision-text h2 {
  margin: 0 0 1.5rem;
}
.qs-vision-text p {
  margin-bottom: 1.1rem;
}
.qs-vision-text p:last-child {
  margin-bottom: 0;
}
.qs-vision-text strong {
  color: var(--text);
  font-weight: 600;
}

.qs-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.75rem;
}
.qs-value {
  padding: 1.6rem 2rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--white);
}
.qs-value:nth-child(1) {
  background: #f8f2fb;
  border-color: #e9cff4;
}
.qs-value:nth-child(2) {
  background: #faf7f3;
  border-color: #f1dcc8;
}
.qs-value:nth-child(3) {
  background: #f3f1f0;
  border-color: #e5e2df;
}
.qs-value__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  border: 1px solid transparent;
}
.qs-value:nth-child(1) .qs-value__tag,
.qs-value:nth-child(3) .qs-value__tag {
  color: var(--violet);
  background: #f2e7f8;
  border-color: #dabee9;
}
.qs-value:nth-child(2) .qs-value__tag {
  color: var(--orange);
  background: #f7efe6;
  border-color: #efd3b8;
}
.qs-value p {
  font-size: 0.99rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

/* ─── Mon approche ───────────────────────────────────── */
.approche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .qs-two-col,
  .qs-vision-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .qs-img-sticky {
    position: static;
  }
  .qs-img {
    max-height: 380px;
  }
  .qs-values {
    padding-top: 0;
  }
  .approche-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .approche-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Presse card ─────────────────────────────────────── */
.presse-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem;
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.presse-card__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.presse-card__source {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 900;
}
.presse-card__date {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--warm-gray);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  text-align: center;
}
.presse-card__quote {
  border-left: 3px solid var(--orange);
  padding-left: 1.2rem;
  margin: 0;
}
.presse-card__quote p {
  font-style: italic;
  color: var(--text-mid);
}

.presse-card .btn {
  align-self: center;
}
