.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(45, 36, 25, 0.16);
  background: #f3efe8;
  width: 100%;
}

.hero-track {
  position: relative;
  min-height: 780px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.01);
  transition:
    opacity .9s ease,
    transform 1.2s cubic-bezier(.22,.61,.36,1),
    visibility .9s ease;
  background: #f3efe8;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media,
.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 780px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.hero-slide video {
  background: #f3efe8;
}

.hero-media--mobile {
  display: none !important;
}

.hero-copy {
  position: absolute;
  left: 64px;
  bottom: 62px;
  max-width: 680px;
  z-index: 3;
  color: #fff;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .65s ease,
    transform .75s cubic-bezier(.22,.61,.36,1);
}

.hero-slide.active .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.active .hero-copy h1 {
  transition-delay: .08s;
}

.hero-slide.active .hero-copy p {
  transition-delay: .16s;
}

.hero-slide.active .hero-copy .btn {
  transition-delay: .24s;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: .9;
  letter-spacing: -.06em;
  color: #fff;
  text-shadow:
    0 3px 10px rgba(0,0,0,0.28),
    0 10px 28px rgba(0,0,0,0.18);
}

.hero-copy p {
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.98);
  text-shadow:
    0 2px 8px rgba(0,0,0,0.26),
    0 8px 20px rgba(0,0,0,0.16);
}

.hero-copy .btn {
  box-shadow:
    0 18px 34px rgba(0,0,0,.16),
    0 6px 16px rgba(0,0,0,.12);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(10px);
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.hero-nav:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 26px;
}

.hero-next {
  right: 26px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.38);
  cursor: pointer;
  transition:
    width .28s ease,
    background .28s ease,
    transform .28s ease;
}

.hero-dot:hover {
  transform: scale(1.1);
}

.hero-dot.active {
  width: 32px;
  background: #fff;
}

@media (max-width: 1366px) {
  .hero-slider {
    border-radius: 28px;
  }

  .hero-track {
    min-height: clamp(360px, 46vw, 560px);
  }

  .hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-media,
  .hero-slide img,
  .hero-slide video {
    height: clamp(360px, 46vw, 560px);
    object-fit: contain;
    object-position: center center;
    background: #f4efe8;
  }

  .hero-copy {
    left: clamp(22px, 4vw, 34px);
    right: clamp(22px, 4vw, 34px);
    bottom: 24px;
    max-width: min(70%, 620px);
  }
}

@media (max-width: 980px) {
  .hero-track {
    min-height: 620px;
  }

  .hero-media,
  .hero-slide img,
  .hero-slide video {
    height: 620px;
    object-fit: contain;
    object-position: center center;
  }

  .hero-copy {
    left: 28px;
    right: 28px;
    bottom: 34px;
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 7vw, 58px);
  }

  .hero-copy p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-nav {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    border-radius: 24px;
  }

  .hero-track {
    min-height: 500px;
  }

  .hero-media,
  .hero-slide img,
  .hero-slide video {
    height: 500px;
    object-fit: contain;
    object-position: center center;
  }

  .hero-copy {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 9vw, 46px);
    line-height: .95;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-prev {
    left: 14px;
  }

  .hero-next {
    right: 14px;
  }

  .hero-nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .hero-dot.active {
    width: 26px;
  }
}

/* 20260505 banner readable brown gradient text */
.hero-copy {
  padding: 0;
  border-radius: 0;
  color: var(--bronze-dark, #684632);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-copy h1,
.hero-copy p {
  color: var(--bronze-dark, #684632);
  background: linear-gradient(100deg, #352013 0%, #684632 42%, #9f734d 74%, #c69b6d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.62))
    drop-shadow(0 8px 18px rgba(36, 24, 15, 0.22));
}

.hero-copy p {
  max-width: 590px;
  font-weight: 650;
  background: linear-gradient(100deg, #422817 0%, #765238 58%, #b98959 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy .btn {
  margin-top: 2px;
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero-copy h1,
  .hero-copy p {
    color: #684632;
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

/* 20260515 banner navigation visibility enhancement */
.hero-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(133, 89, 61, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 229, 0.9));
  color: var(--bronze-dark, #684632);
  font-family: var(--font-display, inherit);
  font-weight: 900;
  box-shadow:
    0 18px 42px rgba(63, 42, 27, 0.22),
    0 6px 16px rgba(63, 42, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-nav::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(198, 155, 109, 0.28), rgba(198, 155, 109, 0));
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}

.hero-nav:hover,
.hero-nav:focus-visible {
  background:
    linear-gradient(145deg, #ffffff, #efe0ce);
  border-color: rgba(104, 70, 50, 0.55);
  color: #3f2a1b;
  box-shadow:
    0 22px 48px rgba(63, 42, 27, 0.28),
    0 8px 20px rgba(63, 42, 27, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-nav:focus-visible {
  outline: 3px solid rgba(198, 155, 109, 0.42);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .hero-nav::after {
    inset: -5px;
  }
}


@media (max-width: 768px) {
  .hero-media--desktop {
    display: none !important;
  }

  .hero-media--mobile {
    display: block !important;
    width: 100%;
    height: 100%;
  }
}

/* 20260516 mobile banner navigation visibility parity */
@media (max-width: 768px) {
  .hero-nav {
    width: 46px !important;
    height: 46px !important;
    border-color: rgba(104, 70, 50, 0.42) !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(239,224,206,0.94)) !important;
    color: var(--bronze-dark, #684632) !important;
    box-shadow:
      0 16px 34px rgba(63, 42, 27, 0.24),
      0 4px 12px rgba(63, 42, 27, 0.16),
      inset 0 1px 0 rgba(255,255,255,0.92) !important;
  }

  .hero-prev {
    left: 10px !important;
  }

  .hero-next {
    right: 10px !important;
  }
}
