:root {
  --bg: #2a2a2a;
  --text: #f4f4f0;
  --muted: #9a9894;
  --accent: #ffc107;
  --border: #3f3c38;
  --serif: ui-serif, Charter, "Iowan Old Style", Cambria, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

header .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.wordmark {
  display: inline-block;
  line-height: 0;
}

.wordmark img {
  display: block;
  height: 22px;
  width: auto;
}

.hero-title {
  margin: 0 0 0.5rem;
  line-height: 0;
}

.hero-logo {
  display: block;
  height: 56px;
  width: auto;
}

nav {
  display: flex;
  gap: 1.5rem;
}

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

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

main {
  padding: 4rem 0 5rem;
}

main h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

main h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.375rem;
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.005em;
}

main h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 1.75rem 0 0.5rem;
}

main p,
main ul,
main ol,
main dl {
  margin: 0 0 1rem;
}

main ul,
main ol {
  padding-left: 1.5rem;
}

main li {
  margin-bottom: 0.25rem;
}

main a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.hero {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.tagline {
  color: var(--muted);
  font-size: 1.125rem;
  margin-top: 0;
  font-style: italic;
}

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

address {
  font-style: normal;
  line-height: 1.7;
}

dl.details {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.5rem 1.5rem;
  margin: 1rem 0 1.5rem;
}

dl.details dt {
  font-weight: 600;
  color: var(--text);
}

dl.details dd {
  margin: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4rem 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.875rem;
}

footer p {
  margin: 0.25rem 0;
}

footer a {
  color: var(--muted);
  text-decoration: underline;
}

@media (max-width: 540px) {
  body {
    font-size: 16px;
  }

  main h1 {
    font-size: 1.875rem;
  }

  main h2 {
    font-size: 1.25rem;
  }

  main {
    padding: 2rem 0 3rem;
  }

  .wordmark img {
    height: 20px;
  }

  .hero-logo {
    height: 42px;
  }

  dl.details {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  dl.details dd {
    margin-bottom: 0.75rem;
  }
}
