/* ============================================
   Auditajus — Process / Timeline Section
   inner-process.css
   ============================================ */

/* --- Section --- */
.audit-process {
  padding: 6rem 0;
}

.audit-process .eyebrow {
  color: var(--brass);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 1rem;
}

.audit-process h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  max-width: 28ch;
  margin: 0;
}

.audit-process h2 em {
  color: var(--brass);
  font-style: normal;
}

/* --- Timeline container --- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

/* --- Individual step --- */
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__num {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--brass);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 1;
}

.process-step__content {
  padding-top: 0.5rem;
}

.process-step__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
}

.process-step__meta {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.75rem;
  display: inline-block;
}

/* --- Process footer / CTA --- */
.process-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.process-footer__note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 0.75rem;
}

/* --- Responsive --- */
@media (max-width: 680px) {
  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step__num {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

}
