/* Unfilled legal placeholders. Deliberately loud: a policy that ships with
   <ENTITY NAME> still in it is worse than no policy, so it must be impossible
   to miss on the preview site. */
.todo {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 0 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: .92em;
}

/* Shared site footer — loaded by index.html AND the legal pages.
 *
 * Footer ONLY, deliberately. The legal pages need body/typography rules too,
 * but index.html already has its own (including a body::before glow), so
 * shipping those here would silently restyle the home page. One file per job.
 *
 * Depends on the --navy/--mist/--steel/--green tokens, which both callers
 * already define.
 */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 34px 20px 26px;
  background: var(--navy-deep);
}

.foot-grid {
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 26px 20px;
}

/* The horizontal lockup already contains the tagline — no separate line. */
.foot-brand { display: flex; align-items: flex-start }
.foot-brand img { width: 168px; height: auto; max-width: 100% }

.foot-col h4 {
  font-family: var(--head);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
  font-weight: 700;
}

.foot-col ul { list-style: none; margin: 0 }
.foot-col li { margin-bottom: 8px }

.foot-col a {
  color: var(--mist);
  text-decoration: none;
  font-size: 14px;
  /* 44px touch target: these are the links people reach for on a phone. */
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 0;
}

.foot-col a:hover { color: var(--green) }

.foot-legal {
  max-width: 62rem;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .foot-legal { justify-content: flex-start }
}
