/* Daniel Yomtobian — fact file / dossier. 2026 refresh. */
:root {
  --bg: #fbfbf9;
  --panel: #f2f1ec;
  --ink: #26282b;
  --muted: #6c7076;
  --amber: #b45309;
  --amber-bright: #d97706;
  --graphite: #3f4348;
  --rule: #e3e2da;
  --max: 940px;
  --narrow: 660px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1c1e;
    --panel: #242629;
    --ink: #e9eaec;
    --muted: #9aa0a6;
    --amber: #e8963f;
    --amber-bright: #f2a955;
    --graphite: #c8ccd2;
    --rule: #33363a;
  }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--ink); font: 17px/1.7 "Karla", system-ui, sans-serif; }
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.4rem; }

header.site { border-bottom: 2px solid var(--ink); padding: 0.95rem 0; }
header.site .wrap { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.wordmark { font-family: "Zilla Slab", Georgia, serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.wordmark span { color: var(--amber); }
.wordmark:hover { text-decoration: none; }
nav.top { display: flex; gap: 1.1rem; flex-wrap: wrap; font-size: 0.84rem; font-weight: 700; }
nav.top a { color: var(--muted); }
nav.top a:hover { color: var(--amber); text-decoration: none; }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: 3px;
  padding: 0.18rem 0.5rem;
}

/* Dossier head */
.dossier-head { padding: 3rem 0 2.8rem; border-bottom: 1px solid var(--rule); }
.dossier-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: center; }
.dossier-head h1 {
  font-family: "Zilla Slab", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6.5vw, 3.4rem);
  line-height: 1.05;
  margin: 0.8rem 0 0.9rem;
}
.dossier-head h1 span { color: var(--amber); }
.dossier-sub { color: var(--muted); max-width: 32em; }
.dossier-art { width: 100%; height: auto; border-radius: 6px; border: 1px solid var(--rule); }
@media (max-width: 760px) { .dossier-grid { grid-template-columns: 1fr; } }

main { padding: 2.7rem 0 3.4rem; }

/* Quick facts — signature */
.quickfacts {
  max-width: 780px;
  margin: 0 auto 3rem;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--amber);
  border-radius: 8px;
  padding: 1.6rem 1.8rem;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.6rem;
  align-items: start;
}
.quickfacts img { width: 100%; height: auto; border-radius: 6px; border: 2px solid var(--graphite); }
.quickfacts h2 { font-family: "Zilla Slab", Georgia, serif; font-size: 1.15rem; margin-bottom: 0.7rem; }
.quickfacts dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.3rem 1.3rem; font-size: 0.95rem; }
.quickfacts dt { font-weight: 700; color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; padding-top: 0.2em; }
@media (max-width: 620px) { .quickfacts { grid-template-columns: 1fr; } .quickfacts img { max-width: 150px; } }

/* Timeline */
.timeline { max-width: 780px; margin: 0 auto 3rem; }
.timeline h2 { font-family: "Zilla Slab", Georgia, serif; font-size: 1.5rem; margin-bottom: 1.1rem; }
.timeline ol { list-style: none; border-left: 2px solid var(--rule); padding-left: 1.5rem; display: grid; gap: 1rem; }
.timeline li { position: relative; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.42em;
  width: 0.65rem; height: 0.65rem;
  border-radius: 50%;
  background: var(--amber);
}
.timeline b { font-family: "Zilla Slab", Georgia, serif; color: var(--amber); margin-right: 0.5em; }

/* Brief cards */
.briefs { max-width: 780px; margin: 0 auto; }
.briefs h2 { font-family: "Zilla Slab", Georgia, serif; font-size: 1.5rem; margin-bottom: 1.1rem; }
.brief-list { display: grid; gap: 1.1rem; }
.brief {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.3rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1rem;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.brief:hover { text-decoration: none; border-color: var(--amber); box-shadow: 0 8px 22px rgba(38, 40, 43, 0.1); }
.brief img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 5px; border: 1px solid var(--rule); }
.brief-no { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; color: var(--amber); }
.brief h3 { font-family: "Zilla Slab", Georgia, serif; font-weight: 600; font-size: 1.2rem; margin: 0.25rem 0 0.35rem; }
.brief:hover h3 { color: var(--amber); }
.brief p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 640px) { .brief { grid-template-columns: 1fr; } }

/* Brief pages */
article.filepage { max-width: var(--narrow); margin: 0 auto; }
article.filepage header { margin-bottom: 1.4rem; }
.file-meta { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; font-size: 0.8rem; color: var(--muted); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
article.filepage h1 {
  font-family: "Zilla Slab", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.12;
  margin: 0.6rem 0 0.4rem;
}
.page-hero { display: block; width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--rule); margin: 1.4rem 0 1.8rem; }
article.filepage p { margin: 0 0 1.1rem; }
article.filepage h2 { font-family: "Zilla Slab", Georgia, serif; font-weight: 600; font-size: 1.3rem; margin: 1.9rem 0 0.6rem; }
.keyfacts {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.6rem 0;
}
.keyfacts h2 { margin: 0 0 0.5rem !important; font-size: 0.85rem !important; text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber); }
.keyfacts ul { list-style: none; display: grid; gap: 0.35rem; font-size: 0.95rem; }
.keyfacts li { padding-left: 1.2rem; position: relative; }
.keyfacts li::before { content: "▸"; position: absolute; left: 0; color: var(--amber); }
blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.2rem 0 0.2rem 1.2rem;
  margin: 1.4rem 0;
  font-style: italic;
  color: var(--graphite);
}
blockquote cite { display: block; font-style: normal; font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }

.pager {
  display: flex; justify-content: space-between; gap: 1rem;
  border-top: 2px solid var(--ink); margin-top: 2.4rem; padding-top: 1rem;
  font-size: 0.86rem; font-weight: 700;
}

footer.site { border-top: 1px solid var(--rule); padding: 1.4rem 0 2rem; font-size: 0.8rem; color: var(--muted); }
footer.site .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) { .brief { transition: none; } }
