/* ============================================
   PROCESS — Sticky text + scrolling images
   ============================================ */

.process {
  padding: 100px var(--side-pad) var(--section-pad-mobile);
}

.process__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.process__header {
  margin-bottom: 48px;
}

.process__eyebrow {
  margin-bottom: 16px;
}

.process__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}

/* Hide sticky on mobile */
.process__sticky {
  display: none;
}

/* Mobile: stacked */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.process__step {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process__step-image {
  width: 100%;
  overflow: hidden;
}

.process__step-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process__step-content {
  padding: 0;
}

.process__step-number {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  color: rgba(196, 168, 124, 0.15);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: -8px;
}

.process__step-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.process__step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* Desktop: sticky left + scroll right */
@media (min-width: 768px) {
  .process {
    padding: 140px 40px var(--section-pad-desktop);
  }

  .process__header {
    margin-bottom: 64px;
  }

  .process__title {
    font-size: 56px;
  }

  .process__layout {
    display: flex;
    gap: 64px;
  }

  .process__sticky {
    display: block;
    width: 40%;
    align-self: flex-start;
    height: fit-content;
    /* position: sticky handled by GSAP ScrollTrigger pin */
  }

  .process__sticky-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
  }

  .process__sticky-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 32px;
  }

  .process__sticky-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
  }

  .process__scroll {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .process__step {
    gap: 24px;
  }

  .process__step-image img {
    aspect-ratio: 3 / 4;
  }

  .process__step-number {
    font-size: 140px;
    color: rgba(196, 168, 124, 0.15);
    margin-bottom: -12px;
  }

  .process__step-name {
    font-size: 28px;
  }
}
