/* Homepage-only layout (index.html) — everything generic (tokens, header,
   buttons, cards, the .journey navy list panel, FAQ, footer, ...) now
   lives in assets/site.css. This file only holds the hero grid and stat
   strip layout that are unique to the homepage. */

.home-hero {
  padding: 76px 0 70px;
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 56px;
  align-items: center;
}

.home-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.06;
  margin: 14px 0 20px;
}

.home-hero h1 em { color: var(--gold); font-style: italic; }

.home-hero p.lead {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 26px;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  font-size: 12.5px;
  font-weight: 600;
  color: #57492A;
  background: var(--gold-soft);
  border: 1px solid #E3D5B2;
  padding: 6px 12px;
  border-radius: 99px;
}

.btn-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ===== Stat strip ===== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 28px; }
.stat b { font-family: var(--font-serif); font-size: 30px; color: var(--ink); display: block; line-height: 1.1; }
.stat span { font-size: 12.5px; color: var(--muted); }
.stat i { font-style: normal; color: var(--gold); font-family: var(--font-serif); }

@media (max-width: 920px) {
  .home-hero { grid-template-columns: 1fr; padding: 52px 0; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
}
