/* ============================================================================
   Sentinel Docs — "Editorial Legal Intelligence"
   Deep ink · brass gold · warm paper. Fraunces display + Hanken Grotesk body.
   ============================================================================ */

:root {
  /* paper / ink */
  --paper:        40 33% 98%;   /* warm off-white page */
  --paper-2:      40 24% 96%;   /* cards, code panels */
  --paper-3:      40 20% 93%;
  --ink:          222 24% 12%;  /* primary text, near-black */
  --ink-2:        222 14% 33%;  /* secondary text */
  --ink-3:        222 10% 52%;  /* faint */
  --line:         40 16% 88%;   /* hairline on paper */
  --line-2:       40 13% 80%;

  /* brass / gold */
  --gold:         40 64% 52%;   /* bright brass — dark bg + decorative */
  --gold-bright:  42 78% 62%;
  --gold-ink:     34 52% 33%;   /* deep bronze — text/links on paper */
  --gold-soft:    42 58% 94%;   /* gold tint highlight bg */
  --gold-line:    40 45% 78%;

  /* deep-ink sidebar */
  --sb:           226 32% 7%;   /* sidebar base */
  --sb-2:         226 26% 12%;  /* hover */
  --sb-line:      226 20% 19%;
  --sb-ink:       220 16% 74%;
  --sb-faint:     220 12% 48%;
  --sb-white:     40 30% 96%;

  --max-content: 760px;
  --max-home: 1180px;
  --sidebar-w: 300px;
  --toc-w: 230px;

  --serif: "Fraunces", "Hoefler Text", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --shadow-sm: 0 1px 2px rgba(20,16,8,.05), 0 2px 8px rgba(20,16,8,.04);
  --shadow-md: 0 4px 14px rgba(20,16,8,.07), 0 14px 40px rgba(20,16,8,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.72;
  color: hsl(var(--ink));
  background: hsl(var(--paper));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv05";
}

::selection { background: hsl(var(--gold) / .28); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: hsl(var(--ink)); color: hsl(var(--paper));
  padding: 9px 16px; border-radius: 0 0 8px 0; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ── mobile top bar (hidden on wide) ── */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 16px;
  background: hsl(var(--sb)); color: hsl(var(--sb-white));
  border-bottom: 1px solid hsl(var(--sb-line));
}
.topbar-title { color: hsl(var(--sb-white)); font-weight: 600; text-decoration: none; font-size: 16px; flex: 1; letter-spacing: -.01em; }
.topbar-print {
  color: hsl(var(--gold-bright)); text-decoration: none; font-size: 12px;
  border: 1px solid hsl(var(--sb-line)); padding: 5px 11px; border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}
.menu-toggle { background: none; border: 1px solid hsl(var(--sb-line)); color: hsl(var(--sb-white)); font-size: 18px; line-height: 1; border-radius: 8px; padding: 6px 11px; cursor: pointer; }

/* ── sidebar ── */
.sidebar {
  position: fixed; top: 56px; left: 0; bottom: 0; width: var(--sidebar-w);
  background:
    radial-gradient(120% 60% at 50% -10%, hsl(var(--gold) / .10), transparent 60%),
    linear-gradient(180deg, hsl(226 32% 8%), hsl(var(--sb)));
  color: hsl(var(--sb-ink));
  overflow-y: auto; padding: 22px 16px 48px;
  transform: translateX(-100%); transition: transform .25s cubic-bezier(.4,0,.2,1);
  z-index: 45;
  border-right: 1px solid hsl(var(--sb-line));
}
.sidebar::before {  /* grain */
  content: ""; position: fixed; inset: 0; width: var(--sidebar-w); pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .035; mix-blend-mode: screen; z-index: 0;
}
.sidebar.open { transform: translateX(0); }
.sidebar > * { position: relative; z-index: 1; }

.sidebar-home { display: flex; align-items: center; gap: 11px; text-decoration: none; padding: 4px 8px 18px; }
.sidebar-home .mark { flex: none; }
.sidebar-home .wm-text { display: flex; flex-direction: column; line-height: 1.05; }
.sidebar-home .wm-name { font-family: var(--serif); font-weight: 600; font-size: 20px; color: hsl(var(--sb-white)); letter-spacing: .01em; }
.sidebar-home .wm-sub { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: hsl(var(--gold-bright)); font-weight: 600; margin-top: 3px; }

.search { position: relative; margin-bottom: 22px; }
#search-input {
  width: 100%; padding: 11px 14px 11px 38px; border-radius: 10px;
  border: 1px solid hsl(var(--sb-line)); background: hsl(226 28% 10%);
  color: hsl(var(--sb-white)); font-size: 14px; font-family: var(--sans);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237f8aa0' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='7' cy='7' r='5'/%3E%3Cpath d='M11 11l4 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 13px center;
  transition: border-color .15s, box-shadow .15s;
}
#search-input::placeholder { color: hsl(var(--sb-faint)); }
#search-input:focus { outline: none; border-color: hsl(var(--gold) / .6); box-shadow: 0 0 0 3px hsl(var(--gold) / .12); }

.search-results {
  list-style: none; margin: 8px 0 0; padding: 7px;
  position: absolute; left: 0; right: 0; background: hsl(var(--paper));
  color: hsl(var(--ink)); border: 1px solid hsl(var(--line-2)); border-radius: 12px;
  box-shadow: var(--shadow-md); max-height: 62vh; overflow-y: auto; z-index: 60;
}
.search-results a { display: block; padding: 9px 11px; border-radius: 8px; text-decoration: none; color: hsl(var(--ink)); }
.search-results a:hover, .search-results a.kbd-active { background: hsl(var(--gold-soft)); }
.search-results .sr-title { font-weight: 600; font-size: 14px; }
.search-results .sr-section { font-size: 12px; color: hsl(var(--ink-3)); display: block; margin-top: 1px; }
.search-results .sr-empty { padding: 9px 11px; color: hsl(var(--ink-3)); font-size: 13px; }

.nav-section { margin-bottom: 22px; }
.nav-section-title { font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: hsl(var(--sb-faint)); padding: 0 12px 8px; font-weight: 700; }
.nav-section ul { list-style: none; margin: 0; padding: 0; }
.nav-section li a {
  position: relative; display: block; padding: 7px 12px; color: hsl(var(--sb-ink));
  text-decoration: none; border-radius: 8px; font-size: 14px; transition: color .14s, background .14s;
}
.nav-section li a::before {
  content: ""; position: absolute; left: 0; top: 50%; height: 0; width: 2px;
  background: hsl(var(--gold-bright)); border-radius: 2px; transform: translateY(-50%);
  transition: height .18s cubic-bezier(.4,0,.2,1);
}
.nav-section li a:hover { color: hsl(var(--sb-white)); background: hsl(var(--sb-2)); }
.nav-section li a.active { color: hsl(var(--gold-bright)); background: hsl(var(--sb-2)); font-weight: 600; }
.nav-section li a.active::before { height: 60%; }

.sidebar-backdrop { position: fixed; inset: 56px 0 0 0; background: rgba(8,9,13,.55); backdrop-filter: blur(2px); z-index: 44; }

/* ── content shell ── */
.content { padding: 40px 30px 96px; }
.doc { max-width: var(--max-content); margin: 0 auto; }

.page-eyebrow {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: hsl(var(--gold-ink)); margin-bottom: 14px;
  display: flex; align-items: center; gap: 9px;
}
.page-eyebrow::before { content: ""; width: 20px; height: 1.5px; background: hsl(var(--gold)); }
.page-home .page-eyebrow { display: none; }

/* ── typography ── */
.doc h1 {
  font-family: var(--serif); font-weight: 580; font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3rem);
  line-height: 1.08; letter-spacing: -.02em; margin: 0 0 .5em; color: hsl(var(--ink));
  font-optical-sizing: auto;
}
.doc h2 {
  font-family: var(--serif); font-weight: 560; font-size: 1.62rem; line-height: 1.18;
  letter-spacing: -.012em; margin: 2.4em 0 .7em; padding-top: 1.4em;
  border-top: 1px solid hsl(var(--line)); position: relative;
}
.doc h2::before { content: ""; position: absolute; top: -1px; left: 0; width: 44px; height: 2px; background: hsl(var(--gold)); }
.doc h3 { font-family: var(--sans); font-weight: 680; font-size: 1.18rem; letter-spacing: -.005em; margin: 1.8em 0 .5em; }
.doc h4 { font-family: var(--sans); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: hsl(var(--gold-ink)); margin: 1.5em 0 .5em; }

.doc p { margin: 0 0 1.05em; }
.doc > p:first-of-type { font-size: 1.16rem; line-height: 1.62; color: hsl(var(--ink-2)); }
.page-home .doc > p:first-of-type { font-size: inherit; color: inherit; }

.doc a { color: hsl(var(--gold-ink)); text-decoration: underline; text-decoration-color: hsl(var(--gold-line)); text-underline-offset: 2.5px; text-decoration-thickness: 1.5px; transition: text-decoration-color .15s, color .15s; }
.doc a:hover { color: hsl(34 56% 26%); text-decoration-color: hsl(var(--gold)); }

.doc ul, .doc ol { margin: 0 0 1.1em; padding-left: 1.3em; }
.doc li { margin: .35em 0; }
.doc ul li::marker { color: hsl(var(--gold)); }
.doc ol li::marker { color: hsl(var(--gold-ink)); font-weight: 600; }
.doc strong { font-weight: 680; color: hsl(var(--ink)); }
.doc hr { border: none; border-top: 1px solid hsl(var(--line)); margin: 2.4em 0; }
.doc kbd { font-family: var(--mono); font-size: .8em; background: hsl(var(--paper-2)); border: 1px solid hsl(var(--line-2)); border-bottom-width: 2px; border-radius: 5px; padding: .1em .45em; }

.doc code { font-family: var(--mono); font-size: .85em; background: hsl(var(--paper-2)); padding: .14em .42em; border-radius: 5px; border: 1px solid hsl(var(--line)); color: hsl(34 40% 28%); }
.doc pre {
  background: hsl(226 30% 9%); border: 1px solid hsl(226 24% 16%); border-radius: 12px;
  padding: 16px 18px; overflow-x: auto; margin: 0 0 1.3em; box-shadow: var(--shadow-sm);
  position: relative;
}
.doc pre::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, hsl(var(--gold)), transparent 70%); border-radius: 12px 12px 0 0; }
.doc pre code { background: none; border: none; padding: 0; font-size: .84em; color: hsl(40 22% 86%); line-height: 1.6; }

/* blockquote → premium callout */
.doc blockquote {
  margin: 0 0 1.3em; padding: 16px 18px 16px 46px; position: relative;
  background: hsl(var(--gold-soft)); border: 1px solid hsl(var(--gold-line));
  border-radius: 12px; color: hsl(34 30% 26%);
}
.doc blockquote::before {
  content: ""; position: absolute; left: 16px; top: 17px; width: 18px; height: 18px;
  background: hsl(var(--gold-ink));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E") center/contain no-repeat;
}
.doc blockquote p { margin: 0 0 .5em; }
.doc blockquote p:last-child { margin-bottom: 0; }
.doc blockquote strong { color: hsl(34 48% 26%); }

/* tables */
.doc table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 0 0 1.5em; font-size: .92rem; border: 1px solid hsl(var(--line-2)); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); display: block; overflow-x: auto; }
.doc th, .doc td { padding: 11px 15px; text-align: left; vertical-align: top; border-bottom: 1px solid hsl(var(--line)); }
.doc thead th { background: hsl(var(--ink)); color: hsl(var(--paper)); font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .02em; border-bottom: none; }
.doc tbody tr:last-child td { border-bottom: none; }
.doc tbody tr:nth-child(even) td { background: hsl(var(--paper-2)); }
.doc td code { font-size: .82em; }

.doc img { max-width: 100%; border-radius: 12px; border: 1px solid hsl(var(--line-2)); }

/* prev / next */
.prev-next { display: flex; justify-content: space-between; gap: 18px; margin-top: 3.4em; padding-top: 1.6em; border-top: 1px solid hsl(var(--line)); }
.pn { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px; border: 1px solid hsl(var(--line-2)); border-radius: 14px; text-decoration: none; color: hsl(var(--ink)); max-width: 49%; background: hsl(var(--paper)); transition: border-color .16s, box-shadow .16s, transform .16s; }
.pn:hover { border-color: hsl(var(--gold-line)); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pn span { font-size: 11px; color: hsl(var(--ink-3)); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.pn strong { font-family: var(--serif); font-weight: 540; font-size: 1.06rem; color: hsl(var(--gold-ink)); }
.pn-next { text-align: right; margin-left: auto; align-items: flex-end; }

/* ── on-this-page TOC ── */
.toc { display: none; }
.toc-title { font-size: 10.5px; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--ink-3)); font-weight: 700; margin-bottom: 10px; }
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc li a { display: block; color: hsl(var(--ink-3)); text-decoration: none; font-size: 13px; padding: 4px 0 4px 12px; border-left: 1.5px solid hsl(var(--line-2)); transition: color .14s, border-color .14s; }
.toc li.lvl-3 a { padding-left: 26px; }
.toc li a:hover { color: hsl(var(--gold-ink)); }
.toc li a.active { color: hsl(var(--gold-ink)); border-left-color: hsl(var(--gold)); font-weight: 600; }

/* ════════════ HOME HERO ════════════ */
.page-home .doc { max-width: var(--max-home); }
.page-home .toc { display: none !important; }

.hero { position: relative; margin: -6px 0 18px; padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 60px); border-radius: 24px; overflow: hidden; border: 1px solid hsl(var(--gold-line)); background: linear-gradient(135deg, hsl(226 32% 8%), hsl(228 30% 11%)); color: hsl(var(--sb-white)); box-shadow: var(--shadow-md); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 88% -10%, hsl(var(--gold) / .22), transparent 55%), radial-gradient(60% 90% at 0% 110%, hsl(var(--gold) / .10), transparent 55%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .04; mix-blend-mode: screen; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero > * { position: relative; z-index: 1; }
.hero .eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: hsl(var(--gold-bright)); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero .eyebrow::before { content: ""; width: 26px; height: 1.5px; background: hsl(var(--gold)); }
.hero h1 { font-family: var(--serif); font-weight: 560; font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4rem); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 .35em; color: hsl(var(--sb-white)); }
.hero h1 em { font-style: italic; color: hsl(var(--gold-bright)); }
.hero .hero-sub { font-size: clamp(1.02rem, .9rem + .5vw, 1.22rem); line-height: 1.55; color: hsl(220 18% 76%); max-width: 60ch; margin: 0 0 26px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chips a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: none; transition: transform .15s, background .15s, border-color .15s; }
.hero-chips a.primary { background: hsl(var(--gold)); color: hsl(226 40% 8%); }
.hero-chips a.primary:hover { background: hsl(var(--gold-bright)); transform: translateY(-2px); }
.hero-chips a.ghost { color: hsl(var(--sb-white)); border: 1px solid hsl(220 18% 30%); }
.hero-chips a.ghost:hover { border-color: hsl(var(--gold) / .6); color: hsl(var(--gold-bright)); transform: translateY(-2px); }

/* feature cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; margin: 22px 0 8px; }
.feature-card { display: block; padding: 22px; border: 1px solid hsl(var(--line-2)); border-radius: 16px; background: hsl(var(--paper)); text-decoration: none; color: inherit; transition: border-color .16s, box-shadow .16s, transform .16s; }
a.feature-card:hover { border-color: hsl(var(--gold-line)); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card .ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: hsl(var(--gold-soft)); border: 1px solid hsl(var(--gold-line)); margin-bottom: 14px; }
.feature-card .ico svg { width: 20px; height: 20px; stroke: hsl(var(--gold-ink)); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-family: var(--sans); font-weight: 680; font-size: 1.02rem; margin: 0 0 6px; }
.feature-card p { font-size: .9rem; color: hsl(var(--ink-2)); margin: 0; line-height: 1.5; }

.home-section-label { font-family: var(--serif); font-weight: 560; font-size: 1.5rem; letter-spacing: -.01em; margin: 2.4em 0 .2em; }

/* quick links list on home */
.quicklinks { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; margin: 18px 0; padding: 0; list-style: none; }
.quicklinks li { margin: 0; }
.quicklinks a { display: flex; align-items: baseline; gap: 10px; padding: 14px 16px; border: 1px solid hsl(var(--line)); border-radius: 12px; text-decoration: none; color: hsl(var(--ink)); background: hsl(var(--paper)); transition: border-color .15s, background .15s; }
.quicklinks a:hover { border-color: hsl(var(--gold-line)); background: hsl(var(--gold-soft)); }
.quicklinks a strong { font-weight: 680; }
.quicklinks a span { color: hsl(var(--ink-2)); font-size: .9rem; }

/* ── reveal animation ── */
@keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .doc > * { animation: reveal .5s cubic-bezier(.2,.7,.2,1) both; }
  .doc > *:nth-child(1) { animation-delay: .02s; }
  .doc > *:nth-child(2) { animation-delay: .07s; }
  .doc > *:nth-child(3) { animation-delay: .12s; }
  .doc > *:nth-child(4) { animation-delay: .17s; }
  .doc > *:nth-child(n+5) { animation-delay: .2s; }
}

/* ── wide layout ── */
@media (min-width: 1024px) {
  .topbar { display: none; }
  .sidebar { top: 0; transform: none; }
  .sidebar::before { top: 0; }
  .sidebar-backdrop { display: none !important; }
  .content { margin-left: var(--sidebar-w); margin-right: var(--toc-w); padding: 56px 56px 110px; }
  .page-home .content { margin-right: 0; }
  .toc { display: block; position: fixed; top: 0; right: 0; bottom: 0; width: var(--toc-w); padding: 56px 22px; overflow-y: auto; }
}
@media (min-width: 1440px) {
  .content { padding-left: 88px; padding-right: 88px; }
  :root { --max-content: 780px; }
}

/* ── print / PDF ── */
@media print {
  .topbar, .sidebar, .toc, .sidebar-backdrop, .prev-next, .skip-link, .search, .hero-chips { display: none !important; }
  .content { margin: 0; padding: 0; }
  .doc, .page-home .doc { max-width: 100%; }
  .doc > * { animation: none !important; }
  body { font-size: 10.5pt; line-height: 1.5; color: #111; background: #fff; }
  .doc h1, .hero h1 { font-size: 22pt; color: #111; }
  .doc h2 { font-size: 15pt; page-break-after: avoid; }
  .doc h3 { font-size: 12.5pt; page-break-after: avoid; }
  .doc pre, .doc table, .doc blockquote, .feature-card { page-break-inside: avoid; }
  .doc pre { background: #f6f5f1; border-color: #ddd; }
  .doc pre code { color: #222; }
  .hero { background: #fff; color: #111; border: none; padding: 0 0 1em; }
  .hero h1 { color: #111; } .hero h1 em, .hero .eyebrow { color: #8a6a2c; }
  .hero .hero-sub { color: #333; }
  .thead th, .doc thead th { background: #222 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a { color: #111; }
  .print-page { page-break-before: always; }
  .print-cover { page-break-after: always; text-align: center; padding-top: 28vh; }
}

/* print.html on screen */
.print-doc { max-width: 880px; margin: 0 auto; padding: 48px 28px; }
.print-doc .print-page { border-top: 2px solid hsl(var(--line)); margin-top: 3em; padding-top: 1.2em; }
.print-doc .print-page:first-of-type { border-top: none; }
.print-cover { text-align: center; padding: 48px 0; border-bottom: 2px solid hsl(var(--gold-line)); margin-bottom: 1.8em; }
.print-cover h1 { font-family: var(--serif); font-weight: 560; font-size: 2.8rem; letter-spacing: -.02em; margin-bottom: .2em; }
.print-cover p { color: hsl(var(--ink-2)); }
.print-doc h1, .print-doc h2, .print-doc h3, .print-doc table, .print-doc pre { max-width: 100%; }
