/* ---------------------------------------------------
   style.css
   No frameworks, no web fonts, no external requests.

   COLOR: everything below is pure black/white right now.
   --accent is wired up but unused (set to black) — the
   moment you pick a color, drop the hex code in there and
   it'll apply to links, the table rule, and the divider dot.
--------------------------------------------------- */

:root {
  --bg: #ffffff;
  --ink: #000000;
  --gray: #4a4a4a;
  --red: #ff1131;
  --blue: #1f51ff;
  --accent: var(--red);
  --link: var(--blue);
  --link-visited: var(--blue);
  --link-hover: var(--red);
  --width: 680px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--gray);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  padding: 48px 20px 72px;
}

h1, h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.nav, .meta, th {
  font-family: "Courier New", Courier, monospace;
}

.wrap {
  max-width: var(--width);
  margin: 0 auto;
}

header.site-header {
  margin-bottom: 32px;
}

h1 {
  font-size: 26px;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
  color: var(--ink);
  text-transform: uppercase;
}

.tagline {
  margin: 0 0 24px;
  font-size: 15px;
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  opacity: 0.7;
}

/* nav: plain text, pipe-separated, no color, no boxes */
.nav {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}

.nav a {
  text-decoration: underline;
  color: var(--ink);
}

.nav a:visited {
  color: var(--ink);
}

.nav a:hover {
  text-decoration: none;
}

.nav .sep {
  margin: 0 10px;
  color: var(--ink);
  opacity: 0.4;
}

a {
  color: var(--link);
  text-decoration: underline;
}

a:visited {
  color: var(--link-visited);
}

a:hover, a:focus {
  color: var(--link-hover);
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* --- signature element: a single thin rule, one small dot --- */
.staff {
  height: 1px;
  background: var(--ink);
  margin: 40px 0;
  position: relative;
}

.staff::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-2px, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

main {
  margin-top: 8px;
}

h2 {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 48px 0 18px;
}

p {
  margin: 0 0 16px;
}

/* works table */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-bottom: 8px;
  border-top: 2px solid var(--blue);
}

th, td {
  text-align: left;
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--ink);
  vertical-align: top;
}

th {
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

.meta {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.65;
}

ul.recent {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.recent li {
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
}

footer {
  margin-top: 48px;
  font-size: 13px;
}

footer p {
  margin: 0 0 6px;
  opacity: 0.7;
}

@media (max-width: 480px) {
  body { font-size: 16px; padding: 32px 16px 48px; }
  h1 { font-size: 22px; }
}
