/* =========================================================================
   András Tóthfalussy — public-record advisory
   Redesign stylesheet. Self-contained, no external dependencies.
   ========================================================================= */

:root {
  --paper:      #faf8f4;
  --paper-2:    #f2eee6;
  --surface:    #ffffff;
  --ink:        #1a1d21;
  --ink-2:      #3a3f45;
  --muted:      #61666d;
  --faint:      #8b9098;
  --line:       #e4dfd5;
  --line-2:     #d6cfc1;
  --navy:       #1f3a5f;
  --navy-2:     #2c4d78;
  --oxblood:    #8e2b2b;
  --oxblood-2:  #7a2222;
  --amber:      #9a6a1e;
  --focus:      #2c4d78;

  --serif: Georgia, "Iowan Old Style", "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1080px;
  --wrap-narrow: 760px;
  --radius: 4px;
  --shadow: 0 1px 2px rgba(26,29,33,.05), 0 8px 28px rgba(26,29,33,.06);
  --shadow-sm: 0 1px 2px rgba(26,29,33,.06);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-underline-offset: 2px; }
a:hover { color: var(--navy-2); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 2px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.18; color: var(--ink); letter-spacing: -0.01em; }
p { margin: 0 0 1.1rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--wrap-narrow); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 200; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; color:#fff; }

/* ----- top strip ----- */
.topstrip {
  background: var(--ink);
  color: #e9e4da;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.topstrip .wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 34px; }
.topstrip .dot { color: var(--oxblood); }

/* ----- header / nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.05; }
.brand .name {
  font-family: var(--sans); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; font-size: .92rem; color: var(--ink);
}
.brand .kicker { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--oxblood); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-2); text-decoration: none; padding: 8px 12px; border-radius: var(--radius);
  text-transform: uppercase; letter-spacing: .06em;
}
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--oxblood); box-shadow: inset 0 -2px 0 var(--oxblood); border-radius: 0; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2); border-radius: var(--radius);
  width: 42px; height: 38px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ----- hero ----- */
.hero { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); border-bottom: 1px solid var(--line); }
.hero .wrap { padding-top: 64px; padding-bottom: 56px; }
.hero .eyebrow {
  font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--oxblood); font-weight: 700; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero .eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--oxblood); display: inline-block; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 18px; max-width: 18ch; }
.hero .lede { font-size: 1.22rem; color: var(--ink-2); max-width: 46ch; margin: 0; }

/* stat tiles */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 44px; }
.stat { background: var(--surface); padding: 20px 20px; }
.stat .n { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.stat .l { font-size: .78rem; color: var(--muted); margin-top: 6px; letter-spacing: .02em; }
.stat.alert .n { color: var(--oxblood); }

/* ----- generic sections ----- */
.section { padding: 64px 0; }
.section.tight { padding: 44px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { margin-bottom: 32px; }
.section-head .eyebrow {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--oxblood); font-weight: 700; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin: 0; }
.prose { max-width: 68ch; }
.prose p { color: var(--ink-2); }
.prose h3 { font-size: 1.28rem; margin: 2rem 0 .6rem; }
.lead-note { font-size: 1.08rem; color: var(--ink-2); }

/* labelled category block */
.cat { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 26px 0; border-top: 1px solid var(--line); }
.cat:last-child { border-bottom: 1px solid var(--line); }
.cat .cat-label { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.cat .cat-label small { display: block; font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 6px; }
.cat p { margin: 0; color: var(--ink-2); }

/* case cards */
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.case {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.case::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--navy); }
.case.win::before { background: var(--oxblood); }
.case .jur { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.case h3 { font-size: 1.22rem; margin: 6px 0 4px; }
.case .amount { font-family: var(--mono); font-size: .92rem; color: var(--navy); font-weight: 600; margin-bottom: 12px; }
.case.win .amount { color: var(--oxblood); }
.case p { font-size: .96rem; color: var(--ink-2); margin: 0; }
.case .badge {
  display: inline-block; margin-top: 14px; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px; background: var(--paper-2); color: var(--ink-2);
}
.case.win .badge { background: #f3e2e0; color: var(--oxblood); }

/* callout / advisory box */
.callout {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--amber);
  border-radius: var(--radius); padding: 22px 26px; margin: 28px 0; box-shadow: var(--shadow-sm);
}
.callout p:last-child { margin-bottom: 0; }
.callout .callout-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }

/* disclaimer */
.disclaimer { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; font-size: .92rem; color: var(--muted); }
.disclaimer strong { color: var(--ink-2); }

/* ----- updates feed ----- */
.feed { max-width: 780px; }
.update { padding: 40px 0; border-top: 1px solid var(--line); }
.update:first-child { border-top: 0; padding-top: 8px; }
.update .kicker { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--oxblood); margin-bottom: 10px; }
.update h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0 0 16px; }
.update .body p { color: var(--ink-2); }
.update .body h3 { font-family: var(--serif); font-size: 1.16rem; margin: 1.6rem 0 .5rem; color: var(--ink); }
.update .body ul { margin: 0 0 1.1rem; padding-left: 1.1rem; }
.update .body li { margin-bottom: .4rem; color: var(--ink-2); }

/* pull quote */
.pull {
  font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--ink);
  border-left: 3px solid var(--oxblood); padding: 4px 0 4px 20px; margin: 20px 0;
}

/* timeline */
.timeline { list-style: none; margin: 22px 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line-2); }
.timeline li { position: relative; padding: 0 0 20px 34px; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--surface); border: 3px solid var(--navy); }
.timeline li.flag::before { border-color: var(--oxblood); }
.timeline .date { font-family: var(--mono); font-size: .82rem; font-weight: 600; color: var(--navy); display: block; }
.timeline .ev { color: var(--ink-2); font-size: .96rem; }

/* comparison table */
.compare { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .95rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare caption { text-align: left; font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--oxblood); padding: 14px 16px; background: var(--paper-2); }
.compare th, .compare td { text-align: left; padding: 14px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.compare thead th { font-family: var(--sans); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.compare td.q { font-family: var(--serif); font-style: italic; color: var(--ink); }
.compare .when { font-family: var(--mono); font-size: .8rem; color: var(--muted); white-space: nowrap; }

/* filing tag */
.filing { display: inline-block; font-family: var(--mono); font-size: .78rem; color: var(--muted); background: var(--paper-2); border: 1px solid var(--line); border-radius: 100px; padding: 3px 12px; margin-top: 6px; }

/* ----- person cards (known associates) ----- */
.people { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 820px; }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.person h3 { font-size: 1.3rem; margin: 0 0 4px; }
.person .meta { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.person p { color: var(--ink-2); font-size: .98rem; }
.person .reply { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line-2); font-size: .9rem; color: var(--muted); }

/* ----- sources / links lists ----- */
.res-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; max-width: 820px; }
.res {
  display: flex; align-items: baseline; gap: 16px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm); text-decoration: none;
}
.res:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.res .host { font-family: var(--mono); font-size: .8rem; color: var(--oxblood); font-weight: 600; min-width: 0; word-break: break-word; }
.res .full { display: block; font-size: .82rem; color: var(--muted); margin-top: 4px; word-break: break-all; }
.res .arrow { margin-left: auto; color: var(--faint); }

/* generic content link list (sources page) */
.plain-links { max-width: 760px; }
.plain-links code { font-family: var(--mono); font-size: .86rem; background: var(--paper-2); padding: 2px 6px; border-radius: 3px; }

/* ----- contact CTA ----- */
.cta { background: var(--ink); color: #ece7dd; border-radius: var(--radius); padding: 44px 40px; text-align: center; }
.cta h2 { color: #fff; font-size: 1.7rem; margin: 0 0 12px; }
.cta p { color: #c8c3b9; max-width: 52ch; margin: 0 auto 24px; }
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: .92rem; letter-spacing: .04em;
  text-decoration: none; padding: 14px 28px; border-radius: var(--radius); cursor: pointer; border: 0;
}
.btn-primary { background: var(--oxblood); color: #fff; }
.btn-primary:hover { background: var(--oxblood-2); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--paper-2); color: var(--ink); }

/* ----- footer ----- */
.site-footer { background: var(--ink); color: #b7b2a8; margin-top: 0; }
.site-footer .wrap { padding: 48px 24px 40px; }
.site-footer .foot-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.site-footer .brand .name { color: #f2eee6; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer nav a { color: #c8c3b9; text-decoration: none; font-size: .84rem; letter-spacing: .04em; }
.site-footer nav a:hover { color: #fff; }
.site-footer .legal { margin-top: 34px; padding-top: 22px; border-top: 1px solid #33373d; font-size: .74rem; color: #8b8f96; letter-spacing: .02em; line-height: 1.7; }

/* small utilities */
.eyebrow-inline { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--oxblood); font-weight: 700; }
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.center { text-align: center; }

/* ----- responsive ----- */
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cases { grid-template-columns: 1fr; }
  .cat { grid-template-columns: 1fr; gap: 10px; }
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 102px; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 10px 16px 18px; gap: 2px;
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .22s ease; height: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 10px; border-radius: var(--radius); }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--oxblood); }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  body { font-size: 17px; }
  .stats { grid-template-columns: 1fr; }
  .cta { padding: 32px 22px; }
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  .compare td { border-top: 0; }
  .compare tr { border-top: 1px solid var(--line); padding: 6px 0; }
}

@media print {
  .site-header, .topstrip, .nav-toggle, .cta, .site-footer nav { display: none; }
  body { background: #fff; font-size: 12pt; }
}

/* stacked full-width case files */
.stack { display: grid; gap: 20px; }
.stack .case p + p { margin-top: .9rem; }

/* ===== pattern / playbook ===== */
.playbook-intro { max-width: 68ch; margin-bottom: 34px; }
.playbook-intro p { color: var(--ink-2); }

.cycle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 8px 0 40px; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 20px 18px; position: relative; box-shadow: var(--shadow-sm);
}
.step .num { font-family: var(--mono); font-size: .78rem; font-weight: 700; color: var(--oxblood); letter-spacing: .1em; }
.step h4 { font-family: var(--serif); font-size: 1.06rem; margin: 6px 0 6px; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }

.pattern-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pcol { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.pcol .phead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.pcol h3 { font-size: 1.18rem; margin: 0; }
.pcol .sub { font-size: .82rem; color: var(--muted); margin: 2px 0 16px; }
.status { font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.status.done { background: #f3e2e0; color: var(--oxblood); }
.status.progress { background: #f3ead7; color: var(--amber); }
.pcol ol { margin: 0; padding-left: 1.2rem; }
.pcol ol li { margin-bottom: .55rem; color: var(--ink-2); font-size: .94rem; }
.pcol ol li::marker { color: var(--faint); font-variant-numeric: tabular-nums; }

.forecast { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--oxblood); border-radius: var(--radius); padding: 26px 28px; margin-top: 24px; box-shadow: var(--shadow-sm); }
.forecast .callout-label { color: var(--oxblood); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.forecast p { color: var(--ink-2); }
.forecast p:last-child { margin-bottom: 0; }
.forecast .hedge { font-size: .86rem; color: var(--muted); font-style: italic; }

@media (max-width: 860px) {
  .cycle { grid-template-columns: repeat(2, 1fr); }
  .pattern-cases { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .cycle { grid-template-columns: 1fr; }
}

/* ===== images: hero banner + figures ===== */
.hero-media { margin-top: 34px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--paper-2); }
.hero-media img { width: 100%; height: clamp(200px, 32vw, 360px); object-fit: cover; display: block; }

.figure-block { margin-top: 40px; }
.figure-block .fig-eyebrow { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--oxblood); font-weight: 700; margin-bottom: 14px; }
.figure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.figure-grid.two { grid-template-columns: repeat(2, 1fr); }
figure.figure { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
figure.figure a { display: block; }
figure.figure img { width: 100%; height: 260px; object-fit: contain; background: var(--paper-2); display: block; }
figure.figure figcaption { font-size: .8rem; color: var(--muted); padding: 10px 14px; border-top: 1px solid var(--line); }

.portrait-figure { max-width: 320px; margin: 34px 0 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.portrait-figure img { width: 100%; height: auto; display: block; }
.portrait-figure figcaption { font-size: .8rem; color: var(--muted); padding: 10px 14px; border-top: 1px solid var(--line); }

@media (max-width: 860px) { .figure-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .figure-grid, .figure-grid.two { grid-template-columns: 1fr; } }

/* ===================================================================
   OFFICIAL-REGISTER / DOSSIER STYLING
   Evokes an official public-record notice. NOT a government body.
   =================================================================== */

/* official topstrip variant */
.topstrip .ts-left { display: inline-flex; align-items: center; gap: 12px; }
.topstrip .ts-ref { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; color: #9aa0a8; border-left: 1px solid #3a3f45; padding-left: 12px; }
.topstrip .ts-right { display: inline-flex; align-items: center; gap: 10px; }
.topstrip .ts-status { color: #d98b8b; font-weight: 700; }

/* advisory notice band */
.notice-band { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.notice-band .wrap { display: flex; align-items: flex-start; gap: 18px; padding: 16px 24px; }
.notice-band .seal-sm { flex: 0 0 auto; }
.notice-band p { margin: 0; font-size: .82rem; color: var(--muted); line-height: 1.6; }
.notice-band strong { color: var(--ink-2); letter-spacing: .02em; }

/* CSS emblem (neutral, not a government seal) */
.seal {
  width: 92px; height: 92px; border-radius: 50%;
  border: 2px solid var(--oxblood); color: var(--oxblood);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--mono); font-size: .52rem; letter-spacing: .14em; line-height: 1.5;
  text-transform: uppercase; position: relative; background: var(--surface);
}
.seal::before { content: ""; position: absolute; inset: 6px; border: 1px solid var(--oxblood); border-radius: 50%; opacity: .5; }
.seal span { max-width: 66px; }
.seal-sm { width: 54px; height: 54px; font-size: .4rem; border-width: 1.5px; }
.seal-sm::before { inset: 4px; }

/* subject dossier */
.dossier { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.dossier-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--ink); color: #ece7dd; padding: 16px 26px; }
.dossier-head .dh-title { font-family: var(--mono); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.dossier-head .dh-status { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; color: #e6a5a5; border: 1px solid #6a4a4a; border-radius: 100px; padding: 4px 12px; white-space: nowrap; }
.dossier-body { display: grid; grid-template-columns: 200px 1fr; gap: 0; }
.dossier-photo { border-right: 1px solid var(--line); background: var(--paper-2); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 18px; text-align: center; min-height: 240px; }
.dossier-photo .silhouette { width: 76px; height: 76px; border-radius: 50%; background: repeating-linear-gradient(45deg, #d9d3c7, #d9d3c7 6px, #cfc9bb 6px, #cfc9bb 12px); margin-bottom: 14px; }
.dossier-photo .no-photo { font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); line-height: 1.5; }
.dossier-data { padding: 6px 0; }
.drow { display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding: 12px 26px; border-top: 1px solid var(--line); }
.drow:first-child { border-top: 0; }
.drow .dk { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.drow .dv { font-size: .96rem; color: var(--ink); }
.drow .dv.flag { color: var(--oxblood); font-weight: 600; }
.dossier-foot { padding: 14px 26px; border-top: 1px solid var(--line); background: var(--paper-2); font-size: .76rem; color: var(--muted); }

/* signed-order callout on updates */
.order-strip { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; color: var(--oxblood); background: #f3e2e0; border: 1px solid #e3c4c1; border-radius: 100px; padding: 5px 14px; margin-bottom: 4px; }

@media (max-width: 720px) {
  .dossier-body { grid-template-columns: 1fr; }
  .dossier-photo { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; flex-direction: row; gap: 16px; justify-content: flex-start; }
  .dossier-photo .silhouette { margin-bottom: 0; }
  .drow { grid-template-columns: 1fr; gap: 4px; }
  .notice-band .wrap { flex-direction: column; gap: 12px; }
}

/* ===================================================================
   INSTITUTIONAL / JUSTICE THEME OVERRIDE  (appended last = wins)
   Cool, official, law-enforcement-register aesthetic.
   =================================================================== */
:root {
  --paper:      #eef1f5;   /* cool light steel */
  --paper-2:    #e0e5ec;
  --surface:    #ffffff;
  --ink:        #0c1420;   /* near-black navy */
  --ink-2:      #223140;
  --muted:      #55626f;
  --faint:      #8592a0;
  --line:       #ccd4dd;
  --line-2:     #b3bec9;
  --navy:       #123a63;   /* official blue */
  --navy-2:     #0c2743;
  --oxblood:    #b0111d;   /* justice red / notice red */
  --oxblood-2:  #8a0d16;
  --amber:      #7c6a2c;
  --focus:      #123a63;

  /* institutional sans everywhere; retire the editorial serif */
  --serif: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;
  --sans:  "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, system-ui, sans-serif;

  --radius: 2px;
  --shadow: 0 1px 0 rgba(12,20,32,.05), 0 2px 6px rgba(12,20,32,.08);
  --shadow-sm: 0 1px 2px rgba(12,20,32,.07);
}

body { background: var(--paper); }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.01em; }

/* dark official header with a red authority rule */
.site-header {
  background: var(--ink);
  border-bottom: 3px solid var(--oxblood);
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.site-header .wrap { min-height: 66px; }
.site-header .brand .name { color: #ffffff; }
.site-header .brand .kicker { color: #e39aa0; }
.site-header .nav a { color: #c2ccd7; }
.site-header .nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-header .nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -3px 0 var(--oxblood); }
.nav-toggle { border-color: #38424f; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { background: #fff; }

/* topstrip: official bulletin bar */
.topstrip { background: #060b12; border-bottom: 1px solid #263241; }

/* hero: cool steel, heavy sans title, red eyebrow */
.hero { background: linear-gradient(180deg, #eef1f5 0%, #dfe5ec 100%); border-bottom: 1px solid var(--line-2); }
.hero h1 { font-weight: 800; }
.hero .eyebrow, .section-head .eyebrow, .fig-eyebrow { color: var(--oxblood); }

/* mobile nav dropdown stays dark to match header */
@media (max-width: 860px) {
  .site-header .nav { background: var(--ink); border-bottom: 3px solid var(--oxblood); }
  .site-header .nav a { color: #c2ccd7; }
  .site-header .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--oxblood); }
}

/* stat tiles: official sans figures */
.stat .n { font-family: var(--sans); font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }
.stat.alert .n { color: var(--oxblood); }

/* flatter, more document-like cards */
.case, .person, figure.figure, .dossier, .callout, .disclaimer, .res, .forecast, .step, .pcol { box-shadow: var(--shadow-sm); }

/* pull quotes: upright, official, not editorial-italic */
.pull { font-family: var(--sans); font-style: normal; font-size: 1.06rem; font-weight: 600; color: var(--ink); border-left: 3px solid var(--oxblood); background: var(--paper-2); padding: 14px 18px; }

/* section headings: tighter, institutional */
.section-head h2 { font-weight: 800; }

/* dossier header: add a red top rule for authority */
.dossier { border-top: 3px solid var(--oxblood); }

/* buttons */
.btn-primary { background: var(--oxblood); }
.btn-primary:hover { background: var(--oxblood-2); }

/* author page: portrait beside the text */
.author-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 44px; align-items: start; }
.author-aside .portrait-figure { position: sticky; top: 92px; max-width: 300px; margin: 0; }
@media (max-width: 820px) {
  .author-layout { grid-template-columns: 1fr; }
  .author-aside { order: -1; }
  .author-aside .portrait-figure { position: static; max-width: 260px; }
}

/* subject "wanted" photo: square, top of the dossier column */
.dossier-photo.photo-cell { padding: 0; min-height: 0; background: #0c1420; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; }
.subject-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center; display: block; }
.photo-tag { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: #8592a0; padding: 10px 14px; }
@media (max-width: 720px) {
  .dossier-photo.photo-cell { flex-direction: row; align-items: center; gap: 14px; padding: 14px; }
  .subject-photo { width: 120px; height: 120px; aspect-ratio: auto; flex: 0 0 auto; }
  .photo-tag { padding: 0; }
}

/* breathing room between the two wordmark lines */
.brand { gap: 6px; }
.brand .kicker { line-height: 1; }
.brand .name { line-height: 1.05; }

/* keep hero title and subtitle on one line where the text is short enough */
.hero h1 { max-width: none; }
.hero .lede { max-width: none; }

/* ============ FEEDBACK FIXES: menu wrapping + oversized fonts ============ */
body { font-size: 17px; }
.hero h1 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
.hero .lede { font-size: 1.1rem; }
.section-head h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); }
.topstrip { font-size: .66rem; }

/* desktop nav: never let an item break onto a second line */
.nav { gap: 2px; }
.nav a { white-space: nowrap; font-size: .78rem; letter-spacing: .04em; padding: 8px 10px; }

/* collapse to a clean menu button below 1024px so the bar can't wrap */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  #primary-nav {
    position: fixed; inset: auto 0 auto 0; top: 98px; flex-direction: column; align-items: stretch;
    background: var(--ink); border-bottom: 3px solid var(--oxblood); padding: 10px 16px 18px; gap: 2px;
    box-shadow: var(--shadow); transform: translateY(-170%); transition: transform .22s ease; height: auto;
  }
  #primary-nav.open { transform: translateY(0); }
  #primary-nav a { padding: 12px 10px; color: #c2ccd7; white-space: nowrap; }
  #primary-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--oxblood); }
  .topstrip .ts-ref { display: none; }
}
@media (max-width: 760px) {
  .topstrip .ts-right { display: none; }
}

/* wider content column so large screens aren't mostly margin */
:root { --wrap: 1400px; }
