/* ── SECTION 5 — THE BRAND REVEAL ────────────────────── */
/* The logo emerges from darkness. World brightens.       */

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

.s5-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.s5-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.s5-mark {
  width: 100px;
  height: 100px;
  opacity: 0; /* animated in */
}

.s5-wordmark {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0; /* animated in */
}

.s5-tagline {
  font-family: var(--font-ui);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0; /* animated in */
}
