/* ─────────────────────────────────────────────
   Slytherin · Typography
   Fraunces (display) · Inter (body)
   ───────────────────────────────────────────── */

h1, h2, h3, h4, h5,
.serif {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
  color: var(--ink);
}

h1, .h1 {
  font-size: var(--t-3xl);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-weight: 500;
}

h2, .h2 {
  font-size: var(--t-2xl);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h3, .h3 {
  font-size: var(--t-xl);
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-weight: 500;
}

h4, .h4 {
  font-size: var(--t-lg);
  font-weight: 500;
  line-height: 1.25;
}

p, .body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--ink-2);
}

.lead {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.display {
  font-family: 'Fraunces', serif;
  font-size: var(--t-display);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.mega {
  font-family: 'Fraunces', serif;
  font-size: var(--t-mega);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.7;
}

.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.7;
}

.kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-md);
  color: var(--gold-3);
  letter-spacing: 0;
}

.muted { color: var(--ink-3); }
.gold-text { color: var(--gold-3); }
.emerald-text { color: var(--emerald); }

em, .emphasis {
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: var(--emerald);
  font-weight: 500;
}

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

.serif-italic {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
}

/* Pull quote */
.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pull-quote::before { content: "“"; color: var(--gold); margin-right: 0.05em; }
.pull-quote::after { content: "”"; color: var(--gold); margin-left: 0.02em; }

/* Numbered ordinals */
.ordinal {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-sm);
  color: var(--gold-3);
  letter-spacing: 0;
}

/* Inline gold marker */
.dot-gold {
  width: 6px; height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: 2px;
}
