/* CatNav — legal pages (privacy / terms / delete-data) */
:root {
  --caramel: #a9531f;
  --caramel-soft: #f6e3d2;
  --cream: #fdf6ef;
  --espresso: #241b13;
  --muted: #6b6157;
  --card: #ffffff;
  --border: #eadfd5;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
}
.page-bg {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 480px at 85% -10%, var(--caramel-soft), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, #f1e2d1, transparent 55%),
    var(--cream);
}
.site-header {
  position: sticky; top: 0; z-index: 5;
  background: rgba(253, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  max-width: 900px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: var(--espresso);
  text-decoration: none;
}
.brand img { border-radius: 10px; }
.nav { display: flex; gap: 6px; flex-wrap: wrap; }
.nav a {
  color: var(--espresso); text-decoration: none;
  padding: 8px 12px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
}
.nav a:hover { background: var(--caramel-soft); }
.nav a[aria-current="page"] { background: var(--caramel); color: #fff; }
.wrap { max-width: 820px; margin: 0 auto; padding: 40px 20px 80px; }
.doc h1 { font-size: 34px; line-height: 1.2; margin: 0 0 6px; }
.doc .doc-meta {
  font-size: 14.5px; color: var(--muted);
  border: 1px solid var(--border); background: var(--card);
  border-radius: 14px; padding: 14px 18px; margin: 18px 0 26px;
}
.doc .doc-meta code { background: var(--caramel-soft); border-radius: 6px; padding: 1px 6px; }
.doc h2 { font-size: 22px; margin: 34px 0 10px; }
.doc h3 { font-size: 17px; margin: 24px 0 8px; }
.doc p, .doc li { font-size: 15.5px; }
.doc ul { padding-left: 22px; }
.doc a { color: var(--caramel); text-decoration: underline; text-underline-offset: 2px; }
.doc a:hover { text-decoration-thickness: 2px; }
.doc .note {
  background: var(--caramel-soft); border: 1px solid #e6c9ad;
  border-radius: 14px; padding: 14px 18px; font-size: 15px; margin: 18px 0;
}
.footer {
  margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 13.5px;
}
.footer p { margin: 0 0 4px; }
.back-link { display: inline-block; margin-top: 26px; font-weight: 700; }
@media (max-width: 560px) {
  .doc h1 { font-size: 27px; }
  .site-header .inner { flex-direction: column; align-items: flex-start; }
}
