:root {
  --accent-color: #d93e3f;
  --heading-color: #1f1b16;
  --default-color: #4a4038;
  --gold-color: #a6813d;
}

/* ---- Shared kicker label, reused by every section title on the page ------- */

.section-title .pk {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin: 0 0 14px;
}

.section-title .pk::before,
.section-title .pk::after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold-color);
}

/* ---- Shared section headline, applied wherever .section-title h2 is used -- */

.section-title h2 {
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--heading-color);
}

.section-title p {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--default-color);
}