:root {
  --ground: #12110E;
  --ink: #EDE8DC;
  --copper: #C46A2E;
  --mute: #8A8476;
  --display: Instrument Sans, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
}

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

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

body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5rem 1.5rem 2.25rem;
}

main {
  flex: 1;
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.masthead {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

/* Crop the 1168×784 stacked lockup: artwork bbox + one disc-diameter clear space. */
.lockup-frame {
  display: block;
  width: min(20rem, 78vw);
  aspect-ratio: 910.54 / 640.15;
  overflow: hidden;
  position: relative;
  margin: 2.75rem 0 1.75rem;
}

.lockup {
  position: absolute;
  width: calc(1168 / 910.54 * 100%);
  height: auto;
  max-width: none;
  left: calc(-134.08 / 910.54 * 100%);
  top: calc(-67.12 / 640.15 * 100%);
}

.tick {
  display: block;
  width: 2.75rem;
  height: 0;
  margin: 0 0 1.75rem;
  border: 0;
  border-top: 1px solid var(--copper);
}

.purpose {
  margin: 0 0 1.35rem;
  max-width: 22rem;
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.45;
  color: var(--ink);
}

.contact {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

.contact a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact a:hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.contact a:focus-visible {
  outline: 1px solid var(--copper);
  outline-offset: 4px;
  color: var(--ink);
}

footer {
  width: 100%;
  padding-top: 3rem;
  text-align: center;
}

.legal {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--mute);
}

@media (min-width: 720px) {
  body {
    font-size: 1.25rem;
  }

  .purpose {
    font-size: 1.25rem;
    max-width: 26rem;
  }

  .lockup-frame {
    width: min(22rem, 70vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
