body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;

  overflow: visible;
  min-height: 100vh;
  background: #0b0b0b;
  color: #e0d9cc;
  font-family: "IBM Plex Mono", monospace;
  margin: 0;
}
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  padding: 0 4rem;
  padding-top: 52px;
  padding-bottom: 8rem;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #e0d9cc;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-left p {
  font-size: 11px;
  color: #dea132;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-right .hero-label {
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: #e8a020;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-right p {
  font-size: 0.9rem;
  color: #9a9285;
  font-weight: 300;
  line-height: 1.9;
  max-width: 580px;
  text-align: justify;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #2e2e2e;
  color: #9a9285;
}

.btn-secondary:hover {
  border-color: #3a3530;
  color: #e0d9cc;
}
