/* ─── Prose ───────────────────────────────────────────────────────────────── */
body {
  font-size: 1rem;
  line-height: 1.65;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.65;
  color: var(--dark-gray);
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  color: var(--dark-gray);
}

a,
a:visited {
  color: var(--terra);
  text-underline-offset: 2px;
  text-decoration-color: rgba(192, 81, 49, 0.35);
  border-bottom: none;
}

a:hover,
a:visited:hover {
  color: var(--sunset);
  text-decoration-color: var(--sunset);
}

hr {
  border: none;
  height: 1px;
  background-image: linear-gradient(90deg, transparent 0%, var(--rule-gray) 12%, var(--rule-gray) 88%, transparent 100%);
  opacity: 1;
}


/* ─── Headings ────────────────────────────────────────────────────────────── */
h1 {
  font-family: 'IM Fell English', Georgia, serif;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--dark-gray);
  letter-spacing: -0.01em;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: var(--mid-gray);
  margin-top: 1.25rem;
  margin-bottom: 0.3rem;
}

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