/* Shared stylesheet for the plain static business pages (home, services, about,
   contact, text-us). Deliberately simple — no build step, no JS, readable by
   any crawler or browser with zero dependencies. */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  color: #374151;
  background: #ffffff;
}

a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { color: #111827; line-height: 1.3; }
h1 { font-size: 2rem; margin: 0 0 1rem; }
h2 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
h3 { font-size: 1.1rem; margin: 0 0 0.4rem; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  max-width: 60rem;
  margin: 0 auto;
}
.site-header .brand { font-weight: 700; font-size: 1.15rem; color: #111827; }
.site-header nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }

main {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.lede { font-size: 1.05rem; color: #4b5563; }

.service-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.service-list li { margin-bottom: 1.5rem; }

.box {
  background: #f3f4f6;
  border-left: 4px solid #2563eb;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.site-footer {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #6b7280;
}
