:root {
  --ink: #111111;
  --ink-soft: #555555;
  --bg: #ffffff;
  --accent: #d97706;
  --rule: #e5e5e5;
  --max: 720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--rule);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 112px;
  padding: 20px 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.wordmark img {
  height: 72px;
  width: auto;
  max-width: 100%;
  display: block;
}

.hero {
  padding: 96px 0 64px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.subhead {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  margin: 0;
  max-width: 540px;
}

.section {
  padding: 64px 0;
  border-top: 1px solid var(--rule);
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.section p { margin: 0 0 16px; }
.section p:last-child { margin-bottom: 0; }

.muted { color: var(--ink-soft); }

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 32px 0 48px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

@media (max-width: 560px) {
  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 28px; }
  .subhead { font-size: 17px; }
  .section { padding: 48px 0; }
  .container { padding: 0 20px; }
  .header-inner { min-height: 88px; padding: 16px 0; }
  .wordmark img { height: 56px; }
}

@media (max-width: 380px) {
  .header-inner { min-height: 72px; padding: 14px 0; }
  .wordmark img { height: 44px; }
  .hero h1 { font-size: 26px; }
}
