/* Feedback form — TT-koll. Light, focused, no surprises. */

.feedback-body { overflow-x: hidden; }

.fb-main {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 7vh, 80px) 32px clamp(60px, 10vh, 120px);
}

.fb-head { text-align: center; margin-bottom: 40px; }
.fb-head .kicker {
  display: inline-block;
  padding: 4px 10px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fb-head h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 16px;
}
.fb-lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Form ---------- */
.fb-form { margin-top: 8px; }
.fb-section { margin-bottom: 26px; }
.fb-section legend,
.fb-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  padding: 0;
}
.fb-section .fb-label small,
.fb-section legend small,
.fb-radio small {
  display: block;
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--dim);
  margin-top: 4px;
  line-height: 1.45;
}

.fb-form input[type="text"],
.fb-form input[type="email"],
.fb-form select,
.fb-form textarea {
  width: 100%;
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--text);
  border-radius: 0;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.12s var(--ease), box-shadow 0.12s var(--ease);
}
.fb-form textarea {
  resize: vertical;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
}
.fb-form input[type="text"]:focus,
.fb-form input[type="email"]:focus,
.fb-form select:focus,
.fb-form textarea:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 2px var(--yellow);
}
.fb-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
}

fieldset.fb-section { border: none; padding: 0; }

.fb-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 600px) {
  .fb-radio-group { grid-template-columns: 1fr; }
}
.fb-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.12s var(--ease), background 0.12s var(--ease);
}
.fb-radio:hover { border-color: var(--text); }
.fb-radio:has(input:checked) {
  border-color: var(--text);
  background: var(--yellow-soft);
}
.fb-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--text);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
}
.fb-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text);
}
.fb-radio strong {
  display: block;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}
.fb-radio small {
  margin-top: 4px;
  font-size: 12px;
  color: var(--dim);
}

.fb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .fb-grid { grid-template-columns: 1fr; gap: 0; }
}

.fb-honey { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.fb-actions {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.fb-actions button {
  cursor: pointer;
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 28px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), transform 0.15s var(--ease);
}
.fb-actions button:hover { background: transparent; color: var(--text); transform: translateY(-1px); }
.fb-actions-note {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--dim);
}

/* ---------- Thanks page ---------- */
.fb-thanks {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 60vh;
  justify-content: center;
}
.fb-thanks h1 { font-size: clamp(56px, 9vw, 96px); }
.fb-thanks-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
