/* ═══════════════════════════════════════════
   HERO.CSS — Cinematic full-screen hero
   ═══════════════════════════════════════════ */

.hero-cinematic {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0d0d0d;
}

.hero-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  animation: kenburns 20s ease infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0) 0%, #0d0d0d 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 80px 140px;
  max-width: 760px;
}

.hero-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c8500a;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin: 0;
}

.hero-title span {
  color: #c8500a;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: #c8500a;
  margin: 28px 0 24px;
}

.hero-desc {
  margin: 0;
  max-width: 400px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.hero-btn-primary:link,
.hero-btn-primary:visited {
  color: #ffffff;
}

.hero-btn-secondary:link,
.hero-btn-secondary:visited {
  color: #ffffff;
}

.hero-btn-primary {
  background: #c8500a;
  border: 1px solid #c8500a;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.hero-btn-primary:hover {
  background: #df5d12;
  border-color: #df5d12;
}

.hero-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.hero-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-scroll {
  position: absolute;
  left: 80px;
  bottom: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -45%;
  left: 0;
  width: 100%;
  height: 45%;
  background: #c8500a;
  animation: scrollLineDrop 1.4s ease infinite;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes scrollLineDrop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(220%);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 110px 40px 140px;
  }

  .hero-title {
    font-size: clamp(4.25rem, 9.5vw, 8rem);
  }

  .hero-scroll {
    left: 40px;
  }
}

@media (max-width: 768px) {
  .hero-cinematic {
    min-height: 100svh;
  }

  .hero-media {
    object-position: 60% center;
  }

  .hero-content {
    min-height: 100svh;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 24px 140px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(3.5rem, 8vw, 5rem);
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-scroll {
    left: 24px;
    bottom: 28px;
  }
}
