*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: #fff;
  background: #0a0a0a;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 4rem)
    clamp(4rem, 14vh, 10rem);
  background-color: #1a1510;
  background-image: url("background.png");
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    transparent 58%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero__title {
  margin: 0 0 clamp(0.5rem, 1.5vh, 1.125rem) clamp(2rem, 10vw, 7rem);
  max-width: 14ch;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: min(100%, 420px);
  margin-left: auto;
  margin-right: 8rem;
}

.hero__lead {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.1875rem);
  line-height: 1.55;
  opacity: 0.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: #fff;
  background-color: #0f1f3d;
}

.btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: clamp(1.25rem, 4.5vh, 2.75rem);
    background-position: 62% center;
  }

  .hero__title {
    font-size: clamp(2.85rem, 9vw, 3.45rem);
  }

  .hero__lead {
    font-size: clamp(1.2rem, 4.5vw, 1.3rem);
  }
}

@media (max-width: 1400px) {
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__title {
    margin-left: 0;
    margin-bottom: 0;
  }

  .hero__aside {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}
