.story-section {
  padding-top: 72px;
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.story-intro-card {
  position: sticky;
  top: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffdf8, #f1e8dc);
  padding: 28px;
  box-shadow: 0 18px 55px rgba(42, 31, 20, 0.06);
}

.story-intro-card h2 {
  font-size: clamp(38px, 4vw, 56px);
  margin-bottom: 16px;
}

.story-intro-card p {
  color: var(--muted);
  font-size: 16px;
}

.story-note {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--muted);
  font-size: 14px;
}

.story-flow {
  display: grid;
  gap: 18px;
}

.story-chapter {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.86);
  padding: 28px;
  box-shadow: 0 16px 46px rgba(42, 31, 20, 0.05);
}

.story-chapter-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.story-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fffaf1;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 auto;
}

.story-chapter h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.story-chapter p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 12px;
}

.story-chapter p:last-child {
  margin-bottom: 0;
}

.story-callout {
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  margin: 18px 0;
  background: rgba(125, 60, 31, 0.07);
  border-radius: 0 16px 16px 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.story-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.story-mini-card {
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.72);
}

.story-mini-card span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.story-mini-card strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.story-mini-card p {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .story-shell {
    grid-template-columns: 1fr;
  }

  .story-intro-card {
    position: static;
  }

  .story-mini-grid {
    grid-template-columns: 1fr;
  }
}
