@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-normal-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-normal-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #fafaf8;
  --ink: #242424;
  --secondary: #5b5b57;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

.page {
  width: 100%;
  max-width: 1680px;
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 6.25vw, 6.5rem) 2.5rem;
  display: flex;
  flex-direction: column;
}

p,
h1,
h2 {
  margin: 0;
}

.wordmark {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

main {
  flex: 1;
  padding-block: clamp(5rem, 10vh, 8rem) clamp(4rem, 7vh, 6rem);
}

.release-status {
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  max-width: 19ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.75rem, 8.3vw, 7.5rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.028em;
}

h1 span {
  display: block;
}

.introduction {
  max-width: 36rem;
  margin-top: clamp(2rem, 3.6vw, 3.25rem);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.audience {
  margin-top: 1.5rem;
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact h2 {
  margin-bottom: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact address {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.6;
}

.contact address p {
  color: var(--secondary);
}

.contact a {
  display: inline-flex;
  margin-top: 0.5rem;
  align-items: center;
  min-height: 44px;
  max-width: 100%;
  padding-block: 0.5rem;
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
  overflow-wrap: anywhere;
}

.contact a:hover {
  text-decoration-thickness: 2px;
}

.contact a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
  border-radius: 1px;
}

@media (max-width: 600px) {
  main {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(2.75rem, 10.3vw, 3.75rem);
    line-height: 1.08;
  }

  .introduction {
    line-height: 1.65;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.5rem;
  }
}
