/* Shared styles for static legal/support pages (privacy, terms, support).
   Palette + type match landing-v2.html. */
:root {
  --coffee: #8B5A2B;
  --coffee-light: #D4A574;
  --coffee-dark: #6B4423;
  --cream: #FDF8F3;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
header {
  background: var(--white);
  border-bottom: 1px solid rgba(139, 90, 43, 0.15);
  padding: 16px 24px;
}
header .inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header a.brand {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--coffee-dark);
  text-decoration: none;
}
header nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-left: 20px;
}
header nav a:hover { color: var(--coffee); }
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  color: var(--coffee-dark);
  margin-bottom: 8px;
}
.updated { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }
h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px;
  color: var(--coffee-dark);
  margin: 36px 0 12px;
}
h3 { font-size: 17px; margin: 24px 0 8px; }
p, li { color: var(--text); font-size: 16px; margin-bottom: 12px; }
ul { padding-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
a { color: var(--coffee); }
.card {
  background: var(--white);
  border: 1px solid rgba(139, 90, 43, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}
footer {
  border-top: 1px solid rgba(139, 90, 43, 0.15);
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
footer a { color: var(--text-muted); }
