/* ── SECTION 9 — THE CLOSING LINE ────────────────────── */
/* The final word. Resolution. World is fully ivory.      */

.s9 {
  min-height: 100vh;
  min-height: 100dvh;     /* iOS Safari */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.s9-inner {
  text-align: center;
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
}

.s9-close {
  font-family: var(--font-display);
  font-size: clamp(16px, 3.5vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  min-height: 2em; /* reserve space during word animation */
  white-space: nowrap; /* enforce single line */
}

@media (max-width: 768px) {
  .s9-close {
    white-space: normal; /* allow wrap on small mobile if necessary */
    font-size: clamp(24px, 6vw, 32px);
  }
}


.s9-char {
  will-change: opacity, filter, transform;
}
