/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-dark);
}

/* Parallax image wrapper */
.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  will-change: transform;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlays */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 20, 16, 0.82) 0%,
    rgba(26, 20, 16, 0.60) 50%,
    rgba(123, 28, 46, 0.25) 100%
  );
}

.hero__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--clr-white));
  z-index: 2;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero__inner {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(232, 185, 106, 0.4);
  border-radius: 100px;
  margin-bottom: 1.75rem;
  background: rgba(201, 148, 58, 0.08);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Badge strip */
.hero-stats {
  background: var(--clr-red);
  padding: 0;
}

.hero-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.hero-stat:last-child { border-right: none; }

.hero-stat__value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-white);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hero-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__title { font-size: 2.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .hero-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
}

@media (max-width: 480px) {
  .hero-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
