p {
    margin-bottom: 1.2em;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #fafafa;
  line-height: 1.7;
}

a {
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

a:hover {
  border-bottom-color: #000;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a.active {
  font-weight: 600;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.2rem;
}

.container.narrow {
  max-width: 700px;
}

.hero {
  margin-bottom: 4rem;
}

.kicker {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: #666;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subhead {
  font-size: 1.2rem;
  color: #444;
}

.services {
  display: grid;
  gap: 3rem;
}

.service h2 {
  margin-bottom: 0.5rem;
}

blockquote {
  font-style: italic;
  margin: 1rem 0;
  color: #555;
}

blockquote span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.muted {
  color: #666;
}

.cta {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

.site-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.contact-email {
  font-size: 1.3rem;
  margin: 1.5rem 0;
}