:root {
  color-scheme: light;
  --ink: #171612;
  --muted: #6b655b;
  --paper: #f6f2eb;
  --paper-deep: #ebe4d8;
  --line: rgba(23, 22, 18, 0.16);
  --accent: #37584a;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(246, 242, 235, 0.96), rgba(246, 242, 235, 0.76) 52%, rgba(246, 242, 235, 0.34)),
    url("assets/quiet-desk.png");
  background-size: cover;
  background-position: center;
  font-family:
    ui-serif,
    Georgia,
    Cambria,
    "Times New Roman",
    Times,
    serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(246, 242, 235, 0.16), rgba(246, 242, 235, 0.86)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.22), transparent 34%);
}

.site-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-rows: 1fr auto;
  padding: clamp(28px, 6vw, 76px);
}

.hero {
  display: flex;
  align-items: center;
  max-width: 760px;
}

.hero-copy {
  padding-block: 8vh;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 8.75rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: clamp(24px, 4vw, 44px) 0 0;
  color: #2f2b25;
  font-size: clamp(1.08rem, 2vw, 1.46rem);
  line-height: 1.55;
}

.statement {
  width: min(100%, 680px);
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.statement p {
  margin: 0;
  color: var(--muted);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(0.92rem, 1.35vw, 1.04rem);
  line-height: 1.7;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(28px, 6vw, 76px);
  border-top: 1px solid rgba(23, 22, 18, 0.12);
  color: var(--muted);
  background: rgba(246, 242, 235, 0.82);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(180deg, rgba(246, 242, 235, 0.96), rgba(246, 242, 235, 0.88)),
      url("assets/quiet-desk.png");
    background-size: cover;
    background-position: center top;
  }

  .site-shell {
    min-height: calc(100vh - 92px);
    padding: 28px;
  }

  .hero {
    align-items: end;
  }

  .hero-copy {
    padding-block: 10vh 6vh;
  }

  h1 {
    max-width: 10ch;
  }

  footer {
    min-height: 92px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 28px;
  }
}
