/* Shared by all three conversion landing pages (/builds/listing, /builds/open-house,
   /builds/agent-identity) — identical structure per PLAN.md, only copy differs.
   Sitewide chrome/primitives live in base.css, nav.css, footer.css. */

/* HERO */
.build-hero { position: relative; overflow: hidden; background: var(--obsidian); color: var(--ivory); padding: 100px 0 90px; }
.build-hero h1 { margin-top: 18px; max-width: 700px; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.16; color: var(--ivory); font-weight: 500; }
.build-hero-body { margin-top: 24px; max-width: 560px; color: var(--fog); font-size: 16px; line-height: 1.9; }
.build-hero-body b { color: var(--ivory); font-weight: 600; }
.build-hero .btn { margin-top: 36px; }

/* SECTION BACKGROUNDS */
.build-section.on-parchment { background: var(--parchment); }

/* DELIVERABLES — roman-numeral hairline list */
.deliverables-list { margin-top: 40px; border-top: 1px solid var(--hair); }
.deliverables-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--obsidian);
}
.deliverables-list .rn { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--bronze); }

/* WHO IT'S FOR */
.build-for-text { margin-top: 24px; max-width: 640px; color: var(--stone); font-size: 16px; line-height: 1.9; }
.build-for-text b { color: var(--obsidian); font-weight: 600; }

/* WHAT'S INCLUDED — plain hairline list */
.includes-list { margin-top: 40px; border-top: 1px solid var(--hair); max-width: 640px; }
.includes-list li {
  list-style: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 15.5px;
  color: var(--obsidian);
}

/* CLOSING CTA */
.build-final { background: var(--obsidian); text-align: center; padding: 130px 0; border-top: 1px solid var(--hair-dark); }
.build-final .eyebrow { margin-bottom: 22px; }
.build-final p { color: var(--fog); font-size: 16px; margin-bottom: 36px; }

@media (max-width: 640px) {
  .deliverables-list li { grid-template-columns: 36px 1fr; }
}

@media (max-width: 920px) {
  .build-hero { padding: 72px 0 64px; }
  .build-final { padding: 72px 0; }
}
