:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --text: #f5f5f5;
  --muted: #878787;
  --stroke: #1f1f1f;
  --accent: #4e85bf;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(880px, calc(100% - 2.5rem)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  text-decoration: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .55rem 1rem;
  text-decoration: none;
  font-size: .9rem;
  color: var(--muted);
}
.btn:hover { color: var(--text); border-color: rgba(255,255,255,.3); }
.legal-page { padding: 3.5rem 0 5rem; }
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin: 0 0 1rem;
}
h2 { font-size: 1.15rem; margin: 2rem 0 .75rem; font-weight: 600; }
p, li { color: var(--muted); }
.lead { color: var(--text); }
.legal-list { padding-left: 1.2rem; }
.legal-list li { margin: .35rem 0; }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke);
}
.legal-nav a { color: var(--text); }
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0 2rem;
  font-size: .85rem;
  color: var(--muted);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.2rem;
  justify-content: space-between;
  margin-bottom: .8rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: .8rem 1.1rem; }
.footer-links a { color: var(--muted); }
.footer-credit {
  margin-left: auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.footer-credit:hover { color: var(--text); }
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 1rem;
}
.cookie-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  background: rgba(20,20,20,.96);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.5rem;
  padding: 1.2rem 1.4rem;
}
.cookie-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.cookie-actions button {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: var(--text);
  padding: .55rem 1.1rem;
  cursor: pointer;
  font-size: .9rem;
}
.cookie-actions button.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td {
  border-bottom: 1px solid var(--stroke);
  text-align: left;
  padding: .65rem .4rem;
  vertical-align: top;
  color: var(--muted);
}
th { color: var(--text); font-weight: 500; }
