/* Hero */
.hero-wrapper {
  height: 190vh;
  position: relative;
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  z-index: 10;
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 13vw, 13vw);
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -0.02em;
  transform-origin: center center;
}

.hero-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--body);
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.hero .btn {
  font-size: 1rem;
}
