:root {
  --bg:#faf8f5; --surface:#fff; --subtle:#e8e6e1; --border:#d1d1cd;
  --text:#000; --ink:#27251e; --muted:#72706b; --accent:#016a71; --accent-light:#e6f0f0;
  --note-bg:#faf1e3; --note-border:#ecd3a8; --radius:16px; --radius-input:12px; --pill:9999px;
  --shadow:rgba(0,0,0,.08) 0 1px 2px 0;
}
* { box-sizing:border-box; margin:0; padding:0; }
body { font-family:'DM Sans',ui-sans-serif,system-ui,-apple-system,sans-serif; background:var(--bg); color:var(--text); font-size:16px; line-height:1.5; }
.wrap { max-width:640px; margin:0 auto; padding:16px 16px 56px; }
a { color:var(--accent); }
:focus-visible { outline:2px solid var(--accent); outline-offset:2px; }
.skip { position:absolute; left:-9999px; top:8px; background:var(--surface); padding:8px 12px; border-radius:var(--radius-input); z-index:10; }
.skip:focus { left:8px; }
.top { display:flex; align-items:center; justify-content:space-between; gap:8px; padding:8px 0 24px; }
.brand { display:flex; align-items:center; gap:8px; color:var(--text); text-decoration:none; font-size:16px; font-weight:500; }
.mark { width:32px; height:32px; background:var(--accent); border-radius:var(--radius-input); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:500; font-size:12px; }
.btn { display:inline-flex; align-items:center; background:var(--ink); color:#fff; text-decoration:none; font-weight:500; font-size:14px; padding:8px 16px; border-radius:var(--pill); min-height:40px; }
.btn:hover { background:#000; color:#fff; }
.crumbs ol { list-style:none; display:flex; flex-wrap:wrap; gap:4px; font-size:12px; color:var(--muted); margin-bottom:12px; }
.crumbs li + li::before { content:'/'; margin-right:4px; }
.crumbs a { color:var(--muted); }
h1 { font-weight:500; font-size:28px; line-height:1.25; margin-bottom:12px; }
.lede { font-size:16px; color:var(--ink); margin-bottom:16px; }
.note { background:var(--note-bg); border:1px solid var(--note-border); border-radius:var(--radius-input); padding:12px 16px; font-size:14px; color:var(--ink); margin-bottom:16px; }
.note strong { font-weight:500; }
.card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:16px; margin-bottom:8px; box-shadow:var(--shadow); }
.card h2, .related h2 { font-size:16px; font-weight:500; margin-bottom:8px; }
.card p, .card li { font-size:14px; color:var(--ink); }
.card ul { margin-left:20px; }
.card li { margin-bottom:4px; }
.checks { margin-left:20px; }
.checks li { margin-bottom:12px; padding-left:4px; }
.checks li::marker { font-weight:500; color:var(--muted); }
.checks h3 { font-size:14px; font-weight:500; color:var(--text); }
.parts, .jobs { list-style:none; margin-left:0 !important; }
.parts li, .jobs li { display:flex; flex-direction:column; padding:8px 0; border-top:1px solid var(--border); margin:0; }
.parts li:first-child, .jobs li:first-child { border-top:0; padding-top:0; }
.parts strong { font-weight:500; color:var(--text); }
.parts span, .jobs span { color:var(--muted); font-size:14px; }
.jobs a { font-weight:500; }
.cta { background:var(--surface); }
.cta .btn { margin-top:12px; }
.pro { background:var(--bg); box-shadow:none; }
.fine { font-size:12px; color:var(--muted); margin:8px 0 24px; }
.related { margin-top:8px; }
.related ul { list-style:none; display:grid; gap:8px; font-size:14px; }
.foot { margin-top:32px; padding-top:16px; border-top:1px solid var(--border); font-size:12px; color:var(--muted); display:grid; gap:8px; }
.foot nav { display:flex; flex-wrap:wrap; gap:4px 16px; }
@media (max-width:480px) { h1 { font-size:24px; } }
