.section-thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height-mobile) - 140px);
  padding-block: var(--spacing-3xl);
}

.thank-you-card {
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
}

.thank-you-header {
  margin-bottom: var(--spacing-md);
}

.thank-you-eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  color: var(--color-primary-strong);
  margin-bottom: var(--spacing-xs);
}

.thank-you-title {
  font-size: var(--text-3xl);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thank-you-body {
  margin-bottom: var(--spacing-lg);
}

.thank-you-lead {
  font-size: var(--text-lg);
  line-height: var(--line-relaxed);
  color: var(--color-text-soft);
  margin-bottom: var(--spacing-md);
}

.thank-you-text {
  font-size: var(--text-md);
  line-height: var(--line-relaxed);
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  justify-content: center;
}

.thank-you-actions .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .section-thank-you {
    min-height: calc(100vh - var(--header-height-desktop) - 180px);
  }

  .thank-you-title {
    font-size: var(--text-4xl);
  }

  .thank-you-actions {
    flex-direction: row;
  }

  .thank-you-actions .btn {
    width: auto;
    flex: 1 1 0;
  }
}
