.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 4rem 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70vw;
  height: 80vh;
  background: radial-gradient(
    ellipse at 30% 40%,
    rgba(200, 149, 58, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.hero-tag-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 300;
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s var(--ease) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero h1 strong {
  font-weight: 400;
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 46ch;
  margin-top: 1.5rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease) forwards;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s var(--ease) forwards;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 3rem;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.btn-primary {
  background: var(--gold);
  color: #07080f;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 149, 58, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 7rem 2rem 4rem;
  }
  .hero-price {
    right: 2rem;
    bottom: 8vh;
  }
  .price-ring {
    width: 150px;
    height: 150px;
  }
  .price-amount {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-price {
    display: none;
  }
  .hero-scroll {
    position: relative;
    top: 3.5rem;
  }
}

/* Video wrapper – positions the video absolutely */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.65) contrast(1.1) saturate(0.9);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 40%,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.55) 80%
  );
  pointer-events: none;
  z-index: 1;
}

/* Ensure existing grid and glow appear above the overlay */
.hero-grid,
.hero::before {
  z-index: 2;
  position: absolute; /* .hero-grid already has absolute, .hero::before also absolute – good */
}

/* Raise all text content above the background layers */
.hero-tag,
.hero h1,
.hero-sub,
.hero-cta,
.hero-price,
.hero-scroll {
  position: relative;
  z-index: 3;
}
