/* Behind the Pour — shared styles for legal pages (privacy, terms) */
:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --text: #14182A;
  --muted: #5A6178;
  --orange: #FF8C00;
  --border: #DDE2EA;
  --card: #F4F6F9;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --text: #f6f7fb;
    --muted: #8a93a8;
    --border: #2E3A55;
    --card: #15161c;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.wordmark {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  background: linear-gradient(90deg, #ffd66a 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 4px;
}
.tagline {
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0;
}
h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px;
}
.updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}
h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 34px 0 10px;
}
h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 22px 0 6px;
}
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 6px; }
a { color: var(--orange); }
strong { font-weight: 600; }
.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 14px 0;
}
footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer a { color: var(--muted); margin: 0 8px; }
