/* --- CINEMATIC CURTAIN --- */
.hero__curtain {
  position: fixed;
  inset: 0;
  background: #0e0b09;
  z-index: 9999;
  pointer-events: none;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #F3EDE6 0%, #EDE4D8 60%, #E7DED4 100%);
  overflow: hidden;
}

.hero__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #8A6B4F;
  margin-bottom: 32px;
  font-weight: 600;
  opacity: 0;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(44px, 9vw, 118px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #1F1A17;
  margin: 0 0 28px 0;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.28em;
}

.hero__heading .hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: #6B5A4E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6B5A4E;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
}

.hero__scroll-line {
  width: 32px;
  height: 1px;
  background: rgba(107, 90, 78, 0.45);
  display: inline-block;
}

@media (max-width: 768px) {
  .hero__inner {
    padding: 0 24px;
  }
  .hero__heading {
    font-size: clamp(38px, 12vw, 64px);
  }
  .hero__label {
    margin-bottom: 24px;
  }
}
