/* Tolomazia — Legal pages shared stylesheet */
:root{
  --red:#5C0612;--red2:#7A1422;
  --gold:#c9a96e;
  --bg:#EDEAE4;--card:#fff;
  --line:#E2DDD7;--line2:#F0EDE8;
  --txt:#16100E;--txt2:#2E2420;
  --mut:#6b645c;--mut2:#9a8e82;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Inter,-apple-system,BlinkMacSystemFont,sans-serif;background:var(--bg);color:var(--txt);line-height:1.65;-webkit-font-smoothing:antialiased}

/* ── HEADER ── */
.lp-header{
  background:var(--red);
  padding:0 32px;height:66px;
  display:flex;align-items:center;justify-content:space-between;
  position:sticky;top:0;z-index:10;
  box-shadow:0 1px 0 rgba(0,0,0,.2),0 4px 28px rgba(0,0,0,.22);
}
.lp-logo{height:26px;width:auto;display:block}
.lp-back{
  display:inline-flex;align-items:center;gap:7px;
  color:rgba(255,255,255,.78);text-decoration:none;
  font-size:13px;font-weight:600;letter-spacing:.01em;
  padding:7px 14px;
  border:1px solid rgba(255,255,255,.2);border-radius:8px;
  transition:background .15s,color .15s,border-color .15s;
}
.lp-back:hover{color:#fff;background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.38)}

/* ── PAGE WRAP ── */
.lp-wrap{max-width:740px;margin:0 auto;padding:52px 24px 88px}

/* ── TITLE AREA ── */
.lp-title{
  font-family:'Plus Jakarta Sans',Inter,sans-serif;
  font-size:34px;font-weight:800;
  color:var(--txt);letter-spacing:-.03em;line-height:1.15;
  margin-bottom:12px;
}
.lp-updated{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12.5px;color:var(--mut2);font-weight:500;
  background:rgba(255,255,255,.7);
  border:1px solid var(--line);border-radius:20px;
  padding:5px 13px;margin-bottom:32px;
}
.lp-updated::before{
  content:'';width:6px;height:6px;border-radius:50%;
  background:var(--mut2);opacity:.5;flex-shrink:0;
}

/* ── CARD ── */
.lp-card{
  background:var(--card);
  border-radius:20px;
  padding:48px 52px;
  box-shadow:0 2px 6px rgba(0,0,0,.03),0 16px 48px -12px rgba(0,0,0,.1);
}

/* ── SECTION HEADINGS ── */
.lp-card h2{
  font-family:'Plus Jakarta Sans',Inter,sans-serif;
  font-size:16px;font-weight:800;
  color:var(--txt);letter-spacing:-.01em;
  margin:40px 0 14px;
  padding-bottom:12px;
  border-bottom:1.5px solid var(--line2);
  display:flex;align-items:center;gap:10px;
}
.lp-card h2::before{
  content:'';display:inline-block;
  width:3px;height:15px;flex-shrink:0;
  background:var(--red);border-radius:2px;
}
.lp-card h2:first-child{margin-top:0}

/* ── BODY TEXT ── */
.lp-card p{font-size:14.5px;color:var(--txt2);line-height:1.78;margin-bottom:14px}
.lp-card p:last-child{margin-bottom:0}
.lp-card strong{color:var(--txt);font-weight:700}

/* ── LISTS ── */
.lp-card ul{margin:0 0 16px;padding:0;list-style:none}
.lp-card li{
  font-size:14.5px;color:var(--txt2);line-height:1.72;
  padding:7px 0 7px 20px;
  position:relative;
  border-bottom:1px solid var(--line2);
}
.lp-card li:last-child{border-bottom:none}
.lp-card li::before{
  content:'';position:absolute;left:0;top:15px;
  width:5px;height:5px;border-radius:50%;
  background:var(--red);opacity:.5;
}

/* ── LINKS ── */
.lp-card a{color:var(--red2);font-weight:600;text-decoration:underline;text-underline-offset:2px;text-decoration-color:rgba(122,20,34,.3)}
.lp-card a:hover{color:var(--red);text-decoration-color:rgba(92,6,18,.6)}
.lp-btn-inline{background:none;border:none;color:var(--red2);font-weight:700;cursor:pointer;font:inherit;padding:0;text-decoration:underline;text-underline-offset:2px;text-decoration-color:rgba(122,20,34,.3)}
.lp-btn-inline:hover{color:var(--red)}

/* ── TABLE (cookie page) ── */
table.lp-table{width:100%;border-collapse:collapse;margin:12px 0 20px;font-size:13.5px}
table.lp-table th,table.lp-table td{text-align:left;padding:12px 14px;border:1px solid var(--line);vertical-align:top}
table.lp-table th{background:#FAF8F5;font-weight:700;font-size:11.5px;color:var(--red);text-transform:uppercase;letter-spacing:.05em}
table.lp-table tbody tr:hover td{background:#FDFCFB}

/* ── FOOTER ── */
.lp-footer{padding:36px 24px 44px;text-align:center}
.lp-footer-logo{height:20px;width:auto;opacity:.35;margin:0 auto 22px;display:block;filter:brightness(0)}
.lp-divider{height:1px;background:var(--line);margin-bottom:28px}
.lp-footer-links{
  display:flex;flex-wrap:wrap;justify-content:center;
  margin-bottom:18px;gap:2px;
}
.lp-footer-links a,.lp-footer-links button{
  font-size:13px;color:var(--mut);text-decoration:none;font-weight:600;
  background:none;border:none;cursor:pointer;font-family:inherit;
  padding:5px 14px;
  border-radius:6px;
  transition:background .12s,color .12s;
}
.lp-footer-links a:hover,.lp-footer-links button:hover{background:rgba(0,0,0,.05);color:var(--red)}
.lp-footer-id{font-size:12px;color:var(--mut2);line-height:1.85}
.lp-footer-id a{color:var(--mut2);text-decoration:none}
.lp-footer-id a:hover{color:var(--red)}

/* ── MOBILE ── */
@media(max-width:600px){
  .lp-header{padding:0 18px;height:58px}
  .lp-logo{height:22px}
  .lp-back{font-size:12.5px;padding:6px 11px}
  .lp-wrap{padding:32px 16px 64px}
  .lp-title{font-size:27px}
  .lp-card{padding:26px 22px;border-radius:16px}
  .lp-card h2{font-size:15px}
  table.lp-table{font-size:12.5px}
  table.lp-table th,table.lp-table td{padding:9px 10px}
}
