:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #24231f;
  background: #f7f3eb;
  line-height: 1.65;
}
* {
  box-sizing: border-box;
}
body {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px;
}
header {
  margin-bottom: 64px;
  font-weight: 700;
}
header a {
  color: inherit;
  text-decoration: none;
}
h1 {
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
}
h2 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 32px 0 12px;
}
p {
  margin: 0 0 18px;
}
a {
  color: #354d3d;
  text-underline-offset: 3px;
}
.status {
  font-size: 0.9rem;
  color: #685b43;
}
section {
  margin-top: 40px;
}
dl {
  margin: 16px 0;
}
dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid #d8d3c9;
}
dd {
  margin: 0;
  font-weight: 700;
}
footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #d8d3c9;
  font-size: 0.85rem;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 16px;
}

body.landing {
  display: grid;
  place-items: center;
  min-height: 100svh;
  max-width: none;
  margin: 0;
  text-align: center;
}
.landing h1 {
  margin: 0;
}
