/* ============================================================
   Component · Services
   ------------------------------------------------------------
   Numbered list of what we do. Items fade-and-rise into view
   when ScrollReveal adds `.in` (see js/modules/ScrollReveal.js).
   ============================================================ */

.service {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.service {
  padding: 28px 0;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}


/* Hidden initial state only applies when JS is alive — set by App.init().
   Without JS the items remain fully visible. */
body.js .service:not(.in) {
  opacity: 0;
  transform: translateY(20px);
}

.service-marker {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  padding-top: 8px;
}

.service-title {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.service-body {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.5;
}
