html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background: #050607;
  color: #f3f0ea;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("hero-background.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 6, 10, 0.72) 0%,
    rgba(3, 6, 10, 0.46) 34%,
    rgba(3, 6, 10, 0.10) 58%,
    rgba(3, 6, 10, 0.14) 100%
  );
}

.brand-top,
.content {
  position: absolute;
  z-index: 2;
}

.brand-top {
  top: 38px;
  left: 54px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 8px;
}

.content {
  left: 6%;
  top: 28%;
  width: 540px;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(52px, 5vw, 82px);
  letter-spacing: 17px;
  line-height: 1;
  white-space: nowrap;
}

.subtitle {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 13px;
  letter-spacing: 6px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.line {
  width: 58px;
  height: 1px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.6);
}

.tagline {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 13px;
  letter-spacing: 5px;
  line-height: 1.7;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.76);
  white-space: nowrap;
}

.coming {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .hero {
    background-position: 62% center;
  }

  .brand-top {
    top: 24px;
    left: 24px;
    font-size: 14px;
    letter-spacing: 5px;
  }

  .content {
    left: 24px;
    top: 27%;
    width: calc(100% - 48px);
  }

  h1 {
    font-size: 46px;
    letter-spacing: 9px;
    white-space: normal;
  }

  .subtitle,
  .tagline {
    letter-spacing: 3px;
    white-space: normal;
  }
}
