.scene-section {
  position: relative;
  overflow: hidden;
  background: #091723;
  border-bottom: 1px solid rgba(239, 171, 63, 0.16);
}

.scene-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 31, 0.2), rgba(7, 19, 31, 0.78)),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(255, 255, 255, 0.025) 92px 93px);
  pointer-events: none;
}

.scene-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 58px;
  align-items: center;
}

.scene-kicker {
  margin-bottom: 14px;
  color: #efab3f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-copy h2 {
  margin-bottom: 20px;
  color: #fbf5ea;
  font-family: var(--font-serif);
  font-size: 3.55rem;
  font-weight: 600;
  line-height: 1;
}

.scene-copy p:not(.scene-kicker) {
  max-width: 480px;
  color: #c7d1da;
  font-size: 1.13rem;
}

.scene-ledger {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(239, 171, 63, 0.34);
  border-radius: 8px;
  background: rgba(8, 27, 41, 0.92);
}

.scene-step {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scene-step::before {
  content: "";
  position: absolute;
  left: 93px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(239, 171, 63, 0.18);
}

.scene-step span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.scene-step p {
  margin: 0;
  color: #d8e2e9;
  font-size: 1.08rem;
}

.scene-chronicle p {
  color: #fbf5ea;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.42;
}

.scene-note {
  margin: 0;
  padding: 22px 24px;
  color: #efab3f;
  font-weight: 800;
}

@media (max-width: 860px) {
  .scene-inner {
    width: min(100% - 32px, var(--max));
    padding: 56px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .scene-copy h2 {
    font-size: 2.28rem;
  }

  .scene-copy p:not(.scene-kicker) {
    font-size: 1.04rem;
  }

  .scene-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 19px;
  }

  .scene-step::before {
    display: none;
  }

  .scene-chronicle p {
    font-size: 1.18rem;
  }

  .scene-note {
    padding: 18px 19px;
  }
}
