:root {
  color-scheme: light;
  --ink: #20302b;
  --muted: #68736e;
  --paper: #f5f1e8;
  --card: #fffdf8;
  --green: #1f5c4d;
  --sage: #bdd0bf;
  --gold: #d8973c;
  --line: #d9d6cc;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hero {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 64px 24px;
  color: #f9f6ee;
  background:
    radial-gradient(circle at 80% 20%, rgba(216,151,60,.26), transparent 28rem),
    linear-gradient(135deg, #173d35, #286553);
}
.hero__inner, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { margin: 0 0 10px; font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; max-width: 850px; font: 700 clamp(2rem, 4.5vw, 3.5rem)/1.05 Georgia, serif; letter-spacing: -.035em; }
.lede { max-width: 720px; margin: 25px 0; color: #dce8df; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.55; }
.stamp { display: inline-flex; padding: 9px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(0,0,0,.12); font-size: .88rem; }
main { margin-top: -45px; position: relative; }
.summary { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--card); box-shadow: 0 16px 42px rgba(30,45,39,.09); }
.summary article { display: flex; align-items: baseline; gap: 12px; padding: 24px 28px; border-right: 1px solid var(--line); }
.summary article:last-child { border: 0; }
.summary strong { color: var(--green); font: 700 2rem Georgia, serif; }
.summary span { color: var(--muted); font-size: .9rem; }
.panel { padding: 76px 0 12px; }
.panel--quiet { padding-bottom: 60px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font: 700 clamp(2rem,4vw,3rem) Georgia, serif; letter-spacing: -.025em; }
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); line-height: 1.5; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); box-shadow: 0 6px 24px rgba(30,45,39,.05); }
.card__top { display: flex; justify-content: space-between; gap: 16px; }
.card h3 { margin: 0; font: 700 1.35rem/1.25 Georgia, serif; }
.price { white-space: nowrap; color: var(--green); font-weight: 800; }
.facts { display: flex; flex-wrap: wrap; gap: 7px; margin: 17px 0; }
.fact { padding: 6px 9px; border-radius: 7px; background: #edf3ed; font-size: .8rem; font-weight: 700; }
.evidence { margin: 9px 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.evidence strong { color: var(--ink); }
.note { padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink); line-height: 1.5; }
.source { display: inline-block; margin-top: 10px; color: var(--green); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.empty { grid-column: 1 / -1; padding: 34px; border: 1px dashed #adb7ae; border-radius: 14px; color: var(--muted); text-align: center; }
.rejects { display: grid; gap: 8px; }
.reject { display: grid; grid-template-columns: minmax(240px,.7fr) 2fr; gap: 20px; padding: 17px 20px; border-bottom: 1px solid var(--line); }
.reject strong { font-family: Georgia, serif; }
.reject span { color: var(--muted); line-height: 1.45; }
footer { padding: 32px 0 60px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
@media (max-width: 720px) {
  .hero { min-height: 330px; }
  main { margin-top: -28px; }
  .summary { grid-template-columns: 1fr; }
  .summary article { border-right: 0; border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 12px; }
  .reject { grid-template-columns: 1fr; gap: 5px; }
}
