/* Sun & Soil — Thank You page (keeps original structure, no header/footer) */

.thankyou-section{
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(900px 420px at 15% -5%, #fff8e1 0, transparent 60%),
    radial-gradient(900px 420px at 110% 5%, #eefcf0 0, transparent 60%),
    #fffdf8;
}

.thankyou-container{
  max-width: 720px;
  width: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line, #e9e2cf);
  border-radius: 24px;
  box-shadow: var(--shadow, 0 10px 30px rgba(29,27,22,.12));
  padding: 28px 22px;
  animation: ty-fade .35s ease both;
}

.thankyou-title{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.4rem);
}

.thankyou-message{
  color: #4a453e;
  max-width: 62ch;
  margin: 0 auto 16px;
}

.cta-button{
  margin-top: 6px;               /* кнопка уже стилизуется в style.css, добавим только отступ */
}

/* small motion touch */
@media (prefers-reduced-motion:no-preference){
  @keyframes ty-fade{
    from{ opacity:0; transform: translateY(6px); }
    to{ opacity:1; transform:none; }
  }
}

/* mobile tweaks */
@media (max-width: 520px){
  .thankyou-container{ padding: 22px 18px; border-radius: 20px; }
  .thankyou-message{ font-size: 0.98rem; }
}

/* print: чистый текст */
@media print{
  .thankyou-section{ background:#fff; padding:0; }
  .thankyou-container{ box-shadow:none; border:0; border-radius:0; }
}
