:root {
  --bg: #07070a;
  --panel: #0e0e12;
  --ink: #e9e9ec;
  --muted: #9a9aa2;
  --line: #23232b;
  --accent: #ff9e3d;        /* warm sun/heat */
  --accent-dim: #c9772a;
  --measure: 44rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dim); text-decoration: underline; }

/* header / footer */
header.site, footer.site {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; align-items: baseline;
  max-width: var(--measure); margin: 0 auto; padding: 1.4rem 1.25rem;
}
header.site { justify-content: space-between; }
.brand { font-weight: 700; letter-spacing: .01em; color: var(--ink); }
.brand:hover { color: var(--accent); text-decoration: none; }
header.site nav { display: flex; gap: 1.1rem; }
header.site nav a { color: var(--muted); font-size: .95rem; }
header.site nav a:hover { color: var(--ink); text-decoration: none; }

/* the V-groove accent strip — geometric blackness, literally */
.groove {
  height: 10px;
  background:
    repeating-linear-gradient(135deg, var(--line) 0 7px, transparent 7px 14px),
    repeating-linear-gradient( 45deg, var(--line) 0 7px, transparent 7px 14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  opacity: .8;
}

/* content */
main { max-width: var(--measure); margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }
article h1 { font-size: 2.1rem; line-height: 1.15; margin: 1rem 0 .4rem; letter-spacing: -0.01em; }
article h2 { font-size: 1.3rem; margin: 2.4rem 0 .6rem; }
.dek { color: var(--muted); font-size: 1.15rem; margin: 0 0 1.8rem; }
p, ul, ol { margin: 0 0 1.1rem; }
ul, ol { padding-left: 1.3rem; }
li { margin: .35rem 0; }
strong { color: #fff; }
q { color: var(--ink); }
q::before { content: "\201C"; } q::after { content: "\201D"; }

.lineage { list-style: none; padding-left: 0; border-left: 2px solid var(--line); }
.lineage li { padding-left: 1rem; }

.pull {
  font-size: 1.25rem; font-weight: 600; color: var(--accent);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1rem 0; margin: 1.8rem 0;
}

.kicker {
  font-size: 1.3rem; font-weight: 700; color: #fff;
  margin: 2.4rem 0 0;
}

footer.site {
  border-top: 1px solid var(--line); margin-top: 2rem;
  color: var(--muted); font-size: .9rem;
}
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--accent); }

@media (max-width: 480px) {
  body { font-size: 16px; }
  article h1 { font-size: 1.7rem; }
}
