:root {
    --bg: #faf7f5;
    --text: #2f2a28;
    --muted: #6f6762;
    --accent: #d8b4a0;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Instrument Serif', serif;
  }
  
  .landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .content {
    max-width: 900px;
    text-align: center;
    animation: fadeUp 1.2s ease forwards;
  }
  
  .icon-row {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.4rem;
  }
  
  h1 {
    font-weight: 600;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.02em;
    margin: 0 0 1.5rem;
  }
  
  .subheading {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2rem;
  }
  
  .coming-soon {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--accent);
  }
  
  /* Animations */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobile tweaks */
  @media (max-width: 600px) {
    .icon-row {
      font-size: 1.2rem;
    }
  }
  