.brand-story {
  --story-parallax: 0px;

  position: relative;
  min-height: 62rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 28% 48%, rgb(7 74 69 / 28%), transparent 30rem),
    #061211;
}

.brand-story__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.52;
  transform: translate3d(0, var(--story-parallax), 0);
}

.brand-story__orbit {
  position: absolute;
  border: 1px solid rgb(213 179 106 / 19%);
  border-radius: 50%;
}

.brand-story__orbit--one {
  top: -12rem;
  left: -9rem;
  width: 50rem;
  aspect-ratio: 1;
}

.brand-story__orbit--two {
  top: 8rem;
  left: 10rem;
  width: 31rem;
  aspect-ratio: 1;
}

.brand-story__inner {
  display: grid;
  min-height: 62rem;
  grid-template-columns: minmax(22rem, 0.85fr) minmax(30rem, 1.15fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 12rem);
  padding-block: clamp(7rem, 12vw, 11rem);
}

.brand-story__visual {
  position: relative;
  display: grid;
  min-height: 38rem;
  place-items: center;
  opacity: 1;
  transform: translateX(0);
}

.brand-story__visual::before,
.brand-story__visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgb(213 179 106 / 22%);
  transform: rotate(45deg);
}

.brand-story__visual::before {
  width: 27rem;
  aspect-ratio: 1;
}

.brand-story__visual::after {
  width: 19rem;
  aspect-ratio: 1;
}

.brand-story__monogram {
  position: relative;
  z-index: 2;
  display: grid;
  width: 11rem;
  aspect-ratio: 1;
  place-items: center;
}

.brand-story__monogram::before {
  position: absolute;
  inset: -70%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgb(213 179 106 / 19%), transparent 65%);
}

.brand-story__monogram img {
  width: 100%;
}

.brand-story__quote {
  position: absolute;
  right: -3rem;
  bottom: 1.5rem;
  z-index: 3;
  max-width: 15rem;
  color: rgb(227 201 136 / 82%);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.4;
}

.brand-story__content {
  max-width: 47rem;
  opacity: 1;
  transform: translateX(0);
}

.brand-story.is-motion-ready .brand-story__visual {
  opacity: 0;
  transform: translateX(-3rem);
}

.brand-story.is-motion-ready .brand-story__content {
  opacity: 0;
  transform: translateX(3rem);
}

.brand-story__content h2 {
  max-width: 10ch;
  margin-top: 1.2rem;
}

.brand-story__paragraph {
  max-width: 41rem;
  margin-top: 1.8rem;
  color: rgb(242 234 221 / 65%);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.brand-story__link {
  margin-top: 2.4rem;
}

.brand-story.is-story-visible .brand-story__visual,
.brand-story.is-story-visible .brand-story__content {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 900ms var(--ease-luxury),
    transform 1150ms var(--ease-luxury);
}

.brand-story.is-story-visible .brand-story__content {
  transition-delay: 170ms;
}

@media (max-width: 1119px) {
  .brand-story,
  .brand-story__inner {
    min-height: auto;
  }

  .brand-story__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-story__visual {
    min-height: 30rem;
  }

  .brand-story__quote {
    right: 1rem;
  }
}

@media (max-width: 599px) {
  .brand-story__visual {
    min-height: 24rem;
  }

  .brand-story__visual::before {
    width: 19rem;
  }

  .brand-story__visual::after {
    width: 13rem;
  }

  .brand-story__monogram {
    width: 7rem;
  }

  .brand-story__quote {
    right: 0;
    bottom: -0.5rem;
    max-width: 11rem;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-story__backdrop {
    transform: none;
  }

  .brand-story__visual,
  .brand-story__content {
    opacity: 1;
    transform: none;
  }
}
