
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 14px 30px rgba(181, 138, 66, 0.24);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg,
.hero-bg span,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg span {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  animation: heroImageFade 16s infinite;
  will-change: opacity;
}

.hero-bg span:nth-child(1) { animation-delay: 0s; }
.hero-bg span:nth-child(2) { animation-delay: 4s; }
.hero-bg span:nth-child(3) { animation-delay: 8s; }
.hero-bg span:nth-child(4) { animation-delay: 12s; }

.hero::after {
  content: "";
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(6, 9, 10, 0.62) 0%,
    rgba(6, 9, 10, 0.52) 44%,
    rgba(6, 9, 10, 0.40) 100%
  );
  pointer-events: none;
}

@keyframes heroImageFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 88px clamp(42px, 5vw, 90px) 76px;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  display: block;
  min-height: calc(100vh - 94px - 164px);
}

.hero-main,
.hero-side {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(12px, 3vw, 54px);
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.36s ease, transform 0.36s ease, visibility 0s linear 0.36s;
}

.hero-main {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.hero.is-slide-2 .hero-main {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.36s ease, transform 0.36s ease, visibility 0s linear 0.36s;
}

.hero.is-slide-2 .hero-side {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.hero-main > *,
.hero-side > * {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1,
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  color: #fff;
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: 0.96;
  max-width: 820px;
}

.hero p {
  margin-top: 24px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-side .section-title {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  color: #fffaf1;
  max-width: 820px;
}

.hero-side .lead {
  margin-top: 22px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-side .btn {
  margin-top: 30px;
  text-shadow: none;
}

.hero-actions .btn {
  text-shadow: none;
}

.hero-controls {
  display: block;
}

.hero-slide-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 56px;
  border: 1px solid rgba(181, 138, 66, 0.75);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.hero-slide-btn:hover,
.hero-slide-btn:focus-visible {
  outline: none;
  filter: brightness(1.06);
}

.hero-slide-prev { left: clamp(10px, 2.2vw, 32px); }
.hero-slide-next { right: clamp(10px, 2.2vw, 32px); }

.section {
  padding: 96px 0;
}

.center-heading {
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.carousel-wrap {
  position: relative;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 140px;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 3px 22px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.artist-card {
  text-align: center;
}

.artist-card img {
  width: 118px;
  height: 118px;
  margin-inline: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(17, 23, 25, 0.12);
  border: 1px solid rgba(31, 37, 40, 0.1);
  background: #eee4d4;
}

.artist-card span {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.15;
}

.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(31, 37, 40, 0.1);
  background: rgba(255, 250, 241, 0.95);
  box-shadow: 0 14px 35px rgba(17, 23, 25, 0.14);
  cursor: pointer;
  font-size: 22px;
  color: var(--ink);
}

.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }

.artists {
  padding-top: 38px;
  padding-bottom: 44px;
}

@media (max-width: 680px) {
  .hero {
    min-height: 520px;
    align-items: center;
  }

  .hero-bg span {
    background-position: center center;
    background-size: cover;
    transform: scale(1.01);
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(6, 9, 10, 0.58) 0%,
      rgba(6, 9, 10, 0.47) 52%,
      rgba(6, 9, 10, 0.38) 100%
    );
  }

  .hero-shell {
    padding: 50px 42px 44px;
  }

  .hero-layout {
    min-height: 390px;
  }

  .hero-main,
  .hero-side {
    padding: 0 6px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1;
  }

  .hero p,
  .hero-side .lead {
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-side .section-title {
    font-size: clamp(25px, 6.8vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-side .btn {
    margin-top: 24px;
  }

  .hero-slide-btn {
    width: 36px;
    height: 46px;
    font-size: 30px;
  }

  .hero-slide-prev { left: 10px; }
  .hero-slide-next { right: 10px; }

  .section {
    padding: 68px 0;
  }

  .artists {
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .center-heading {
    margin-bottom: 24px;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero { min-height: 520px; }
  .hero-shell { padding-inline: 38px; }
  .hero-layout { min-height: 390px; }
  .hero-slide-btn {
    width: 32px;
    height: 42px;
    font-size: 26px;
  }
}
