.home .hero-slider {
  position: relative;
  width: 100%;
  height: calc(100svh - 34px);
  min-height: 680px;
  overflow: hidden;
  background: #151412;
  color: #fff;
}
.home .hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.home .hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home .hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  transition: transform 6.5s ease;
}
.home .hero-slide.is-active > img { transform: scale(1); }
.home .hero-slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,7,.52) 0%, rgba(8,8,7,.12) 52%, rgba(8,8,7,.08) 100%);
}
.home .hero-slide-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 8vw, 150px);
  bottom: clamp(90px, 13vh, 145px);
  width: min(590px, 78vw);
  color: #fff;
}
.home .hero-slide-copy .eyebrow { margin-bottom: 24px; color: rgba(255,255,255,.88); }
.home .hero-slide-copy h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
  text-shadow: 0 3px 24px rgba(0,0,0,.18);
}
.home .hero-slide-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.9;
}
.home .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid rgba(255,255,255,.8);
  color: #fff;
  background: rgba(0,0,0,.08);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.home .hero-cta:hover { color: #171714; background: #fff; }
.home .slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.08);
  cursor: pointer;
  font-size: 18px;
  transition: background .25s ease;
}
.home .slider-arrow:hover { background: rgba(0,0,0,.35); }
.home .slider-arrow-prev { left: 28px; }
.home .slider-arrow-next { right: 28px; }
.home .slider-controls {
  position: absolute;
  z-index: 4;
  right: clamp(28px, 4vw, 70px);
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.88);
}
.home .slider-dots { display: flex; align-items: center; gap: 9px; }
.home .slider-dots button {
  width: 30px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.home .slider-dots button.is-active { background: #fff; }
.home .slider-count { font-size: 9px; letter-spacing: .15em; }

@media (max-width: 880px) {
  .home .hero-slider { height: calc(100svh - 30px); min-height: 620px; }
  .home .hero-slide > img { object-position: 61% center; }
  .home .hero-slide-copy { left: 22px; bottom: 74px; width: calc(100vw - 44px); }
  .home .hero-slide-copy h1 { font-size: clamp(48px, 13vw, 70px); line-height: 1.02; }
  .home .hero-slide-copy > p:not(.eyebrow) { max-width: 350px; font-size: 12px; }
  .home .slider-arrow { width: 38px; height: 38px; top: auto; bottom: 24px; }
  .home .slider-arrow-prev { left: 22px; }
  .home .slider-arrow-next { left: 70px; right: auto; }
  .home .slider-controls { right: 22px; bottom: 33px; }
}

@media (max-width: 520px) {
  .home .hero-slider { min-height: 590px; }
  .home .hero-slide-scrim { background: linear-gradient(0deg, rgba(8,8,7,.58), rgba(8,8,7,.03) 70%); }
  .home .hero-slide-copy { bottom: 86px; }
  .home .hero-slide-copy h1 { font-size: 48px; }
  .home .hero-cta { padding: 11px 16px; font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .home .hero-slider-track, .home .hero-slide > img { transition: none; }
}
