:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --ink: #141414;
  --muted: #5e5a52;
  --line: #d8d0c0;
  --red: #d94b3d;
  --green: #176f52;
  --blue: #2347d9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(90deg, rgba(20,20,20,.04) 1px, transparent 1px), linear-gradient(180deg, rgba(20,20,20,.04) 1px, transparent 1px), var(--bg);
  background-size: 56px 56px;
  color: var(--ink);
}

header {
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(247,244,237,.92);
  position: sticky;
  top: 0;
  z-index: 4;
}

.brand, nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

nav { display: flex; gap: clamp(12px, 3vw, 28px); }
nav a { color: var(--muted); }

.hero {
  min-height: calc(100vh - 66px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(54px, 8vw, 118px) clamp(18px, 7vw, 108px);
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: .95;
}

h1 {
  max-width: 880px;
  font-size: clamp(56px, 10vw, 134px);
}

h2 {
  font-size: clamp(36px, 6vw, 76px);
  max-width: 900px;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.38;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  text-decoration: none;
}
.primary { background: var(--ink); color: white; }
.secondary { border: 1px solid var(--line); color: var(--ink); background: #fffaf1; }

.panel {
  border: 2px solid var(--ink);
  background: #fffaf1;
  box-shadow: 16px 16px 0 rgba(20,20,20,.08);
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.panel span { color: var(--muted); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.panel strong { font-size: clamp(48px, 8vw, 96px); line-height: .9; }

.band { padding: clamp(52px, 8vw, 110px) clamp(18px, 7vw, 108px); border-top: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.event, .finding {
  background: #fffaf1;
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 150px;
}
.event b, .finding b { display: block; font-size: 15px; margin-bottom: 10px; }
.event p, .finding p, .dark p { color: var(--muted); line-height: 1.55; }
.findings { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.finding small { color: var(--green); font-weight: 900; text-transform: uppercase; }
.dark { background: #141414; color: #fffaf1; }
.dark .eyebrow, .dark p { color: #ddd0bd; }

footer {
  padding: 30px clamp(18px, 7vw, 108px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  header { align-items: flex-start; padding-top: 16px; padding-bottom: 16px; gap: 14px; }
  nav { flex-wrap: wrap; justify-content: flex-end; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .grid, .findings { grid-template-columns: 1fr; }
}
