.product-showcase {
  --product-line: rgba(216, 192, 113, .24);
  --product-line-strong: rgba(216, 192, 113, .46);
  --product-panel: rgba(5, 14, 10, .72);
  --product-panel-deep: rgba(2, 7, 5, .92);
}

.product-hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(44px, 6vw, 76px);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(330px, .78fr);
  gap: clamp(26px, 4.5vw, 68px);
  align-items: center;
}

.product-hero__copy {
  min-width: 0;
}

.product-hero__copy h1,
.product-section-head h2,
.product-route h2 {
  margin-top: 18px;
  max-width: 14ch;
  font-family: var(--serif);
  font-size: clamp(2.18rem, 3.75vw, 3.72rem);
  line-height: 1.04;
  font-weight: 500;
  text-wrap: balance;
}

.product-hero__copy p,
.product-section-head p,
.product-route p {
  margin-top: 22px;
  max-width: 62ch;
  color: var(--paper-soft);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.68;
}

.product-hero__actions,
.product-route__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.product-hero__film {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 24, 20, .16);
  border-radius: 30px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .26) 38%, rgba(236, 229, 215, .18)),
    linear-gradient(135deg, rgba(249, 246, 238, .98), rgba(226, 219, 206, .94) 44%, rgba(190, 181, 166, .82)),
    #f2eee5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    inset 0 -1px 0 rgba(17, 20, 17, .12),
    0 34px 94px -74px rgba(17, 20, 17, .42);
}

.product-hero__film video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  background: #090b0a;
}

.product-intel {
  padding: clamp(14px, 3vw, 34px) 0 clamp(44px, 6vw, 74px);
}

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

.product-intel article,
.product-operating__grid article,
.product-route {
  border: 1px solid var(--product-line);
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .024)),
    var(--product-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .075),
    0 30px 80px -62px rgba(0, 0, 0, .88);
}

.product-intel article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(20px, 2.6vw, 30px);
  border-color: rgba(22, 24, 20, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .26) 38%, rgba(236, 229, 215, .18)),
    linear-gradient(135deg, rgba(249, 246, 238, .98), rgba(226, 219, 206, .94) 44%, rgba(190, 181, 166, .82)),
    #f2eee5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    inset 0 -1px 0 rgba(17, 20, 17, .12),
    0 28px 76px -62px rgba(17, 20, 17, .36),
    0 0 0 1px rgba(128, 106, 61, .08);
}

.product-intel article:first-child {
  border-color: rgba(22, 24, 20, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .26) 38%, rgba(236, 229, 215, .18)),
    linear-gradient(135deg, rgba(249, 246, 238, .98), rgba(226, 219, 206, .94) 44%, rgba(190, 181, 166, .82)),
    #f2eee5;
}

.product-intel span,
.product-operating__grid span {
  color: var(--gold-hi);
  font-size: .66rem;
  line-height: 1.35;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-intel strong {
  display: block;
  color: #111411;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.74rem);
  line-height: 1.12;
  font-weight: 500;
}

.product-intel p,
.product-operating__grid p {
  color: var(--paper-soft);
  line-height: 1.58;
}

.product-intel span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(128, 106, 61, .28);
  border-radius: 999px;
  color: #7e6839;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .22)),
    rgba(242, 238, 229, .58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 10px 26px rgba(17, 20, 17, .08);
}

.product-intel p {
  color: rgba(17, 20, 17, .66);
}

.product-range,
.product-operating {
  padding: clamp(48px, 7vw, 92px) 0;
}

.product-section-head {
  max-width: 820px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.product-section-head h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}

.product-range__grid {
  display: block;
}

.product-range__cinema-scroll {
  position: relative;
  height: min(320vh, 2800px);
  margin-top: clamp(8px, 1.6vw, 18px);
}

.product-range__cinema-sticky {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: min(calc(100vh - 132px), 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 20px);
}

.product-range__cinema-scroll.is-locked .product-range__cinema-sticky {
  position: fixed;
  z-index: 12;
  top: clamp(84px, 10vh, 118px);
  left: 50%;
  width: min(var(--max), calc(100% - 36px));
  transform: translateX(-50%);
}

.product-range__cinema-scroll.is-after .product-range__cinema-sticky {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: none;
}

.product-range__frame {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(8px, 1.1vw, 14px);
  overflow: hidden;
  border: 1px solid rgba(22, 24, 20, .16);
  border-radius: clamp(22px, 2.7vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .26) 38%, rgba(236, 229, 215, .18)),
    linear-gradient(135deg, rgba(249, 246, 238, .98), rgba(226, 219, 206, .94) 44%, rgba(190, 181, 166, .82)),
    #f2eee5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    inset 0 -1px 0 rgba(17, 20, 17, .12),
    0 38px 110px -82px rgba(17, 20, 17, .42),
    0 0 0 1px rgba(128, 106, 61, .08);
  isolation: isolate;
}

.product-range__frame::before {
  display: none;
}

.product-range__frame::after {
  display: none;
}

.product-range__glass {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(22, 24, 20, .14);
  border-radius: clamp(16px, 2.1vw, 28px);
  background: #020504;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .42),
    inset 0 22px 70px rgba(255, 255, 255, .04),
    0 18px 50px -38px rgba(17, 20, 17, .42);
}

.product-range__glass picture,
.product-range__glass img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-range__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 720ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity;
}

.product-range__layer:first-child {
  position: relative;
}

.product-range__layer.is-active {
  opacity: 1;
  z-index: 1;
}

.product-range__glass img {
  object-fit: contain;
  object-position: center;
}

.product-range__caption {
  position: relative;
  z-index: 2;
  margin: clamp(22px, 3.2vw, 38px) auto 0;
  max-width: 980px;
  color: rgba(17, 20, 17, .66);
  font-family: var(--mono);
  font-size: clamp(.62rem, .72vw, .78rem);
  line-height: 1.55;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.product-range__scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 14px 8px 16px;
  border: 1px solid rgba(128, 106, 61, .20);
  border-radius: 999px;
  color: rgba(56, 49, 35, .78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .32)),
    rgba(242, 238, 229, .70);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 16px 42px -32px rgba(17, 20, 17, .42);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.product-range__scroll-cue i {
  position: relative;
  width: 10px;
  height: 16px;
  animation: productRangeScrollCue 1.55s cubic-bezier(.22, 1, .36, 1) infinite;
}

.product-range__scroll-cue i::before,
.product-range__scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 999px;
  transform: translateX(-50%);
}

.product-range__scroll-cue i::before {
  top: 0;
  width: 1px;
  height: 12px;
  background: linear-gradient(180deg, rgba(128, 106, 61, .22), rgba(56, 49, 35, .82));
}

.product-range__scroll-cue i::after {
  bottom: 0;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(56, 49, 35, .82);
  border-bottom: 1px solid rgba(56, 49, 35, .82);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes productRangeScrollCue {
  0%, 100% {
    transform: translateY(-1px);
    opacity: .72;
  }

  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-range__layer {
    transition: none;
  }

  .product-range__scroll-cue i {
    animation: none;
  }
}

.product-operating__grid {
  width: 100vw;
  max-width: none;
  margin: clamp(24px, 3.6vw, 46px) calc(50% - 50vw) 0;
  padding: 6px max(18px, calc((100vw - min(var(--max), calc(100vw - 36px))) / 2)) 18px;
  display: flex;
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(18px, calc((100vw - min(var(--max), calc(100vw - 36px))) / 2));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-operating__grid::-webkit-scrollbar {
  display: none;
}

.product-operating__grid article {
  position: relative;
  flex: 0 0 clamp(300px, 29vw, 390px);
  min-height: clamp(190px, 18vw, 246px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 2.4vw, 28px);
  padding-bottom: clamp(26px, 2.2vw, 32px);
  overflow: hidden;
  border-color: rgba(22, 24, 20, .16);
  border-radius: 24px;
  scroll-snap-align: start;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .26) 38%, rgba(236, 229, 215, .18)),
    linear-gradient(135deg, rgba(249, 246, 238, .98), rgba(226, 219, 206, .94) 44%, rgba(190, 181, 166, .82)),
    #f2eee5;
  backdrop-filter: blur(18px) saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    inset 0 -1px 0 rgba(17, 20, 17, .12),
    0 28px 76px -62px rgba(17, 20, 17, .36),
    0 0 0 1px rgba(128, 106, 61, .08);
}

.product-operating__grid article::before {
  content: "";
  position: absolute;
  left: clamp(20px, 2.5vw, 30px);
  right: clamp(20px, 2.5vw, 30px);
  bottom: clamp(18px, 2vw, 24px);
  height: 1px;
  background: linear-gradient(90deg, rgba(128, 106, 61, .32), rgba(22, 24, 20, .08), transparent);
  z-index: 1;
}

.product-operating__grid article::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(92% 64% at 20% 0%, rgba(255, 255, 255, .42), transparent 48%),
    linear-gradient(118deg, rgba(255, 255, 255, .32), transparent 19%, transparent 68%, rgba(126, 104, 57, .08));
  mix-blend-mode: screen;
  opacity: .58;
  pointer-events: none;
  z-index: 0;
}

.product-operating__grid article > * {
  position: relative;
  z-index: 2;
}

.product-operating__grid p {
  max-width: 30ch;
  color: rgba(17, 20, 17, .74);
  font-size: clamp(1.02rem, .95vw, 1.12rem);
  line-height: 1.56;
}

.product-operating__grid span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(128, 106, 61, .28);
  border-radius: 999px;
  color: #7e6839;
  font-size: .72rem;
  line-height: 1.25;
  letter-spacing: .115em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .22)),
    rgba(242, 238, 229, .58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 10px 26px rgba(17, 20, 17, .08);
}

.product-operating__progress {
  --rail-thumb-width: 44px;
  --rail-thumb-offset: 0px;
  position: relative;
  width: min(164px, 42vw);
  height: 7px;
  margin: 14px auto 0;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(246, 241, 229, .10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .10),
    inset 0 -1px 0 rgba(0, 0, 0, .48),
    0 12px 34px -24px rgba(216, 192, 113, .55);
}

.product-operating__progress[hidden] {
  display: none;
}

.product-operating__progress span {
  position: absolute;
  inset: 1px auto 1px 1px;
  width: var(--rail-thumb-width);
  min-width: 34px;
  max-width: calc(100% - 2px);
  border-radius: inherit;
  transform: translateX(var(--rail-thumb-offset));
  background:
    linear-gradient(90deg, rgba(246, 241, 229, .94), rgba(216, 192, 113, .86)),
    var(--gold-hi);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .62),
    0 0 18px rgba(216, 192, 113, .28);
  transition: width .18s ease, transform .16s ease;
}

.product-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  margin-top: clamp(28px, 5vw, 64px);
  padding: clamp(26px, 4.6vw, 54px);
  border-color: rgba(22, 24, 20, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .26) 38%, rgba(236, 229, 215, .18)),
    linear-gradient(135deg, rgba(249, 246, 238, .98), rgba(226, 219, 206, .94) 44%, rgba(190, 181, 166, .82)),
    #f2eee5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    inset 0 -1px 0 rgba(17, 20, 17, .12),
    0 32px 92px -74px rgba(17, 20, 17, .38);
}

.product-route h2 {
  max-width: 18ch;
  color: #111411;
  font-size: clamp(1.78rem, 3vw, 3rem);
}

.product-route p {
  color: rgba(17, 20, 17, .66);
}

.product-route .button {
  border-color: rgba(128, 106, 61, .32);
  color: #111411;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .34)),
    rgba(242, 238, 229, .72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .84),
    0 16px 34px -26px rgba(17, 20, 17, .32);
}

@media (max-width: 980px) {
  .product-hero__grid,
  .product-route {
    grid-template-columns: 1fr;
  }

  .product-hero__copy h1,
  .product-section-head h2,
  .product-route h2 {
    max-width: 18ch;
  }

  .product-intel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-range__cinema-scroll {
    height: 260vh;
  }

  .product-range__cinema-sticky {
    top: auto;
    height: calc(100svh - 86px);
    min-height: 360px;
  }

  .product-range__cinema-scroll.is-locked .product-range__cinema-sticky {
    top: 72px;
    width: min(var(--max), calc(100% - 36px));
  }
}

@media (max-width: 620px) {
  .product-hero {
    padding-top: 48px;
  }

  .product-hero__copy h1 {
    font-size: clamp(2rem, 8.3vw, 2.8rem);
  }

  .product-hero__film {
    width: min(88vw, 360px);
    margin: 28px auto 0;
    border-left: 1px solid rgba(232, 214, 151, .24);
    border-right: 1px solid rgba(232, 214, 151, .24);
    border-radius: 26px;
    padding: 7px;
  }

  .product-hero__film video {
    border-radius: 19px;
  }

  .product-hero__copy p,
  .product-section-head p,
  .product-route p {
    font-size: .98rem;
    line-height: 1.62;
  }

  .product-hero__actions,
  .product-route__actions {
    display: grid;
  }

  .product-hero__actions .button,
  .product-route__actions .button {
    width: 100%;
  }

  .product-route {
    border-radius: 22px;
  }

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

  .product-operating__grid {
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .product-operating__grid article {
    flex-basis: min(78vw, 312px);
    min-height: 184px;
    padding: 20px;
    padding-bottom: 28px;
  }

  .product-range__frame {
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw);
    padding: 7px;
    border-radius: 22px;
  }

  .product-range__cinema-sticky {
    gap: 12px;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding-top: 18px;
  }

  .product-range__cinema-scroll.is-locked .product-range__cinema-sticky {
    width: 100%;
  }

  .product-range__glass {
    border-radius: 16px;
  }

  .product-range__caption {
    margin-top: 10px;
    color: rgba(246, 241, 232, .62);
    font-size: .55rem;
    line-height: 1.5;
    letter-spacing: .055em;
  }
}
