/* ===================================================
   Typographic Scale – Sacred Hierarchy
   Version: 1.2 – Fully Tokenized & Responsive-Ready
   =================================================== */

/* ----------------------------------------
   🌍 Global Body Type
---------------------------------------- */
body {
  font-family: var(--font-serif);
  font-size: var(--font-base-size);
  line-height: var(--font-base-line);
}

/* ----------------------------------------
   🕯️ Sacred Headers
---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: var(--space-md) 0;
}

h1 { font-size: var(--font-size-h1, 2.5rem); }
h2 { font-size: var(--font-size-h2, 2rem); }
h3 { font-size: var(--font-size-h3, 1.75rem); }
h4 { font-size: var(--font-size-h4, 1.5rem); }
h5 { font-size: var(--font-size-h5, 1.25rem); }
h6 { font-size: var(--font-size-h6, 1rem); }

/* ----------------------------------------
   ✧ Paragraphs & Body Text
---------------------------------------- */
p {
  margin-bottom: var(--space-md);
}

/* ----------------------------------------
   📜 Sacred Quote Styling
---------------------------------------- */
blockquote {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: var(--font-base-size);
  border-left: var(--blockquote-border, 4px solid var(--text-accent));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-md) 0;
  color: var(--blockquote-text, var(--text-primary));
  border-radius: var(--blockquote-radius, 15px);
  text-align: left;
}

/* 📚 Citation Text */
cite {
  display: block;
  margin-top: var(--space-sm);
  padding-right: var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--cite-color, var(--highlight)); /* default fallback if not themed */
  font-style: normal;
  text-align: right;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.4px;
  text-shadow: 0 0 6px var(--shadow-glow);
}

/* ----------------------------------------
   🌐 Links
---------------------------------------- */
a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover,
a:focus {
  color: var(--highlight);
  text-shadow: 0 0 8px var(--shadow-glow);
}
