/* Shared page scaffold for full content pages (home, founder) — not used
   by legal doc pages, which have their own header/content/doc-* system. */

/* ══ PAGE SHELL (sticky footer) ══ */
body {
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

/* ══ SECTION LAYOUT ══ */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section + .section,
.section-bordered { border-top: 1px solid var(--border); }
.section-eyebrow {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border2);
  letter-spacing: .04em;
}

@media (max-width: 480px) {
  .section { padding: 56px 16px; }
}
