.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - var(--header-height));
  padding: clamp(2rem, 8vw, 4rem) var(--page-padding-x);
  text-align: center;
  background: transparent;
}

.home-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 3.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  max-width: min(520px, 100%);
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.6;
}

.home-hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 320px;
}

.home-hero__cta .btn {
  flex: 1;
  min-width: 160px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  font-weight: 400;
  padding: 1rem 2rem;
}

.home-hero__divider {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: var(--space-xl);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.page__main {
  flex: 1;
}

@media (max-width: 479px) {
  .home-hero__cta {
    flex-direction: column;
    max-width: 100%;
  }

  .home-hero__cta .btn {
    width: 100%;
    min-width: unset;
  }
}
