@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Merriweather";
  src: url("/assets/fonts/merriweather.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  font-family: "Open Sans", "Noto Sans SC", "PingFang SC", sans-serif;
  font-synthesis: none;
  color: #33343a;
  background: #fff;
}
* {
  box-sizing: border-box;
}
body {
  min-height: 100svh;
  margin: 0;
  padding: 64px 28px;
  display: grid;
  place-items: center;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
svg:focus-visible {
  outline: 2px solid #92939a;
  outline-offset: 7px;
}
::selection {
  background: #e7e7e9;
}
.studio {
  width: min(100%, 600px);
}
.brand-mark {
  width: min(62%, 360px);
  margin: 0 auto 26px;
}
.brand-mark > svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.studio-intro {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: 0.01em;
  color: #686a71;
}
#products {
  margin-top: 30px;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.product-entry {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px 7px 7px;
  border-radius: 999px;
  color: #34353a;
  background: #f3f3f4;
  transition:
    color 180ms,
    background-color 180ms,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
a.product-entry:hover,
a.product-entry:focus-visible {
  color: #111;
  background: #eaeaec;
  transform: translateY(-1px);
}
.product-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 4px;
  object-fit: contain;
}
.product-name {
  font-family: "Merriweather", "Noto Serif SC", "Songti SC", serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.studio-footer {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.studio-signature {
  margin: 0;
  font-size: 10px;
  color: #77787d;
  white-space: nowrap;
}
.byline-link {
  position: relative;
  color: #55565b;
}
.byline-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  border-radius: 999px;
  background: #c7c7c4;
  transform: scaleX(0.34);
  transform-origin: left;
  transition:
    background-color 180ms,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.byline-link:hover::after,
.byline-link:focus-visible::after {
  background: #5f6065;
  transform: scaleX(1);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.social-link {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #85868b;
  transition:
    color 180ms,
    background-color 180ms,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.social-link:hover,
.social-link:focus-visible {
  color: #232429;
  background: #f1f1f2;
  transform: translateY(-1px);
}
.social-link svg {
  width: 13px;
  height: 13px;
}
.social-link-text {
  width: auto;
  padding: 0 5px;
  font-size: 9px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  padding: 10px 15px;
  background: #fff;
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
@media (max-width: 580px) {
  body {
    padding: 44px 28px;
  }
  .studio {
    max-width: 290px;
  }
  .brand-mark {
    width: 74%;
    margin-bottom: 24px;
  }
  .studio-intro {
    font-size: 11px;
  }
  #products {
    margin-top: 28px;
  }
  .product-grid {
    gap: 8px;
  }
  .product-entry {
    gap: 6px;
    padding: 6px 10px 6px 6px;
  }
  .product-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
  .product-name {
    font-size: 11px;
    letter-spacing: -0.035em;
  }
  .studio-footer {
    margin-top: 26px;
    padding-top: 15px;
    gap: 10px;
  }
  .studio-signature {
    font-size: 9px;
  }
  .social-link {
    width: 25px;
    height: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
