.product-page main {
  overflow: hidden;
}

.product-hero {
  min-height: min(720px, 78vh);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #070707;
  color: #fff;
}

.product-hero > img,
.product-video-hero > video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.product-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.product-hero h1 {
  max-width: 780px;
  margin: .4rem 0 1.2rem;
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  line-height: .98;
}

.product-hero p:not(.eyebrow) {
  max-width: 700px;
  color: #dedede;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}

.product-intro,
.product-partner,
.apparel-concept,
.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-intro {
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(4rem, 8vw, 8rem);
  background: #fff;
}

.product-intro h2,
.product-section-heading h2,
.product-showcase h2,
.product-partner h2,
.apparel-concept h2,
.product-cta h2 {
  margin: .45rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.product-intro p,
.product-showcase p,
.product-partner p,
.apparel-concept p,
.product-card-grid p,
.product-cta p {
  font-size: 1.06rem;
  line-height: 1.7;
}

.product-status {
  display: grid;
  grid-template-columns: .3fr 1.7fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 8vw, 8rem);
  color: #fff;
  background: #151515;
  border-left: 10px solid #ffd400;
}

.product-status-label {
  color: #ffd400;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-status h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.product-status p {
  max-width: 950px;
  margin: 0;
  color: #ddd;
  line-height: 1.7;
}

.product-collections,
.product-card-section {
  padding: clamp(4rem, 8vw, 8rem);
  background: #f3f3f3;
}

.product-section-heading {
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card-grid article {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border-top: 5px solid #ffd400;
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
}

.product-card-grid h3 {
  margin: 0 0 .7rem;
  font-size: 1.5rem;
}

.product-showcase,
.product-partner,
.apparel-concept {
  align-items: stretch;
  background: #0b0b0b;
  color: #fff;
}

.product-showcase > div,
.product-partner > div,
.apparel-concept > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.product-showcase img,
.product-partner img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.product-detail-note {
  padding-left: 1rem;
  color: #d0d0d0;
  border-left: 3px solid #ffd400;
}

.product-partner {
  background: #fff;
  color: #111;
}

.apparel-concept {
  background: #fff;
  color: #111;
}

.apparel-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 620px;
}

.apparel-image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-cta {
  padding: clamp(4rem, 9vw, 9rem);
  text-align: center;
  background: #ffd400;
  color: #0b0b0b;
}

.product-cta p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.product-cta .button {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .product-hero,
  .product-intro,
  .product-partner,
  .apparel-concept,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-hero > img,
  .product-video-hero > video {
    min-height: 390px;
    max-height: 55vh;
  }

  .product-status {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase img,
  .product-partner img {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .product-hero > div,
  .product-intro,
  .product-showcase > div,
  .product-partner > div,
  .apparel-concept > div,
  .product-collections,
  .product-card-section,
  .product-cta {
    padding: 2.25rem 1.25rem;
  }

  .product-hero h1 {
    font-size: 2.55rem;
  }

  .apparel-image-pair {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .apparel-image-pair img {
    min-height: 360px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-actions .button {
    text-align: center;
  }
}
