/* ===================================================
   ROSE EVENTS — Journey / Process Timeline
   =================================================== */
.journey { padding: 6rem 0; background: linear-gradient(to bottom, var(--white), var(--secondary)); }
.journey-timeline { position: relative; max-width: 64rem; margin: 0 auto; }
.journey-line { display: none; }
@media (min-width: 768px) {
  .journey-line { display: block; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(155,44,79,0.15); transform: translateX(-50%); }
}
.journey-steps { display: flex; flex-direction: column; gap: 4rem; }
.journey-step { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; position: relative; }
@media (min-width: 768px) {
  .journey-step { grid-template-columns: 1fr 56px 1fr; gap: 0; }
  .journey-step:nth-child(even) .step-content { grid-column: 3; }
  .journey-step:nth-child(even) .step-spacer { grid-column: 1; }
}
.step-dot { display: none; }
@media (min-width: 768px) {
  .step-dot { display: flex; align-items: center; justify-content: center; z-index: 2; width: 56px; }
}
.step-dot-inner { width: 3rem; height: 3rem; border-radius: 50%; background: var(--white); border: 2px solid rgba(155,44,79,0.3); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(155,44,79,0.06); transition: all 300ms; }
.step-dot-inner .step-num { font-family: var(--font-serif); font-size: 1rem; color: var(--accent); font-weight: 600; }
.journey-step:hover .step-dot-inner { border-color: var(--accent); background: rgba(155,44,79,0.05); box-shadow: 0 0 12px rgba(155,44,79,0.2); }
.step-content { padding: 2rem; background: var(--white); border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.04); border: 1px solid rgba(155,44,79,0.08); transition: all 500ms; }
.step-content:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.step-content .step-label { display: inline-block; font-size: 0.6875rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); background: rgba(155,44,79,0.06); padding: 4px 12px; border-radius: 9999px; margin-bottom: 1rem; }
.step-content h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.25; }
.step-content p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.8; }
.step-spacer { display: none; }
@media (min-width: 768px) { .step-spacer { display: block; } }
