/* MV_Interview — the guided interview sitting (#424).
   Lives inside an ordinary modal; these styles shape the one-question-per-card
   rhythm: quiet progress line, thin deck bar, a serif question as the hero,
   then the answer tools. Question typography leans on the heritage serif so a
   sitting feels like an occasion, not a form. */

.interview__intro {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-sm);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

.interview__progress {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-faint);
}

/* The running "3 stories saved" reassurance — quiet, but unmistakably alive. */
.interview__progress-saved {
  color: var(--color-accent);
  font-weight: var(--font-weight-medium);
}

.interview__bar {
  height: 4px;
  margin: var(--space-xs) 0 var(--space-lg);
  background: var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.interview__bar-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  transition: width var(--transition-base);
}

@media (prefers-reduced-motion: reduce) {
  .interview__bar-fill {
    transition: none;
  }
}

.interview__question-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.interview__question-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  color: var(--color-highlight);
}

.interview__question-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.interview__question {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text);
}

.interview__answer {
  width: 100%;
}

.interview__voice-hint {
  margin: var(--space-md) 0 var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.interview__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* The closing card — centred and warm, a small ceremony to end the sitting. */
.interview__card--summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) 0 var(--space-sm);
}

.interview__summary-icon {
  width: 40px;
  height: 40px;
  color: var(--color-highlight);
  margin-bottom: var(--space-sm);
}

.interview__summary-icon svg {
  width: 100%;
  height: 100%;
}

.interview__summary-title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
}

.interview__summary-note {
  margin: 0 0 var(--space-lg);
  max-width: 34ch;
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

/* MOBILE/TOUCH PARITY — comfortable targets at the kitchen table. */
@media (hover: none) and (pointer: coarse) {
  .interview__skip,
  .interview__save,
  .interview__done {
    min-height: var(--touch-target-min);
  }
}
