#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--moss-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 36, 21, 0.72) 0%,
    rgba(20, 36, 21, 0.25) 40%,
    transparent 70%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-inline: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 2rem;
}

.hero-title .line-1 {
  display: block;
  font-size: clamp(4rem, 9vw, 11rem);
  font-style: normal;
  letter-spacing: -0.02em;
  overflow: hidden;
}

.hero-title .line-2 {
  display: block;
  font-size: clamp(3.5rem, 8.5vw, 10.5rem);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-top: -0.1em;
  padding-left: clamp(2rem, 8vw, 12rem);
  overflow: hidden;
}

.hero-divider {
  width: min(420px, 80vw);
  height: 1px;
  background: rgba(250, 250, 248, 0.35);
  margin: 2rem auto;
  transform-origin: left;
  transform: scaleX(0);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  color: rgba(250, 250, 248, 0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
  max-width: 520px;
  margin-inline: auto;
  opacity: 0;
}

/* Scroll indicator — rotating text */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  cursor: pointer;
  opacity: 0;
}

.hero-scroll-ring {
  width: 100%;
  height: 100%;
  animation: rotate-ring 8s linear infinite;
}

.hero-scroll-ring text {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 3.5px;
  fill: rgba(250, 250, 248, 0.65);
  text-transform: uppercase;
}

.hero-scroll-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
