/* Lead-time strip — homepage redesign.
   Thin cream band: "how it works" intro + a 4-step timeline with arrow
   connectors. See design_handoff_homepage/README.md §4. */

.lead-time {
  background: var(--lt-bg, #f2efe8);
  border-top: 1px solid rgba(36, 36, 36, 0.1);
  border-bottom: 1px solid rgba(36, 36, 36, 0.1);
  color: #1f1f1f;
}

.lead-time__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 24px;
}

/* Intro */
.lead-time__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: none;
}

.lead-time__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b6357;
}

.lead-time__heading {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

/* Steps */
.lead-time__step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.lead-time__step-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lead-time__num {
  font-family: "Urbanist", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--lt-accent, #9c614a);
}

.lead-time__label {
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.lead-time__detail {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6b6357;
}

/* Arrow connector */
.lead-time__connector {
  display: flex;
  align-items: center;
  flex: none;
  color: #6b6357;
  opacity: 0.55;
}

/* Desktop — single horizontal row */
@media screen and (min-width: 990px) {
  .lead-time__inner {
    padding: 24px 64px;
  }

  .lead-time__intro {
    min-width: 200px;
    padding-right: 40px;
    border-right: 1px solid rgba(36, 36, 36, 0.1);
  }

  .lead-time__step {
    flex: 1;
    padding: 4px 32px;
  }
}

/* Tablet + mobile — stacked */
@media screen and (max-width: 989px) {
  .lead-time__inner {
    flex-direction: column;
    gap: 20px;
  }

  .lead-time__intro {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(36, 36, 36, 0.1);
  }

  .lead-time__connector {
    display: none;
  }
}
