/* =========================================================================
   FEEDBACK FORM — public-facing /feedback page
   Mobile-first. Brand-styled (gold on near-black) to match the rest of
   the site. Loaded only on feedback.html, so no risk of class collisions.
   ========================================================================= */

.feedback-body {
  background: #0a0a0a;
  color: #f5f0e8;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
}

.feedback-shell {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1rem 4rem;
  min-height: 100svh;
  box-sizing: border-box;
}

.feedback-card {
  width: 100%;
  max-width: 520px;
  background: #111111;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 10px;
  padding: 2.4rem 1.8rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ---- Header ---- */
.feedback-head {
  text-align: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.feedback-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #c9a84c;
  display: block;
  margin: 0 auto 1rem;
  object-fit: cover;
}
.feedback-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #c9a84c;
  font-size: 1.7rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin: 0 0 0.4rem;
}
.feedback-sub {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ---- Form fields ---- */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ff-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: none;
  padding: 0;
  margin: 0;
}
.ff-rating-field { gap: 0.6rem; }
.ff-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 500;
}
.ff-hint {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 400;
  margin-left: 0.3rem;
}
.ff-field input[type="text"],
.ff-field input[type="tel"],
.ff-field select,
.ff-field textarea {
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 5px;
  color: #f5f0e8;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.ff-field input:focus,
.ff-field select:focus,
.ff-field textarea:focus {
  outline: none;
  border-color: #c9a84c;
}
.ff-field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.ff-field select { cursor: pointer; }

/* ---- Stars ---- */
.ff-stars {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  padding: 0.4rem 0;
}
.ff-star {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.18);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  transition: color 0.15s, transform 0.1s;
  user-select: none;
}
.ff-star:hover { transform: scale(1.1); }
.ff-star.is-active { color: #c9a84c; }
.ff-star:focus-visible { outline: 2px solid rgba(201, 168, 76, 0.6); outline-offset: 2px; border-radius: 4px; }

/* ---- Checkbox ---- */
/* ---- Share-publicly card ---- */
/* Required Yes/No instead of an easy-to-miss checkbox so customers
   actually see + decide on it. Visually elevated with a gold border
   + clear title so it can't be skipped past. */
.ff-share-card {
  border: 1px solid rgba(201, 168, 76, 0.55);
  background: rgba(201, 168, 76, 0.06);
  border-radius: 6px;
  padding: 1rem 1rem 0.85rem;
  margin: 0.4rem 0 0.3rem;
}
.ff-share-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #c9a84c;
  letter-spacing: 0.4px;
  padding: 0 0.4rem;
}
.ff-share-sub {
  margin: 0.3rem 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.82);
}
.ff-share-sub-note {
  display: inline-block;
  color: rgba(245, 240, 232, 0.55);
  font-style: italic;
  margin-left: 0.2rem;
}
.ff-share-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.ff-share-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.ff-share-option:hover {
  border-color: rgba(201, 168, 76, 0.55);
  background: rgba(0, 0, 0, 0.32);
}
.ff-share-option input[type="radio"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #c9a84c;
  cursor: pointer;
}
.ff-share-option input[type="radio"]:checked + .ff-share-option-text {
  color: #f5f0e8;
}
.ff-share-option:has(input[type="radio"]:checked) {
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.10);
}
.ff-share-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: rgba(245, 240, 232, 0.82);
}
.ff-share-option-headline {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f5f0e8;
  line-height: 1.3;
}
.ff-share-option-hint {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.4;
}

/* ---- Submit ---- */
.ff-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ff-submit:disabled { opacity: 0.5; cursor: wait; }
.ff-error {
  color: #e85c5c;
  font-size: 0.88rem;
  min-height: 1.2rem;
  text-align: center;
}
.ff-disclaimer {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.55;
}

/* ---- Confirmation ---- */
.feedback-confirmation {
  text-align: center;
  padding: 1rem 0;
}
.ff-confirmation-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #c9a84c;
  color: #c9a84c;
  font-size: 2.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.5rem;
}
.ff-confirmation-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #c9a84c;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin: 0 0 1rem;
}
.ff-confirmation-body {
  color: rgba(245, 240, 232, 0.78);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0 auto 1.8rem;
  max-width: 420px;
}
.ff-confirmation-back {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 480px) {
  .feedback-card { padding: 2rem 1.4rem; }
  .feedback-title { font-size: 1.5rem; }
  .ff-star { font-size: 2.1rem; }
}
