.thank-you-section {
  min-height: calc(100vh - var(--header-height) * 2);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, rgba(201, 162, 91, 0.12), transparent 55%),
              linear-gradient(to bottom, #ffffff 0%, #f7f4ee 45%, #ffffff 100%);
}

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

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

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

.thank-you-title {
  font-family: var(--font-serif);
  font-size: clamp(var(--font-size-2xl), 2.4vw + 1.4rem, var(--font-size-4xl));
}

.thank-you-body {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.thank-you-message {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

.thank-you-next {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

@media (min-width: 640px) {
  .thank-you-actions {
    flex-direction: row;
  }
}

.thank-you-actions .btn {
  min-width: 190px;
}
