.hero {
  min-height: 100svh;
  position: relative;
  overflow: visible;

  padding: 120px 48px 70px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 4, 0.96) 0%,
      rgba(5, 5, 4, 0.82) 32%,
      rgba(5, 5, 4, 0.35) 62%,
      rgba(5, 5, 4, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 4, 0.25) 0%,
      rgba(5, 5, 4, 0.15) 55%,
      rgba(5, 5, 4, 0.85) 100%
    ),
    url("../images/hero.png");

  background-size: cover;
  background-position: center right;
  background-attachment: scroll;
  will-change: auto;
}

.hero-content {
  position: relative;
  z-index: 10;

  width: min(1280px, 100%);
  margin: 0 auto;
  padding-top: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;

  color: #caa64d;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 0.78rem;
  font-weight: 500;

  margin-bottom: 24px;
  line-height: 1;
}

.hero-kicker span {
  flex: 0 0 54px;
  width: 54px;
  height: 1px;
  background: #caa64d;
  position: relative;
  top: -1px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -4px;
  font-weight: 400;
  color: #fffaf1;

  max-width: 620px;
  margin-bottom: 24px;

  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.hero h1::first-letter {
  letter-spacing: -6px;
}

.divider {
  width: 96px;
  height: 1px;
  background: #caa64d;
  margin-bottom: 26px;
  position: relative;
}

.divider::after {
  content: "❧";
  position: absolute;
  right: -28px;
  top: -12px;
  color: #caa64d;
  font-size: 1.2rem;
}

.hero-content p {
  max-width: 470px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  min-height: 62px;
  padding: 0 26px;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 1px;

  transition: 0.3s ease;
}

.btn-gold {
  min-width: 250px;
  color: #fff;
  background: linear-gradient(135deg, #c29631, #ddb85a);
  box-shadow: 0 18px 35px rgba(194, 150, 49, 0.28);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(194, 150, 49, 0.38);
}

.btn-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(10, 10, 10, 0.4);
  color: #111;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.arrow {
  margin-left: 10px;
  font-size: 1.5rem;
}

.btn-outline {
  min-width: 250px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(213, 172, 76, 0.8);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(213, 172, 76, 0.12);
  transform: translateY(-3px);
}

.play {
  width: 32px;
  height: 32px;
  border: 1px solid #d5ac4c;
  border-radius: 50%;
  color: #d5ac4c;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
}

/* Scroll progress line */
.progress-bar,
.scroll-progress {
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
}
