/* ============================================================
   AstroKshetra — shared stylesheet for the legal document pages
   (privacy.html · terms.html · birth-data.html)
   Tokens mirror index.html's :root so the pages read as one product.
   ============================================================ */
:root{
  --saffron:#C4650F; --saffron-deep:#8A4B12; --saffron-press:#A6540B;
  --ink:#2A2118; --body:#5C4E3A; --body2:#3A2E1E; --muted:#8C7F6A;
  --page:#FBF7EE; --band:#F4EFE4; --surface:#FFFDF8; --border:#E0D6C2;
  --dark1:#2E2318; --dark2:#241B14; --gold:#E8C98A; --gold2:#B99B62;
  --ondark:#F3E4C8; --ondark-body:#D9CBB0; --ondark-muted:#8A745A;
  --serif:"Martel",Georgia,serif; --sans:"Mukta",system-ui,sans-serif;
  --wrap:1200px; --inset:40px; --measure:760px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--page);color:var(--body);
  font-family:var(--sans);-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  font-size:16.5px;line-height:1.7}
a{color:var(--saffron-deep);text-decoration:none}
a:hover{color:var(--saffron)}
::selection{background:rgba(196,101,15,.22)}
img,svg{display:block}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 var(--inset)}

/* ---- nav (mirrors index.html) ---- */
.nav{background:var(--band);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:20}
.nav-in{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.brand{display:flex;align-items:center;gap:11px}
.brand .wm{font-family:var(--serif);font-weight:700;font-size:19px;color:var(--ink);letter-spacing:.01em}
.btn{display:inline-block;font-weight:600;font-size:14.5px;line-height:1;border-radius:24px;
  padding:12px 22px;cursor:pointer;transition:background .18s,color .18s}
.btn-dark{background:var(--dark2);color:var(--ondark)}
.btn-dark:hover{background:#100C08;color:var(--ondark)}

/* ---- document ---- */
.doc{padding:64px 0 96px}
.doc-head{max-width:var(--measure);margin:0 auto 40px}
.eyebrow{font-weight:600;font-size:12.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--saffron);margin:0 0 14px}
.doc-head h1{font-family:var(--serif);font-weight:700;letter-spacing:-.01em;color:var(--ink);
  font-size:clamp(32px,5vw,46px);line-height:1.12;margin:0;text-wrap:pretty}
.updated{font-size:14px;color:var(--muted);margin:16px 0 0}

.prose{max-width:var(--measure);margin:0 auto}
.prose h2{font-family:var(--serif);font-weight:700;color:var(--ink);
  font-size:25px;line-height:1.25;letter-spacing:-.01em;margin:52px 0 14px;text-wrap:pretty}
.prose h3{font-family:var(--serif);font-weight:600;color:var(--body2);
  font-size:18.5px;line-height:1.3;margin:32px 0 8px}
.prose p{margin:0 0 16px}
.prose ul,.prose ol{margin:0 0 16px;padding-left:22px}
.prose li{margin:0 0 9px}
.prose li::marker{color:var(--gold2)}
.prose strong{color:var(--body2);font-weight:600}
.prose a{border-bottom:1px solid rgba(138,75,18,.28)}
.prose a:hover{border-bottom-color:var(--saffron)}

/* plain-language summary card at the top of each policy */
.summary{background:var(--surface);border:1px solid var(--border);border-left:3px solid var(--saffron);
  border-radius:12px;padding:22px 26px;margin:0 0 8px}
.summary .lbl{font-family:var(--serif);font-weight:700;font-size:15px;color:var(--ink);margin:0 0 8px}
.summary p{font-size:15.5px;color:var(--body);margin:0 0 10px}
.summary p:last-child{margin:0}

/* definition-style rows for "what we collect / who we share with" */
.rows{border-top:1px solid var(--border);margin:6px 0 18px}
.rows .row{display:grid;grid-template-columns:200px 1fr;gap:18px;
  padding:15px 0;border-bottom:1px solid var(--border)}
.rows .row .k{font-weight:600;color:var(--body2)}
.rows .row .v{color:var(--body)}

/* unfilled legal placeholders — deliberately glaring so they can't ship as-is */
.ph{background:#FBE7C4;color:#7A4B0B;font-weight:600;
  padding:1px 7px;border-radius:5px;border:1px dashed #C79A4F;white-space:nowrap}

.contact{background:var(--band);border-radius:14px;padding:24px 26px;margin:24px 0 0}
.contact p{margin:0 0 6px}
.contact p:last-child{margin:0}

/* ---- footer (mirrors index.html) ---- */
.foot{background:var(--dark2)}
.foot-in{display:flex;align-items:center;justify-content:space-between;padding:40px 0;gap:24px;flex-wrap:wrap}
.foot .cp{font-weight:400;font-size:13px;color:var(--ondark-muted)}
.foot-links{display:flex;gap:26px;flex-wrap:wrap}
.foot-links a{font-weight:400;font-size:13px;color:var(--ondark-body)}
.foot-links a:hover{color:var(--ondark)}
.foot-links a.here{color:var(--gold)}

/* ---- responsive ---- */
@media (max-width:720px){
  :root{--inset:22px}
  .doc{padding:44px 0 64px}
  .prose h2{font-size:22px;margin-top:40px}
  .rows .row{grid-template-columns:1fr;gap:2px}
  .rows .row .k{font-size:15px}
}
@media (prefers-reduced-motion:reduce){*{animation:none !important}}
