.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 55%),
              radial-gradient(circle at bottom right, rgba(184, 138, 59, 0.18), transparent 60%),
              var(--color-bg);
}

.thank-you-container {
  max-width: 640px;
  text-align: center;
}

.thank-you-header {
  margin-bottom: var(--space-4);
}

.thank-you-eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.thank-you-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: var(--line-height-tight);
  color: var(--color-header);
}

.thank-you-body {
  margin-top: var(--space-4);
}

.thank-you-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.thank-you-text {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--color-text);
}

.thank-you-actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

@media (max-width: 600px) {
  .thank-you-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .thank-you-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
}
