/* ============================================================
   BASE — light element defaults + a few brand helpers.
   Tokens only; safe for consumers to inherit.
   ============================================================ */

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  color: var(--color-text);
  margin: 0 0 var(--space-4);
}
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); letter-spacing: var(--ls-normal); }

p { margin: 0 0 var(--space-4); }

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
a:hover { color: var(--color-link-hover); }

/* --- Display: oversized serif headline --- */
.qlw-display {
  font-family: var(--font-serif);
  font-weight: var(--fw-semibold);
  font-size: var(--text-display-lg);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0;
}

/* --- Eyebrow: the wide-tracked uppercase "LAW & WEALTH" treatment --- */
.qlw-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-secondary);
  display: inline-block;
}

/* --- Lead paragraph --- */
.qlw-lead {
  font-size: var(--text-lead);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
}

/* --- Brand line patterns as backgrounds --- */
.qlw-pattern-blue  { background: var(--c-ocean-700) url('../assets/patterns/pattern-blue.jpg'); background-size: 480px; }
.qlw-pattern-white { background: var(--c-white) url('../assets/patterns/pattern-white.jpg'); background-size: 480px; }
