/* ============================================
   TYPOGRAFIE — Böhm Fonds
   Fractul Variable, gewichten 300–800
   ============================================ */

/* Headings */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.72rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-heading-l);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.67rem);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-heading-s);
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-heading-s);
}

h4 {
  font-size: clamp(1.125rem, 2vw, 1.33rem);
}

h5 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.15;
}

/* Intro */
.intro, .intro p {
  font-size: clamp(1.33rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-m);
}

/* Body / plat */
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: var(--space-m);
}

p + h2 {
  margin-top: var(--space-l);
}

/* Label / capslock */
.label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Opsomming */
ul.opsomming {
  list-style: none;
  padding: 0;
}

ul.opsomming li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  /* matches ::before absolute position */
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-s);
}

ul.opsomming li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--rood);
}

@media (max-width: 768px) {
  p + h2 {
    margin-top: 0;
  }
}

