/* ============================================================
   NEKTAR — Section 05 · Notre histoire
   Photo gauche · citation droite (desktop)
   Photo haut · citation bas (mobile)
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; background: var(--nektar-creme); }

/* ============================================================
   LAYOUT — deux colonnes asymétriques
   ============================================================ */
.histoire {
  --pad: clamp(32px, 4vw, 56px);
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55fr 45fr;
}

/* ============================================================
   PHOTO — colonne gauche, entourée de crème
   ============================================================ */
.histoire__photo {
  position: relative;
  background: var(--nektar-creme);
  min-height: 60vh;
}
.histoire__photo img {
  position: absolute;
  top: var(--pad);
  left: var(--pad);
  width: calc(100% - 2 * var(--pad));
  height: calc(100% - 2 * var(--pad));
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.92) contrast(1.04);
  transition: transform 6s ease;
}
.histoire__photo:hover img {
  transform: scale(1.02);
}

/* ============================================================
   TEXTE — colonne droite
   ============================================================ */
.histoire__text {
  background: var(--nektar-creme);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: var(--pad);
  padding-bottom: clamp(56px, 8vh, 112px);
  padding-left: clamp(24px, 3vw, 40px);
  padding-right: clamp(24px, 3vw, 40px);
}

.histoire__body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--nektar-nuit);
  margin: 0 0 clamp(32px, 4vh, 48px) 0;
}

.histoire__accent {
  font-style: normal;
  font-weight: 600;
  color: var(--nektar-or);
}

.histoire__struck {
  text-decoration: line-through;
  text-decoration-color: var(--nektar-or);
  text-decoration-thickness: 2px;
}

.histoire__final {
  color: var(--nektar-or);
  font-style: normal;
  font-weight: 600;
}

/* Hairline or séparateur */
.histoire__rule {
  width: 40px; height: 1px;
  background: var(--nektar-or);
  margin-bottom: clamp(16px, 2vh, 24px);
}

.histoire__guillemet {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--nektar-nuit-40);
  font-style: normal;
  margin-right: 2px;
}
.histoire__guillemet + strong,
.histoire__guillemet:last-of-type {
  margin-left: 2px;
}

.histoire__signature {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--t-small);
  letter-spacing: 0.08em;
  color: var(--nektar-or);
  text-align: right;
  margin: 0;
}
.histoire__signature-cinq {
  letter-spacing: var(--track-eyebrow);
}

/* ============================================================
   DESKTOP — rognage haut de photo
   ============================================================ */
@media (min-width: 761px) {
  .histoire__photo img {
    top: clamp(72px, 9vw, 120px);
    height: calc(100% - clamp(72px, 9vw, 120px) - var(--pad));
  }
  .histoire__text {
    padding-top: clamp(72px, 9vw, 120px);
  }
}

/* ============================================================
   MOBILE — empilement vertical
   ============================================================ */
@media (max-width: 760px) {
  .histoire {
    grid-template-columns: 1fr;
    grid-template-rows: 70svh auto;
    min-height: auto;
  }
  .histoire__photo {
    --pad: 8px;
    min-height: 0;
  }
  .histoire__photo img {
    object-position: center bottom;
    left: 12px;
    width: calc(100% - 24px); /* 12px gauche + 12px droite */
  }
  .histoire__text {
    padding: 20px 12px 56px 12px;
    justify-content: flex-start;
  }
  .histoire__body {
    font-size: clamp(18px, 5vw, 22px);
    max-width: 100%;
  }
}
