.page-hero.manifest-hero {
  padding-top: 8rem;
  padding-bottom: 4.5rem;
}

.manifest-hero .narrow-page {
  max-width: 860px;
}

.manifest-hero h1 {
  max-width: 12ch;
}

.manifest-hero .hero-sublead {
  margin-top: 1.75rem;
}

/* Summary */

.manifest-summary-nav {
  padding: 0 0 4.5rem;
}

.manifest-summary-box {
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 168, 93, .10), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.summary-label {
  margin-bottom: .7rem;
  color: var(--gold-soft);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.manifest-summary-box h2 {
  margin-bottom: .9rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.summary-intro {
  max-width: 720px;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.summary-nav {
  display: grid;
  gap: .65rem;
}

.summary-nav a {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num desc";
  column-gap: 1rem;
  row-gap: .18rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, .028);
  transition:
    border-color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.summary-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 168, 93, .34);
  background: rgba(216, 168, 93, .055);
}

.summary-nav span {
  grid-area: num;
  color: var(--gold-soft);
  font-size: .78rem;
  letter-spacing: .14em;
  line-height: 1.6;
}

.summary-nav strong {
  grid-area: title;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.35;
}

.summary-nav small {
  grid-area: desc;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

/* Article */

.manifest-article {
  padding-bottom: 7rem;
}

.manifest-section {
  max-width: 760px;
  scroll-margin-top: 110px;
}

.section-kicker {
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.manifest-section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.manifest-summary {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(216, 168, 93, .42);
  color: #ddd5c8;
  font-size: 1.06rem;
  line-height: 1.95;
}

.manifest-section p {
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95;
}

.manifest-section strong {
  color: var(--text);
  font-weight: 600;
}

.manifest-section blockquote {
  margin: 3rem 0 0;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(216, 168, 93, .22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 168, 93, .10), transparent 48%),
    linear-gradient(180deg, rgba(216, 168, 93, .055), rgba(216, 168, 93, .018));
}

.manifest-section blockquote p {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.9;
}

.manifest-divider {
  width: min(180px, 42%);
  height: 1px;
  margin: 4.5rem 0;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 168, 93, .62),
    rgba(240, 199, 122, .36),
    transparent
  );
}

.manifest-next {
  margin-top: 6.5rem;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(216, 168, 93, .22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 168, 93, .12), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.manifest-next h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.manifest-next p {
  max-width: 760px;
  margin-bottom: 2rem;
  color: var(--muted);
  line-height: 1.9;
}

.manifest-next .button {
  min-width: 240px;
  justify-content: center;
}

/* Legacy cleanup:
   These selectors existed in the previous manifesto layout.
   Keeping them neutral prevents old PT-BR markup from exploding visually
   until the localized page is rewritten to the same structure.
*/

.brand-emblem {
  display: none;
}

.manifest-body {
  display: block;
  padding-bottom: 7rem;
}

.manifest-intro,
.manifest-toc {
  display: none;
}

/* Responsive */

@media (max-width: 720px) {
  .page-hero.manifest-hero {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .manifest-summary-nav {
    padding-bottom: 3.5rem;
  }

  .manifest-summary-box {
    border-radius: 22px;
  }

  .summary-nav a {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    padding: .95rem;
  }

  .summary-nav small {
    font-size: .86rem;
  }

  .manifest-section h2 {
    font-size: 2rem;
  }

  .manifest-summary {
    font-size: 1rem;
    line-height: 1.8;
  }

  .manifest-section p,
  .manifest-section blockquote p,
  .manifest-next p {
    font-size: .96rem;
    line-height: 1.85;
  }

  .manifest-divider {
    margin: 3.5rem 0;
  }

  .manifest-next {
    border-radius: 22px;
  }

  .manifest-next .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .summary-nav a {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "desc";
    gap: .28rem;
  }
}