/* Forward OnQ — colors and type per Forward_OnQ_Brand_Style_Guide.docx */
:root {
  --deep-navy: #042C53;
  --primary-navy: #0C447C;
  --mid-blue: #378ADD;
  --light-fill: #E6F1FB;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, system-ui, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

.site-header {
  background: var(--deep-navy);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
}

.site-header .logo {
  height: 48px;
  width: auto;
  display: block;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.intro .lede {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin: 0 0 1rem;
}

.intro .status {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 3rem;
}

.contact h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.contact a {
  color: var(--mid-blue);
  font-size: 1.1rem;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--light-fill);
  padding: 1.5rem 2rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
