/* ============================================================
   Resonant System v2 — Typography
   Reading column, section labels, prose, and editorial elements
   used across home, daily reflection, and about pages
   ============================================================ */

/* ===== Reading column ===== */
.reading-col {
  max-width: 680px;
  margin: 0 auto;
}

/* ===== Eyebrows + section labels ===== */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ===== Section heading + lede pattern ===== */
.section-heading {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-lede {
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.6;
  max-width: 62ch;
  margin-bottom: 3rem;
}

/* ===== Hero quote + attribution (reflection-style) ===== */
.quote {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 1.25rem;
  max-width: 28ch;
  letter-spacing: -0.01em;
}

.attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ===== Reflection prose (interpretation + mantra) ===== */
.interpretation {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.interpretation p + p { margin-top: 1.1rem; }

.mantra-mark {
  width: 96px;
  height: 1px;
  background: var(--muted);
  opacity: 0.4;
  margin: 0.5rem auto 1.75rem;
}

.mantra {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--heading);
  max-width: 42ch;
  line-height: 1.35;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Loading / error states (reflection fetch) ===== */
.loading, .error-state {
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 4rem 0;
}
.error-state { display: none; }
