:root {
  color-scheme: dark;
  --ink: #100e0b;
  --panel: #17140f;
  --cream: #ece5d7;
  --text: #c9c0ae;
  --muted: #8d8574;
  --signal: #ff5b2e;
  --rule: rgba(236, 229, 215, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: var(--cream); text-underline-offset: 0.22em; }
a:hover, a:focus-visible { color: var(--signal); }
.site-header, .site-footer { border-color: var(--rule); border-style: solid; }
.site-header { border-width: 0 0 1px; }
.site-footer { border-width: 1px 0 0; margin-top: 5rem; }
.bar, main { width: min(760px, calc(100% - 2rem)); margin-inline: auto; }
.bar { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand { font-family: Georgia, serif; font-size: 1.35rem; text-decoration: none; }
.brand span { color: var(--signal); }
nav { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
main { padding-top: 5rem; }
.eyebrow { color: var(--signal); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2 { color: var(--cream); font-family: Georgia, serif; font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 8vw, 4.8rem); margin: 1rem 0 1.5rem; }
h2 { border-top: 1px solid var(--rule); font-size: 1.7rem; margin: 3rem 0 1rem; padding-top: 2rem; }
p, li { max-width: 70ch; }
li + li { margin-top: 0.65rem; }
.summary { border: 1px solid var(--rule); background: var(--panel); color: var(--cream); padding: 1.25rem; }
.meta { color: var(--muted); font-size: 0.86rem; }
.contact { border-left: 3px solid var(--signal); padding-left: 1rem; }
.site-footer .bar { color: var(--muted); font-size: 0.78rem; }
@media (max-width: 620px) {
  .bar { align-items: flex-start; flex-direction: column; }
  main { padding-top: 3rem; }
}
