/* Typography — headings, body text, eyebrows, section titles */

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 1;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--green-deep);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw + 1rem, 4.25rem);
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.9rem, 3vw + 1rem, 2.75rem);
}

p {
  color: var(--ink-soft);
}

/* Display italic marks the emphasised word in every headline */
h1 em,
h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.section__title {
  max-width: 24ch;
  margin-bottom: 2.5rem;
}

.link {
  color: var(--terracotta);
  text-underline-offset: 0.2em;
}
