:root {
  color-scheme: light;
  --background: #ffffff;
  --foreground: #171717;
  --muted: #666666;
  --line: #dedede;
  --accent: #e74141;
}

@font-face {
  font-family: "Ratio Garamond";
  src: url("/assets/EBGaramond.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Ratio Garamond", ui-serif, Georgia, serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.home {
  min-height: 100svh;
}

.centerpiece {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 24px;
}

.centerpiece img {
  width: min(180px, 52vw);
  height: auto;
  display: block;
}

.centerpiece a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.centerpiece a:hover {
  color: var(--foreground);
}

.site-header {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--foreground);
  font-weight: 720;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 28px;
  object-fit: contain;
}

.site-header nav {
  display: none;
}

footer {
  display: none;
}

.policy-page {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 84px;
}

.policy-page h1 {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.updated {
  margin: 14px 0 42px;
  color: var(--muted);
}

.policy-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-page h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.policy-page p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.policy-page p + p {
  margin-top: 16px;
}

.policy-page a {
  color: var(--accent);
}
