/* PROCESS PAGE */
.process-main {
  padding-top: 100px;
}

/* HERO */
.process-hero {
  text-align: center;
  padding: 6rem 20px 5rem;
  max-width: 700px;
  margin: 0 auto;
}

.process-hero__title {
  font-family: var(--body-font);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin: 1rem 0;
}

.process-hero__intro {
  font-family: var(--body-font);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin-top: 1.5rem;
}

/* SIDE BY SIDE SECTIONS */
.process-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
}

.process-section--reversed {
  direction: rtl;
}

.process-section--reversed > * {
  direction: ltr;
}

.process-step {
  display: block;
  font-family: var(--nav-font);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 1rem;
}

.process-section__title {
  font-family: var(--body-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.process-section__body {
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: #444;
  line-height: 1.9;
}

.process-section__body a {
  color: black;
}

.process-section__img {
  overflow: hidden;
}

.process-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.process-section__img:hover img {
  transform: scale(1.02);
}

/* FULL WIDTH IMAGE */
.process-fullwidth {
  width: 100%;
  position: relative;
  max-height: 70vh;
  overflow: hidden;
}

.process-fullwidth img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.process-fullwidth__caption {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-family: var(--nav-font);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* VIDEO */

.process-video {
  width: 100%; 
  height: 80vh;
  margin: 0 auto 80px;
}

.process-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* VIDEO SHOOTING */

.develop-video {
  width: 100%; 
  height: 80vh;
  margin: 0 auto 80px;
}

.develop-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .process-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 20px;
  }

  .process-section--reversed {
    direction: ltr;
  }

  .process-fullwidth img {
    height: 50vw;
  }
}