/* ============================================================
   Savory Marketing — pages/sitemap.css
   Human sitemap index. Groups derive from URL structure; the link
   list is build-generated by build.sh from the page tree, so it can
   never drift from the site. Layout reuses the footer column pattern:
   uppercase --ink-secondary headings, --ink links.
   ============================================================ */
.sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 36px 40px;
  align-items: start;
}
.sitemap__group { min-width: 0 }
.sitemap__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-secondary);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.sitemap__links { list-style: none; margin: 0; padding: 0 }
.sitemap__links a {
  display: block;
  color: var(--ink);
  padding-block: 7px;
  line-height: 1.4;
  transition: color var(--dur-fast) var(--ease-standard);
}
.sitemap__links a:hover { color: var(--accent) }

.sitemap__meta {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-secondary);
  font-size: 13px;
}
/* Underlined: this footnote sits on subdued --ink-secondary, so the link needs
   a non-color cue to stay distinguishable (WCAG 1.4.1 / axe link-in-text-block). */
.sitemap__meta a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px }
.sitemap__meta a:hover { color: var(--accent-hover) }
