/* shared styles for /terms and /privacy — same brand system as index.html */
:root {
  --amber: #c9820f;
  --amber-deep: #a8690f;
  --amber-field: #b97a25;
  --cream: #f3ead9;
  --cream-dim: #e3d6bb;
  --ink: #1a1512;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Jost', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--amber-deep); }
header.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  background: var(--ink);
}
header.site-nav .brand img { height: 30px; }
header.site-nav nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 1.6rem;
  opacity: 0.9;
}
header.site-nav nav a:hover { opacity: 1; text-decoration: underline; }
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 6vw 6rem;
}
main h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 0.5rem;
}
main .updated {
  font-size: 0.85rem;
  color: #6b5c4c;
  margin: 0 0 2.5rem;
}
main h2 {
  font-size: 1.2rem;
  margin: 2.2rem 0 0.8rem;
  font-weight: 600;
}
main p, main li { font-size: 0.98rem; line-height: 1.7; color: #2a2119; }
main ul { padding-left: 1.3rem; }
footer {
  background: var(--ink);
  color: var(--cream-dim);
  padding: 2.2rem 6vw;
  text-align: center;
  font-size: 0.78rem;
}
footer a { color: var(--cream-dim); }
