:root {
  color-scheme: light;
  --paper: #f3f1ec;
  --ink: #202124;
  --muted: #62656a;
  --accent: #2f6f73;
  --rule: rgba(32, 33, 36, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, var(--rule) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, var(--rule) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--paper);
}

.site-shell {
  width: min(100%, 880px);
  min-height: 100vh;
  display: grid;
  align-items: end;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 80px) 24px;
}

.identity {
  max-width: 680px;
  padding-top: 28vh;
}

.eyebrow,
h1,
.note {
  margin: 0;
}

.eyebrow {
  width: fit-content;
  padding-bottom: 10px;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  margin-top: 24px;
  font-size: clamp(2.6rem, 11vw, 6rem);
  font-weight: 750;
  line-height: 0.95;
}

.note {
  max-width: 32rem;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
}

@media (max-width: 560px) {
  .site-shell {
    padding: 28px 20px 40px;
  }

  .identity {
    padding-top: 18vh;
  }
}

