:root {
  color-scheme: dark;
  --background: #080807;
  --text: #f2efe7;
  --muted: #aaa49a;
  --glow: rgba(132, 167, 146, 0.24);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(132, 167, 146, 0.08), transparent 34rem),
    linear-gradient(180deg, #0b0b0a 0%, var(--background) 58%, #060605 100%);
  color: var(--text);
  font-family:
    ui-serif,
    "Iowan Old Style",
    "Palatino Linotype",
    Palatino,
    Georgia,
    serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(242, 239, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 231, 0.025) 1px, transparent 1px);
  background-size: 5rem 5rem;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 72%);
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.site-shell {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  place-items: center;
}

.identity {
  display: grid;
  width: min(100%, 44rem);
  justify-items: center;
  text-align: center;
}

.mark {
  display: block;
  width: 4.75rem;
  height: 4.75rem;
  margin-bottom: 3.5rem;
  filter: drop-shadow(0 1.25rem 3rem var(--glow));
  opacity: 0.92;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--text);
  font-size: 4.75rem;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

p {
  max-width: 30rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

@media (max-width: 700px) {
  .site-shell {
    padding: 1.5rem;
  }

  .mark {
    width: 4rem;
    height: 4rem;
    margin-bottom: 2.75rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  p {
    max-width: 21rem;
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

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