:root {
  --paper: #f1eadf;
  --ink: #302822;
  --wine: #7d2d26;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  text-align: center;
}

p {
  margin: 0;
}

main {
  max-width: 620px;
  animation: fade-in 0.6s ease both;
}

.name {
  margin-bottom: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
}

h1 {
  margin: 0 0 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--wine);
}

.description {
  margin-bottom: 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.5;
}

.status {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
