.product-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.product-story-heading {
  align-self: start;
  position: sticky;
  top: 110px;
}

.product-story-heading p,
.product-gallery-heading p {
  margin: 0 0 14px;
  color: #d4af37;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-story-heading h2 {
  max-width: 460px;
  margin: 0;
  color: #f7eedb;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.product-story-copy {
  display: grid;
  gap: 22px;
}

.product-story-copy p {
  margin: 0;
  color: rgba(244, 239, 228, 0.72);
  font-size: 0.98rem;
  line-height: 1.85;
  white-space: pre-line;
}

.product-story-copy p:first-child {
  color: rgba(247, 238, 219, 0.92);
  font-size: 1.08rem;
}

.product-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080808;
}

@media (max-width: 760px) {
  .product-story-section {
    grid-template-columns: 1fr;
    gap: 32px;
    width: calc(100% - 28px);
    padding: 56px 0;
  }

  .product-story-heading {
    position: static;
  }

  .product-story-heading h2 {
    font-size: 2.7rem;
  }
}
