* {
  box-sizing: border-box;
}
html {
  color: #203b35;
  background: #f3f7f5;
  font-family: "PingFang SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #1b7160;
  outline-offset: 5px;
  border-radius: 4px;
}
header,
footer {
  max-width: 1100px;
  padding: 24px clamp(20px, 5vw, 52px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -1px;
}
.brand img {
  border-radius: 10px;
}
nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
nav a,
footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
main {
  max-width: 720px;
  margin: 64px auto 88px;
  padding: 0 28px;
}
h1,
h2 {
  font-family: "Songti SC", serif;
  font-weight: 500;
  text-wrap: balance;
}
h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.35;
  margin: 16px 0 44px;
}
h2 {
  font-size: 27px;
  line-height: 1.5;
  margin: 56px 0 22px;
}
p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 24px;
  overflow-wrap: anywhere;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #60766e;
}
footer {
  font-size: 14px;
  padding-bottom: 40px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
@media (max-width: 480px) {
  header {
    padding-block: 18px;
  }
  nav {
    gap: 14px;
  }
  .brand {
    font-size: 22px;
  }
  main {
    margin-top: 40px;
    padding: 0 24px;
  }
  h2 {
    font-size: 24px;
    margin-top: 44px;
  }
  p {
    font-size: 15px;
    line-height: 1.95;
  }
}

article a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em; }
