*,*::before,*::after { box-sizing: border-box; }
:root {
  --gold: #c9a96e;
  --ink: #1a1814;
  --ink-soft: #4a463f;
  --paper: #f7f4ef;
  --line: rgba(26,24,20,0.08);
  --gradient: linear-gradient(135deg, #e9e2d4 0%, #d9c9a8 35%, #c9a96e 100%);
}
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 980px; margin: 0 auto; padding: 0 24px; }
header { padding: 32px 0; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 20px; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; }
.logo .mark { display: inline-block; width: 10px; height: 10px; margin-right: 12px; background: var(--gradient); vertical-align: middle; border-radius: 2px; transform: rotate(45deg); }
.nav-links { display: flex; gap: 28px; font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

.legal { padding: 64px 0 100px; }
.eyebrow { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
h1 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(40px, 6vw, 56px); line-height: 1.05; margin: 0 0 16px; }
.updated { color: var(--ink-soft); font-size: 14px; margin-bottom: 48px; }
h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 28px; margin: 48px 0 16px; }
h3 { font-weight: 500; font-size: 17px; margin: 28px 0 8px; }
p, li { color: var(--ink-soft); font-size: 16px; }
ul, ol { padding-left: 24px; }
li { margin-bottom: 6px; }
strong { color: var(--ink); font-weight: 500; }
.signal { background: #fff; border-left: 2px solid var(--gold); padding: 16px 20px; margin: 28px 0; font-size: 15px; }
table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 14px; }
th, td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 500; color: var(--ink); }

footer { padding: 56px 0 40px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-soft); }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
