:root {
  --bg: #faf9f7;
  --ink: #1c1b19;
  --muted: #5c5a55;
  --line: #e6e3dd;
  --accent: #1a48b7;
  --accent-ink: #ffffff;
  --serif: "New York", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 64rem;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* Header */

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 650;
  text-decoration: none;
  letter-spacing: -0.01em;
  font-size: 1.125rem;
}

.logo-mark { color: var(--accent); margin-right: 0.125rem; }

.site-header nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

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

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

.nav-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

/* Hero */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.lede {
  font-size: 1.1875rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 2rem;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.375rem;
  border-radius: 0.5rem;
}

.button:hover { filter: brightness(1.1); }

/* Sections */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2.5rem 2rem;
}

.card {
  border-top: 2px solid #dddad4;
  padding-top: 1.25rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1875rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9688rem;
}

/* Process */

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.25rem;
}

.steps li { counter-increment: step; }

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.steps h3::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.675rem;
  letter-spacing: 0.08em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.pricing-note {
  margin: 2.5rem 0 0;
  padding: 0.125rem 0 0.125rem 1.25rem;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: 0.9688rem;
  max-width: 38rem;
}

/* Contact */

.contact p { max-width: 36rem; color: var(--muted); }
.contact-email { margin-top: 1.5rem; }

/* Footer */

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.875rem;
}

.site-footer p { margin: 0; }

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

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

.site-footer a:hover { color: var(--ink); text-decoration: underline; }

/* Policy pages */

.policy {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.policy h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.policy .effective {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0 0 2rem;
}

.policy h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.5rem;
}

.policy p, .policy li {
  color: var(--muted);
  font-size: 0.9688rem;
}
