/* Shared styles for privacy.html and terms.html. Colours and fonts match the main site. */
:root {
  --ink: #20211d;
  --surface: #1a1715;
  --line: #2a2622;
  --text: #faf8f5;
  --body: #c4bcb3;
  --muted: #a89f91;
  --gold: #c9b18a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--body);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--text); }

.site-header {
  border-bottom: 1px solid var(--line);
  padding: 20px 16px;
}
.site-header .inner,
main,
.site-footer .inner {
  max-width: 720px;
  margin: 0 auto;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.back {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

main { padding: 56px 16px 72px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
}
h1 { font-size: clamp(36px, 7vw, 52px); margin: 8px 0 8px; }
h2 { font-size: 26px; margin: 48px 0 12px; }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 32px; }
.summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  margin: 0 0 8px;
}
p, li { max-width: 68ch; }
ul { padding-left: 20px; }
li { margin: 6px 0; }
strong { color: var(--text); font-weight: 600; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 16px 40px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
}
.site-footer nav { display: flex; gap: 20px; }
