.home-header {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.home-hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-overlay {
  position: absolute;
  top: clamp(16px, 4vw, 40px);
  left: clamp(16px, 4vw, 40px);
  right: clamp(16px, 4vw, 40px);

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  z-index: 10;
}

.home-title {
  margin: 0;
  line-height: 0.7;
  letter-spacing: 0.05em;
  color: var(--dark);
}

