:root {
  --page-bg: #f8f8f5;
  --ink: #111111;
}

@font-face {
  font-family: "Neue Stance";
  src:
    url("fonts/NeueStance-Bold.otf") format("opentype"),
    url("fonts/NeueStance-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--page-bg) 62%, #eef0ec 100%);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

.page-shell {
  width: min(100%, 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 28px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 168px;
  max-width: 42vw;
  height: auto;
  display: block;
}

h1 {
  margin: 38px 0 46px;
  font-family: "Neue Stance", "Bodoni 72", "Didot", "Cormorant Garamond", Georgia, serif;
  font-size: 4.75rem;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.paddle {
  width: min(100%, 680px);
  height: auto;
  display: block;
  border-radius: 4px;
}

.site-footer {
  margin-top: 48px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.site-footer a {
  color: rgba(17, 17, 17, 0.68);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

@media (min-width: 1200px) {
  .page-shell {
    padding-top: 78px;
    padding-bottom: 92px;
  }

  .logo {
    width: 190px;
  }

  h1 {
    margin-top: 42px;
    margin-bottom: 52px;
    font-size: 5.6rem;
  }

  .paddle {
    width: 720px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 40px 20px 54px;
  }

  .logo {
    width: 128px;
    max-width: 48vw;
  }

  h1 {
    margin: 30px 0 34px;
    font-size: 3rem;
    line-height: 1;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding-inline: 16px;
  }

  .logo {
    width: 112px;
  }

  h1 {
    font-size: 2.55rem;
  }
}
