/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
    font-family: "Hoefler Text", "Times New Roman", Times, serif;
    background: white;
    color: black;
    line-height: 1.6;
  }

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: white;
    padding: 3rem 0 2rem;
    text-align: center;
  }
  
  .nav-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .nav-links a {
    margin: 0 1.25rem;
    text-decoration: none;
    color: black;
    font-size: 0.95rem;
  }

/* Content */
.home-content {
    max-width: 520px;
    margin: 6rem auto;
    text-align: center;
    font-size: 1.05rem;
  }

.coming-soon {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .coming-soon-content {
    text-align: center;
  }
  
  .coming-soon-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .coming-soon-content p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .coming-soon-content .subtle {
    font-size: 0.85rem;
    opacity: 0.6;
  }

  