/* ============================================================
   styles.css — shared by every page. Edit the variables below
   to change colors/fonts site-wide.
   ============================================================ */

:root {
  --bg: #f8f7f4;
  --ink: #1c2321;
  --ink-soft: #4a534f;
  --accent: #5b6f4e;      /* muted olive-green, used for links/eyebrows */
  --accent-dark: #3f4f36;
  --rule: #d9d5cb;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --max-width: 700px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
}

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

/* ---------- header / nav ---------- */

header.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 32px 0 20px;
}

.site-title {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 4px;
}

.site-title a {
  color: var(--ink);
  text-decoration: none;
}

.site-tagline {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 18px;
}

nav.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  margin-right: 22px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

nav.site-nav a:hover,
nav.site-nav a:focus {
  border-bottom-color: var(--accent);
}

nav.site-nav a[aria-current="page"] {
  border-bottom-color: var(--accent-dark);
  font-weight: bold;
}

/* ---------- main content ---------- */

main {
  padding: 48px 0 64px;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

h1 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 18px;
}

h2 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 40px 0 12px;
}

p {
  margin: 0 0 16px;
}

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

.lede {
  font-size: 20px;
  color: var(--ink-soft);
}

/* ---------- service list ---------- */

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

.service:last-child {
  border-bottom: 1px solid var(--rule);
}

.service h2 {
  margin: 0 0 8px;
}

/* ---------- contact block ---------- */

.contact-block {
  border: 1px solid var(--rule);
  padding: 24px;
  margin-top: 32px;
}

.contact-block dt {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 12px;
}

.contact-block dt:first-child {
  margin-top: 0;
}

.contact-block dd {
  margin: 2px 0 0;
  font-size: 18px;
}

/* ---------- footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  color: var(--ink-soft);
  font-size: 14px;
}
