:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-alt: #efefe9;
  --text: #1e1f1c;
  --muted: #5e6258;
  --border: #d9dbd2;
  --accent: #1f3a5f;
  --accent-dark: #142a46;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.narrow {
  max-width: 760px;
}

.site-header {
  background: rgba(247, 247, 245, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
}

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

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  padding: 6rem 0 4rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  max-width: 900px;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: white;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: 2rem;
  margin: 0 0 1.5rem;
  line-height: 1.15;
}

h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.clean-list {
  margin: 0;
  padding-left: 1.2rem;
}

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

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

@media (max-width: 800px) {
  .site-header .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }
}