:root {
  color-scheme: light;
  --ink: #2f2f2f;
  --muted: #6f6f73;
  --paper: #fff;
  --page: #343434;
  --content: 780px;
}

* { box-sizing: border-box; }

html { background: var(--page); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--muted);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.62;
}

a { color: inherit; text-underline-offset: 0.15em; }

.site-header,
.site-footer {
  background: var(--page);
  color: #e9e9e9;
  text-align: center;
}

.site-header {
  display: grid;
  min-height: 60px;
  padding: 14px 24px;
  place-items: center;
}

.brand {
  color: inherit;
  font-size: 23px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-decoration: none;
}

.hero {
  display: block;
  width: 100%;
  max-height: 490px;
  object-fit: cover;
}

.content {
  max-width: var(--content);
  margin: 0 auto;
  padding: 56px 28px 72px;
}

.content h1 {
  margin: 0 0 42px;
  color: #262626;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.content h2 {
  margin: 40px 0 12px;
  color: #303030;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
}

.content p { margin: 0 0 28px; }

.content ul {
  margin: -6px 0 28px;
  padding-left: 28px;
}

.site-footer {
  border-top: 1px solid #222;
  padding: 38px 24px 44px;
  color: #c7c7c7;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p { margin: 0 0 22px; }

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

@media (max-width: 680px) {
  body { font-size: 16px; }
  .brand { font-size: 18px; }
  .hero {
    min-height: 210px;
    object-fit: cover;
  }
  .content { padding: 42px 22px 56px; }
  .content h1 {
    margin-bottom: 30px;
    font-size: 31px;
  }
  .content h2 { font-size: 21px; }
}
