@font-face {
  font-family: "Founders Grotesque";
  src: url("assets/fonts/founders-grotesk-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #f4efe6;
  --paper-deep: #ebe3d6;
  --ink: #1e1d1a;
  --muted: #6f685f;
  --line: rgba(30, 29, 26, 0.14);
  --sans:
    "Founders Grotesque", "Founders Grotesk", "Founders Grotesk Text", "Avenir Next",
    "Helvetica Neue", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Newsreader", "Iowan Old Style", "Palatino Linotype", serif;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 36%),
    linear-gradient(180deg, #f7f2ea 0%, var(--paper) 36%, var(--paper-deep) 100%);
}

p,
h1 {
  margin: 0;
}

.page-shell {
  width: min(100% - 2rem, 46rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.eyebrow {
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(0.96rem, 1.25vw, 1.12rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 10vw, 6.75rem);
  line-height: 0.94;
  font-weight: 400;
}

.brand-mark {
  max-width: min(100%, 26rem);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.lede {
  max-width: none;
  font-size: clamp(1.35rem, 2.1vw, 1.78rem);
  line-height: 1.28;
  white-space: nowrap;
}

.note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(1.28rem, 1.7vw, 1.52rem);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1.25rem, 46rem);
  }

  .lede {
    font-size: clamp(1.08rem, 4.6vw, 1.26rem);
  }
}
