.container--narrow { max-width: 880px; }

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--accent-quiet), var(--bg-soft) 70%);
  padding-block: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; z-index: 0;
  width: 420px; height: 420px; border-radius: 50%;
  inset-block-start: -220px; inset-inline-start: -140px;
  background: radial-gradient(circle, rgba(120,135,104,.14), transparent 70%);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero__crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--sp-5);
}
.page-hero__crumb a { transition: color var(--dur-2) var(--ease-soft); }
.page-hero__crumb a:hover { color: var(--accent-strong); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--ink);
}
.page-hero__intro {
  color: var(--ink-soft);
  max-width: 66ch;
  margin-top: var(--sp-4);
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  line-height: var(--lh-body);
}

.page-blocks { display: grid; gap: var(--sp-5); }
.page-block {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 40px);
  transition: border-color var(--dur-3) var(--ease), box-shadow var(--dur-3) var(--ease), transform var(--dur-3) var(--ease);
}
.page-block:hover { border-color: var(--accent-line); box-shadow: var(--sh-md); transform: translateY(-3px); }
.page-block__head {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-4);
  display: flex; align-items: center; gap: 12px;
}
.page-block__head::before {
  content: "";
  width: 4px; height: 1.15em;
  border-radius: 3px;
  background: var(--accent);
  flex: none;
}
.page-block__body {
  color: var(--ink-soft);
  line-height: var(--lh-body);
  white-space: pre-line;
  font-size: var(--fs-sm);
}

@media (max-width: 640px) {
  .page-block { border-radius: var(--r-lg); }
}
