:root {
  --ink: #1c1713;
  --muted: #6c5f55;
  --paper: #f6efe4;
  --paper-deep: #eadcc8;
  --moss: #6f8b64;
  --copper: #b36a3c;
  --blue: #4a7890;
  --line: rgba(28, 23, 19, 0.14);
  --shadow: rgba(58, 42, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 12% 18%, rgba(179, 106, 60, 0.22), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(74, 120, 144, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--paper), var(--paper-deep));
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.page-shell {
  width: min(1120px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 56px 0 44px;
}

.hero {
  max-width: 860px;
  padding: clamp(30px, 7vw, 80px) 0 36px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 11vw, 9.2rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.statement {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 920px;
  margin: 22px 0 52px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(246, 239, 228, 0.58);
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(14px);
}

.mark {
  width: 74px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 46% 54%;
  background:
    linear-gradient(135deg, transparent 44%, var(--ink) 45% 47%, transparent 48%),
    radial-gradient(circle at 50% 50%, var(--moss) 0 12%, transparent 13%);
  transform: rotate(-8deg);
}

.statement p {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 42px;
}

article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.52);
}

article span {
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h2 {
  margin: 72px 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

article p,
.note p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.note {
  max-width: 620px;
  margin-left: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
    padding-top: 34px;
  }

  .statement {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  article {
    min-height: 190px;
  }

  h2 {
    margin-top: 48px;
  }
}
