/* Learn Triple Net - shared styles for legal and policy pages */
:root{
  --blue:#2a3d52;--blue-2:#354d66;--blue-3:#4a6a8a;--ink:#2a2d33;--paper:#faf8f4;--card:#ffffff;
  --gold:#b89a4f;--gold-light:#d4bc86;--muted:#7a7168;--muted-light:#a09890;--line:#e8e2d8;
  --maxw:820px;--radius:14px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,sans-serif;color:var(--ink);background:var(--paper);line-height:1.7;-webkit-font-smoothing:antialiased}
h1,h2,h3{font-family:'Fraunces',Georgia,serif;color:var(--ink);line-height:1.22}
a{color:var(--blue-3);text-decoration:none}
a:hover{color:var(--gold)}
img{max-width:100%;display:block}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}

/* NAV */
header.nav{position:sticky;top:0;z-index:100;background:#fff;border-bottom:1px solid var(--line);box-shadow:0 1px 6px rgba(42,61,82,.05)}
header.nav .wrap{max-width:1100px;display:flex;align-items:center;justify-content:space-between;height:72px}
.brand-logo{height:52px;width:auto;display:block}
.nav a.home{font-size:14px;font-weight:600;color:var(--blue)}
.nav a.home:hover{color:var(--gold)}

/* DOCUMENT */
main{padding:54px 0 64px}
.doc-head{margin-bottom:34px;padding-bottom:24px;border-bottom:1px solid var(--line)}
.eyebrow{font-size:12px;letter-spacing:.2em;text-transform:uppercase;color:var(--blue-3);font-weight:700}
.doc-head h1{font-size:38px;font-weight:700;margin:12px 0 10px;letter-spacing:-.01em}
.doc-head .updated{color:var(--muted);font-size:14px}
main h2{font-size:22px;font-weight:600;margin:34px 0 12px}
main h3{font-size:17px;font-weight:600;margin:22px 0 6px}
main p{margin-bottom:16px;color:#3f3d42}
main ul{margin:0 0 16px 22px}
main li{margin-bottom:8px;color:#3f3d42}
main strong{color:var(--ink)}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px 28px;margin:22px 0}
.contact-big{font-size:18px;font-weight:700;color:var(--ink)}
.todo{background:#fff3c4;border:1px dashed #d4a72c;border-radius:6px;padding:1px 8px;font-weight:600;color:#7a5a00}

/* FOOTER */
footer{background:#1e2e3e;color:rgba(255,255,255,.45);padding:44px 0;font-size:13px;margin-top:48px}
footer .foot-top{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;align-items:center;padding-bottom:24px;margin-bottom:22px;border-bottom:1px solid rgba(255,255,255,.1)}
.foot-logo{height:52px;width:auto;display:block;margin-bottom:8px}
.foot-links{display:flex;gap:14px 24px;flex-wrap:wrap;align-items:center}
.foot-links a{color:rgba(255,255,255,.65);font-weight:600}
.foot-links a:hover{color:#fff}
footer .legal{font-size:12px;color:rgba(255,255,255,.4);line-height:1.6;max-width:660px}
@media(max-width:600px){footer .foot-top{flex-direction:column;align-items:flex-start;gap:18px}.doc-head h1{font-size:30px}}
