:root {
  --text: #1a1a1a;
  --text-muted: #4a5568;
  --accent: #2c4a5e;
  --accent-light: #4a6b82;
  --border: #e2e8f0;
  --bg-soft: #f7f9fb;
  --max-width: 64rem;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease;
}
a:hover { border-bottom-color: var(--accent); }

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

header.site {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  border: none;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

nav.site {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}
nav.site a {
  color: var(--text-muted);
  font-weight: 500;
}
nav.site a.active { color: var(--accent); }

.hero {
  padding: 2.5rem 0 0.75rem;
}
.hero .rule {
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  border: 0;
}
.hero .rule.top { margin: 0 0 1.25rem; }
.hero .rule.bottom { margin: 1.75rem 0 0; background: var(--border); height: 1px; width: 4rem; }
.hero h1 {
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
  color: var(--text);
  max-width: 42rem;
}
.hero p.lede {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0;
  font-style: italic;
}

main { padding: 1rem 0 4rem; }

section.services h2 {
  font-size: 1.25rem;
  margin: 1.4rem 0 0.35rem;
  letter-spacing: -0.01em;
  color: var(--accent);
  line-height: 1.25;
}
section.services h2:first-child { margin-top: 0; }

section.services ul {
  margin: 0 0 0.4rem;
  padding-left: 1.25rem;
  line-height: 1.45;
}
section.services li {
  margin: 0.15rem 0;
  color: var(--text);
}
section.services li em {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.92em;
}

.intro {
  font-size: 1.05rem;
  max-width: 44rem;
  margin: 0 0 1.25rem;
  color: var(--text);
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 36rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-value {
  font-size: 1.1rem;
}
.contact-value address {
  font-style: normal;
  line-height: 1.5;
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--bg-soft);
}
footer.site .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 540px) {
  header.site .container { flex-direction: column; align-items: flex-start; gap: 1rem; }
  nav.site { width: 100%; }
  .hero { padding: 2.5rem 0 2rem; }
  main { padding: 2rem 0 3rem; }
  footer.site .container { flex-direction: column; align-items: flex-start; }
}
