/* TRACE — Technology Resources and Consulting for Education
   capturepacket.net */

:root {
  --header-bg: #1d2a33;
  --header-bg-2: #16212a;
  --body-bg: #f7f8f8;
  --surface: #ffffff;
  --text: #2b3640;
  --text-muted: #6b757d;
  --text-faint: #9aa3aa;
  --accent: #34727f;
  --accent-dark: #2a5e69;
  --border: #e2e6e8;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--body-bg);
  color: var(--text);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--header-bg);
  background: linear-gradient(180deg, var(--header-bg) 0%, var(--header-bg-2) 100%);
  border-bottom: 3px solid var(--accent);
  color: #fff;
}

.site-header .container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.wordmark {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #ffffff;
}

.wordmark .dot {
  color: var(--accent);
}

.full-name {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #9fb1b6;
  text-transform: none;
}

/* ---------- Tagline (subtitle) ---------- */

.tagline .container {
  padding-top: 16px;
  padding-bottom: 0;
}

.tagline h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #555c63;
  letter-spacing: 0.01em;
}

/* ---------- Main ---------- */

main .container {
  padding-top: 32px;
  padding-bottom: 40px;
}

.about {
  max-width: 760px;
}

.about p {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
}

.section-label {
  margin: 36px 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.services li {
  background: var(--surface);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.site-footer .container {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-meta span {
  margin: 0 6px;
  color: var(--text-faint);
}

.footer-contact {
  font-size: 13px;
  color: var(--text-faint);
}

.footer-contact a {
  color: var(--text-faint);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 22px;
  }
  .wordmark {
    font-size: 28px;
  }
  .about p {
    font-size: 17px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
