/* components.css — SHARED, reusable content components used across pages
   (hero band, pillars, section helpers, eyebrow, closing CTA). The shell
   (header/footer/nav/buttons) lives in layout.css; page-only styles stay in
   their own sheet. Loaded site-wide from base.njk, so any page can compose
   these without duplicating CSS. This is also the seed of the shared design
   system the Objective Omega family will consume later. */

/* --- Section helpers ------------------------------------------------------- */
.section { padding-block: var(--space-6); }
.section--alt { background: var(--color-surface-alt); }
.prose-narrow { max-width: 44rem; }          /* comfortable single-column reading */
.prose-narrow p { margin-bottom: var(--space-3); }
.prose-narrow > :last-child { margin-bottom: 0; }
.lead-para { font-size: 1.25rem; line-height: var(--leading-body); margin-bottom: var(--space-4); }

/* Gold eyebrow label above a heading (pair with .caption). */
.eyebrow { color: var(--color-accent); margin-bottom: var(--space-2); }

/* Visible placeholder note (e.g. "replace with your story") — muted, not hidden. */
.founder-note { color: var(--color-text-muted); }

/* Founder byline on the About page: headshot + name/role. */
.founder {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.founder__photo {
  width: 120px;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  display: block;
  flex: none;
}
.founder__name { font-family: var(--font-headline); font-size: var(--text-h2); }
.founder__role { color: var(--color-accent); }

/* --- Hero: a black band, the page's strongest statement -------------------- */
.hero {
  background: var(--color-band);
  color: var(--color-band-text);
  padding-block: var(--space-6);
}
.hero__eyebrow { color: var(--color-accent); margin-bottom: var(--space-2); }
.hero h1 { color: var(--color-band-text); max-width: 20ch; }
.hero__lead {
  color: var(--color-band-muted);
  font-size: 1.125rem;
  max-width: 52ch;
  margin-block: var(--space-3) var(--space-4);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
}
.hero__secondary { color: var(--color-band-text); }

/* --- Pillars: a 3-up row of short value statements ------------------------- */
.pillars { padding-block: var(--space-6); }
.pillars__grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;                /* stacked on mobile */
}
@media (min-width: 720px) {
  .pillars__grid { grid-template-columns: repeat(3, 1fr); }  /* 3 across on wider screens */
}
.pillar { border-top: 3px solid var(--color-accent); padding-top: var(--space-2); }
.pillar h3 {
  font-family: var(--font-headline);
  font-size: var(--text-h2);
  margin-bottom: var(--space-1);
}

/* --- Phase list: numbered process rows (big serif gold numeral + copy) ------ */
.phase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
}
.phase-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding-block: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.phase-num {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
}
.phase-item h3 {
  font-family: var(--font-headline);
  font-size: var(--text-h2);
  margin-bottom: var(--space-1);
}
.phase-item p { color: var(--color-text-muted); }

/* --- Closing CTA: a bordered, centered call-to-action box ------------------ */
.closing-cta {
  border: 1px solid var(--color-border);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}
.closing-cta h2 { max-width: 22ch; }
.closing-cta p { max-width: 50ch; color: var(--color-text-muted); }
