:root {
  color-scheme: light dark;
  --accent: #934d09;
  --text-muted: color-mix(in srgb, CanvasText 85%, transparent);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, CanvasText 12%, transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 2rem;
  height: 2rem;
}

.brand span {
  font-weight: 600;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.9375rem;
}

nav a {
  color: var(--accent);
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  flex: 1;
  width: min(40rem, 100%);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.placeholder-notice {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, Canvas);
  color: CanvasText;
  margin-bottom: 1.5rem;
}

.placeholder-notice code {
  font-size: 0.875em;
}

footer {
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

footer a {
  color: var(--accent);
}
