:root {
  --bg: #131318;
  --surface: #1b1b23;
  --surface-2: #22222c;
  --ink: #ececf1;
  --muted: #9a9aab;
  --line: #2e2e3a;
  --accent: #e8a33d;
  --accent-2: #c9433f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 "Iowan Old Style", Georgia, "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}

.top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  max-width: 880px;
  margin: 0 auto;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Arial Black", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.3px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.mark { display: block; flex: none; }

.brand-dot {
  color: var(--accent);
  padding: 0 4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 38px 22px 64px;
}

h1 {
  font-family: "Arial Black", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(29px, 5.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 20px;
  text-wrap: balance;
}

h2 {
  font-family: "Arial Black", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 22px;
  letter-spacing: -.4px;
  margin: 0 0 10px;
}

p { margin: 0 0 16px; }

.kicker {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 64ch;
}

.hero { margin-bottom: 46px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 18px 20px 6px;
}

.tag {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 8px;
}

.meta {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  color: var(--accent);
  margin: -4px 0 12px;
}

.note {
  background: var(--surface-2);
  border-left: 3px solid var(--accent-2);
  border-radius: 0 8px 8px 0;
  padding: 24px 24px 8px;
}

.rows > .row {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.rows > .row:first-child { border-top: none; padding-top: 8px; }

.facts {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  gap: 7px 22px;
  margin: 0 0 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
}

.facts dt {
  color: var(--accent);
  font-weight: 600;
}

.facts dd {
  margin: 0;
  color: var(--muted);
}

.block {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.block:first-of-type { border-top: none; padding-top: 4px; }

a.more {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.foot {
  max-width: 880px;
  margin: 0 auto;
  padding: 22px;
  border-top: 1px solid var(--line);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.foot a { color: var(--muted); }

@media (max-width: 520px) {
  .facts { grid-template-columns: 1fr; gap: 2px; }
  .facts dd { margin-bottom: 9px; }
}
