:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --text: #1a1a18;
  --muted: #5c5c57;
  --accent: #2f4a3e;
  --accent-soft: #e8efeb;
  --border: #e2e0da;
  --max: 68rem;
  --font: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
}

a:hover {
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
}

nav {
  display: flex;
  gap: 1.25rem;
  font-family: var(--sans);
  font-size: 0.875rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
}

.hero {
  padding: 5rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 500;
}

.lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.section {
  padding: 2.5rem 0 3rem;
}

.section-muted {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 500;
}

p {
  margin: 0 0 1rem;
}

.fine-print {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal {
  padding: 3rem 0 4rem;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
}

.updated {
  margin-bottom: 2rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
}

.legal h2 {
  margin-top: 2rem;
}

.legal ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.site-footer {
  padding: 2rem 0 3rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 0.5rem;
}
