*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  background: #d9d1bc;
  color: #1a1915;
  font-family: "Libre Baskerville", Georgia, serif;
}

a { color: inherit; }

.paper {
  width: min(960px, calc(100% - 2rem));
  margin: 1.25rem auto 3rem;
  padding: 1.5rem 1.5rem 2.5rem;
  background: #f4ead3;
  box-shadow: 0 12px 0 #1a1915;
  border: 1px solid #1a1915;
}

.kicker {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

h1 {
  margin: 0.35rem 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.deck {
  margin: 0 auto 1rem;
  max-width: 38rem;
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
}

.rule {
  height: 3px;
  background: #1a1915;
  margin-bottom: 1.25rem;
}

.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  column-gap: 1.5rem;
}

h2 {
  margin: 0 0 0.6rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #1a1915;
  padding-bottom: 0.3rem;
}

.cols p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .cols { grid-template-columns: 1fr; }
}
