/* type.css — typography scale, prose */

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(34px, 5.2vw, 52px); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; }
h4 { font-size: clamp(17px, 1.6vw, 20px); font-weight: 600; }

p { margin: 0 0 18px; max-width: 68ch; }
p.lead { font-size: clamp(18px, 1.8vw, 21px); color: var(--ink-2); line-height: 1.55; }

ul, ol { margin: 0 0 20px; padding-left: 22px; }
ul li, ol li { margin: 8px 0; }

ul.unstyled { list-style: none; padding: 0; }
ul.unstyled li { margin: 6px 0; }

strong { font-weight: 600; color: var(--ink); }

blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--teal);
  background: var(--surface);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  font-style: italic;
  color: var(--ink-2);
}
blockquote cite { display: block; margin-top: 10px; font-style: normal; font-size: 14px; color: var(--ink-3); }

.kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 12px;
}

.muted { color: var(--ink-3); font-size: 14px; }
