/* Hermes Google Access — minimal accessible stylesheet */
:root {
  --bg: #fafafa;
  --fg: #111111;
  --muted: #666666;
  --accent: #4285f4;
  --link: #1a0a6e;
  --success: #34a853;
}

/* Page base */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Navigation */
nav {
  background: white;
  padding: 1rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
}
nav a {
  color: var(--fg);
  text-decoration: none;
  cursor: pointer;
}
nav a:hover {
  color: var(--accent);
}

/* Main content */
main {
  max-width: 760px;
  margin: 2rem auto;
  padding: 0 1rem;
}
h1 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #eee;
}
ul {
  margin-top: 0;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* Focus visible */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: underline;
}
a:hover {
  color: var(--accent);
}
