*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --bg: #fafafa;
  --surface: #ffffff;
  --border: #e8e8e8;
  --accent: #2563eb;
  --max-width: 42rem;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: 1rem;
}

.brand {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.brand:hover,
.brand:focus-visible {
  color: var(--accent);
}

.content {
  flex: 1;
  padding-block: 2.5rem 3rem;
}

.content h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.meta {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1.35rem;
}

.policy-body h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p {
  margin: 0 0 1rem;
}

.policy-body p:last-child {
  margin-bottom: 0;
}

.policy-body ul,
.policy-body ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.policy-body li {
  margin-bottom: 0.35rem;
}

.policy-body a {
  color: var(--accent);
}

.placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.site-footer {
  margin-top: auto;
  padding-block: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}
