.hero-dark {
  position: relative;
  height: 100vh;
  background-color: #1f1f1d;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 1;
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  z-index: 2;
} 

.hero-texture img {
  position: absolute;
  width: 100vw;
  height: 100vh;
  inset: 0;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  filter: blur(2px) contrast(1.1);
  opacity: 0.6;
  z-index: 0;
}


.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  animation: heroFade 1s ease forwards;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 


/* TEXT -------------------------------------------------------- */
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero-title {
  font-size: 96px;
  line-height: 0.95;
  margin: 20px 0;
}

.caret {
  display: inline-block;
  margin-left: 4px;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.hero-content p {
  font-size: 20px;
  max-width: 520px;
  opacity: 0.8;
  margin-bottom: 48px;
}

/* BUTTONS -------------------------------------------------------- */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn.primary {
  background-color: #ffffff;
  color: #1f1f1d;
  padding: 16px 44px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3 ease, box shadow 0.3s ease;
}
.btn.primary:hover {
  background-color: #f0f0f0;
  color: #1f1f1d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.link {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
}

.link:hover {
  opacity: 1;
  transform: translateY(-2px);
}


.hero-scroll {
  margin-top: 80px;
  font-family: 'Montserrat', sans-serif ;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
}


