/* ==========================================================================
   Asude Journey Timeline — scoped entirely under .asude-journey
   Kuruyemiş sayfası: "Bir Fıstığın Yolculuğu"
   ========================================================================== */
.asude-journey {
  --aj-forest: #2A4D3F;
  --aj-red: #D63B2C;
  --aj-cream: #F0E6D2;
  --aj-brass: #B08D57;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  padding: 5rem 0 6rem;
  box-sizing: border-box;
}
.asude-journey *,
.asude-journey *::before,
.asude-journey *::after { box-sizing: border-box; }

.asude-journey-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Head ---------- */
.asude-journey-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.asude-journey-eyebrow {
  display: block;
  color: var(--aj-red);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6em;
}
.asude-journey-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--aj-forest);
  margin: 0;
  max-width: 20ch;
  line-height: 1.2;
}
.asude-journey-skip {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--aj-forest);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0.3em;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.asude-journey-skip:hover { color: var(--aj-red); border-color: var(--aj-red); }

/* ---------- Steps / timeline — zikzak: hat ortada, adımlar üstte/altta ---------- */
.asude-journey-steps {
  position: relative;
  display: flex;
  min-height: 560px;
}

.asude-journey-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 60px;
  transform: translateY(-30px);
  overflow: visible;
  display: block;
}
.asude-journey-line path {
  fill: none;
  stroke: var(--aj-brass);
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
}

.asude-journey-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease-out, transform .3s ease-out;
}
.asude-journey-step.is-visible { opacity: 1; transform: translateY(0); }

.asude-journey-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--aj-forest);
  color: var(--aj-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 0 6px #fff;
  z-index: 2;
}

.asude-journey-content {
  position: absolute;
  left: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.asude-journey-step.is-below .asude-journey-content { top: calc(50% + 40px); }
.asude-journey-step.is-above .asude-journey-content {
  bottom: calc(50% + 40px);
  flex-direction: column-reverse;
}

.asude-journey-media { width: 100%; margin-bottom: 0.9em; }

.asude-journey-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--aj-cream);
}

.asude-journey-label {
  display: block;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--aj-brass);
  margin-bottom: 0.6em;
}
.asude-journey-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--aj-forest);
  margin: 0 0 0.5em;
  line-height: 1.25;
}
.asude-journey-text p {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #4a4a44;
  margin: 0 0 0.5em;
}
.asude-journey-text p:last-child { margin-bottom: 0; }

/* ---------- End marker ---------- */
.asude-journey-end {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.5rem;
  padding-top: 28px;
}
.asude-journey-end::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 28px;
  background: var(--aj-brass);
  transform: translate(-1px, -28px);
}
.asude-journey-diamond {
  width: 12px;
  height: 12px;
  background: var(--aj-brass);
  transform: rotate(45deg);
  margin-bottom: 1em;
}
.asude-journey-end p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--aj-forest);
  margin: 0;
  text-align: center;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .asude-journey-step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Dar ekranlar (<900px): zikzak iptal, basit kaydırılabilir şerit ---------- */
@media (max-width: 900px) {
  .asude-journey { padding: 3.5rem 0 4rem; }
  .asude-journey-head { flex-direction: column; align-items: flex-start; gap: 0.8rem; }

  .asude-journey-steps {
    min-height: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 0.75rem;
    margin: 0 -1.3rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
  .asude-journey-line { display: none; }

  .asude-journey-step {
    position: relative;
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .asude-journey-dot { position: static; transform: none; width: 28px; height: 28px; font-size: 0.78rem; box-shadow: 0 0 0 4px #fff; margin-bottom: 0.8em; }

  .asude-journey-content,
  .asude-journey-step.is-above .asude-journey-content {
    position: static;
    flex-direction: column;
  }

  .asude-journey-media img { aspect-ratio: 3 / 2; }
}
