/* hero */
.hero {
      width: 100%;
      min-height: calc(100svh - 74px);
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 0 0 clamp(58px, 8vw, 110px);
    }

    .hero-copy {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding-top: clamp(38px, 6vw, 78px);
      text-align: center;
      opacity: 0;
      transform: translateY(54px);
      transition:
        opacity 920ms cubic-bezier(.22, 1, .36, 1),
        transform 920ms cubic-bezier(.22, 1, .36, 1);
    }

    .hero-copy.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-copy h1 {
      margin: 0;
      font-size: clamp(62px, 7.2vw, 112px);
      line-height: 1;
      letter-spacing: -0.035em;
      white-space: nowrap;
    }

    .hero-phrase { display: inline; }

    .hero-pop {
      display: inline-block;
      transform-origin: 50% 82%;
      color: #d99a00;
    }

    .hero-pop-late { color: #d83a2e; }

    .hero-copy.is-visible .hero-pop {
      animation: hero-word-pop 620ms cubic-bezier(.22, 1.45, .36, 1) both;
    }

    .hero-copy.is-visible .hero-pop { animation-delay: 820ms; }

    .hero-copy.is-visible .hero-pop-late { animation-delay: 1040ms; }

    @keyframes hero-word-pop {
      0% { transform: translateY(0) scale(1); }
      42% { transform: translateY(-13px) scale(1.13); }
      68% { transform: translateY(3px) scale(0.98); }
      100% { transform: translateY(0) scale(1); }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-media {
      position: relative;
      width: 100%;
      height: 66.6667svh;
      min-height: 0;
      border-radius: 0;
      background: var(--dark);
      overflow: hidden;
      box-shadow: none;
    }

    .hero-slider-track {
      display: flex;
      width: 300%;
      height: 100%;
      min-height: 0;
      transform: translate3d(0, 0, 0);
      will-change: transform;
    }

    .hero-slide {
      flex: 0 0 33.333333%;
      width: 33.333333%;
      margin: 0;
      height: 100%;
      min-height: 0;
      overflow: hidden;
    }

    .hero-slide img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
      object-position: center 72%;
    }
