/* ──────────────────────────────────────────────────────────
   axelg12.github.io — shared styles
   Two aesthetics, both warm: "editorial" + "refined retro"
   ────────────────────────────────────────────────────────── */

:root {
  /* warm palette */
  --paper: #f5efe4;
  --paper-2: #ece4d4;
  --ink: #1d1a14;
  --ink-2: #423b2c;
  --ink-soft: #6b6149;
  --rule: #d8cdb6;
  --accent: #c1502e;     /* terracotta */
  --accent-2: #8a3a20;
  --accent-soft: #e8b89f;
  --highlight: #f0d27a;
  --shadow: 0 1px 0 rgba(0,0,0,.04), 0 18px 40px -20px rgba(60,40,20,.25);

  /* type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* paper grain (very subtle) */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(120,90,40,.06) 1px, transparent 1px),
    radial-gradient(rgba(120,90,40,.04) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
  opacity: .55;
}

a { color: var(--accent-2); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent-2) 30%, transparent); transition: color .15s, border-color .15s; }
a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ── layout shell ───────────────────────────────────── */
.shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 40px 80px;
}

/* ── top nav (shared) ───────────────────────────────── */
.topnav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.topnav .brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  font-style: italic;
  border-bottom: none;
}
.topnav .brand b { font-style: normal; font-weight: 600; }
.topnav .brand .dot { color: var(--accent); }
.topnav nav {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.topnav nav a {
  color: var(--ink-2);
  border: none;
  position: relative;
  padding-bottom: 4px;
}
.topnav nav a[aria-current="page"] {
  color: var(--ink);
}
.topnav nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--accent);
}
.topnav nav a:hover { color: var(--accent); }

/* ── eyebrow / labels ──────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--accent);
}

/* ── hero (home) ───────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .98;
  letter-spacing: -.025em;
  margin: 18px 0 0;
  text-wrap: balance;
}
.hero h1 .it { font-style: italic; color: var(--accent); }
.hero h1 .amp { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.hero .lede {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  max-width: 60ch;
  margin: 28px 0 0;
  color: var(--ink-2);
  font-weight: 400;
  text-wrap: pretty;
}
.hero .lede em { color: var(--accent-2); font-style: italic; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
}
.hero-meta b { color: var(--ink); font-weight: 600; }

/* ── stat strip ────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 80px 0;
}
.stats .stat {
  padding: 28px 22px;
  border-right: 1px solid var(--rule);
}
.stats .stat:last-child { border-right: none; }
.stats .stat .n {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stats .stat .n sup {
  font-size: 22px;
  color: var(--accent);
  font-style: italic;
  margin-left: 2px;
}
.stats .stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:nth-child(2) { border-right: none; }
  .stats .stat:nth-child(1), .stats .stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* ── now block ─────────────────────────────────────── */
.section {
  margin-top: 96px;
}
.section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 14px 0 28px;
  text-wrap: balance;
}
.section h2 em { color: var(--accent); }
.two-col {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.two-col aside {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: sticky;
  top: 24px;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 16px; }
  .two-col aside { position: static; }
}

/* ── chips ─────────────────────────────────────────── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: var(--mono);
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  letter-spacing: .02em;
  transition: background .15s, color .15s;
}
.chip:hover { background: var(--ink); color: var(--paper); }
.chip.solid { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.chip.solid:hover { background: var(--accent-2); border-color: var(--accent-2); }
.chip.ghost { border-color: var(--rule); color: var(--ink-soft); }

/* ── highlight cards (home) ────────────────────────── */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.highlights .hl {
  background: var(--paper);
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  position: relative;
}
.highlights .hl .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--accent);
}
.highlights .hl h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0;
  flex: 1;
}
.highlights .hl p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .highlights { grid-template-columns: 1fr; }
}

/* ── footer ────────────────────────────────────────── */
.foot {
  margin-top: 120px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.foot a { color: var(--ink-2); border-bottom-color: transparent; }
.foot a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ── timeline (about) ──────────────────────────────── */
.timeline {
  border-left: 1px solid var(--rule);
  margin-left: 12px;
  padding-left: 0;
}
.t-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 22px 0 24px 28px;
  position: relative;
  border-bottom: 1px dashed var(--rule);
}
.t-row::before {
  content: "";
  position: absolute;
  left: -5px; top: 32px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
}
.t-row.accent::before { background: var(--accent); border-color: var(--accent); }
.t-row .when {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
  padding-top: 6px;
}
.t-row .what h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.t-row .what .where {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-2);
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.t-row .what p {
  margin: 8px 0 0;
  color: var(--ink-2);
  max-width: 60ch;
}
.t-row .roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.t-row .roles span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--paper-2);
  color: var(--ink-2);
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .t-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ── about portrait ────────────────────────────────── */
.portrait-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 80px;
}
.portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.portrait .placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-soft);
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0, transparent 10px,
      rgba(193,80,46,.07) 10px, rgba(193,80,46,.07) 11px);
}
.portrait .caption {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 4px 8px;
  border: 1px solid var(--ink);
}
@media (max-width: 820px) {
  .portrait-block { grid-template-columns: 1fr; gap: 24px; }
  .portrait { max-width: 320px; }
}

/* ── projects grid ─────────────────────────────────── */
.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.project {
  background: var(--paper);
  display: grid;
  grid-template-columns: 80px 200px 1fr 200px;
  gap: 32px;
  padding: 32px 8px;
  align-items: start;
  transition: background .2s;
  position: relative;
}
.project:hover { background: var(--paper-2); }
.project .idx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.project .yr {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.project .body h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 0 0 6px;
  line-height: 1.05;
}
.project .body h3 a {
  color: var(--ink);
  border: none;
}
.project .body h3 a:hover { color: var(--accent); }
.project .body .tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 8px;
}
.project .body p {
  margin: 0;
  max-width: 50ch;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.project .stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.project .stack span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 8px;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  border-radius: 3px;
}
.project.discontinued .body h3 { color: var(--ink-soft); text-decoration: line-through; text-decoration-thickness: 1px; }
@media (max-width: 900px) {
  .project { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 4px; }
  .project .yr { grid-column: 2; }
  .project .body { grid-column: 2; }
  .project .stack { grid-column: 2; justify-content: flex-start; }
}

/* ── pull quote ────────────────────────────────────── */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 80px 0;
  max-width: 24ch;
  text-wrap: balance;
}
.pullquote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 1.6em;
  color: var(--accent);
  line-height: 0;
  vertical-align: -.2em;
  margin-right: 4px;
}

/* ── reading list ──────────────────────────────────── */
.reads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
.reads .r {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.reads .r .kind {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
}
.reads .r .ttl {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}
.reads .r .ttl a { color: var(--ink); border-bottom-color: var(--rule); }
.reads .r .ttl a:hover { color: var(--accent); border-bottom-color: var(--accent); }
@media (max-width: 720px) { .reads { grid-template-columns: 1fr; } }

/* ── reveal animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* density */
body.constructivist {
  --paper: #efe7d6;
  --paper-2: #e3d9c2;
  --ink: #0e0c0a;
  --ink-2: #1a1614;
  --ink-soft: rgba(14,12,10,.62);
  --rule: rgba(14,12,10,.18);
  --accent: #c41e1e;
  --accent-2: #8a1010;
  --accent-soft: #ed8a8a;
  --highlight: #c41e1e;
  --sans: "Archivo Narrow", "Oswald", "Inter Tight", system-ui, sans-serif;
  --serif: "Archivo Narrow", "Oswald", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  background: var(--paper);
  color: var(--ink);
}
body.constructivist::before { opacity: .5; }

/* faint grid background — museum / archival feel */
body.constructivist .shell {
  background-image:
    linear-gradient(to right, rgba(14,12,10,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,12,10,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

body.constructivist a { color: var(--accent); border-bottom-color: var(--accent); }
body.constructivist a:hover { color: var(--ink); border-bottom-color: var(--ink); }

body.constructivist .topnav {
  border-bottom: 6px double var(--ink);
  padding-bottom: 18px;
  align-items: center;
}
body.constructivist .topnav .brand {
  font-family: var(--sans);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 22px;
  border-bottom: none;
}
body.constructivist .topnav .brand .dot { color: var(--accent); }
body.constructivist .topnav nav { gap: 0; }
body.constructivist .topnav nav a {
  border: 1px solid var(--ink);
  padding: 6px 14px;
  margin-left: -1px;
  font-weight: 600;
  text-transform: uppercase;
}
body.constructivist .topnav nav a[aria-current="page"] {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
body.constructivist .topnav nav a[aria-current="page"]::after { display: none; }
body.constructivist .topnav nav a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

body.constructivist .eyebrow {
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--ink);
}
body.constructivist .eyebrow::before { background: var(--accent); height: 3px; width: 32px; }

/* HERO: oversized condensed type with a red geometric mark */
body.constructivist .hero {
  position: relative;
  padding-top: 8px;
}
body.constructivist .hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: clamp(120px, 18vw, 240px);
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
body.constructivist .hero > div { position: relative; z-index: 1; }
body.constructivist .hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .92;
  font-size: clamp(56px, 11vw, 156px);
  font-stretch: condensed;
  font-style: normal;
  padding-top: .04em;
}
body.constructivist .hero h1 .it {
  color: var(--accent);
  font-style: normal;
  display: inline-block;
  transform: rotate(-2deg);
  transform-origin: left bottom;
}
body.constructivist .hero h1 .amp {
  color: var(--ink);
  font-weight: 300;
  font-style: italic;
  font-family: "Fraunces", Georgia, serif;
  font-stretch: normal;
}
body.constructivist .hero .lede {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-2);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
body.constructivist .hero .lede em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  background: none;
  box-shadow: none;
  padding: 0;
}
body.constructivist .hero-meta {
  border-top: 2px solid var(--ink);
  font-weight: 600;
  text-transform: uppercase;
}
body.constructivist .hero-meta b { color: var(--accent); }

/* STATS: poster slabs */
body.constructivist .stats {
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  margin: 96px 0;
}
body.constructivist .stats .stat { border-right: 1px solid var(--ink); padding: 36px 24px; }
body.constructivist .stats .stat .n {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0em;
  font-size: 96px;
  text-transform: uppercase;
}
body.constructivist .stats .stat:nth-child(2) .n,
body.constructivist .stats .stat:nth-child(4) .n { color: var(--accent); }
body.constructivist .stats .stat .n sup {
  font-size: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 2px 6px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 6px;
  align-self: center;
}
body.constructivist .stats .stat .lbl {
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink);
}

/* SECTION HEADERS */
body.constructivist .section h2 {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: 1;
  font-size: clamp(36px, 5.4vw, 68px);
}
body.constructivist .section h2 em {
  color: var(--accent);
  font-style: normal;
  background: none;
  padding: 0;
  box-shadow: none;
}

body.constructivist .two-col aside {
  font-weight: 700;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

/* CHIPS */
body.constructivist .chip {
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 12px;
  box-shadow: none;
}
body.constructivist .chip:hover { background: var(--ink); color: var(--paper); }
body.constructivist .chip.solid { background: var(--accent); color: var(--paper); border-color: var(--accent); }
body.constructivist .chip.solid:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
body.constructivist .chip.ghost { border-style: dashed; color: var(--ink-soft); }

/* HIGHLIGHT CARDS — clean, asymmetric */
body.constructivist .highlights {
  background: transparent;
  border: none;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
body.constructivist .highlights .hl {
  border-right: 1px solid var(--ink);
  background: var(--paper);
  padding: 36px 28px 40px;
  margin: 0;
  box-shadow: none;
  position: relative;
}
body.constructivist .highlights .hl:last-child { border-right: none; }
body.constructivist .highlights .hl:nth-child(2) { background: var(--accent); color: var(--paper); }
body.constructivist .highlights .hl:nth-child(2) h3,
body.constructivist .highlights .hl:nth-child(2) p,
body.constructivist .highlights .hl:nth-child(2) .num { color: var(--paper); }
body.constructivist .highlights .hl .num {
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
}
body.constructivist .highlights .hl h3 {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
}

/* PULL QUOTE — poster slogan */
body.constructivist .pullquote {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .95;
  font-size: clamp(40px, 6vw, 84px);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 56px 0;
  max-width: none;
  position: relative;
}
body.constructivist .pullquote::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: var(--accent);
  font-size: 0;
  line-height: 0;
  margin: 0;
}

/* TIMELINE */
body.constructivist .timeline { border-left: 2px solid var(--ink); }
body.constructivist .t-row { border-bottom: 1px solid var(--rule); padding: 28px 0 30px 32px; }
body.constructivist .t-row::before { background: var(--paper); border: 2px solid var(--ink); width: 12px; height: 12px; left: -7px; border-radius: 0; transform: rotate(45deg); }
body.constructivist .t-row.accent::before { background: var(--accent); border-color: var(--accent); }
body.constructivist .t-row .when { font-weight: 700; letter-spacing: .08em; }
body.constructivist .t-row .what h3 {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
body.constructivist .t-row .what .where { color: var(--accent); font-weight: 600; }
body.constructivist .t-row .roles span {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* PORTRAIT */
body.constructivist .portrait {
  border: 2px solid var(--ink);
  box-shadow: 16px 16px 0 var(--accent);
  background: var(--paper-2);
}
body.constructivist .portrait .placeholder {
  color: var(--ink);
  background-image:
    repeating-linear-gradient(45deg,
      transparent 0, transparent 18px,
      rgba(196,30,30,.16) 18px, rgba(196,30,30,.16) 20px);
}
body.constructivist .portrait .caption {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  font-weight: 700;
}

/* PROJECTS — clean editorial rows with red rule */
body.constructivist .projects {
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--ink);
}
body.constructivist .project {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
body.constructivist .project:hover { background: var(--paper-2); }
body.constructivist .project .idx {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  text-transform: uppercase;
}
body.constructivist .project .yr { font-weight: 700; letter-spacing: .08em; }
body.constructivist .project .body h3 {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: 30px;
}
body.constructivist .project .body h3 a { color: var(--ink); }
body.constructivist .project .body h3 a:hover { color: var(--accent); }
body.constructivist .project .body .tag {
  color: var(--paper);
  background: var(--accent);
  display: inline-block;
  padding: 3px 9px;
  font-weight: 700;
  letter-spacing: .08em;
}
body.constructivist .project .stack span {
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 0;
  background: transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* READS */
body.constructivist .reads .r { border-bottom: 1px solid var(--ink); padding: 22px 0; }
body.constructivist .reads .r .kind {
  background: var(--accent);
  color: var(--paper);
  padding: 3px 8px;
  font-weight: 700;
  letter-spacing: .12em;
}
body.constructivist .reads .r .ttl {
  font-family: var(--sans);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
body.constructivist .reads .r .ttl a { color: var(--ink); border-bottom-color: var(--ink); }
body.constructivist .reads .r .ttl a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* FOOT */
body.constructivist .foot {
  border-top: 4px solid var(--ink);
  font-weight: 700;
  letter-spacing: .1em;
}
body.constructivist .foot a { color: var(--ink); }
body.constructivist .foot a:hover { color: var(--accent); }

/* density */
body.compact .shell { padding-top: 18px; padding-bottom: 60px; }
body.compact .section { margin-top: 64px; }
body.compact .hero { margin-bottom: 56px; }
body.compact .stats { margin: 56px 0; }
body.compact .stats .stat { padding: 18px 18px; }
body.compact .stats .stat .n { font-size: 48px; }
body.compact .pullquote { margin: 56px 0; }
