:root {
  --bg: #f6f1e8;
  --ink: #1f1d1a;
  --muted: #6b645b;
  --rule: #d9cfbf;
  --accent: #9a5b2b;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1917;
    --ink: #ece6da;
    --muted: #a39b8f;
    --rule: #3a3631;
    --accent: #d99a5f;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: "kern", "liga";
}
main {
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(3rem, 12vh, 7rem) 1.25rem 3rem;
}
header { padding-bottom: 2.5rem; border-bottom: 1px solid var(--rule); }
h1 {
  margin: 0 0 1rem;
  font: 600 2.75rem/1.05 ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: -0.015em;
}
h1 a { color: inherit; text-decoration: none; }
h1::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 1rem;
  background: var(--accent);
}
.lede { margin: 0 0 1rem; font-size: 1.25rem; line-height: 1.45; }
.founded { margin: 0; color: var(--muted); }
section { padding: 2.25rem 0; border-bottom: 1px solid var(--rule); }
h2 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { text-decoration-thickness: 2px; }
dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 0.35rem 1.25rem; }
dt { color: var(--muted); }
dd { margin: 0; }
@media (max-width: 26rem) { dl { grid-template-columns: 1fr; gap: 0.1rem; } dd { margin-bottom: 0.6rem; } }
address { font-style: normal; line-height: 1.5; }
address strong { font-weight: 600; }
footer { padding-top: 2rem; color: var(--muted); font-size: 0.9rem; }
footer nav { margin-bottom: 0.5rem; }
footer nav a { color: var(--muted); }
