/* ============================================================
   NIGHT MACARON — How To Use Section
   ============================================================ */

.howto {
  background: var(--bg-2);
}

.howto-header {
  margin-bottom: 5rem;
}

/* ── Decorative number ── */
.howto-number {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 26vw;
  font-weight: 300;
  color: var(--text);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

/* ── Steps container: vertical layout ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  position: relative;
}

/* ── Single step ── */
.step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2.5rem;
  position: relative;
  padding-bottom: 3.5rem;
}

.step:last-child {
  padding-bottom: 0;
}

/* ── Vertical connector line ── */
.step:not(:last-child) .step-left::after {
  content: '';
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  width: 0.5px;
  bottom: 0;
  background: linear-gradient(to bottom, var(--border-gold), transparent);
}

/* ── Left column: number + line ── */
.step-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.15rem;
}

/* ── Step number ── */
.step-num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.8;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.5px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(200, 169, 110, 0.04);
}

/* ── Right column: text ── */
.step-content {
  padding-top: 0.1rem;
}

.step-content h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.step-content p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 2;
  color: var(--muted-light);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .step {
    grid-template-columns: 3.5rem 1fr;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .step:not(:last-child) .step-left::after {
    left: 1.7rem;
    top: 2rem;
  }

  .howto-number {
    display: none;
  }
}
