@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('/fonts/roboto-mono-200.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/roboto-mono-400.woff2') format('woff2');
}

:root {
  --bg: #faf8f3;
  --ink: #1a1a1a;
  --muted: #888;
  --rule: #ddd;
  --arr: #999;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Roboto Mono', ui-monospace, Menlo, monospace;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.85;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 120ms ease;
}

a:hover,
a:focus-visible {
  border-bottom-color: var(--ink);
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 56px 44px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}

.masthead-left { font-weight: 400; }
.masthead-right { color: var(--muted); font-weight: 200; }

.grid {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 32px;
  row-gap: 28px;
  margin-top: 72px;
  flex: 1;
}

.label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  padding-top: 4px;
}

.value {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.85;
  color: var(--ink);
}

.value.title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.value-list li { margin: 0; }

.value-list a {
  font-size: 13px;
  font-weight: 200;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6ch;
  width: fit-content;
}

.arr { color: var(--arr); }

.footer-rule {
  margin-top: 72px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}

@media (max-width: 640px) {
  main { padding: 24px 20px 28px; }
  .grid {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-top: 40px;
  }
  .label { padding-top: 18px; }
  .label:first-child { padding-top: 0; }
  .footer-rule { margin-top: 48px; }
}
