.v21-hero {
  position: relative;
  height: clamp(600px, 58vw, 760px);
  width: min(100vw, 1920px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--brown);
  color: #fff;
}

.hero-track,
.hero-track img,
.hero-tint {
  position: absolute;
  inset: 0;
}

.hero-track .hero-slide {
  position: absolute;
  inset: 0;
}

.hero-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-desktop-position, 50% center);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 4600ms linear;
  will-change: opacity, transform;
}

.hero-track .hero-slide.active img,
.hero-track img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-tint {
  background:
    linear-gradient(90deg, rgba(31, 43, 53, 0) 0%, rgba(31, 43, 53, 0) 50%, var(--hero-panel) 64%, var(--hero-panel) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02));
}

.hero-copy-card {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100vw - 42px));
  margin-left: auto;
  margin-right: var(--stage-pad);
  padding-top: clamp(118px, 10vw, 150px);
  text-align: right;
}

.hero-copy-item {
  display: none;
  flex-direction: column;
  align-items: flex-end;
}

.hero-copy-item.active {
  display: flex;
}

.hero-copy-card h1,
.hero-copy-card h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(34px, 3.1vw, 54px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.28);
}

.hero-copy-card p {
  margin-left: auto;
  max-width: 450px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.45;
}

.round-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: var(--cta-bg);
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 15px 28px rgba(23, 36, 48, 0.18);
}

.round-cta:hover {
  background: var(--cta-hover);
}

.round-cta.small {
  min-height: 28px;
  padding-inline: 16px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.active {
  background: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
  .hero-track img {
    transform: none;
    transition: none;
    will-change: auto;
  }
}
