:root {
  --grain-marker: url("data:image/jpeg;base64,/9j/4AAQ");
  --cream: #f4efe6;
  --ink: #1c1a17;
  --matcha: #5f7a4a;
  --sans: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/grain.jpg");
  background-repeat: repeat;
  background-size: 480px 480px;
  opacity: 0.34;
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: absolute;
  top: 3.5rem;
  right: max(1rem, 6vw);
  z-index: 1;
  width: min(18rem, 52vw);
  height: min(18rem, 52vw);
  pointer-events: none;
  background: radial-gradient(circle at 48% 47%, transparent 33%, rgba(122, 78, 46, 0.34) 41%, rgba(92, 56, 32, 0.18) 54%, transparent 68%), radial-gradient(circle at 52% 51%, transparent 36%, rgba(140, 92, 52, 0.14) 46%, transparent 62%);
  opacity: 0.55;
  mix-blend-mode: multiply;
  transform: rotate(-16deg);
}
main {
  position: relative;
  z-index: 2;
  width: min(40rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 14vh, 7.5rem) 0 clamp(4rem, 16vh, 8rem);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 2.25rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--matcha);
  flex: 0 0 auto;
}

h1 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4.6vw, 2.7rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.012em;
}

.deck {
  margin: 1.35rem 0 0;
  max-width: 36ch;
  font-size: 1.12rem;
  line-height: 1.5;
}

.rule {
  display: block;
  width: 3.25rem;
  height: 2px;
  margin: 2.85rem 0 2.5rem;
  background: var(--matcha);
  border: 0;
  color: transparent;
}

.offers { margin: 0; padding: 0; border: 0; }
.offer { margin: 0; padding: 0 0 1.85rem; }
.offer + .offer {
  padding-top: 1.85rem;
  border-top: 1px solid rgba(28, 26, 23, 0.16);
}
.offer dt {
  margin: 0 0 0.55rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.offer dd {
  margin: 0;
  max-width: 42ch;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.55;
}
.offer .price {
  margin-top: 0.65rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
}

.audience { margin: 2.6rem 0 0; max-width: 38ch; }
.audience .label {
  margin: 0 0 0.55rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.audience .who { margin: 0; }
.audience .filter { margin: 1.1rem 0 0; font-style: italic; }

.cta { margin: 2.75rem 0 0; }
.cta a {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}
.cta a:visited { color: var(--ink); }
.cta a:hover {
  text-decoration-thickness: 2px;
  text-decoration-color: var(--matcha);
}
.cta a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 40rem) {
  main { width: calc(100% - 2rem); }
  h1, .deck, .offer dd, .audience { max-width: none; }
}