/* ============================================
   Order Your Part — Coming Soon Page
   ============================================ */

.order-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10vh;
}

.order-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.order-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.45) 0%,
    rgba(5, 5, 5, 0.25) 45%,
    rgba(5, 5, 5, 0.75) 100%
  );
  z-index: 1;
}

.order-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.order-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.order-hero__subtitle {
  margin-top: 14px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-grey-light);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
  .order-hero {
    height: 100vh;
    min-height: 620px;
    padding-bottom: 12vh;
  }

  .order-hero__subtitle {
    font-size: 0.95rem;
  }
}
