/* ─── HERO ─── */
.hero-maison {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--cream-dark);
}

.hero-maison-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248,245,242,0.15) 0%, rgba(248,245,242,0.4) 100%),
    url('asset/bannière_beaute_maison_olycea.png') center/cover no-repeat;
}

/* ─── NAISSANCE ─── */
.naissance {
  padding: 5rem 3rem;
  max-width: 820px;
  margin: 0 auto;
}

.naissance h2 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.naissance p {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.naissance p:last-child { margin-bottom: 0; }

/* ─── PHOTO DUO ─── */
.photo-duo {
  width: 100%;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  background: var(--cream-dark);
  margin-bottom: 16px;
}

.photo-duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── CITATION ─── */
.citation {
  background: var(--brown-dark);
  padding: 4rem 3rem;
  margin: 0 16px;
  text-align: center;
}

.citation p {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  line-height: 2;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* ─── BIOS ─── */
.bios {
  padding: 5rem 3rem;
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.bio-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-text p {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.bio-text p:last-child { margin-bottom: 0; }

/* ─── NOS VALEURS ─── */
.valeurs {
  padding: 5rem 3rem;
  max-width: 820px;
  margin: 0 auto;
}

.valeurs-list {
  list-style: none;
  margin-top: 2.5rem;
}

.valeur-item {
  border-bottom: 1px solid var(--border-color);
}

.valeur-item:first-child {
  border-top: 1px solid var(--border-color);
}

.valeur-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.valeur-trigger span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.valeur-icon {
  width: 18px;
  height: 18px;
  stroke: var(--brown-light);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.valeur-item.open .valeur-icon {
  transform: rotate(45deg);
}

.valeur-body {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.valeur-item.open .valeur-body {
  padding-bottom: 1.4rem;
}

.valeur-body p {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-maison { height: 45vh; min-height: 300px; }

  .naissance, .valeurs { padding: 3.5rem 1.5rem; }

  .bios {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
  }

  .bio-col:last-child .bio-photo { order: -1; }

  .citation { padding: 3rem 1.5rem; margin: 0 8px; }
  .citation p { }

  .photo-duo { height: 40vh; min-height: 260px; }
}
