.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 48px 48px 320px;
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 10;
  width: min(596px, calc(100vw - 96px));
  max-width: 596px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy .btn-primary--block {
  margin: 0 auto;
}

.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 32px;
  color: var(--surface);
}

.hero-copy p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--surface);
  margin-bottom: 32px;
  max-width: 596px;
  margin-inline: auto;
}

.hero-copy .btn-primary--block {
  background: var(--surface);
  color: var(--ink);
}

.hero-copy .btn-primary--block:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  filter: none;
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 0;
  }

  .hero-copy {
    flex-shrink: 0;
    width: 100%;
    max-width: none;
    padding: 20px 16px 0;
    text-align: center;
    order: 1;
  }

  .hero-copy h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .hero-copy p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
