@font-face {
  font-family: "marcellus";
  src: url("assets/marcellus-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --fg: #f4f4f4;
  --muted: #b7b7b7;
  --line: #202020;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: "marcellus", serif;
  letter-spacing: 0.015em;
  line-height: 1.65;
}

.page {
  width: min(680px, 92vw);
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.hero {
  margin-bottom: 2.2rem;
}

.logo-frame {
  width: clamp(220px, 36vw, 335px);
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  transform: translateX(-22.39%);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.tagline {
  margin: 0;
  color: var(--muted);
}

.section {
  padding-top: 1.35rem;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.17em;
  color: var(--muted);
}

p {
  margin: 0;
}

a {
  color: var(--fg);
  text-decoration-color: #666;
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-color: var(--fg);
}

span {
  color: var(--fg);
}

@media (max-width: 640px) {
  .page {
    padding: 3.4rem 0 3rem;
  }

  .logo-frame {
    width: min(76vw, 320px);
  }
}
