:root {
  --paper: #e5e4e1;
  --ink: #111;
  --ink-soft: #2b2b2b;
  --muted: #6f6d69;
  --margin: 44px;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4em;
  padding: var(--margin);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 135%;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 30em;
}

.mark {
  display: block;
  margin-bottom: 1.7em;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.18;
  text-transform: uppercase;
}

.about {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.85em;
  font-style: italic;
  line-height: 1.6;
}

.about .line {
  display: block;
}

@media (min-width: 601px) {
  .about .line {
    white-space: nowrap;
  }
}

footer address {
  color: var(--muted);
  font-size: 0.62em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

footer .inquiries {
  text-transform: none;
  letter-spacing: 0.04em;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration: none;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 600px) {
  :root {
    --margin: 30px;
  }
}
