/* Shared styles for Lucy Abroad legal pages (privacy, terms, account deletion).
   Mirrors the design tokens from index.html. */
:root {
  --bg: #f7f4ee;
  --card: #ffffff;
  --ink: #1a1915;
  --muted: #6c685e;
  --border: #e8e2d6;
  --accent: #0e7c7b;
  --accent-soft: #e3f0ef;
  --gold: #c8992f;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121210;
    --card: #1b1a17;
    --ink: #f5f2ea;
    --muted: #a8a296;
    --border: #34322c;
    --accent: #2bb3b1;
    --accent-soft: #16302f;
    --gold: #e0b255;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding: 0 24px 80px;
}
.wrap { max-width: 760px; margin: 0 auto; }
header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.brand {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand .selam {
  font-family: 'Noto Sans Ethiopic', 'Inter', sans-serif;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-right: 10px;
}
.back { color: var(--accent); text-decoration: none; font-size: 14px; font-weight: 500; }
.back:hover { text-decoration: underline; }
h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.updated { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.intro { color: var(--muted); font-size: 17px; margin: 24px 0 0; }
.rule { width: 56px; height: 3px; border-radius: 2px; background: var(--gold); margin: 24px 0 0; }
h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  margin: 44px 0 12px;
  letter-spacing: -0.01em;
}
h3 { font-size: 16px; font-weight: 600; margin: 24px 0 6px; color: var(--ink); }
p { margin: 12px 0; }
ul { margin: 12px 0; padding-left: 22px; }
li { margin: 7px 0; }
a { color: var(--accent); }
strong { font-weight: 600; }
ol.steps { padding-left: 22px; }
ol.steps li { margin: 10px 0; }
footer.site {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer.site a { color: var(--accent); text-decoration: none; font-weight: 500; }
footer.site a:hover { text-decoration: underline; }
