/* ============================================================
   PATIENT FEEDBACK PAGE
   Two equal, unfiltered choices — public review or private note —
   followed by the private feedback form.
   ============================================================ */

.feedback {
  padding-block: clamp(3rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem);
  padding-inline: var(--pad-x);
  background-color: var(--cream);
}

.feedback__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.feedback__choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background-color: #fff;
  border: 1px solid rgba(13, 44, 108, 0.1);
  border-radius: 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feedback__choice:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(8, 22, 64, 0.1);
}

.feedback__choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  color: var(--royal-blue);
  background: linear-gradient(135deg, oklch(0.97 0.025 82), oklch(0.94 0.05 78));
  border: 1px solid oklch(0.78 0.06 78);
}

.feedback__choice-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.25;
  color: var(--royal-blue);
  margin: 0 0 0.75rem;
}

.feedback__choice-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(44, 44, 44, 0.85);
  margin: 0 0 1.75rem;
}

/* Push the button to the bottom so both cards align regardless of copy length. */
.feedback__choice-btn {
  margin-top: auto;
}

/* Form band ------------------------------------------------- */
.feedback-form-section {
  padding-block: clamp(2rem, 4vw, 3rem) clamp(5rem, 9vw, 6rem);
  padding-inline: var(--pad-x);
  background-color: var(--cream);
}

.feedback-form-section__inner {
  max-width: 760px;
  margin: 0 auto;
  scroll-margin-top: 120px;
}

/* contact.css sets .footer { margin-top: 0 } — this page loads it, which is
   the intent here too, so nothing to undo. */

@media (max-width: 860px) {
  .feedback__grid {
    grid-template-columns: 1fr;
  }
}
