:root {
  --brand-hue: 214;
  --primary: hsl(var(--brand-hue), 80%, 40%);
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #eaeaea;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--primary);
  letter-spacing: -0.5px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}

main {
  padding: 60px 0;
  min-height: 70vh;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
  background-color: #f4f4f4;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.lede {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.content h2 {
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 10px;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.legal-page h1 { font-size: 2.5rem; margin-bottom: 10px; }
.legal-date { color: var(--text-muted); margin-bottom: 40px; display: block; }
