:root {
  --bg: #fbfbf9;
  --ink: #1b1b19;
  --muted: #6c6a63;
  --rule: #e4e2dc;
  --gutter: clamp(24px, 6vw, 88px);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 var(--gutter);
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 14vh, 180px) 0 clamp(48px, 8vh, 96px);
}

.statement p {
  margin: 0;
  max-width: 24em;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.375rem, 1.05rem + 1.5vw, 2.375rem);
  line-height: 1.38;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.footer {
  border-top: 1px solid var(--rule);
  padding: clamp(20px, 3vh, 32px) 0 clamp(24px, 4vh, 40px);
}

.footer p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media print {
  body { min-height: 0; }
}
