/* TODO: replace with Kaela's real two blues (green accent dropped per her 06-29 reply) once
   logo/brand assets are collected — these are placeholder values only. */
:root {
  --blue-dark: #1b3a5c;
  --blue-mid: #3d7ab5;
  --ink: #1a1a1a;
  --paper: #ffffff;
  --muted: #f4f6f8;
  --border: #e2e6ea;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
a { color: var(--blue-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header .bar--utility {
  background: var(--blue-dark);
  color: white;
  font-size: 0.85rem;
}
.site-header .bar--utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.4rem;
}
.payprop-nav a {
  color: white;
  margin-left: 1rem;
  font-weight: 600;
}

.site-header .bar--main {
  border-bottom: 1px solid var(--border);
}
.site-header .bar--main .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.85rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-dark);
}
.main-nav a {
  margin-left: 1.25rem;
  color: var(--ink);
  font-weight: 500;
}

main { min-height: 60vh; }

.site-footer {
  background: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.25rem;
  font-size: 0.85rem;
  color: #555;
}

@media (max-width: 640px) {
  .site-header .bar--main .wrap { flex-direction: column; align-items: flex-start; }
  .main-nav a { margin-left: 0; margin-right: 1rem; }
}
