/*
  exexif document pages (guide.html, privacy.html): a readable column on the
  workbench wall, using the same token layer as the tool. These pages scroll
  normally; the tool page does not. Token names are the v3 sheet's
  (tokens/workbench.css); the v1.1 names this file was written against
  (--ex-wall, --ex-equipment, --ex-line-soft, --ex-leaf, --ex-amber) were
  retired 2026-09-03 and left the page unpainted until 2026-09-04.
*/

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ex-surface);
  color: var(--ex-ink);
  font-family: var(--ex-font-sans);
  -webkit-font-smoothing: antialiased;
}

.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 20px 56px;
}

.doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--ex-line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ex-ink);
  text-decoration: none;
}
.brand-mark { width: 30px; height: 30px; color: var(--ex-green-strong); }
.brand-name { font: 700 18px/1 var(--ex-font-mono); letter-spacing: -.045em; }

.doc-nav { display: flex; gap: 14px; font-size: 13px; }
.doc-nav a, .doc a { color: var(--ex-green-strong); }
.doc a:hover { color: var(--ex-warning); }

.eyebrow {
  display: block;
  color: var(--ex-green-strong);
  font: 700 10px/1.2 var(--ex-font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

h1 { margin: 0 0 8px; font-size: 28px; line-height: 1.1; letter-spacing: -.03em; }
h2 { margin: 26px 0 8px; font-size: 18px; line-height: 1.2; letter-spacing: -.02em; }
p { margin: 0 0 12px; font-size: 15px; line-height: 1.55; color: var(--ex-ink-soft); }
.lede { color: var(--ex-ink); }

details {
  margin: 8px 0;
  padding: 10px 14px;
  border: 1px solid var(--ex-line);
  border-radius: var(--ex-radius-control);
  background: var(--ex-surface-alt);
}
summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ex-ink);
  font-size: 14px;
  min-height: 24px;
  line-height: 24px;
}
details p { margin: 8px 0 2px; }

.doc-foot {
  margin-top: 32px;
  padding-top: 14px;
  border-top: 1px solid var(--ex-line);
  color: var(--ex-ink-faint);
  font-size: 12px;
}
