:root {
  --paper: #f7f5f0;
  --ink: #111111;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Times, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

p { margin: 0; }

.page {
  min-height: 100svh;
  width: min(1200px, calc(100vw - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px 0 34px;
}

.wordmark {
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: 0.07em;
  font-weight: 400;
}

.manifesto {
  align-self: center;
  max-width: 980px;
  margin-left: 20%;
  padding: 12vh 0 14vh;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.manifesto p + p {
  margin-top: 0.16em;
}

.bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  font-size: 13px;
  line-height: 1.35;
}

.about-block {
  max-width: 420px;
}

.about {
  max-width: 420px;
}

.contact {
  text-align: right;
  white-space: nowrap;
}

.place {
  margin-top: 0.35em;
}

@media (max-width: 720px) {
  .page {
    width: calc(100vw - 36px);
    padding: 22px 0 24px;
  }

  .wordmark {
    font-size: 23px;
  }

  .manifesto {
    margin-left: 0;
    padding: 18vh 0 16vh;
    font-size: clamp(31px, 9.2vw, 46px);
    line-height: 1.01;
  }

  .bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    font-size: 12px;
  }

  .contact {
    text-align: left;
  }
}
