:root {
  color-scheme: light;
  --background: #f7f7f2;
  --text: #20231f;
  --muted: #686c63;
  --line: #d9d9cf;
  --accent: #1d5c63;
  --accent-dark: #123f45;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal {
  padding-top: 48px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 32px;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 36px 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: 0;
}

p {
  margin: 0 0 14px;
}

a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.link-list {
  display: grid;
  gap: 12px;
  max-width: 340px;
}

.link-list a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-size: 1.1rem;
}

section {
  border-top: 1px solid var(--line);
  padding-top: 2px;
}

.placeholder,
.note {
  color: var(--muted);
}

.note {
  font-size: 0.95rem;
}

.updated,
.back {
  margin-top: 28px;
  color: var(--muted);
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 24px, 760px);
    padding-top: 44px;
  }

  h1 {
    margin-bottom: 24px;
  }
}
