/**
 * Adulthood Events Package
 * Career, relationships, and family events (ages 18+)
 */

// Career events
export {
  firstJob,
  jobApplication,
  employeeOfTheMonth,
  openBankAccount,
  jobOffer
} from './career';

// Romance events
export {
  marriage,
  wedding
} from './romance';

// Family events (legacy haveChild/pregnant/childBorn chain removed — it was a
// dead duplicate that created no child. Pregnancy + real child birth now live in
// the v2 PregnancyArc (events/health/medicalArcs.ts) + checkPregnancyTerm.)

// Life events
export {
  firstApartment,
  workLifeBalance,
  forgotBirthdayCall,
  friendsDrifting,
  unexpectedBill,
  promotionOpportunity,
  agingParent,
  careerChangeDesire,
  coworkerRivalry,
  divorceConsideration
} from './lifeEvents';
