  *,*::before,*::after { box-sizing:border-box; }
  html { scroll-behavior:smooth; scroll-padding-top:84px; }
  body {
    margin:0; font-family:'Open Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
    font-weight:400; color:var(--body); background:#fff; line-height:1.65;
    -webkit-font-smoothing:antialiased;
  }
  .wrap { width:100%; max-width:1680px; margin:0 auto; padding:0 32px; }
  h1,h2,h3 { color:var(--ink); line-height:1.18; margin:0 0 .5em; font-weight:700; letter-spacing:-.015em; }
  h3 { font-size:1.14rem; font-weight:600; }
  p { margin:0 0 1.1em; }
  a { color:var(--primary); }

  /* header */
  .top {
    position:sticky; top:0; z-index:50; background:rgb(var(--deep-rgb) / .97);
    backdrop-filter:saturate(1.4) blur(8px); border-bottom:1px solid rgba(255,255,255,.12);
  }
  .top__in { display:flex; align-items:center; gap:28px; min-height:56px;
    max-width:1680px; margin:0 auto; padding:0 32px; }
  .top img { height:26px; width:auto; display:block; flex:0 0 auto; }
  .top nav { display:flex; gap:20px; margin-left:auto; flex-wrap:wrap; }
  .top nav a { color:rgba(255,255,255,.82); text-decoration:none; font-size:.8rem;
    font-weight:600; letter-spacing:.04em; text-transform:uppercase; padding:6px 0;
    border-bottom:2px solid transparent; transition:color .18s,border-color .18s; }
  .top nav a:hover, .top nav a:focus-visible { color:#fff; border-color:var(--sky); }

  /* slim title strip */
  .hero { background:linear-gradient(155deg,var(--deep-lift) 0%,var(--deep) 58%,var(--deep-drop) 100%);
    background-color:var(--deep); color:#fff; padding:14px 0 15px; }
  .hero .wrap { display:flex; align-items:baseline; gap:14px; flex-wrap:wrap; }
  .hero__meta { margin:0; font-size:.7rem; font-weight:700; letter-spacing:.14em;
    text-transform:uppercase; color:var(--sky); }
  .hero h1 { color:#fff; font-size:1.02rem; font-weight:600; margin:0; letter-spacing:0; }
  .hero__for { display:inline-flex; align-items:center; gap:10px; padding:5px 13px;
    border:1px solid rgba(255,255,255,.28); border-radius:999px; font-size:.74rem;
    color:#fff; font-weight:600; margin-left:auto; }
  .hero__for span { font-weight:300; color:rgba(255,255,255,.72); }

  /* bands */
  .band { padding:30px 0 40px; }
  .band--light { background:#fff; }
  .band--tint { background:var(--nearwhite); }
  .band--deep { background:var(--deep); }
  .band--bleedtop { padding-top:18px; }
  .on-dark { color:#fff; }

  .sechead { margin:0 0 18px; display:flex; align-items:baseline; gap:16px; flex-wrap:wrap; }
  .sechead h2 { font-size:clamp(1.35rem,2.2vw,1.9rem); margin:0; }
  .sechead .sub { font-size:.92rem; font-weight:300; margin:0; max-width:64ch; }
  .sechead .sub--on-dark { color:rgba(255,255,255,.78); }

  /* two-column: images left, commentary right */
  .row { display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:38px; align-items:start; }
  .col-img { display:grid; gap:26px; min-width:0; }
  .col-note { position:sticky; top:92px; font-size:.93rem; font-weight:300; line-height:1.7;
    border-left:2px solid rgb(var(--deep-rgb) / .16); padding-left:22px; }
  .col-note p { margin:0 0 1em; }
  .col-note p:last-child { margin-bottom:0; }
  .col-note .lbl { display:block; font-size:.68rem; font-weight:800; letter-spacing:.15em;
    text-transform:uppercase; color:var(--primary); margin-bottom:9px; }
  .col-note--on-dark { color:rgba(255,255,255,.82); border-left-color:rgb(var(--sky-rgb) / .4); }
  .col-note--on-dark .lbl { color:var(--sky); }
  .col-note strong { font-weight:700; color:var(--ink); }
  .col-note--on-dark strong { color:#fff; }

  /* figures */
  .fig { margin:0; }
  .fig button.shot { display:block; width:100%; padding:0; border:0; background:none; cursor:zoom-in; }
  .fig img { width:100%; height:auto; display:block; border-radius:12px;
    background:var(--light); border:1px solid rgb(var(--deep-rgb) / .12);
    box-shadow:0 14px 40px -22px rgb(var(--ink-rgb) / .5); transition:transform .3s ease; }
  .fig button.shot:hover img { transform:scale(1.006); }
  .fig button.shot:focus-visible img { outline:3px solid var(--primary); outline-offset:3px; }
  .fig figcaption { margin-top:9px; max-width:74ch; }
  .fig figcaption strong { display:block; color:var(--ink); font-size:.86rem; font-weight:700; }
  .fig figcaption p { margin:2px 0 0; font-size:.82rem; font-weight:300; }
  .fig--dark figcaption strong { color:#fff; }
  .fig--dark figcaption p { color:rgba(255,255,255,.7); }
  .fig--dark img { border-color:rgba(255,255,255,.16); }

  .gridhalf { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:16px; }
  .gridhalf .fig figcaption strong { font-size:.78rem; }
  .pair { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; }

  /* minor-note strip: small thumbnails for revisions, not showcase work */
  .thumbs { display:grid; grid-template-columns:repeat(auto-fit,minmax(132px,1fr)); gap:12px;
    max-width:620px; }
  .thumbs .fig img { border-radius:8px; box-shadow:none; }
  .thumbs .fig figcaption { margin-top:6px; }
  .thumbs .fig figcaption strong { font-size:.72rem; font-weight:600; }
  .thumbs .fig figcaption p { font-size:.72rem; }

  /* table */
  .tablewrap { margin-top:26px; overflow-x:auto; border:1px solid rgb(var(--deep-rgb) / .14);
    border-radius:12px; background:#fff; }
  table { border-collapse:collapse; width:100%; min-width:660px; font-size:.86rem; }
  caption { text-align:left; font-size:.68rem; font-weight:800; letter-spacing:.15em;
    text-transform:uppercase; color:var(--primary); padding:14px 18px 0; }
  th { text-align:left; font-size:.68rem; font-weight:800; letter-spacing:.1em;
    text-transform:uppercase; color:var(--mid); padding:12px 18px 9px;
    border-bottom:1px solid rgb(var(--deep-rgb) / .14); white-space:nowrap; }
  td { padding:9px 18px; border-bottom:1px solid rgb(var(--deep-rgb) / .07); vertical-align:top;
    font-weight:300; }
  tbody tr:last-child td { border-bottom:0; }
  td.plan { font-weight:700; color:var(--ink); white-space:nowrap; }
  td.num { font-variant-numeric:tabular-nums; white-space:nowrap; }
  .pill { display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.04em;
    padding:2px 9px; border-radius:999px; background:var(--nearwhite); color:var(--deep); }
  .pill--go { background:var(--primary); color:#fff; }

  /* cards */
  .cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(258px,1fr)); gap:16px; margin-top:18px; }
  .card { background:var(--offwhite); border-radius:14px; padding:20px 20px 18px;
    border:1px solid rgb(var(--deep-rgb) / .08); }
  .card__num { display:block; font-size:.7rem; font-weight:800; letter-spacing:.12em;
    color:var(--mid); margin-bottom:10px; text-transform:uppercase; }
  .card h3 { font-size:1rem; margin:0 0 .4em; }
  .card p { margin:0; font-size:.88rem; font-weight:300; }
  .card--flag { background:#fff; border-color:var(--light); box-shadow:inset 3px 0 0 var(--primary); }

  /* findings list */
  .findings { margin:20px 0 0; padding:0; list-style:none; display:grid; gap:14px; max-width:96ch; }
  .findings li { font-size:.93rem; font-weight:300; padding-left:20px; position:relative; }
  .findings li::before { content:''; position:absolute; left:0; top:.6em; width:8px; height:8px;
    border-radius:50%; background:var(--sky); }
  .findings strong { color:#fff; font-weight:700; }
  .findings { color:rgba(255,255,255,.84); }
  .findings code { font-family:ui-monospace,Consolas,monospace; font-size:.88em;
    background:rgba(255,255,255,.12); padding:1px 5px; border-radius:4px; }

  .sectnote { margin:22px 0 0; font-size:.92rem; font-weight:300; max-width:78ch; }
  .sectnote--on-dark { color:rgba(255,255,255,.8); }

  /* brief text-only entry */
  .brief { max-width:82ch; font-weight:300; font-size:.98rem; }
  .brief p { margin:0 0 .8em; }
  .brief p:last-child { margin-bottom:0; }
  .brief--on-dark { color:rgba(255,255,255,.84); }
  .brief--on-dark strong { color:#fff; font-weight:700; }
  .brief .ask { border-left:2px solid var(--sky); padding-left:16px; margin-top:16px;
    font-size:.92rem; color:rgba(255,255,255,.72); }

  /* lightbox */
  .lb { position:fixed; inset:0; z-index:200; background:rgb(var(--overlay-rgb) / .94);
    display:none; align-items:center; justify-content:center; padding:32px; }
  .lb.open { display:flex; }
  .lb img { max-width:100%; max-height:100%; border-radius:8px; }
  .lb__x { position:absolute; top:18px; right:24px; background:none; border:0;
    color:#fff; font-size:2.2rem; line-height:1; cursor:pointer; opacity:.75; }
  .lb__x:hover { opacity:1; }

  /* footer */
  footer { background:var(--footer-bg); color:rgba(255,255,255,.6); padding:28px 0; font-size:.85rem; }
  footer img { height:24px; margin-bottom:18px; display:block; }
  footer p { margin:0 0 6px; }

  @media (max-width:1100px) {
    .row { grid-template-columns:1fr; gap:24px; }
    .col-note { position:static; }
  }
  @media (max-width:720px) {
    .band { padding:22px 0 28px; }
    .hero { padding:24px 0 22px; }
    .top nav { gap:13px; }
    .top nav a { font-size:.72rem; }
    .wrap, .top__in { padding:0 20px; }
  }
  @media (prefers-reduced-motion:reduce) {
    html { scroll-behavior:auto; }
    .fig img { transition:none; }
  }

/* ============================================================
   ADDED 9.02.2026 — archive hub + per-report chrome.
   Everything above this line is the settled 8.20 stylesheet.
   ============================================================ */

/* breadcrumb / report switcher, sits under the sticky header */
.crumb { background:var(--offwhite); border-bottom:1px solid rgb(var(--deep-rgb) / .1); }
.crumb__in { max-width:1680px; margin:0 auto; padding:9px 32px; display:flex;
  align-items:center; gap:14px; flex-wrap:wrap; font-size:.78rem; font-weight:600; }
.crumb a { color:var(--primary); text-decoration:none; }
.crumb a:hover { text-decoration:underline; }
.crumb span.sep { color:var(--sky); }
.crumb span.here { color:var(--body); font-weight:400; }
.crumb .right { margin-left:auto; display:flex; gap:16px; flex-wrap:wrap; }

/* archive hub */
.hubhero { background:linear-gradient(155deg,var(--deep-lift) 0%,var(--deep) 58%,var(--deep-drop) 100%);
  background-color:var(--deep); color:#fff; padding:44px 0 40px; }
.hubhero h1 { color:#fff; font-size:clamp(1.5rem,3vw,2.3rem); margin:0 0 .35em; }
.hubhero p { margin:0; font-weight:300; color:rgba(255,255,255,.8); max-width:70ch; }
.hubhero .hero__meta { margin:0 0 10px; }

.entries { display:grid; gap:18px; margin-top:8px; max-width:1100px; }
.entry { background:#fff; border:1px solid rgb(var(--deep-rgb) / .13); border-radius:14px;
  padding:22px 24px; display:grid; grid-template-columns:126px minmax(0,1fr); gap:24px;
  align-items:start; }
.entry--next { background:var(--offwhite); border-style:dashed; }
.entry__date { font-size:.78rem; font-weight:800; letter-spacing:.06em; color:var(--primary);
  font-variant-numeric:tabular-nums; padding-top:2px; }
.entry__date small { display:block; font-size:.68rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--mid); margin-top:4px; }
.entry h3 { font-size:1.05rem; margin:0 0 .35em; }
.entry p { margin:0 0 .9em; font-size:.9rem; font-weight:300; }
.entry p:last-child { margin-bottom:0; }
.entry__links { display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.lnk { display:inline-flex; align-items:center; gap:7px; font-size:.78rem; font-weight:700;
  text-decoration:none; padding:7px 14px; border-radius:999px; border:1px solid var(--light);
  color:var(--deep); background:var(--nearwhite); transition:background .16s,color .16s; }
.lnk:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.lnk--primary { background:var(--primary); color:#fff; border-color:var(--primary); }
.lnk--primary:hover { background:var(--deep); border-color:var(--deep); }
.lnk--off { opacity:.5; pointer-events:none; }

/* minutes pages: plain document, keeps the .texd shape readable */
.minutes { max-width:80ch; }
.minutes h2 { font-size:1.15rem; margin:34px 0 .5em; }
.minutes h2:first-of-type { margin-top:0; }
.minutes ol { padding-left:1.3em; margin:0 0 1.4em; }
.minutes ol li { margin-bottom:1em; font-weight:300; }
.minutes ol li strong { color:var(--ink); }
.minutes .src { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--mid); margin:0 0 20px; }
.minutes .status { display:inline-block; font-size:.7rem; font-weight:800; letter-spacing:.04em;
  padding:2px 9px; border-radius:999px; margin-left:6px; vertical-align:1px; }
.status--open { background:#fdecec; color:#9a2b2b; }
.status--done { background:var(--primary); color:#fff; }
.minutes blockquote { margin:0 0 1.2em; padding:16px 20px; background:var(--offwhite);
  border-left:3px solid var(--sky); border-radius:0 8px 8px 0; font-weight:300; font-size:.93rem; }
.minutes blockquote p:last-child { margin-bottom:0; }
.verbatim { font-family:ui-monospace,Consolas,monospace; font-size:.82rem; white-space:pre-wrap;
  background:var(--offwhite); border:1px solid rgb(var(--deep-rgb) / .1); border-radius:10px;
  padding:18px 20px; overflow-x:auto; font-weight:400; color:var(--body); }

/* how-to-update block */
.howto { max-width:88ch; font-size:.9rem; font-weight:300; }
.howto ol { padding-left:1.3em; }
.howto li { margin-bottom:.7em; }
.howto code { font-family:ui-monospace,Consolas,monospace; font-size:.86em;
  background:var(--nearwhite); padding:2px 6px; border-radius:5px; color:var(--deep); }

@media (max-width:720px) {
  .entry { grid-template-columns:1fr; gap:12px; }
  .crumb__in { padding:9px 20px; }
}

/* ============================================================
   ADDED 9.02.2026 (2) — card types built in the admin palette.
   ============================================================ */

/* media card: one piece of media plus text, in three arrangements */
.mcard { display:grid; gap:24px; align-items:start; }
.mcard--right { grid-template-columns:minmax(0,1fr) 340px; }
.mcard--above, .mcard--below { grid-template-columns:minmax(0,1fr); gap:18px; }
.mcard--below .mcard__txt { order:2; }
.mcard--above .mcard__txt { order:0; }
.mcard__media { min-width:0; }
.mcard__txt { font-size:.95rem; font-weight:300; line-height:1.7; }
.mcard--right .mcard__txt { border-left:2px solid rgb(var(--deep-rgb) / .16); padding-left:22px; }
.mcard--above .mcard__txt, .mcard--below .mcard__txt { max-width:80ch; }
.mcard__txt p { margin:0 0 1em; }
.mcard__txt p:last-child { margin-bottom:0; }
.mcard__txt h3 { font-size:1.06rem; margin:0 0 .45em; }
.on-dark .mcard__txt { color:rgba(255,255,255,.84); }
.on-dark .mcard--right .mcard__txt { border-left-color:rgb(var(--sky-rgb) / .4); }
.on-dark .mcard__txt h3 { color:#fff; }
.mcard__media img, .mcard__media video { width:100%; height:auto; display:block;
  border-radius:12px; background:var(--light); border:1px solid rgb(var(--deep-rgb) / .12);
  box-shadow:0 14px 40px -22px rgb(var(--ink-rgb) / .5); }
.on-dark .mcard__media img, .on-dark .mcard__media video { border-color:rgba(255,255,255,.16); }
.mcard__media a { display:block; }
.mcard__embed { position:relative; width:100%; padding-top:60%; border-radius:12px;
  overflow:hidden; border:1px solid rgb(var(--deep-rgb) / .12);
  box-shadow:0 14px 40px -22px rgb(var(--ink-rgb) / .5); background:var(--offwhite); }
.mcard__embed iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.on-dark .mcard__embed { border-color:rgba(255,255,255,.16); background:rgba(255,255,255,.06); }
.mcard__cap { margin-top:9px; font-size:.82rem; font-weight:300; }
.mcard__cap strong { display:block; color:var(--ink); font-size:.86rem; font-weight:700; }
.on-dark .mcard__cap { color:rgba(255,255,255,.7); }
.on-dark .mcard__cap strong { color:#fff; }

/* header card: a plain title bar, nothing else */
.hcard { padding:6px 0; }
.hcard h2 { margin:0 0 .25em; }
.hcard p { margin:0; font-size:.95rem; font-weight:300; max-width:70ch; }
.on-dark .hcard p { color:rgba(255,255,255,.78); }

/* imported spreadsheet: keeps the workbook's own formatting inline */
.sheet { margin-top:6px; overflow-x:auto; border:1px solid rgb(var(--deep-rgb) / .14);
  border-radius:12px; background:#fff; }
.sheet table { border-collapse:collapse; width:100%; font-size:.84rem;
  font-variant-numeric:tabular-nums; }
.sheet td, .sheet th { padding:7px 12px; border-bottom:1px solid rgb(var(--deep-rgb) / .07);
  border-right:1px solid rgb(var(--deep-rgb) / .05); vertical-align:middle; white-space:nowrap; }
.sheet tr:last-child td { border-bottom:0; }
.sheet td:last-child, .sheet th:last-child { border-right:0; }
.sheet .sheet__hdr td, .sheet th { font-weight:700; color:var(--ink);
  background:var(--nearwhite); border-bottom:1px solid rgb(var(--deep-rgb) / .16); }
.sheet caption { text-align:left; font-size:.68rem; font-weight:800; letter-spacing:.15em;
  text-transform:uppercase; color:var(--primary); padding:14px 18px 0; }
.sheetnote { margin:10px 0 0; font-size:.82rem; font-weight:300; }
.on-dark .sheet { border-color:rgba(255,255,255,.18); }
.on-dark .sheetnote { color:rgba(255,255,255,.7); }

@media (max-width:1100px) {
  .mcard--right { grid-template-columns:1fr; }
  .mcard--right .mcard__txt { border-left:0; padding-left:0; }
}

/* built-by-hand grid: cells wrap and grow, and can hold media */
.sheet--grid table { table-layout:fixed; }
.sheet--grid td { white-space:normal; vertical-align:top; min-width:90px; }
.sheet--grid td[data-hdr="1"] { font-weight:700; color:var(--ink); background:var(--nearwhite); }
.sheet td img, .sheet td video { max-width:100%; height:auto; display:block;
  border-radius:6px; margin:5px 0; }
