:root {
  color-scheme: light;
  --paper: #f6f6f2;
  --ink: #252b2d;
  --muted: #596266;
  --accent: #245675;
  --rule: #d5d9d7;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
a:hover {
  color: var(--accent);
}
.page {
  width: min(100% - 96px, 1120px);
  margin: auto;
}
header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header {
  padding-block: 24px;
}
header a,
footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 12px;
}
.wordmark {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.byline,
footer {
  font-size: 13px;
  color: var(--muted);
}
main {
  max-width: 760px;
  padding: clamp(72px, 11vh, 120px) 0 80px;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.intro {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 28px 0 40px;
}
.links {
  max-width: 570px;
}
.work-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
  border-top: 1px solid var(--rule);
}
.work-link strong,
.work-link small {
  display: block;
}
.work-link strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.work-link small {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 5px;
}
.arrow {
  font-size: 23px;
  color: var(--accent);
  flex: 0 0 auto;
}
footer {
  padding: 20px 0 28px;
  border-top: 1px solid var(--rule);
}
footer p {
  margin: 0;
  line-height: 1.6;
}
@media (prefers-reduced-motion: no-preference) {
  a {
    transition: color 180ms ease;
  }
  .arrow {
    transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .work-link:hover .arrow,
  .work-link:focus-visible .arrow {
    transform: translate(3px, -3px);
  }
  .work-link:active .arrow {
    transform: translate(1px, -1px);
  }
  main {
    animation: enter 450ms ease-out both;
  }
  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (max-width: 600px) {
  .page {
    width: calc(100% - 40px);
  }
  header {
    padding-block: 16px;
    gap: 12px;
  }
  .wordmark {
    font-size: 17px;
  }
  .byline {
    font-size: 12px;
    gap: 5px;
  }
  main {
    padding: 66px 0 64px;
  }
  h1 {
    font-size: clamp(36px, 9.6vw, 48px);
  }
  .intro {
    font-size: 15px;
    margin-top: 24px;
  }
  .work-link {
    min-height: 94px;
    gap: 16px;
  }
  .work-link strong {
    font-size: 15px;
  }
  footer {
    font-size: 12px;
    gap: 14px;
  }
}
