.topbar .logo {
  display: inline-flex;
  align-items: center;
  width: clamp(145px, 15vw, 190px);
  height: 52px;
  flex: none;
}

.topbar .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer .footer-credit {
  white-space: nowrap;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.hero h1 {
  font-size: clamp(4.5rem, 8.5vw, 9rem);
}

.hero-note {
  max-width: 38ch;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: .8rem;
  max-width: calc(100% - 2rem);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-size: .75rem;
  line-height: 1.3;
  text-align: right;
  letter-spacing: .04em;
}

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(4.4rem, 19vw, 8rem); }
}

@media (max-width: 520px) {
  .topbar .logo { width: 145px; height: 44px; }
  .footer .footer-credit { white-space: normal; }
  .hero-image figcaption { font-size: .7rem; }
}
