

.story-section {
  background: var(--c-dark-green);
  color: var(--c-white);
}

.story-section .section-kicker {
  color: #e3b879;
}

.story-section p {
  color: rgba(255, 255, 255, 0.72);
}

.story-grid {
  width: min(var(--container), calc(100% - 60px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.story-grid > .reveal:first-child {
  padding: 30px;
}

.story-grid h2 {
  margin-bottom: 24px;
}

.story-grid p + p {
  margin-top: 16px;
}

.timeline {
  padding: 26px;
  color: var(--c-dark);
  border: 1px solid var(--c-border);
  border-radius: 28px;
  background: var(--c-white);
  box-shadow: var(--sh-card);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.timeline:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(38, 15, 32, 0.16);
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-year {
  color: var(--c-primary);
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-desc {
  color: var(--c-text-muted);
}

.orchard-scroll {
  position: relative;
  height: 130svh;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(13, 29, 20, .9) 0%, rgba(13, 29, 20, .68) 44%, rgba(13, 29, 20, .14) 78%),
    url("../images/prunes-branche.jpg") center / cover no-repeat;
}

.orchard-sticky {
  position: sticky;
  top: 0;
  min-height: 500px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--c-white);
  background:
    linear-gradient(90deg, rgba(13, 29, 20, .9) 0%, rgba(13, 29, 20, .68) 44%, rgba(13, 29, 20, .14) 78%),
    url("../images/prunes-branche.jpg") center / cover no-repeat;
}

.orchard-copy {
  width: min(520px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  gap: 24px;
}

.orchard-copy h2 {
  margin: 0 0 6px;
  color: var(--c-white);
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
}

.orchard-copy p {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.55;
}

.orchard-step {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease, visibility 0s linear .55s;
}

.orchard-step.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

@media (max-width: 700px) {
  .orchard-scroll { height: 125svh; }
  .orchard-sticky {
    top: 0;
    min-height: 500px;
    height: 100svh;
    align-items: end;
    padding-bottom: 72px;
    background-position: 58% center;
  }
  .orchard-copy { width: min(520px, calc(100% - 36px)); margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .orchard-step { opacity: 1; visibility: visible; transform: none; transition: none; }
}

/* Copyright RZU Informatique */
