/* Conservative-minimal theme. Tailwind does nearly everything;
   this file only sets the type pairing and a few quiet details. */

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #f6f4ef;
  color: #1a2332;
}

.font-display {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

/* Small uppercase eyebrow label above titles. */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
  color: #7c8698;
}

/* Loading spinner for the navy submit button. */
.spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 9999px;
  animation: spin 0.7s linear infinite;
  vertical-align: -0.15em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Rendered motion markdown: quiet readable type inside the card. */
.markdown { font-size: 0.95rem; line-height: 1.7; color: #1a2332; }
.markdown > *:first-child { margin-top: 0; }
.markdown > *:last-child { margin-bottom: 0; }
.markdown h1, .markdown h2, .markdown h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; margin: 1em 0 0.4em; }
.markdown h1 { font-size: 1.5rem; }
.markdown h2 { font-size: 1.3rem; }
.markdown h3 { font-size: 1.1rem; }
.markdown p { margin: 0.6em 0; }
.markdown ul, .markdown ol { margin: 0.6em 0; padding-left: 1.5em; }
.markdown ul { list-style: disc; }
.markdown ol { list-style: decimal; }
.markdown a { color: #1f3a5f; text-decoration: underline; }
.markdown code { background: #f1f0eb; border-radius: 4px; padding: 0.1em 0.35em; font-size: 0.85em; }
.markdown pre { background: #f1f0eb; border-radius: 6px; padding: 0.8em 1em; overflow-x: auto; }
.markdown pre code { background: none; padding: 0; }
.markdown blockquote { border-left: 3px solid #d8d4c8; padding-left: 0.9em; color: #4b5563; margin: 0.6em 0; }
