:root {
  --paper: #f3ecd1;
  --paper-elev: #FFF8DD;
  --ink: #15110d;
  --red: #E10000;
  --red-deep: #6B0000;
  --muted: #5e564b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(225, 0, 0, 0.04), transparent 70%),
    var(--paper);
}

.sheet {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 36px 56px;
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  background: var(--paper-elev);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(21, 17, 13, 0.03) 36px 37px);
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 14px 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.masthead .center {
  flex: 1;
  text-align: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.hero { padding: 56px 0 24px; }

h1 {
  margin: 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

h1 em {
  font-style: italic;
  color: var(--red);
  display: inline-block;
  background:
    linear-gradient(transparent 70%, rgba(225,0,0,0.18) 70%);
}

.kicker {
  margin: 24px 0 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.rule {
  height: 12px;
  background:
    linear-gradient(0deg, var(--ink), var(--ink)) center/100% 1px no-repeat,
    linear-gradient(0deg, var(--red), var(--red)) center/100% 5px no-repeat;
  margin: 28px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.block-label {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
}

.block p:not(.block-label):not(.big-stance) {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}

.big-stance {
  margin: 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--red);
  text-transform: uppercase;
}

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.counters .big {
  margin: 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--ink);
  line-height: 1;
  position: relative;
  display: inline-block;
}

.counters .big::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: var(--red);
  margin: 8px auto 0;
}

.counters .cap {
  margin: 6px 0 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.actions h2 {
  margin: 0 0 14px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
}

.actions ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ax;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}

.actions li {
  counter-increment: ax;
  border-bottom: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.actions li:nth-child(2n) { border-right: none; }

.actions a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  transition: background 0.15s ease;
}

.actions a::before {
  content: "0" counter(ax);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
  min-width: 30px;
}

.actions a:hover {
  background: var(--red);
  color: var(--paper);
}

.actions a:hover::before { color: var(--paper); }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.bank {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.bank code {
  font-family: ui-monospace, Menlo, monospace;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 10px;
  margin-top: 6px;
  align-self: flex-start;
  letter-spacing: 0.08em;
}

.seal-area {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: 17px;
}

.seal-area img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--red-deep);
  filter: contrast(1.05);
}

@media (max-width: 720px) {
  .grid, .counters, .actions ol { grid-template-columns: 1fr; }
  .actions li:nth-child(n) { border-right: none; }
}
