.feedback-page{
  min-height:calc(100vh - 160px);
  padding:5rem 0;
  background:radial-gradient(circle at 82% 10%, rgba(126, 209, 170, .22), transparent 23%), linear-gradient(180deg, #f7f5f1 0%, #fbf9f5 100%);
}

.feedback-shell{
  max-width:680px;
  margin:0 auto;
}

.feedback-intro{
  max-width:570px;
  margin-bottom:1.8rem;
}

.feedback-kicker{
  display:inline-flex;
  margin-bottom:.85rem;
  color:var(--green-dark);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.feedback-intro h1{
  margin:0 0 .7rem;
  color:var(--green-dark);
  font-family:var(--font-heading);
  font-size:clamp(2rem, 5vw, 3rem);
  line-height:1.04;
  letter-spacing:-.04em;
}

.feedback-intro p{
  margin:0;
  color:var(--muted);
  font-size:.96rem;
  line-height:1.65;
}

.feedback-card{
  padding:1.5rem;
  border:1px solid rgba(31, 38, 34, .1);
  border-radius:22px;
  background:#fffdf8;
  box-shadow:0 20px 45px rgba(22, 56, 47, .1);
}

.feedback-card label{
  display:block;
  margin-bottom:.55rem;
  color:var(--green-dark);
  font-size:.78rem;
  font-weight:800;
}

.feedback-card textarea{
  display:block;
  width:100%;
  resize:vertical;
  min-height:170px;
  padding:1rem;
  border:1px solid rgba(31, 38, 34, .16);
  border-radius:14px;
  background:#fff;
  color:var(--text);
  font:inherit;
  line-height:1.55;
}

.feedback-card textarea:focus{
  outline:0;
  border-color:var(--green);
  box-shadow:0 0 0 .22rem rgba(47, 107, 87, .12);
}

.feedback-card__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-top:1rem;
  color:var(--muted);
  font-size:.78rem;
}

.feedback-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  min-height:48px;
  padding:.7rem 1.15rem;
  border:1px solid var(--green-dark);
  border-radius:12px;
  background:var(--green-dark);
  box-shadow:0 8px 18px rgba(18, 63, 52, .2);
  color:#fff;
  font:inherit;
  font-size:.88rem;
  font-weight:800;
  cursor:pointer;
  transition:background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.feedback-submit svg{
  width:1rem;
  height:1rem;
}

.feedback-submit:hover{
  background:var(--green);
  box-shadow:0 11px 22px rgba(18, 63, 52, .26);
  transform:translateY(-1px);
}

.feedback-submit:focus-visible{
  outline:3px solid rgba(47, 107, 87, .32);
  outline-offset:3px;
}

.feedback-honeypot{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

@media (max-width:575.98px){
  .feedback-page{ padding:3.2rem 0 4rem; }
  .feedback-card{ padding:1.15rem; border-radius:18px; }
  .feedback-card__footer{ align-items:stretch; flex-direction:column; }
  .feedback-submit{ width:100%; }
}
