/* Emereo. Self-contained, no external fonts or trackers. */
:root {
  --bg: #fbfaf8; --fg: #23201d; --muted: #6a635c; --rule: #e2ddd6;
  --link: #8a4b2a; --accent: #f4f1ec;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #17150f; --fg: #ece7df; --muted: #9d958a; --rule: #322d26;
          --link: #d8a179; --accent: #211d17; }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font: 17px/1.65 ui-serif, Georgia, "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 46rem; margin: 0 auto; padding: 0 1.5rem; }
.site-header { border-bottom: 1px solid var(--rule); padding: 1.4rem 0; margin-bottom: 3rem; }
.site-header .wrap { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; align-items: baseline; }
.brand {
  font-weight: 600; font-size: 1.15rem; letter-spacing: 0.02em;
  text-decoration: none; color: var(--fg); margin-right: auto;
}
nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
nav a {
  font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.86rem;
  color: var(--muted); text-decoration: none;
}
nav a:hover, nav a[aria-current] { color: var(--fg); }
h1 { font-size: 2.1rem; line-height: 1.2; margin: 0 0 1rem; font-weight: 600; }
h2 { font-size: 1.22rem; margin: 2.6rem 0 0.6rem; font-weight: 600; }
p { margin: 0 0 1.1rem; }
.lede { font-size: 1.15rem; color: var(--muted); margin-bottom: 2.4rem; }
a { color: var(--link); }
.muted { color: var(--muted); }
section { margin-bottom: 0.5rem; }
table.identity { border-collapse: collapse; width: 100%; margin: 1rem 0 1.6rem; }
table.identity th, table.identity td {
  text-align: left; vertical-align: top; padding: 0.55rem 0.9rem 0.55rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.92rem;
}
table.identity th { width: 12rem; color: var(--muted); font-weight: 500; }
.pending { color: var(--muted); font-style: italic; }
.products article { padding: 1.2rem 0; border-bottom: 1px solid var(--rule); }
.products h2 { margin-top: 0; }
.site-footer {
  border-top: 1px solid var(--rule); margin-top: 5rem; padding: 2rem 0 3rem;
  font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.85rem; color: var(--muted);
}
.site-footer p { margin: 0 0 0.4rem; }
@media (max-width: 34rem) {
  h1 { font-size: 1.7rem; }
  table.identity th { width: auto; display: block; padding-bottom: 0; border: 0; }
  table.identity td { display: block; padding-top: 0.15rem; }
}
