:root {
  --wine: #6B0000;
  --wine-shadow: #5A0000;
  --wine-bright: #A90101;
  --cream: #FDF8E5;
  --ink: #2A1410;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--wine);
  color: var(--cream);
  font-family: Georgia, 'Cormorant Garamond', serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.poster {
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 28px 36px 24px;
  background:
    radial-gradient(ellipse at top right, rgba(253, 248, 229, 0.06), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.25), transparent 55%),
    var(--wine);
  border: 1px solid rgba(253, 248, 229, 0.18);
}

.top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(253, 248, 229, 0.4);
}

.top-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--cream);
}

.stack {
  align-self: center;
  text-align: center;
  padding: 24px 0;
}

.num {
  font-family: Georgia, 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(72px, 14vw, 168px);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.cap {
  margin: 4px 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-family: system-ui, sans-serif;
  color: rgba(253, 248, 229, 0.78);
}

.stance {
  margin: 24px auto 0;
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 36px);
  letter-spacing: 0.18em;
  border-top: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  padding: 14px 16px;
  display: inline-block;
}

.action {
  text-align: center;
  margin-top: 8px;
}

.cta {
  display: inline-block;
  background: var(--cream);
  color: var(--wine);
  padding: 16px 32px;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.1s ease;
}

.cta:hover { transform: translateY(-2px); }

.note {
  margin: 14px 0 0;
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: rgba(253, 248, 229, 0.7);
  letter-spacing: 0.04em;
}

.bottom {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 248, 229, 0.6);
  padding-top: 12px;
}

.bottom a { color: inherit; text-decoration: none; }
.bottom a:hover { color: var(--cream); }

@media (max-height: 720px) {
  .stack { padding: 8px 0; }
  .num { font-size: clamp(60px, 11vh, 130px); }
}
