
h1, h2, h3, h4 {
  margin: 0;
  overflow-wrap: break-word;
  font-family: var(--f-display);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  text-wrap: balance;
  color: var(--c-text);
}

h1 { font-size: var(--t-3xl); line-height: var(--lh-tight); }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-md); letter-spacing: var(--ls-title); }
h4 { font-size: var(--t-base); font-weight: 600; letter-spacing: var(--ls-title); }

p {
  margin: 0 0 var(--s-4);
  max-width: var(--w-text);
  text-wrap: pretty;
}
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

.lede {
  font-size: var(--t-md);
  line-height: var(--lh-body);
  color: var(--c-text-muted);
  max-width: 54ch;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  gap: 0.4em;
  margin: 0 0 var(--s-4);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-mink-600);
}
.eyebrow::before { content: "["; }
.eyebrow::after  { content: "]"; }

.ghost {
  font-family: var(--f-display);
  font-size: var(--t-ghost);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-line);
  user-select: none;
}
.ghost--dark { -webkit-text-stroke-color: var(--c-line-dark-2); }
.ghost--mink { -webkit-text-stroke-color: color-mix(in srgb, var(--c-mink) 55%, transparent); }

@supports not (-webkit-text-stroke: 1px red) {
  .ghost { color: var(--c-mist-2); }
  .ghost--dark { color: var(--c-on-dark-fill); }
}

.tnum {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.on-dark,
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 { color: var(--c-on-dark); }

.on-dark .lede { color: var(--c-on-dark-muted); }
.on-dark .eyebrow { color: var(--c-sand); }
