/* layout objects */
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.stack > * + * { margin-top: 1.25rem; }
.stack-lg > * + * { margin-top: 2rem; }
.cluster { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; align-items: start; }
}
.band {
  background: var(--paper-alt);
  border-block: 1px solid var(--rule);
  padding-block: 3rem;
}
.band--violet {
  background: linear-gradient(135deg, var(--violet-100), var(--paper));
}
.bleed { padding-block: 3rem; }
.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-700);
  font-weight: 700;
}
.section-kicker::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--lime-400);
  margin-top: 0.5rem;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 62ch; }
.note { font-size: 0.92rem; color: var(--muted); }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.15rem; }

/* custom motif bullets */
.list-motif { list-style: none; padding: 0; }
.list-motif li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
}
.list-motif li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lime-400);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* TOC */
.toc {
  background: var(--paper);
  border: 2px solid var(--violet-100);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.toc ol { margin: 0.75rem 0 0; padding-left: 1.2rem; }
.toc a { font-weight: 600; }

/* numbered method strip */
.method-strip {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
@media (min-width: 640px) {
  .method-strip { grid-template-columns: repeat(4, 1fr); }
}
.method-strip__item {
  counter-increment: step;
  background: var(--paper);
  border: 2px solid var(--violet-100);
  border-radius: var(--radius-notch);
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
}
.method-strip__item::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--violet-700);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}
