:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --text: #1c1b1a;
  --text-muted: #625f5c;
  --accent: #c8102e;
  --accent-quiet: #c8102e14;
  --border: #e5e2df;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131211;
    --surface: #1a1918;
    --text: #f2f0ee;
    --text-muted: #a8a39e;
    --accent: #ff4b5c;
    --accent-quiet: #ff4b5c1f;
    --border: #302e2b;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Charter, 'Iowan Old Style', 'Sitka Text', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.accent-bar {
  height: 5px;
  width: 100%;
  background: var(--accent);
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.brand-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--text);
}

.brand span { color: var(--accent); }

.meta {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

h1 {
  font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  text-wrap: balance;
}

.dek {
  font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 44px;
  max-width: 46ch;
}

.eyebrow {
  font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}

section {
  margin: 0 0 38px;
}

h2 {
  font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}

p { margin: 0 0 14px; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

ul {
  margin: 0 0 14px;
  padding-left: 22px;
  max-width: 62ch;
}
li { margin-bottom: 6px; }
li:last-child { margin-bottom: 0; }

.callout {
  background: var(--accent-quiet);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 15.5px;
}
.callout p { max-width: none; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .wrap { padding: 40px 18px 72px; }
  .brand-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

.links {
  list-style: none;
  padding: 0;
}
.links li { margin-bottom: 10px; }
.links a { font-weight: 700; }
