/* ────────────────────────────────────────────────────────────
   TexInvestCo — PRIVACY POLICY (privacy.html) styles
   Loaded after css/shared.css.
   ──────────────────────────────────────────────────────────── */

/* This page originally trimmed a couple of its --mid/--lo values to
   slightly different alpha levels than the rest of the site — kept
   exactly as-is here rather than folded into the shared variables,
   so nothing on this page shifts visually. */
:root{
  --mid:rgba(248,244,234,0.62);
  --lo:rgba(248,244,234,0.52);
}

body{line-height:1.7;padding-top:68px;}

/* Fixed nav, matching the homepage — position:sticky was silently broken
   here because shared.css sets overflow-x:hidden on html/body, and per the
   CSS overflow spec that forces the other axis to compute as overflow-y:auto,
   which makes body/html into position:sticky's nearest scrolling ancestor
   instead of the viewport. Fixed positioning sidesteps that bug entirely. */
nav{position:fixed;top:0;left:0;right:0;width:100%;box-sizing:border-box;}

.wrap{max-width:760px;margin:0 auto;padding:64px 5vw 100px;}
.eyebrow{font-size:0.62rem;font-weight:500;letter-spacing:0.4em;text-transform:uppercase;color:var(--gold);margin-bottom:14px;}
h1{font-family:var(--fd);font-size:clamp(28px,4vw,42px);font-weight:600;color:var(--hi);margin-bottom:10px;line-height:1.2;}
.updated{font-size:0.81rem;color:var(--lo);margin-bottom:48px;}
.intro{font-size:1.125rem;color:var(--mid);font-weight:300;margin-bottom:44px;max-width:600px;}

h2{
  font-family:var(--fd);font-size:1.15rem;font-weight:600;color:var(--gold);
  margin:44px 0 14px;padding-top:28px;border-top:1px solid var(--gb);
}
h2:first-of-type{border-top:none;padding-top:0;margin-top:0;}
p{font-size:1.125rem;color:var(--mid);font-weight:300;margin-bottom:14px;}
ul{margin:0 0 14px 1.2rem;}
li{font-size:1.125rem;color:var(--mid);font-weight:300;margin-bottom:6px;}
a{color:var(--gold);text-decoration:none;}
a:hover{color:var(--hi);}
strong{color:var(--hi);font-weight:500;}

@media(max-width:600px){.wrap{padding:44px 6vw 72px;}}
