/**
 * Section: CTA
 *
 * Closing call-to-action used on interior pages. This merges the mockup's
 * two structurally identical variants:
 *
 *   - .about-cta   about.html, css/about.css
 *   - .hiw-cta      how-it-works.html, css/howitworks.css
 *
 * Property-by-property diff of the two mockup rule sets:
 *
 *   - padding-block / padding-inline / inner max-width / flex layout /
 *     gap / text-align / .btn-row justify-content — IDENTICAL.
 *   - background — DIFFERENT: About sits on light --coastal-soft, How It
 *     Works sits on dark --deep-ocean.
 *   - eyebrow, h2 and h2 em colour — DIFFERENT: About uses the default
 *     .eyebrow terracotta and default heading colour; How It Works
 *     overrides both to --coastal-blue / --off-white for the dark panel,
 *     and additionally flips .btn-outline to a light-on-dark treatment.
 *   - paragraph colour and max-width — DIFFERENT: --graphite / 48ch on
 *     About vs --coastal-blue / 46ch on How It Works.
 *
 * These are real visual differences, not copy differences, and they are not
 * silently averaged. Per the section-agent-contract instruction, this file
 * ports the About (light) version only. The How It Works page will render
 * this section on the same light panel rather than its mockup's dark one —
 * flagged in the build report for the build lead to resolve (e.g. a second
 * section or a themeable background), not fixed here.
 */

.cta {
  padding-block: var(--section-space-m);
  padding-inline: var(--space-gutter);
  background: var(--coastal-soft);
}

.cta-inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-s);
}

.cta-inner .eyebrow {
  justify-content: center;
}

.cta-inner h2 {
  font-size: var(--text-h2);
  font-weight: 800;
  line-height: 1.05;
}

.cta-inner h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}

.cta-inner p {
  color: var(--graphite);
  max-width: 48ch;
  line-height: 1.6;
}

/* .btn-row itself (display, gap, margin-top, mobile stacking) is shared
   interior chrome defined in the mockup's shop.css and not yet ported into
   the theme — see the build report. This is the section-local override
   only, exactly as the mockup applies it. */
.cta-inner .btn-row {
  justify-content: center;
}
