.membership-panel {
  position: relative;
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 10px 0 30px;
  overflow: hidden;
}

.membership-panel::before,
.membership-panel::after {
  content: "";
  position: absolute;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  background: radial-gradient(circle at 35% 35%, rgba(255, 214, 140, 0.5), rgba(255, 190, 110, 0.15) 55%, transparent 70%),
    url("mandala.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.membership-panel::before {
  top: -40px;
  left: -40px;
}

.membership-panel::after {
  right: -40px;
  bottom: -40px;
  transform: rotate(180deg);
}

.membership-visual,
.membership-form {
  position: relative;
  z-index: 1;
}

.membership-visual {
  width: min(560px, 100%);
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.95), rgba(255, 232, 204, 0.85));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 16px 28px rgba(64, 38, 20, 0.14);
}

.membership-visual img {
  width: 100%;
  height: clamp(190px, 30vw, 320px);
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.membership-form {
  width: min(520px, 100%);
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(64, 38, 20, 0.12);
}

.membership-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(112, 72, 35, 0.3);
  background: #fffdfa;
  font-family: inherit;
}

.membership-form button {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff8f0;
  background: linear-gradient(120deg, #4b2e1d, #7a4a2c);
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(45, 28, 17, 0.25);
}

.membership-form button:hover {
  filter: brightness(1.05);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.feedback-cta {
  margin: 20px auto 40px;
  padding: clamp(18px, 3.2vw, 28px);
  display: grid;
  gap: 14px;
  width: min(820px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(120, 78, 40, 0.25);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 226, 175, 0.55), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(118, 76, 44, 0.2), transparent 50%),
    linear-gradient(120deg, rgba(255, 246, 234, 0.96), rgba(255, 234, 210, 0.86));
  box-shadow: 0 18px 32px rgba(64, 38, 20, 0.12);
  text-align: left;
}

.feedback-cta__content {
  display: grid;
  gap: 6px;
}

.feedback-cta__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(90, 55, 28, 0.75);
  font-weight: 600;
}

.feedback-cta h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin: 0;
  color: #4b2e1d;
}

.feedback-cta p {
  margin: 0;
  color: rgba(54, 32, 16, 0.78);
  font-size: 1rem;
}

.feedback-cta__button {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(75, 46, 29, 0.28);
  background: linear-gradient(120deg, #4b2e1d, #8a5531);
  color: #fff6ea;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(45, 28, 17, 0.2);
  position: relative;
  overflow: hidden;
  animation: feedback-pulse 3.2s ease-in-out infinite;
}

@media (min-width: 840px) {
  .feedback-cta {
    grid-template-columns: 1.3fr auto;
    align-items: center;
  }

  .feedback-cta__button {
    justify-self: end;
  }
}

.feedback-cta__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.feedback-cta__button:hover::after,
.feedback-cta__button:focus-visible::after {
  transform: translateX(120%);
}

.feedback-cta__button:hover,
.feedback-cta__button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@keyframes feedback-pulse {
  0%,
  100% {
    box-shadow: 0 12px 22px rgba(45, 28, 17, 0.2);
  }
  50% {
    box-shadow: 0 16px 28px rgba(80, 46, 24, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-cta__button {
    animation: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  .membership-visual {
    padding: 12px;
  }

  .membership-form {
    padding: 16px;
  }

  .membership-form button {
    width: 100%;
  }

  .feedback-cta {
    text-align: center;
  }

  .feedback-cta__button {
    justify-content: center;
    width: 100%;
  }
}
