:root {
  --paper: #f4efe6;
  --ink: #1c1c1c;
  --seal: #c44536;
  --soft: #6f675c;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(rgba(28, 28, 28, 0.035) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
}

.top,
.end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.8rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.stamp {
  color: var(--seal);
  border: 1.5px solid var(--seal);
  border-radius: 50%;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  letter-spacing: 0;
  font-size: 0.78rem;
  transform: rotate(-12deg);
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem 3rem;
}

.enso {
  margin: 0 0 0.4rem;
  animation: rise 1.1s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

h1 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  letter-spacing: 0.18em;
}

.sub {
  margin: 0.7rem 0 0;
  font-size: 1.2rem;
  color: var(--ink);
}

.body {
  margin: 1.1rem 0 0;
  max-width: 26rem;
  color: var(--soft);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.soon {
  margin: 2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 28, 28, 0.18);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--seal);
}

.end { color: var(--soft); }

@media (max-width: 640px) {
  .stamp { width: 3rem; height: 3rem; }
  .top, .end { padding: 1.2rem 1rem; letter-spacing: 0.18em; }
  .sub { font-size: 1.05rem; }
  .body { font-size: 0.95rem; }
}
