/* ============================================
   THE ABYSS — Subterranean Entry
   Below everything. Stripped to nothing.
   ============================================ */

/* --- Page --- */
.abyss-page {
  background: #050505;
  min-height: 100vh;
  color: #2a2a2a;
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  font-size: 0.7rem;
  line-height: 3;
  letter-spacing: 0.04em;
  cursor: default;
  /* No noise, no scanlines, no ornament */
}

/* Override shared selection */
.abyss-page ::selection {
  background: #111;
  color: #333;
}

/* Override shared scrollbar */
.abyss-page::-webkit-scrollbar-thumb {
  background: #111;
}

/* --- Container --- */
.abyss-column {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Title --- */
.abyss-title {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
  text-align: center;
  padding-top: 40vh;
  padding-bottom: 10vh;
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

/* --- Opening text --- */
.abyss-opening {
  text-align: center;
  padding-bottom: 20vh;
  opacity: 0;
  transition: opacity 6s ease;
}

.abyss-opening.is-visible {
  opacity: 1;
}

/* --- The Void Space --- */
.abyss-void {
  height: 3000px;
  position: relative;
}

/* --- Fragments --- */
.abyss-fragment {
  text-align: center;
  padding: 200px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 4s ease, transform 4s ease;
}

.abyss-fragment.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Paths --- */
.abyss-paths {
  padding-top: 300px;
  padding-bottom: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 3s ease, transform 3s ease;
}

.abyss-paths.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.abyss-path {
  color: #2a2a2a;
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  transition: color 2s ease;
}

.abyss-path:hover {
  color: #444;
}

/* --- Return --- */
.abyss-return {
  text-align: center;
  padding: 200px 0 100px;
  opacity: 0;
  transition: opacity 3s ease;
}

.abyss-return.is-visible {
  opacity: 1;
}

.abyss-return a {
  color: #161616;
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 2s ease;
}

.abyss-return a:hover {
  color: #333;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .abyss-column {
    padding: 0 16px;
  }

  .abyss-title {
    padding-top: 30vh;
  }

  .abyss-void {
    height: 2000px;
  }

  .abyss-fragment {
    padding: 140px 0;
  }

  .abyss-paths {
    padding-top: 200px;
    gap: 60px;
  }
}
