:root {
  --bg: #070706;
  --bg-2: #11100e;
  --ink: #f4efe6;
  --muted: #b5aa9a;
  --dim: #6f675c;
  --line: rgba(244, 239, 230, 0.12);
  --gold: #e8c39a;
  --sans: "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --ui: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ui);
  line-height: 1.6;
}
a { color: var(--gold); }
.wrap { width: min(760px, calc(100% - 2.4rem)); margin: 0 auto; }
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.mark {
  font-family: var(--sans);
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}
.mark span { color: var(--gold); }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 1rem;
}
.who {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.who-in, .who-up {
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.who-in { color: var(--muted); }
.who-in:hover { color: var(--ink); }
.who-up { color: var(--gold); }
.who-up:hover { color: var(--ink); }
.who-more {
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
}
.who-more:hover { color: var(--ink); }
.who-acct {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  max-width: 14rem;
}
.who-face {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  background: #1a1814;
  box-shadow: 0 0 0 1px var(--line);
}
.who-face b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--gold);
}
.who-face img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.who-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.8rem;
}
.who-own {
  text-decoration: none;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.62rem;
  padding-left: 0.7rem;
  border-left: 1px solid var(--line);
}
h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}
.meta { color: var(--dim); font-size: 0.82rem; margin: 0 0 1.5rem; }
.lede { color: var(--muted); font-size: 1.05rem; }
h2 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 2rem 0 0.5rem;
}
p, li { color: var(--muted); }
li { margin: 0.35rem 0; }
.note {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: var(--bg-2);
  color: var(--muted);
  font-size: 0.92rem;
}
.note strong { color: var(--ink); display: block; margin-bottom: 0.25rem; }
.links { display: grid; gap: 0.6rem; margin: 1.5rem 0 3rem; }
.links a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: var(--bg-2);
}
.links a:hover { border-color: var(--gold); }
.links b { display: block; color: var(--ink); }
.links span { color: var(--dim); font-size: 0.85rem; }
.foot {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.4rem;
  color: var(--dim);
  font-size: 0.82rem;
}
.foot a { color: var(--muted); text-decoration: none; margin-right: 0.8rem; }
